diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 53667ea877fb..4419c8ba916a 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.99.0 +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 # 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_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/archivers/kf5-karchive/distinfo b/archivers/kf5-karchive/distinfo index c0f442c202da..1b90c1645c84 100644 --- a/archivers/kf5-karchive/distinfo +++ b/archivers/kf5-karchive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689093 -SHA256 (KDE/frameworks/5.99.0/karchive-5.99.0.tar.xz) = 571957caf8304344ef3d5b47092be96563e1526d4a1d70abf04ebcc38dd495fc -SIZE (KDE/frameworks/5.99.0/karchive-5.99.0.tar.xz) = 986620 +TIMESTAMP = 1667804629 +SHA256 (KDE/frameworks/5.100.0/karchive-5.100.0.tar.xz) = f5ae507b0ceca71229017128997e12eff51b697ca2a1a37b729f9253ebfe969b +SIZE (KDE/frameworks/5.100.0/karchive-5.100.0.tar.xz) = 1002980 diff --git a/archivers/kf5-karchive/pkg-plist b/archivers/kf5-karchive/pkg-plist index 467072b98a97..9d1cc5dc455a 100644 --- a/archivers/kf5-karchive/pkg-plist +++ b/archivers/kf5-karchive/pkg-plist @@ -1,38 +1,51 @@ include/KF5/KArchive/K7Zip include/KF5/KArchive/KAr include/KF5/KArchive/KArchive include/KF5/KArchive/KArchiveDirectory include/KF5/KArchive/KArchiveEntry include/KF5/KArchive/KArchiveFile include/KF5/KArchive/KCompressionDevice include/KF5/KArchive/KFilterBase include/KF5/KArchive/KFilterDev include/KF5/KArchive/KRcc include/KF5/KArchive/KTar include/KF5/KArchive/KZip include/KF5/KArchive/KZipFileEntry include/KF5/KArchive/k7zip.h include/KF5/KArchive/kar.h include/KF5/KArchive/karchive.h include/KF5/KArchive/karchive_export.h include/KF5/KArchive/karchive_version.h include/KF5/KArchive/karchivedirectory.h include/KF5/KArchive/karchiveentry.h include/KF5/KArchive/karchivefile.h include/KF5/KArchive/kcompressiondevice.h include/KF5/KArchive/kfilterbase.h include/KF5/KArchive/kfilterdev.h include/KF5/KArchive/krcc.h include/KF5/KArchive/ktar.h include/KF5/KArchive/kzip.h include/KF5/KArchive/kzipfileentry.h lib/cmake/KF5Archive/KF5ArchiveConfig.cmake lib/cmake/KF5Archive/KF5ArchiveConfigVersion.cmake lib/cmake/KF5Archive/KF5ArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Archive/KF5ArchiveTargets.cmake lib/libKF5Archive.so lib/libKF5Archive.so.5 lib/libKF5Archive.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KArchive.pri +share/locale/ca/LC_MESSAGES/karchive5_qt.qm +share/locale/ca@valencia/LC_MESSAGES/karchive5_qt.qm +share/locale/de/LC_MESSAGES/karchive5_qt.qm +share/locale/es/LC_MESSAGES/karchive5_qt.qm +share/locale/fr/LC_MESSAGES/karchive5_qt.qm +share/locale/it/LC_MESSAGES/karchive5_qt.qm +share/locale/ka/LC_MESSAGES/karchive5_qt.qm +share/locale/nl/LC_MESSAGES/karchive5_qt.qm +share/locale/pt/LC_MESSAGES/karchive5_qt.qm +share/locale/sl/LC_MESSAGES/karchive5_qt.qm +share/locale/tr/LC_MESSAGES/karchive5_qt.qm +share/locale/uk/LC_MESSAGES/karchive5_qt.qm +share/locale/zh_CN/LC_MESSAGES/karchive5_qt.qm share/qlogging-categories5/karchive.categories share/qlogging-categories5/karchive.renamecategories diff --git a/audio/amarok/pkg-plist b/audio/amarok/pkg-plist index 99fdc65f76f3..b8c6c67ca156 100644 --- a/audio/amarok/pkg-plist +++ b/audio/amarok/pkg-plist @@ -1,694 +1,694 @@ bin/amarok bin/amarok_afttagger bin/amarokcollectionscanner bin/amarokpkg +etc/xdg/amarok.knsrc etc/xdg/amarok_homerc lib/libamarok-sqlcollection.so lib/libamarok-sqlcollection.so.1 lib/libamarok-sqlcollection.so.1.0.0 lib/libamarok-transcoding.so lib/libamarok-transcoding.so.1 lib/libamarok-transcoding.so.1.0.0 lib/libamarokcore.so lib/libamarokcore.so.1 lib/libamarokcore.so.1.0.0 lib/libamaroklib.so lib/libamaroklib.so.1 lib/libamaroklib.so.1.0.0 lib/libamarokpud.so lib/libamarokshared.so lib/libamarokshared.so.1 lib/libamarokshared.so.1.0.0 lib/libamarok_service_lastfm_config.so lib/libampache_account_login.so %%QT_PLUGINDIR%%/amarok_collection-audiocdcollection.so %%QT_PLUGINDIR%%/amarok_collection-daapcollection.so %%IPOD%%lib/qt5/plugins/amarok_collection-ipodcollection.so %%MTP%%lib/qt5/plugins/amarok_collection-mtpcollection.so %%QT_PLUGINDIR%%/amarok_collection-mysqlcollection.so %%QT_PLUGINDIR%%/amarok_collection-playdarcollection.so %%QT_PLUGINDIR%%/amarok_collection-umscollection.so %%QT_PLUGINDIR%%/amarok_collection-upnpcollection.so %%QT_PLUGINDIR%%/amarok_importer-amarok.so %%QT_PLUGINDIR%%/amarok_importer-banshee.so %%QT_PLUGINDIR%%/amarok_importer-clementine.so %%QT_PLUGINDIR%%/amarok_importer-fastforward.so %%QT_PLUGINDIR%%/amarok_importer-itunes.so %%QT_PLUGINDIR%%/amarok_importer-rhythmbox.so %%QT_PLUGINDIR%%/amarok_service_ampache.so %%QT_PLUGINDIR%%/amarok_service_lastfm.so %%QT_PLUGINDIR%%/amarok_service_magnatunestore.so %%QT_PLUGINDIR%%/amarok_service_opmldirectory.so %%QT_PLUGINDIR%%/amarok_storage-mysqlestorage.so %%QT_PLUGINDIR%%/amarok_storage-mysqlserverstorage.so %%QT_PLUGINDIR%%/kcm_amarok_service_ampache.so %%QT_PLUGINDIR%%/kcm_amarok_service_lastfm.so %%QT_PLUGINDIR%%/kcm_amarok_service_magnatunestore.so %%QT_QMLDIR%%/org/kde/amarok/albums/libamarok_context_applet_albums.so %%QT_QMLDIR%%/org/kde/amarok/albums/qmldir %%QT_QMLDIR%%/org/kde/amarok/analyzer/libamarok_context_applet_analyzer.so %%QT_QMLDIR%%/org/kde/amarok/analyzer/qmldir %%QT_QMLDIR%%/org/kde/amarok/currenttrack/libamarok_context_applet_currenttrack.so %%QT_QMLDIR%%/org/kde/amarok/currenttrack/qmldir %%QT_QMLDIR%%/org/kde/amarok/lyrics/libamarok_context_applet_lyrics.so %%QT_QMLDIR%%/org/kde/amarok/lyrics/qmldir %%QT_QMLDIR%%/org/kde/amarok/photos/libamarok_context_applet_photos.so %%QT_QMLDIR%%/org/kde/amarok/photos/qmldir %%QT_QMLDIR%%/org/kde/amarok/qml/Applet.qml %%QT_QMLDIR%%/org/kde/amarok/qml/AppletHeader.qml %%QT_QMLDIR%%/org/kde/amarok/qml/libqml_plugin.so %%QT_QMLDIR%%/org/kde/amarok/qml/qmldir %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/amarok/wikipedia/libamarok_context_applet_wikipedia.so %%QTWEBENGINE%%%%QT_QMLDIR%%/org/kde/amarok/wikipedia/qmldir %%DATADIR%%/data/DefaultPlaylistLayouts.xml %%DATADIR%%/data/InfoParserLoading.html %%QTWEBENGINE%%%%DATADIR%%/data/WikipediaCustomStyle.css %%QTWEBENGINE%%%%DATADIR%%/data/bullet.gif %%DATADIR%%/data/first_run_jingle.ogg %%DATADIR%%/data/hover_info_template.html %%DATADIR%%/data/podcast_directory.opml %%DATADIR%%/icons/hicolor/128x128/status/audio-volume-high-amarok.png %%DATADIR%%/icons/hicolor/128x128/status/audio-volume-low-amarok.png %%DATADIR%%/icons/hicolor/128x128/status/audio-volume-medium-amarok.png %%DATADIR%%/icons/hicolor/128x128/status/audio-volume-muted-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_artist.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_cart_add.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_cart_remove.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_cart_view.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_change_language.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_clock.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_lyrics.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_playcount.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_playlist.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_playlist_refresh.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_scripts.png %%DATADIR%%/icons/hicolor/16x16/actions/amarok_track.png %%DATADIR%%/icons/hicolor/16x16/actions/collection-rescan-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/download-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/dynamic-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/favorite-genres-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-album-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-artist-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-bpm-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-comment-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-composer-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-dash-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-discnumber-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-dot-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-filetype-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-genre-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-ignore-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-initial-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-last-played.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-slash-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-space-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-title-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-track-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-underscore-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/filename-year-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/label-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/lastfm-mix-radio-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/lastfm-neighbour-radio-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/lastfm-personal-radio-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/lastfm-recommended-radio-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/lastfm-tag-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/love-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-album-cover-manager-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-album-repeat-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-playlist-repeat-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-random-albums-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-random-tracks-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-repeat-album-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-repeat-playlist-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-repeat-track-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-show-active-track-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-standard-track-progression-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-track-add-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-track-edit-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-track-queue-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/media-track-remove-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/music-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/playlist-generator.png %%DATADIR%%/icons/hicolor/16x16/actions/podcast-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/preferences-indicator-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/preferences-media-playback-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/preferences-multimedia-player-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/preferences-view-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/remove-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-importers-banshee-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-importers-clementine-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-importers-rhythmbox-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-amazon-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-ampache-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-gpodder-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-jamendo-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-lastfm-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-librivox-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-magnatune-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-mp3tunes-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-opml-amarok.png %%DATADIR%%/icons/hicolor/16x16/actions/view-services-scripted-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_artist.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_cart_add.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_cart_remove.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_cart_view.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_change_language.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_clock.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_lyrics.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_playcount.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_playlist.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_playlist_refresh.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_scripts.png %%DATADIR%%/icons/hicolor/22x22/actions/amarok_track.png %%DATADIR%%/icons/hicolor/22x22/actions/collection-rescan-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/download-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/dynamic-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/filename-bpm-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/internet-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/love-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-album-cover-manager-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-album-repeat-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-playlist-repeat-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-random-albums-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-random-tracks-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-repeat-album-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-repeat-playlist-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-repeat-track-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-show-active-track-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-standard-track-progression-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-track-add-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-track-edit-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-track-queue-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/media-track-remove-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/music-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/playlist-generator.png %%DATADIR%%/icons/hicolor/22x22/actions/podcast-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/preferences-indicator-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/preferences-media-playback-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/preferences-multimedia-player-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/preferences-view-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/remove-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-importers-banshee-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-importers-clementine-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-importers-rhythmbox-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-amazon-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-gpodder-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-jamendo-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-lastfm-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-librivox-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-magnatune-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-mp3tunes-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-opml-amarok.png %%DATADIR%%/icons/hicolor/22x22/actions/view-services-scripted-amarok.png %%DATADIR%%/icons/hicolor/24x24/actions/lastfm-my-friends-amarok.png %%DATADIR%%/icons/hicolor/24x24/actions/lastfm-my-neighbours-amarok.png %%DATADIR%%/icons/hicolor/24x24/actions/lastfm-my-tags-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_artist.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_cart_add.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_cart_remove.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_cart_view.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_change_language.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_clock.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_lyrics.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_playcount.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_playlist.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_playlist_refresh.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_scripts.png %%DATADIR%%/icons/hicolor/32x32/actions/amarok_track.png %%DATADIR%%/icons/hicolor/32x32/actions/audioscrobbler.png %%DATADIR%%/icons/hicolor/32x32/actions/collection-rescan-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/download-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/dynamic-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/filename-bpm-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/love-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-album-cover-manager-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-album-cover.png %%DATADIR%%/icons/hicolor/32x32/actions/media-album-repeat-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-album-track.png %%DATADIR%%/icons/hicolor/32x32/actions/media-playlist-repeat-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-random-albums-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-random-tracks-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-repeat-album-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-repeat-playlist-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-repeat-track-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-show-active-track-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-standard-track-progression-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-track-add-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-track-edit-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-track-queue-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/media-track-remove-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/music-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/playlist-generator.png %%DATADIR%%/icons/hicolor/32x32/actions/podcast-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/preferences-indicator-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/preferences-media-playback-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/preferences-multimedia-player-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/preferences-view-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/remove-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-importers-banshee-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-importers-clementine-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-importers-rhythmbox-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-amazon-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-ampache-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-gpodder-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-jamendo-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-lastfm-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-magnatune-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-mp3tunes-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-opml-amarok.png %%DATADIR%%/icons/hicolor/32x32/actions/view-services-scripted-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_artist.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_cart_add.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_cart_remove.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_cart_view.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_change_language.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_clock.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_playcount.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_playlist.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_playlist_refresh.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_scripts.png %%DATADIR%%/icons/hicolor/48x48/actions/amarok_track.png %%DATADIR%%/icons/hicolor/48x48/actions/collection-rescan-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/download-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/dynamic-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-album-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-and-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-artist-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-bpm-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-comment-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-composer-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-dash-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-discnumber-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-divider.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-dot-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-filetype-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-genre-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-group-length.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-group-tracks.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-ignore-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-initial-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-last-played.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-moodbar.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-sample-rate.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-slash-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-space-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-title-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-track-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-underscore-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/filename-year-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/info-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/label-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/love-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-album-repeat-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-playlist-repeat-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-random-albums-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-random-tracks-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-repeat-album-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-repeat-playlist-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-repeat-track-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-show-active-track-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-standard-track-progression-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-track-add-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-track-edit-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-track-queue-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/media-track-remove-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/music-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/playlist-generator.png %%DATADIR%%/icons/hicolor/48x48/actions/podcast-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/preferences-indicator-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/preferences-media-playback-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/preferences-multimedia-player-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/preferences-view-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/remove-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/similarartists-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/upcomingevents-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/videoclip-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-importers-banshee-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-importers-clementine-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-importers-rhythmbox-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-services-amazon-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-services-ampache-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-services-gpodder-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-services-jamendo-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-services-lastfm-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-services-magnatune-amarok.png %%DATADIR%%/icons/hicolor/48x48/actions/view-services-mp3tunes-amarok.png %%DATADIR%%/images/amarok_icon.svg %%DATADIR%%/images/ball.png %%DATADIR%%/images/default-theme-clean.svg %%DATADIR%%/images/dot.png %%DATADIR%%/images/echonest.png %%DATADIR%%/images/emblem-amazon.png %%DATADIR%%/images/emblem-ampache-scalable.svgz %%DATADIR%%/images/emblem-ampache.png %%DATADIR%%/images/emblem-default.png %%DATADIR%%/images/emblem-delicious.png %%DATADIR%%/images/emblem-digg.png %%DATADIR%%/images/emblem-facebook.png %%DATADIR%%/images/emblem-gpodder-scalable.svgz %%DATADIR%%/images/emblem-gpodder.png %%DATADIR%%/images/emblem-identica.png %%DATADIR%%/images/emblem-jamendo-scalable.svgz %%DATADIR%%/images/emblem-jamendo.png %%DATADIR%%/images/emblem-lastfm-scalable.svg %%DATADIR%%/images/emblem-lastfm.png %%DATADIR%%/images/emblem-linkedin.png %%DATADIR%%/images/emblem-magnatune.png %%DATADIR%%/images/emblem-mp3tunes.png %%DATADIR%%/images/emblem-myspace.png %%DATADIR%%/images/emblem-reddit.png %%DATADIR%%/images/emblem-scripted-scalable.svgz %%DATADIR%%/images/emblem-scripted.png %%DATADIR%%/images/emblem-stackoverflow.png %%DATADIR%%/images/emblem-twitter.png %%DATADIR%%/images/emblem-wikipedia.png %%DATADIR%%/images/emblem-xing.png %%DATADIR%%/images/grid.png %%DATADIR%%/images/hover_info_ampache.png %%DATADIR%%/images/hover_info_collections.png %%DATADIR%%/images/hover_info_dynamic_playlists.png %%DATADIR%%/images/hover_info_files.png %%DATADIR%%/images/hover_info_internet.png %%DATADIR%%/images/hover_info_lastfm.png %%DATADIR%%/images/hover_info_magnatune.png %%DATADIR%%/images/hover_info_playlists.png %%DATADIR%%/images/hover_info_podcasts.png %%DATADIR%%/images/hover_info_user_playlists.png %%DATADIR%%/images/lastfm-default-cover.png %%DATADIR%%/images/lastfm.png %%DATADIR%%/images/loading1.png %%DATADIR%%/images/loading2.png %%DATADIR%%/images/mb_aicon.png %%DATADIR%%/images/mb_licon.png %%DATADIR%%/images/mb_ticon.png %%DATADIR%%/images/navigation_arrows.svg %%DATADIR%%/images/nocover.png %%DATADIR%%/images/opendesktop-22.png %%DATADIR%%/images/playlist-bookmark-16.png %%DATADIR%%/images/playlist-layouts-22.png %%DATADIR%%/images/playlist-sorting-16.png %%DATADIR%%/images/pud_items.svg %%DATADIR%%/images/service_info_loading1.png %%DATADIR%%/images/service_info_loading10.png %%DATADIR%%/images/service_info_loading11.png %%DATADIR%%/images/service_info_loading12.png %%DATADIR%%/images/service_info_loading2.png %%DATADIR%%/images/service_info_loading3.png %%DATADIR%%/images/service_info_loading4.png %%DATADIR%%/images/service_info_loading5.png %%DATADIR%%/images/service_info_loading6.png %%DATADIR%%/images/service_info_loading7.png %%DATADIR%%/images/service_info_loading8.png %%DATADIR%%/images/service_info_loading9.png %%DATADIR%%/images/smallstar.png %%DATADIR%%/images/star.png %%DATADIR%%/images/volume_icon.png %%DATADIR%%/images/volume_muted_icon.png %%DATADIR%%/images/wirl1.png %%DATADIR%%/images/wirl2.png %%DATADIR%%/scriptconsole/AutoComplete.txt share/applications/org.kde.amarok.desktop share/applications/org.kde.amarok_containers.desktop share/config.kcfg/amarokconfig.kcfg share/dbus-1/interfaces/org.kde.amarok.App.xml share/dbus-1/interfaces/org.kde.amarok.Collection.xml share/dbus-1/interfaces/org.kde.amarok.Mpris2Extensions.Player.xml share/doc/HTML/en/amarok/Face-smile.png share/doc/HTML/en/amarok/Icon-action-dynamic-amarok.png share/doc/HTML/en/amarok/Icon-application-exit.png share/doc/HTML/en/amarok/Icon-bookmark-new-list.png share/doc/HTML/en/amarok/Icon-configure.png share/doc/HTML/en/amarok/Icon-dialog-information.png share/doc/HTML/en/amarok/Icon-document-export.png share/doc/HTML/en/amarok/Icon-document-import.png share/doc/HTML/en/amarok/Icon-document-new.png share/doc/HTML/en/amarok/Icon-document-properties.png share/doc/HTML/en/amarok/Icon-document-save.png share/doc/HTML/en/amarok/Icon-edit-clear-list.png share/doc/HTML/en/amarok/Icon-edit-clear-locationbar-rtl.png share/doc/HTML/en/amarok/Icon-edit-copy.png share/doc/HTML/en/amarok/Icon-edit-delete.png share/doc/HTML/en/amarok/Icon-emblem-favorite.png share/doc/HTML/en/amarok/Icon-emblem-mounted.png share/doc/HTML/en/amarok/Icon-flag-green.png share/doc/HTML/en/amarok/Icon-folder-new.png share/doc/HTML/en/amarok/Icon-folder-remote.png share/doc/HTML/en/amarok/Icon-go-down.png share/doc/HTML/en/amarok/Icon-go-home.png share/doc/HTML/en/amarok/Icon-go-next.png share/doc/HTML/en/amarok/Icon-go-previous.png share/doc/HTML/en/amarok/Icon-go-up.png share/doc/HTML/en/amarok/Icon-list-add.png share/doc/HTML/en/amarok/Icon-list-remove.png share/doc/HTML/en/amarok/Icon-media-playback-pause.png share/doc/HTML/en/amarok/Icon-media-playback-start.png share/doc/HTML/en/amarok/Icon-media-playback-stop.png share/doc/HTML/en/amarok/Icon-preferences-other.png share/doc/HTML/en/amarok/Icon-view-list-tree.png share/doc/HTML/en/amarok/Icon-view-refresh.png share/doc/HTML/en/amarok/action-collection-amarok48.png share/doc/HTML/en/amarok/amarok-2-6-duplicates-during-collection-scan.png share/doc/HTML/en/amarok/amarok-apg-presets-toolbar.png share/doc/HTML/en/amarok/amarok-e17.png share/doc/HTML/en/amarok/amarok-fluxbox.png share/doc/HTML/en/amarok/amarok-gnome.png share/doc/HTML/en/amarok/amarok-lxde.png share/doc/HTML/en/amarok/amarok-mac-port-install.png share/doc/HTML/en/amarok/amarok-maintoolbar.png share/doc/HTML/en/amarok/amarok-managing-media.png share/doc/HTML/en/amarok/amarok-newdynamic-detail.png share/doc/HTML/en/amarok/amarok-newdynamic.png share/doc/HTML/en/amarok/amarok-slimtoolbar.png share/doc/HTML/en/amarok/amarok-statsyncing.png share/doc/HTML/en/amarok/amarok-xfce.png share/doc/HTML/en/amarok/amarok2-4-1albumtageditdialog.png share/doc/HTML/en/amarok/amarok2-4-1albumtageditpertrackdialog.png share/doc/HTML/en/amarok/amarok2-4-1editfilterdialog.png share/doc/HTML/en/amarok/amarok2-4-1filenamelayoutchooseroptions.png share/doc/HTML/en/amarok/amarok2-4-1tageditdialog.png share/doc/HTML/en/amarok/amarok2-4musicbrainztagger.png share/doc/HTML/en/amarok/amarok2-4organizefilesadvanceddialog.png share/doc/HTML/en/amarok/amarok2-4queueeditor.png share/doc/HTML/en/amarok/amarok2-4searchplaylist.png share/doc/HTML/en/amarok/amarok2-6configgeneralmenu.png share/doc/HTML/en/amarok/amarok2-6flactranscodemenu.png share/doc/HTML/en/amarok/amarok2-6helpmenu.png share/doc/HTML/en/amarok/amarok2-6playlistalbumcontextmenu.png share/doc/HTML/en/amarok/amarok2-6trackcontextmenu.png share/doc/HTML/en/amarok/amarok2-6viewconfigmenu.png share/doc/HTML/en/amarok/amarok2-6viewundocksymbols.png share/doc/HTML/en/amarok/amarok2-7networkrequestsviewer.png share/doc/HTML/en/amarok/amarok2-7renamesavedplaylist.png share/doc/HTML/en/amarok/amarok2-7scriptsconfigmenu.png share/doc/HTML/en/amarok/amarok2-7thetoolbar.png share/doc/HTML/en/amarok/amarok2-8menutools.png share/doc/HTML/en/amarok/amarok24_configureshortcutdetail.png share/doc/HTML/en/amarok/amarok24_configureshortcutsdialog.png share/doc/HTML/en/amarok/amarok24_settingsmenu.png share/doc/HTML/en/amarok/amarok24_settingsmenu_withreplaygain.png share/doc/HTML/en/amarok/amarok2_moodbar.png share/doc/HTML/en/amarok/amarok2dot8pud.png share/doc/HTML/en/amarok/amarok_2-6_layout.png share/doc/HTML/en/amarok/amarok_2-8_appletexplorer_default.png share/doc/HTML/en/amarok/amarok_2-8_collectionbrowser_merged.png share/doc/HTML/en/amarok/amarok_2-8_collectionbrowser_nonmerged.png share/doc/HTML/en/amarok/amarok_2-8_collectionbrowsersearchfield.png share/doc/HTML/en/amarok/amarok_2-8_collectionsortingmenu.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialogdatabase.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialogdatabaseenabled.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialoggeneral.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialoglocalcollection.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialognotifications.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialogplayback.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialogplugins.png share/doc/HTML/en/amarok/amarok_2-8_configurationdialogscripts.png share/doc/HTML/en/amarok/amarok_2-8_contextview_default.png share/doc/HTML/en/amarok/amarok_2-8_default.png share/doc/HTML/en/amarok/amarok_2-8_mediasourcespanedefault.png share/doc/HTML/en/amarok/amarok_2-8_organizefilestranscode.png share/doc/HTML/en/amarok/amarok_2-8_organizetracks.png share/doc/HTML/en/amarok/amarok_2-8_playlistbottombar.png share/doc/HTML/en/amarok/amarok_2-8_playlistfilteroptions.png share/doc/HTML/en/amarok/amarok_2-8_playlistlayouteditor.png share/doc/HTML/en/amarok/amarok_2-8_playlistpane.png share/doc/HTML/en/amarok/amarok_2-8_playlistsortinglevels.png share/doc/HTML/en/amarok/amarok_2-8_popupdropperadd.png share/doc/HTML/en/amarok/amarok_2-8_popupdropperremove.png share/doc/HTML/en/amarok/amarok_2-8_remotecollections_samba_server.png share/doc/HTML/en/amarok/amarok_2-8_remotecollections_samba_server1.png share/doc/HTML/en/amarok/amarok_2-8_savecurrentplaylistoptions.png share/doc/HTML/en/amarok/amarok_2-8_startwindowdefault.png share/doc/HTML/en/amarok/amarok_2-8_systray_window.png share/doc/HTML/en/amarok/amarok_2-8_upnp_collection.png share/doc/HTML/en/amarok/amarok_2-8_upnp_collection_plugin.png share/doc/HTML/en/amarok/amarok_add-on_installer.png share/doc/HTML/en/amarok/amarok_addtoplaylist1.png share/doc/HTML/en/amarok/amarok_amarokmenu2-4.png share/doc/HTML/en/amarok/amarok_ampache_client2.png share/doc/HTML/en/amarok/amarok_connecting_media_devices.png share/doc/HTML/en/amarok/amarok_cover_manager.png share/doc/HTML/en/amarok/amarok_cover_manager_newcover.png share/doc/HTML/en/amarok/amarok_dynamic_playlist.png share/doc/HTML/en/amarok/amarok_layout11.png share/doc/HTML/en/amarok/amarok_layout22.png share/doc/HTML/en/amarok/amarok_layout23.png share/doc/HTML/en/amarok/amarok_layout24.png share/doc/HTML/en/amarok/amarok_layout25.png share/doc/HTML/en/amarok/amarok_layout26.png share/doc/HTML/en/amarok/amarok_layout27.png share/doc/HTML/en/amarok/amarok_layout28.png share/doc/HTML/en/amarok/amarok_loading_media_devices.png share/doc/HTML/en/amarok/amarok_locale_selection.png share/doc/HTML/en/amarok/amarok_main_toolbar.png share/doc/HTML/en/amarok/amarok_media_devices.png share/doc/HTML/en/amarok/amarok_on_mac.png share/doc/HTML/en/amarok/amarok_playlist_layout_d_ss.png share/doc/HTML/en/amarok/amarok_playlist_layout_editor.png share/doc/HTML/en/amarok/amarok_playlist_layout_nog1_s.png share/doc/HTML/en/amarok/amarok_playlist_layout_nog2_s.png share/doc/HTML/en/amarok/amarok_playlist_layout_v1_s.png share/doc/HTML/en/amarok/amarok_playlist_search_ex.png share/doc/HTML/en/amarok/amarok_saved_playlists.png share/doc/HTML/en/amarok/amarok_show_only_matches.png share/doc/HTML/en/amarok/amarok_slim_toolbar.png share/doc/HTML/en/amarok/amarok_systray_2-8_4-11.png share/doc/HTML/en/amarok/amarok_tracks_media_devices1.png share/doc/HTML/en/amarok/amarokbreadcrumb.png share/doc/HTML/en/amarok/amarokconfigurationdialog2-7phononbackend.png share/doc/HTML/en/amarok/amarokconfigurationdialog2-7phonondevice.png share/doc/HTML/en/amarok/amarokconfigurationdialog2-7phononhardware.png share/doc/HTML/en/amarok/amarokconfigurationdialog2-7scriptconsole.png share/doc/HTML/en/amarok/amarokmediasources-files.png share/doc/HTML/en/amarok/amarokmediasources-home.png share/doc/HTML/en/amarok/amaroknew2-4.png share/doc/HTML/en/amarok/amarokripcd.png share/doc/HTML/en/amarok/amaroktoplevelmenus2-4.png share/doc/HTML/en/amarok/apgpresetsmatchallgroup.png share/doc/HTML/en/amarok/applications-internet.png share/doc/HTML/en/amarok/bookmarking_menu.png share/doc/HTML/en/amarok/cd_collection_sansa.png share/doc/HTML/en/amarok/controlamarok.png share/doc/HTML/en/amarok/document-save.png share/doc/HTML/en/amarok/edit-redo.png share/doc/HTML/en/amarok/edit-undo.png share/doc/HTML/en/amarok/favor.png share/doc/HTML/en/amarok/firstruncollection2.png share/doc/HTML/en/amarok/folder-amarok.png share/doc/HTML/en/amarok/generatedlist.png share/doc/HTML/en/amarok/generatingtree.png share/doc/HTML/en/amarok/hi48-action-amarok_lyrics.png share/doc/HTML/en/amarok/hi48-action-clear-playlist-amarok.png share/doc/HTML/en/amarok/hi48-action-current-track-amarok.png share/doc/HTML/en/amarok/hi48-action-edit-playlist-queue.png share/doc/HTML/en/amarok/hi48-action-filename-album-amarok.png share/doc/HTML/en/amarok/hi48-action-filename-genre-amarok.png share/doc/HTML/en/amarok/hi48-action-info-amarok.png share/doc/HTML/en/amarok/hi48-action-label-amarok.png share/doc/HTML/en/amarok/hi48-action-media-standard-track-progression-amarok.png share/doc/HTML/en/amarok/hi48-action-music-amarok.png share/doc/HTML/en/amarok/hi48-action-podcast-amarok.png share/doc/HTML/en/amarok/hi48-action-similarartists-amarok.png share/doc/HTML/en/amarok/hi48-action-upcomingevents-amarok.png share/doc/HTML/en/amarok/hi48-action-view-media-analyzer-amarok.png share/doc/HTML/en/amarok/hi48-image-x-generic.png share/doc/HTML/en/amarok/index.cache.bz2 share/doc/HTML/en/amarok/index.docbook share/doc/HTML/en/amarok/installation1-1.png share/doc/HTML/en/amarok/installation2.png share/doc/HTML/en/amarok/installation3.png share/doc/HTML/en/amarok/installation4.png share/doc/HTML/en/amarok/ipod-connected-dialog.png share/doc/HTML/en/amarok/last-fm-spelling-correction.png share/doc/HTML/en/amarok/matchedtrackspage.png share/doc/HTML/en/amarok/media_sources1.png share/doc/HTML/en/amarok/mediasources.png share/doc/HTML/en/amarok/mediasources10.png share/doc/HTML/en/amarok/mediasources5.png share/doc/HTML/en/amarok/mediasources6.png share/doc/HTML/en/amarok/mediasources7.png share/doc/HTML/en/amarok/mediasources8.png share/doc/HTML/en/amarok/mediasourcesex.png share/doc/HTML/en/amarok/metadatadialog.png share/doc/HTML/en/amarok/nocover_amarok.png share/doc/HTML/en/amarok/oraganize_menu.png share/doc/HTML/en/amarok/otherplatforms_nonkde.png share/doc/HTML/en/amarok/otherplatforms_osx.png share/doc/HTML/en/amarok/otherplatforms_windows.png share/doc/HTML/en/amarok/playlist-layout-item-configuration-amarok.png share/doc/HTML/en/amarok/playlist_save.png share/doc/HTML/en/amarok/playlistlayout1.png share/doc/HTML/en/amarok/playlistlayout2.png share/doc/HTML/en/amarok/playlistlayout3.png share/doc/HTML/en/amarok/playlistlayout4.png share/doc/HTML/en/amarok/playlistmenu.png share/doc/HTML/en/amarok/playlistpic.png share/doc/HTML/en/amarok/playlistqueue.png share/doc/HTML/en/amarok/queue.png share/doc/HTML/en/amarok/queueend.png share/doc/HTML/en/amarok/remotecollections_ampache_client1.png share/doc/HTML/en/amarok/remotecollections_ampache_client2.png share/doc/HTML/en/amarok/remotecollections_daap.png share/doc/HTML/en/amarok/searchincollection_example_editbox.png share/doc/HTML/en/amarok/searchincollection_example_editbox2.png share/doc/HTML/en/amarok/slim_toolbar.png share/doc/HTML/en/amarok/sorting.png share/doc/HTML/en/amarok/tagedit_fromfile_advanced.png share/doc/HTML/en/amarok/tagedit_fromfile_advanced_example.png share/doc/HTML/en/amarok/tagedit_fromfile_basic.png share/doc/HTML/en/amarok/tagedit_fromfile_basic_example.png share/doc/HTML/en/amarok/toolbar_main.png share/doc/HTML/en/amarok/tools_bookmarkmanager.png share/doc/HTML/en/amarok/tools_covermanager.png share/doc/HTML/en/amarok/tools_equalizer.png share/doc/HTML/en/amarok/track_progression.png share/doc/HTML/en/amarok/view-media-playlist.png share/icons/hicolor/128x128/apps/amarok.png share/icons/hicolor/16x16/apps/amarok.png share/icons/hicolor/22x22/apps/amarok.png share/icons/hicolor/32x32/apps/amarok.png share/icons/hicolor/48x48/apps/amarok.png share/icons/hicolor/64x64/apps/amarok.png share/kconf_update/amarok-2.4.1-tokens_syntax_update.pl share/kconf_update/amarok.upd share/knotifications5/amarok.notifyrc -share/knsrcfiles/amarok.knsrc share/kpackage/amarok/org.kde.amarok.albums/contents.rcc share/kpackage/amarok/org.kde.amarok.albums/metadata.json share/kpackage/amarok/org.kde.amarok.analyzer/contents.rcc share/kpackage/amarok/org.kde.amarok.analyzer/metadata.json share/kpackage/amarok/org.kde.amarok.currenttrack/contents.rcc share/kpackage/amarok/org.kde.amarok.currenttrack/metadata.json share/kpackage/amarok/org.kde.amarok.lyrics/contents.rcc share/kpackage/amarok/org.kde.amarok.lyrics/metadata.json share/kpackage/amarok/org.kde.amarok.photos/contents.rcc share/kpackage/amarok/org.kde.amarok.photos/metadata.json %%QTWEBENGINE%%share/kpackage/amarok/org.kde.amarok.wikipedia/contents.rcc %%QTWEBENGINE%%share/kpackage/amarok/org.kde.amarok.wikipedia/metadata.json share/kpackage/genericqml/org.kde.amarok.context/contents.rcc share/kpackage/genericqml/org.kde.amarok.context/metadata.json share/kservices5/ServiceMenus/amarok_append.desktop share/kservices5/amarok.protocol share/kservices5/amarok_collection-mysqlcollection.desktop share/kservices5/amarok_service_ampache.desktop share/kservices5/amarok_service_ampache_config.desktop share/kservices5/amarok_service_lastfm.desktop share/kservices5/amarok_service_lastfm_config.desktop share/kservices5/amarok_service_magnatunestore.desktop share/kservices5/amarok_service_magnatunestore_config.desktop share/kservices5/amarok_storage-mysqlestorage.desktop share/kservices5/amarok_storage-mysqlserverstorage.desktop share/kservices5/amarokitpc.protocol share/kservices5/amaroklastfm.protocol share/kservicetypes5/amarok-contextapplet.desktop share/kservicetypes5/amarok-plugin.desktop share/kservicetypes5/amarok_codecinstall.desktop share/metainfo/org.kde.amarok.albums.appdata.xml share/metainfo/org.kde.amarok.analyzer.appdata.xml share/metainfo/org.kde.amarok.appdata.xml share/metainfo/org.kde.amarok.context.appdata.xml share/metainfo/org.kde.amarok.currenttrack.appdata.xml share/metainfo/org.kde.amarok.lyrics.appdata.xml share/metainfo/org.kde.amarok.photos.appdata.xml %%QTWEBENGINE%%share/metainfo/org.kde.amarok.wikipedia.appdata.xml share/solid/actions/amarok-play-audiocd.desktop @dir share/mime/packages diff --git a/devel/kf5-extra-cmake-modules/distinfo b/devel/kf5-extra-cmake-modules/distinfo index d1fb7591f293..0410b3e65c96 100644 --- a/devel/kf5-extra-cmake-modules/distinfo +++ b/devel/kf5-extra-cmake-modules/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689093 -SHA256 (KDE/frameworks/5.99.0/extra-cmake-modules-5.99.0.tar.xz) = 01818aa606628db57129f6e22dbae3532464220802d085c6e0689d032e87807e -SIZE (KDE/frameworks/5.99.0/extra-cmake-modules-5.99.0.tar.xz) = 331764 +TIMESTAMP = 1667804629 +SHA256 (KDE/frameworks/5.100.0/extra-cmake-modules-5.100.0.tar.xz) = 34563ce7bbe3c4d8f69ce1f5dc87ae052443a6b0349fefb9e244a7358b16c0c5 +SIZE (KDE/frameworks/5.100.0/extra-cmake-modules-5.100.0.tar.xz) = 332036 diff --git a/devel/kf5-kapidox/distinfo b/devel/kf5-kapidox/distinfo index 700718ec99a1..8e140df29e2d 100644 --- a/devel/kf5-kapidox/distinfo +++ b/devel/kf5-kapidox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689094 -SHA256 (KDE/frameworks/5.99.0/kapidox-5.99.0.tar.xz) = 0c2d698a883b507f33830e1221a6558e628fb286c3cd030aac8e77507ee92897 -SIZE (KDE/frameworks/5.99.0/kapidox-5.99.0.tar.xz) = 198492 +TIMESTAMP = 1667804630 +SHA256 (KDE/frameworks/5.100.0/kapidox-5.100.0.tar.xz) = 68a4c0aa5b86ff002e996e043b745788bdc474be755b8e96251820851d0ef639 +SIZE (KDE/frameworks/5.100.0/kapidox-5.100.0.tar.xz) = 198496 diff --git a/devel/kf5-kauth/distinfo b/devel/kf5-kauth/distinfo index 16701cd7245c..6ad19ede0b62 100644 --- a/devel/kf5-kauth/distinfo +++ b/devel/kf5-kauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689095 -SHA256 (KDE/frameworks/5.99.0/kauth-5.99.0.tar.xz) = 36ba733733c8600b2b8ba7736dc78c3c4e817aa91c7bc91407b69d4be01bbf93 -SIZE (KDE/frameworks/5.99.0/kauth-5.99.0.tar.xz) = 91096 +TIMESTAMP = 1667804630 +SHA256 (KDE/frameworks/5.100.0/kauth-5.100.0.tar.xz) = 2185205bfe39ba2168cc88352c4b327d55b6ef5f34dff648e865ccfbe6778f6d +SIZE (KDE/frameworks/5.100.0/kauth-5.100.0.tar.xz) = 2335828 diff --git a/devel/kf5-kbookmarks/distinfo b/devel/kf5-kbookmarks/distinfo index 468806eb3edd..f1979f3d226e 100644 --- a/devel/kf5-kbookmarks/distinfo +++ b/devel/kf5-kbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689096 -SHA256 (KDE/frameworks/5.99.0/kbookmarks-5.99.0.tar.xz) = b5b82d3fda366a2bcada2500ee7f727c1eda0c4218330511ae58993893c1686d -SIZE (KDE/frameworks/5.99.0/kbookmarks-5.99.0.tar.xz) = 131128 +TIMESTAMP = 1667804631 +SHA256 (KDE/frameworks/5.100.0/kbookmarks-5.100.0.tar.xz) = 236cf8eef90b1a9737948d10e3c9aae1b6ca35ff7d5b2621b3a2aa61675e84ae +SIZE (KDE/frameworks/5.100.0/kbookmarks-5.100.0.tar.xz) = 1143308 diff --git a/devel/kf5-kbookmarks/pkg-plist b/devel/kf5-kbookmarks/pkg-plist index cd0b40046b60..77a4421c2ceb 100644 --- a/devel/kf5-kbookmarks/pkg-plist +++ b/devel/kf5-kbookmarks/pkg-plist @@ -1,126 +1,125 @@ include/KF5/KBookmarks/KBookmark include/KF5/KBookmarks/KBookmarkAction include/KF5/KBookmarks/KBookmarkActionInterface include/KF5/KBookmarks/KBookmarkActionMenu include/KF5/KBookmarks/KBookmarkContextMenu include/KF5/KBookmarks/KBookmarkDialog include/KF5/KBookmarks/KBookmarkDomBuilder include/KF5/KBookmarks/KBookmarkManager include/KF5/KBookmarks/KBookmarkMenu include/KF5/KBookmarks/KBookmarkOwner include/KF5/KBookmarks/KonqBookmarkMenu include/KF5/KBookmarks/kbookmark.h include/KF5/KBookmarks/kbookmarkaction.h include/KF5/KBookmarks/kbookmarkactioninterface.h include/KF5/KBookmarks/kbookmarkactionmenu.h include/KF5/KBookmarks/kbookmarkcontextmenu.h include/KF5/KBookmarks/kbookmarkdialog.h include/KF5/KBookmarks/kbookmarkdombuilder.h include/KF5/KBookmarks/kbookmarkexporter.h include/KF5/KBookmarks/kbookmarkimporter.h include/KF5/KBookmarks/kbookmarkimporter_ie.h include/KF5/KBookmarks/kbookmarkimporter_ns.h include/KF5/KBookmarks/kbookmarkimporter_opera.h include/KF5/KBookmarks/kbookmarkmanager.h include/KF5/KBookmarks/kbookmarkmenu.h include/KF5/KBookmarks/kbookmarkowner.h include/KF5/KBookmarks/kbookmarks_export.h include/KF5/KBookmarks/kbookmarks_version.h include/KF5/KBookmarks/konqbookmarkmenu.h lib/cmake/KF5Bookmarks/KF5BookmarksConfig.cmake lib/cmake/KF5Bookmarks/KF5BookmarksConfigVersion.cmake lib/cmake/KF5Bookmarks/KF5BookmarksTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Bookmarks/KF5BookmarksTargets.cmake lib/libKF5Bookmarks.so lib/libKF5Bookmarks.so.5 lib/libKF5Bookmarks.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KBookmarks.pri share/locale/af/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ar/LC_MESSAGES/kbookmarks5_qt.qm -share/locale/ast/LC_MESSAGES/kbookmarks5_qt.qm share/locale/az/LC_MESSAGES/kbookmarks5_qt.qm share/locale/be/LC_MESSAGES/kbookmarks5_qt.qm share/locale/be@latin/LC_MESSAGES/kbookmarks5_qt.qm share/locale/bg/LC_MESSAGES/kbookmarks5_qt.qm share/locale/bn/LC_MESSAGES/kbookmarks5_qt.qm share/locale/br/LC_MESSAGES/kbookmarks5_qt.qm share/locale/bs/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ca/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kbookmarks5_qt.qm share/locale/cs/LC_MESSAGES/kbookmarks5_qt.qm share/locale/csb/LC_MESSAGES/kbookmarks5_qt.qm share/locale/cy/LC_MESSAGES/kbookmarks5_qt.qm share/locale/da/LC_MESSAGES/kbookmarks5_qt.qm share/locale/de/LC_MESSAGES/kbookmarks5_qt.qm share/locale/el/LC_MESSAGES/kbookmarks5_qt.qm share/locale/en_GB/LC_MESSAGES/kbookmarks5_qt.qm share/locale/eo/LC_MESSAGES/kbookmarks5_qt.qm share/locale/es/LC_MESSAGES/kbookmarks5_qt.qm share/locale/et/LC_MESSAGES/kbookmarks5_qt.qm share/locale/eu/LC_MESSAGES/kbookmarks5_qt.qm share/locale/fa/LC_MESSAGES/kbookmarks5_qt.qm share/locale/fi/LC_MESSAGES/kbookmarks5_qt.qm share/locale/fr/LC_MESSAGES/kbookmarks5_qt.qm share/locale/fy/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ga/LC_MESSAGES/kbookmarks5_qt.qm share/locale/gd/LC_MESSAGES/kbookmarks5_qt.qm share/locale/gl/LC_MESSAGES/kbookmarks5_qt.qm share/locale/gu/LC_MESSAGES/kbookmarks5_qt.qm share/locale/he/LC_MESSAGES/kbookmarks5_qt.qm share/locale/hi/LC_MESSAGES/kbookmarks5_qt.qm share/locale/hr/LC_MESSAGES/kbookmarks5_qt.qm share/locale/hsb/LC_MESSAGES/kbookmarks5_qt.qm share/locale/hu/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ia/LC_MESSAGES/kbookmarks5_qt.qm share/locale/id/LC_MESSAGES/kbookmarks5_qt.qm share/locale/is/LC_MESSAGES/kbookmarks5_qt.qm share/locale/it/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ja/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ka/LC_MESSAGES/kbookmarks5_qt.qm share/locale/kk/LC_MESSAGES/kbookmarks5_qt.qm share/locale/km/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ko/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ku/LC_MESSAGES/kbookmarks5_qt.qm share/locale/lt/LC_MESSAGES/kbookmarks5_qt.qm share/locale/lv/LC_MESSAGES/kbookmarks5_qt.qm share/locale/mai/LC_MESSAGES/kbookmarks5_qt.qm share/locale/mk/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ml/LC_MESSAGES/kbookmarks5_qt.qm share/locale/mr/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ms/LC_MESSAGES/kbookmarks5_qt.qm share/locale/nb/LC_MESSAGES/kbookmarks5_qt.qm share/locale/nds/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ne/LC_MESSAGES/kbookmarks5_qt.qm share/locale/nl/LC_MESSAGES/kbookmarks5_qt.qm share/locale/nn/LC_MESSAGES/kbookmarks5_qt.qm share/locale/oc/LC_MESSAGES/kbookmarks5_qt.qm share/locale/pa/LC_MESSAGES/kbookmarks5_qt.qm share/locale/pl/LC_MESSAGES/kbookmarks5_qt.qm share/locale/pt/LC_MESSAGES/kbookmarks5_qt.qm share/locale/pt_BR/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ro/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ru/LC_MESSAGES/kbookmarks5_qt.qm share/locale/se/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sk/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sl/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sq/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sr/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sr@latin/LC_MESSAGES/kbookmarks5_qt.qm share/locale/sv/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ta/LC_MESSAGES/kbookmarks5_qt.qm share/locale/tg/LC_MESSAGES/kbookmarks5_qt.qm share/locale/th/LC_MESSAGES/kbookmarks5_qt.qm share/locale/tr/LC_MESSAGES/kbookmarks5_qt.qm share/locale/ug/LC_MESSAGES/kbookmarks5_qt.qm share/locale/uk/LC_MESSAGES/kbookmarks5_qt.qm share/locale/uz/LC_MESSAGES/kbookmarks5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kbookmarks5_qt.qm share/locale/vi/LC_MESSAGES/kbookmarks5_qt.qm share/locale/wa/LC_MESSAGES/kbookmarks5_qt.qm share/locale/xh/LC_MESSAGES/kbookmarks5_qt.qm share/locale/zh_CN/LC_MESSAGES/kbookmarks5_qt.qm share/locale/zh_TW/LC_MESSAGES/kbookmarks5_qt.qm share/qlogging-categories5/kbookmarks.categories share/qlogging-categories5/kbookmarks.renamecategories diff --git a/devel/kf5-kcmutils/distinfo b/devel/kf5-kcmutils/distinfo index ea1a8997f1ac..945ec3efb2df 100644 --- a/devel/kf5-kcmutils/distinfo +++ b/devel/kf5-kcmutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689097 -SHA256 (KDE/frameworks/5.99.0/kcmutils-5.99.0.tar.xz) = 757bcd8ea8ca1882612fdb4d4537e1932cfd23150f59931910e70b253bfa4ad2 -SIZE (KDE/frameworks/5.99.0/kcmutils-5.99.0.tar.xz) = 189404 +TIMESTAMP = 1667804632 +SHA256 (KDE/frameworks/5.100.0/kcmutils-5.100.0.tar.xz) = bc7ac9f61c4b78a8465b09310fb793d9fe06180d9c93fae63dd6dbadc745d74f +SIZE (KDE/frameworks/5.100.0/kcmutils-5.100.0.tar.xz) = 2510700 diff --git a/devel/kf5-kconfig/Makefile b/devel/kf5-kconfig/Makefile index 333f3a1bd1b3..b9d69e6360bb 100644 --- a/devel/kf5-kconfig/Makefile +++ b/devel/kf5-kconfig/Makefile @@ -1,17 +1,17 @@ PORTNAME= kconfig -DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +DISTVERSION= 5.100.1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widgets for configuration dialogs # Sources say LGPL20+, KDE policy says LGPL21+, license file is LGPL21 LICENSE= LGPL21+ USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz CPE_VENDOR= kde USE_KDE= ecm:build USE_QT= core dbus declarative gui linguisttools network xml \ buildtools:build qmake:build testlib:build .include diff --git a/devel/kf5-kconfig/distinfo b/devel/kf5-kconfig/distinfo index 4ebfc82058ea..962f2bbb1798 100644 --- a/devel/kf5-kconfig/distinfo +++ b/devel/kf5-kconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689098 -SHA256 (KDE/frameworks/5.99.0/kconfig-5.99.0.tar.xz) = 5dc7c3d22ff64579a234a9e7de22f2859158595cc4956db13608841ea0d258a6 -SIZE (KDE/frameworks/5.99.0/kconfig-5.99.0.tar.xz) = 283976 +TIMESTAMP = 1669099422 +SHA256 (KDE/frameworks/5.100.0/kconfig-5.100.1.tar.xz) = 8bbb7951d74e8e289f7b0599887ef328b2726fdbdaae18effda2c9d7f18a82da +SIZE (KDE/frameworks/5.100.0/kconfig-5.100.1.tar.xz) = 290540 diff --git a/devel/kf5-kconfig/pkg-plist b/devel/kf5-kconfig/pkg-plist index f0ef2b322a14..ff9188372f22 100644 --- a/devel/kf5-kconfig/pkg-plist +++ b/devel/kf5-kconfig/pkg-plist @@ -1,156 +1,158 @@ bin/kreadconfig5 bin/kwriteconfig5 include/KF5/KConfig/kconfig_version.h include/KF5/KConfigCore/ConversionCheck include/KF5/KConfigCore/KAuthorized include/KF5/KConfigCore/KConfig include/KF5/KConfigCore/KConfigBase include/KF5/KConfigCore/KConfigGroup include/KF5/KConfigCore/KConfigWatcher include/KF5/KConfigCore/KCoreConfigSkeleton include/KF5/KConfigCore/KDesktopFile include/KF5/KConfigCore/KEMailSettings include/KF5/KConfigCore/KSharedConfig include/KF5/KConfigCore/conversioncheck.h include/KF5/KConfigCore/kauthorized.h include/KF5/KConfigCore/kconfig.h include/KF5/KConfigCore/kconfigbase.h include/KF5/KConfigCore/kconfigcore_export.h include/KF5/KConfigCore/kconfiggroup.h include/KF5/KConfigCore/kconfigwatcher.h include/KF5/KConfigCore/kcoreconfigskeleton.h include/KF5/KConfigCore/kdesktopfile.h include/KF5/KConfigCore/kemailsettings.h include/KF5/KConfigCore/ksharedconfig.h include/KF5/KConfigGui/KConfigGui include/KF5/KConfigGui/KConfigLoader include/KF5/KConfigGui/KConfigSkeleton include/KF5/KConfigGui/KStandardShortcut include/KF5/KConfigGui/KStandardShortcutWatcher include/KF5/KConfigGui/KWindowConfig include/KF5/KConfigGui/KWindowStateSaver include/KF5/KConfigGui/kconfiggui.h include/KF5/KConfigGui/kconfiggui_export.h +include/KF5/KConfigGui/kconfigguistaticinitializer.cpp include/KF5/KConfigGui/kconfigloader.h include/KF5/KConfigGui/kconfigskeleton.h include/KF5/KConfigGui/kstandardshortcut.h include/KF5/KConfigGui/kstandardshortcutwatcher.h include/KF5/KConfigGui/kwindowconfig.h include/KF5/KConfigGui/kwindowstatesaver.h include/KF5/KConfigQml/KConfigPropertyMap include/KF5/KConfigQml/kconfigpropertymap.h include/KF5/KConfigQml/kconfigqml_export.h lib/cmake/KF5Config/KF5ConfigCompilerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Config/KF5ConfigCompilerTargets.cmake lib/cmake/KF5Config/KF5ConfigConfig.cmake lib/cmake/KF5Config/KF5ConfigConfigVersion.cmake lib/cmake/KF5Config/KF5ConfigMacros.cmake lib/cmake/KF5Config/KF5ConfigTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Config/KF5ConfigTargets.cmake lib/libKF5ConfigCore.so lib/libKF5ConfigCore.so.5 lib/libKF5ConfigCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5ConfigGui.so lib/libKF5ConfigGui.so.5 lib/libKF5ConfigGui.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5ConfigQml.so lib/libKF5ConfigQml.so.5 lib/libKF5ConfigQml.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/kconf_update lib/libexec/kf5/kconfig_compiler_kf5 %%QT_MKSPECDIR%%/modules/qt_KConfigCore.pri %%QT_MKSPECDIR%%/modules/qt_KConfigGui.pri -share/locale/kab/LC_MESSAGES/kconfig5_qt.qm share/locale/af/LC_MESSAGES/kconfig5_qt.qm share/locale/ar/LC_MESSAGES/kconfig5_qt.qm share/locale/az/LC_MESSAGES/kconfig5_qt.qm share/locale/be/LC_MESSAGES/kconfig5_qt.qm share/locale/be@latin/LC_MESSAGES/kconfig5_qt.qm share/locale/bg/LC_MESSAGES/kconfig5_qt.qm share/locale/bn/LC_MESSAGES/kconfig5_qt.qm share/locale/bn_IN/LC_MESSAGES/kconfig5_qt.qm share/locale/br/LC_MESSAGES/kconfig5_qt.qm share/locale/bs/LC_MESSAGES/kconfig5_qt.qm share/locale/ca/LC_MESSAGES/kconfig5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kconfig5_qt.qm share/locale/cs/LC_MESSAGES/kconfig5_qt.qm share/locale/csb/LC_MESSAGES/kconfig5_qt.qm share/locale/cy/LC_MESSAGES/kconfig5_qt.qm share/locale/da/LC_MESSAGES/kconfig5_qt.qm share/locale/de/LC_MESSAGES/kconfig5_qt.qm share/locale/el/LC_MESSAGES/kconfig5_qt.qm share/locale/en_GB/LC_MESSAGES/kconfig5_qt.qm share/locale/eo/LC_MESSAGES/kconfig5_qt.qm share/locale/es/LC_MESSAGES/kconfig5_qt.qm share/locale/et/LC_MESSAGES/kconfig5_qt.qm share/locale/eu/LC_MESSAGES/kconfig5_qt.qm share/locale/fa/LC_MESSAGES/kconfig5_qt.qm share/locale/fi/LC_MESSAGES/kconfig5_qt.qm share/locale/fr/LC_MESSAGES/kconfig5_qt.qm share/locale/fy/LC_MESSAGES/kconfig5_qt.qm share/locale/ga/LC_MESSAGES/kconfig5_qt.qm share/locale/gd/LC_MESSAGES/kconfig5_qt.qm share/locale/gl/LC_MESSAGES/kconfig5_qt.qm share/locale/gu/LC_MESSAGES/kconfig5_qt.qm share/locale/he/LC_MESSAGES/kconfig5_qt.qm share/locale/hi/LC_MESSAGES/kconfig5_qt.qm share/locale/hne/LC_MESSAGES/kconfig5_qt.qm share/locale/hr/LC_MESSAGES/kconfig5_qt.qm share/locale/hsb/LC_MESSAGES/kconfig5_qt.qm share/locale/hu/LC_MESSAGES/kconfig5_qt.qm share/locale/ia/LC_MESSAGES/kconfig5_qt.qm share/locale/id/LC_MESSAGES/kconfig5_qt.qm share/locale/is/LC_MESSAGES/kconfig5_qt.qm share/locale/it/LC_MESSAGES/kconfig5_qt.qm share/locale/ja/LC_MESSAGES/kconfig5_qt.qm +share/locale/ka/LC_MESSAGES/kconfig5_qt.qm +share/locale/kab/LC_MESSAGES/kconfig5_qt.qm share/locale/kk/LC_MESSAGES/kconfig5_qt.qm share/locale/km/LC_MESSAGES/kconfig5_qt.qm share/locale/kn/LC_MESSAGES/kconfig5_qt.qm share/locale/ko/LC_MESSAGES/kconfig5_qt.qm share/locale/ku/LC_MESSAGES/kconfig5_qt.qm share/locale/lb/LC_MESSAGES/kconfig5_qt.qm share/locale/lt/LC_MESSAGES/kconfig5_qt.qm share/locale/lv/LC_MESSAGES/kconfig5_qt.qm share/locale/mai/LC_MESSAGES/kconfig5_qt.qm share/locale/mk/LC_MESSAGES/kconfig5_qt.qm share/locale/ml/LC_MESSAGES/kconfig5_qt.qm share/locale/mr/LC_MESSAGES/kconfig5_qt.qm share/locale/ms/LC_MESSAGES/kconfig5_qt.qm share/locale/nb/LC_MESSAGES/kconfig5_qt.qm share/locale/nds/LC_MESSAGES/kconfig5_qt.qm share/locale/ne/LC_MESSAGES/kconfig5_qt.qm share/locale/nl/LC_MESSAGES/kconfig5_qt.qm share/locale/nn/LC_MESSAGES/kconfig5_qt.qm share/locale/or/LC_MESSAGES/kconfig5_qt.qm share/locale/pa/LC_MESSAGES/kconfig5_qt.qm share/locale/pl/LC_MESSAGES/kconfig5_qt.qm share/locale/pt/LC_MESSAGES/kconfig5_qt.qm share/locale/pt_BR/LC_MESSAGES/kconfig5_qt.qm share/locale/ro/LC_MESSAGES/kconfig5_qt.qm share/locale/ru/LC_MESSAGES/kconfig5_qt.qm share/locale/se/LC_MESSAGES/kconfig5_qt.qm share/locale/si/LC_MESSAGES/kconfig5_qt.qm share/locale/sk/LC_MESSAGES/kconfig5_qt.qm share/locale/sl/LC_MESSAGES/kconfig5_qt.qm share/locale/sq/LC_MESSAGES/kconfig5_qt.qm share/locale/sr/LC_MESSAGES/kconfig5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kconfig5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kconfig5_qt.qm share/locale/sr@latin/LC_MESSAGES/kconfig5_qt.qm share/locale/sv/LC_MESSAGES/kconfig5_qt.qm share/locale/ta/LC_MESSAGES/kconfig5_qt.qm share/locale/te/LC_MESSAGES/kconfig5_qt.qm share/locale/tg/LC_MESSAGES/kconfig5_qt.qm share/locale/th/LC_MESSAGES/kconfig5_qt.qm share/locale/tr/LC_MESSAGES/kconfig5_qt.qm share/locale/ug/LC_MESSAGES/kconfig5_qt.qm share/locale/uk/LC_MESSAGES/kconfig5_qt.qm share/locale/uz/LC_MESSAGES/kconfig5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kconfig5_qt.qm share/locale/vi/LC_MESSAGES/kconfig5_qt.qm share/locale/wa/LC_MESSAGES/kconfig5_qt.qm share/locale/xh/LC_MESSAGES/kconfig5_qt.qm share/locale/zh_CN/LC_MESSAGES/kconfig5_qt.qm share/locale/zh_TW/LC_MESSAGES/kconfig5_qt.qm share/qlogging-categories5/kconfig.categories share/qlogging-categories5/kconfig.renamecategories diff --git a/devel/kf5-kcoreaddons/distinfo b/devel/kf5-kcoreaddons/distinfo index 31f7b9b47edf..305e88d984db 100644 --- a/devel/kf5-kcoreaddons/distinfo +++ b/devel/kf5-kcoreaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689099 -SHA256 (KDE/frameworks/5.99.0/kcoreaddons-5.99.0.tar.xz) = 5a76a33d3971b1d748db13faf76ab7a863310dccb374ebff69f24ef9c7f4131b -SIZE (KDE/frameworks/5.99.0/kcoreaddons-5.99.0.tar.xz) = 469308 +TIMESTAMP = 1667804634 +SHA256 (KDE/frameworks/5.100.0/kcoreaddons-5.100.0.tar.xz) = dfed68386f919bd214f07837a2a5356e61958237d845115b632e35349e5c1790 +SIZE (KDE/frameworks/5.100.0/kcoreaddons-5.100.0.tar.xz) = 2633608 diff --git a/devel/kf5-kcoreaddons/pkg-plist b/devel/kf5-kcoreaddons/pkg-plist index de5e11f728c7..91297206afba 100644 --- a/devel/kf5-kcoreaddons/pkg-plist +++ b/devel/kf5-kcoreaddons/pkg-plist @@ -1,284 +1,215 @@ bin/desktoptojson include/KF5/KCoreAddons/KAboutData include/KF5/KCoreAddons/KAutoSaveFile include/KF5/KCoreAddons/KBackup include/KF5/KCoreAddons/KCompositeJob include/KF5/KCoreAddons/KCoreAddons include/KF5/KCoreAddons/KDirWatch include/KF5/KCoreAddons/KExportPlugin include/KF5/KCoreAddons/KFileSystemType include/KF5/KCoreAddons/KFileUtils include/KF5/KCoreAddons/KFormat include/KF5/KCoreAddons/KFuzzyMatcher include/KF5/KCoreAddons/KJob include/KF5/KCoreAddons/KJobTrackerInterface include/KF5/KCoreAddons/KJobUiDelegate include/KF5/KCoreAddons/KJsonUtils include/KF5/KCoreAddons/KLibexec include/KF5/KCoreAddons/KListOpenFilesJob include/KF5/KCoreAddons/KMacroExpander include/KF5/KCoreAddons/KMemoryInfo include/KF5/KCoreAddons/KMessage include/KF5/KCoreAddons/KNetworkMounts include/KF5/KCoreAddons/KOSRelease include/KF5/KCoreAddons/KPluginFactory include/KF5/KCoreAddons/KPluginLoader include/KF5/KCoreAddons/KPluginMetaData include/KF5/KCoreAddons/KProcess include/KF5/KCoreAddons/KProcessList include/KF5/KCoreAddons/KRandom include/KF5/KCoreAddons/KRandomSequence include/KF5/KCoreAddons/KRuntimePlatform include/KF5/KCoreAddons/KSandbox include/KF5/KCoreAddons/KSharedDataCache include/KF5/KCoreAddons/KShell include/KF5/KCoreAddons/KSignalHandler include/KF5/KCoreAddons/KStaticPluginHelpers include/KF5/KCoreAddons/KStringHandler include/KF5/KCoreAddons/KTextToHTML include/KF5/KCoreAddons/KTextToHTMLEmoticonsInterface include/KF5/KCoreAddons/KUrlMimeData include/KF5/KCoreAddons/KUser include/KF5/KCoreAddons/Kdelibs4ConfigMigrator include/KF5/KCoreAddons/Kdelibs4Migration include/KF5/KCoreAddons/kaboutdata.h include/KF5/KCoreAddons/kautosavefile.h include/KF5/KCoreAddons/kbackup.h include/KF5/KCoreAddons/kcompositejob.h include/KF5/KCoreAddons/kcoreaddons.h include/KF5/KCoreAddons/kcoreaddons_export.h include/KF5/KCoreAddons/kcoreaddons_version.h include/KF5/KCoreAddons/kdelibs4configmigrator.h include/KF5/KCoreAddons/kdelibs4migration.h include/KF5/KCoreAddons/kdirwatch.h include/KF5/KCoreAddons/kexportplugin.h include/KF5/KCoreAddons/kfilesystemtype.h include/KF5/KCoreAddons/kfileutils.h include/KF5/KCoreAddons/kformat.h include/KF5/KCoreAddons/kfuzzymatcher.h include/KF5/KCoreAddons/kjob.h include/KF5/KCoreAddons/kjobtrackerinterface.h include/KF5/KCoreAddons/kjobuidelegate.h include/KF5/KCoreAddons/kjsonutils.h include/KF5/KCoreAddons/klibexec.h include/KF5/KCoreAddons/klistopenfilesjob.h include/KF5/KCoreAddons/kmacroexpander.h include/KF5/KCoreAddons/kmemoryinfo.h include/KF5/KCoreAddons/kmessage.h include/KF5/KCoreAddons/knetworkmounts.h include/KF5/KCoreAddons/kosrelease.h include/KF5/KCoreAddons/kpluginfactory.h include/KF5/KCoreAddons/kpluginloader.h include/KF5/KCoreAddons/kpluginmetadata.h include/KF5/KCoreAddons/kprocess.h include/KF5/KCoreAddons/kprocesslist.h include/KF5/KCoreAddons/krandom.h include/KF5/KCoreAddons/krandomsequence.h include/KF5/KCoreAddons/kruntimeplatform.h include/KF5/KCoreAddons/ksandbox.h include/KF5/KCoreAddons/kshareddatacache.h include/KF5/KCoreAddons/kshell.h include/KF5/KCoreAddons/ksignalhandler.h include/KF5/KCoreAddons/kstaticpluginhelpers.h include/KF5/KCoreAddons/kstringhandler.h include/KF5/KCoreAddons/ktexttohtml.h include/KF5/KCoreAddons/ktexttohtmlemoticonsinterface.h include/KF5/KCoreAddons/kurlmimedata.h include/KF5/KCoreAddons/kuser.h lib/cmake/KF5CoreAddons/KF5CoreAddonsConfig.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsConfigVersion.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsMacros.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsTargets.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsToolingTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CoreAddons/KF5CoreAddonsToolingTargets.cmake lib/libKF5CoreAddons.so lib/libKF5CoreAddons.so.5 lib/libKF5CoreAddons.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KCoreAddons.pri share/kf5/licenses/ARTISTIC share/kf5/licenses/BSD share/kf5/licenses/GPL_V2 share/kf5/licenses/GPL_V3 share/kf5/licenses/LGPL_V2 share/kf5/licenses/LGPL_V21 share/kf5/licenses/LGPL_V3 share/kf5/licenses/QPL_V1.0 share/locale/af/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ar/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ar/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/as/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ast/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/az/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/az/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/be/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/be/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/be@latin/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/be@latin/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/bg/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/bg/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/bn/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/bn_IN/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/br/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/bs/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/bs/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ca/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ca/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ca@valencia/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ca@valencia/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/crh/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/cs/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/cs/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/csb/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/cy/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/cy/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/da/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/da/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/de/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/de/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/el/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/el/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/en/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/en_GB/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/en_GB/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/eo/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/eo/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/es/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/es/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/et/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/et/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/eu/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/eu/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/fa/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/fi/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/fi/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/fr/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/fr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/fy/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ga/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ga/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/gd/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/gd/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/gl/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/gl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/gu/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ha/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/he/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hi/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/hi/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/hne/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hr/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/hr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/hsb/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/hu/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/hu/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/hy/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ia/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ia/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/id/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/id/LC_MESSAGES/kde5_xml_mimetypes.qm +share/locale/ie/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/is/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/is/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/it/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/it/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ja/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ja/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ka/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ka/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/kab/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/kk/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/kk/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/km/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/km/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/kn/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ko/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ko/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ku/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/lb/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/lt/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/lt/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/lv/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/lv/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/mai/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/mk/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ml/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ml/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/mr/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/mr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ms/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ms/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/my/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/my/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/nb/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/nb/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/nds/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/nds/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ne/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/nl/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/nl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/nn/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/nn/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/oc/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/or/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pa/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/pa/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/pl/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/pl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ps/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/pt/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/pt/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/pt_BR/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/pt_BR/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ro/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ro/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ru/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ru/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/se/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/se/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/si/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/sk/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sk/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sl/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sl/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sq/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sq/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr@ijekavian/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sr@ijekavian/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sr@ijekavianlatin/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sr@latin/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sr@latin/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/sv/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/sv/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/ta/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ta/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/te/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/tg/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/tg/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/th/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/th/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/tok/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/tok/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/tr/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/tr/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/tt/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/ug/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/ug/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/uk/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/uk/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/uz/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/vi/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/vi/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/wa/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/xh/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/zh_CN/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/zh_CN/LC_MESSAGES/kde5_xml_mimetypes.qm share/locale/zh_HK/LC_MESSAGES/kcoreaddons5_qt.qm share/locale/zh_TW/LC_MESSAGES/kcoreaddons5_qt.qm -share/locale/zh_TW/LC_MESSAGES/kde5_xml_mimetypes.qm share/mime/packages/kde5.xml share/qlogging-categories5/kcoreaddons.categories share/qlogging-categories5/kcoreaddons.renamecategories diff --git a/devel/kf5-kcrash/distinfo b/devel/kf5-kcrash/distinfo index 8d138edb522b..4ddf80871b30 100644 --- a/devel/kf5-kcrash/distinfo +++ b/devel/kf5-kcrash/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689100 -SHA256 (KDE/frameworks/5.99.0/kcrash-5.99.0.tar.xz) = e896c42626252e5e0ddb63c469337a7208bc89700c158783cf82df081b67c3f2 -SIZE (KDE/frameworks/5.99.0/kcrash-5.99.0.tar.xz) = 28384 +TIMESTAMP = 1667804635 +SHA256 (KDE/frameworks/5.100.0/kcrash-5.100.0.tar.xz) = 1a76e9ddb2be3980b38ec0d6d29102b635a925d6a8bce938a5cf1a46d812a728 +SIZE (KDE/frameworks/5.100.0/kcrash-5.100.0.tar.xz) = 28392 diff --git a/devel/kf5-kdbusaddons/distinfo b/devel/kf5-kdbusaddons/distinfo index d91f6e239ed9..4e974651f1eb 100644 --- a/devel/kf5-kdbusaddons/distinfo +++ b/devel/kf5-kdbusaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689101 -SHA256 (KDE/frameworks/5.99.0/kdbusaddons-5.99.0.tar.xz) = a0c7cced69719df4809a22791b4e3be27cc737fbc006c7d7f41be445dc4b32d9 -SIZE (KDE/frameworks/5.99.0/kdbusaddons-5.99.0.tar.xz) = 48440 +TIMESTAMP = 1667804636 +SHA256 (KDE/frameworks/5.100.0/kdbusaddons-5.100.0.tar.xz) = e0755137a3acd57e08b7cc257f60b50322ffe88e8933adfac84d156a920224b3 +SIZE (KDE/frameworks/5.100.0/kdbusaddons-5.100.0.tar.xz) = 48356 diff --git a/devel/kf5-kdeclarative/distinfo b/devel/kf5-kdeclarative/distinfo index 0f65b45e94cf..b56a28520c3c 100644 --- a/devel/kf5-kdeclarative/distinfo +++ b/devel/kf5-kdeclarative/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689103 -SHA256 (KDE/frameworks/5.99.0/kdeclarative-5.99.0.tar.xz) = 168acc11b96a0f47dc7458390d31bb46f5fdd7337488ab18a60bfc0368113aa4 -SIZE (KDE/frameworks/5.99.0/kdeclarative-5.99.0.tar.xz) = 208156 +TIMESTAMP = 1667804637 +SHA256 (KDE/frameworks/5.100.0/kdeclarative-5.100.0.tar.xz) = 7635cb72365b3f12d45f9126ad2e774835c664af8d02f66d3561c02bcbb84017 +SIZE (KDE/frameworks/5.100.0/kdeclarative-5.100.0.tar.xz) = 2519180 diff --git a/devel/kf5-kdoctools/distinfo b/devel/kf5-kdoctools/distinfo index 3d90706aaae8..91a5704c2edd 100644 --- a/devel/kf5-kdoctools/distinfo +++ b/devel/kf5-kdoctools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689104 -SHA256 (KDE/frameworks/5.99.0/kdoctools-5.99.0.tar.xz) = c695efa912f4526d1aaf68f422014a830a22ac10a1d1ebd66a2c10a3e3a4e3a6 -SIZE (KDE/frameworks/5.99.0/kdoctools-5.99.0.tar.xz) = 440896 +TIMESTAMP = 1667804638 +SHA256 (KDE/frameworks/5.100.0/kdoctools-5.100.0.tar.xz) = 40e9c9efb1374b7c2fd74ab5137fa14fa557fa4db4033483e3fae3a30da7272b +SIZE (KDE/frameworks/5.100.0/kdoctools-5.100.0.tar.xz) = 462844 diff --git a/devel/kf5-kdoctools/pkg-plist b/devel/kf5-kdoctools/pkg-plist index 792ae4f22066..1deba605e25c 100644 --- a/devel/kf5-kdoctools/pkg-plist +++ b/devel/kf5-kdoctools/pkg-plist @@ -1,1165 +1,1164 @@ bin/checkXML5 bin/meinproc5 include/KF5/KDocTools/docbookxslt.h include/KF5/KDocTools/kdoctools_export.h lib/cmake/KF5DocTools/KF5DocToolsConfig.cmake lib/cmake/KF5DocTools/KF5DocToolsConfigVersion.cmake lib/cmake/KF5DocTools/KF5DocToolsMacros.cmake lib/cmake/KF5DocTools/KF5DocToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DocTools/KF5DocToolsTargets.cmake lib/cmake/KF5DocTools/KF5DocToolsToolsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DocTools/KF5DocToolsToolsTargets.cmake lib/libKF5DocTools.so lib/libKF5DocTools.so.5 lib/libKF5DocTools.so.%%KDE_FRAMEWORKS_VERSION%% man/ca/man1/checkXML5.1.gz man/ca/man1/meinproc5.1.gz man/ca/man7/kf5options.7.gz man/ca/man7/qt5options.7.gz man/ca@valencia/man1/checkXML5.1.gz man/ca@valencia/man1/meinproc5.1.gz man/ca@valencia/man7/kf5options.7.gz man/ca@valencia/man7/qt5options.7.gz man/de/man1/checkXML5.1.gz man/de/man1/meinproc5.1.gz man/de/man7/kf5options.7.gz man/de/man7/qt5options.7.gz man/es/man1/checkXML5.1.gz man/es/man1/meinproc5.1.gz man/es/man7/kf5options.7.gz man/es/man7/qt5options.7.gz man/id/man1/checkXML5.1.gz man/it/man1/checkXML5.1.gz man/it/man1/meinproc5.1.gz man/it/man7/kf5options.7.gz man/it/man7/qt5options.7.gz man/man1/checkXML5.1.gz man/man1/meinproc5.1.gz man/man7/kf5options.7.gz man/man7/qt5options.7.gz man/nl/man1/checkXML5.1.gz man/nl/man1/meinproc5.1.gz man/nl/man7/kf5options.7.gz man/nl/man7/qt5options.7.gz man/pt/man1/checkXML5.1.gz man/pt/man1/meinproc5.1.gz man/pt/man7/kf5options.7.gz man/pt/man7/qt5options.7.gz man/pt_BR/man1/checkXML5.1.gz man/pt_BR/man1/meinproc5.1.gz man/pt_BR/man7/kf5options.7.gz man/pt_BR/man7/qt5options.7.gz man/ru/man1/checkXML5.1.gz man/ru/man7/qt5options.7.gz man/sv/man1/checkXML5.1.gz man/sv/man1/meinproc5.1.gz man/sv/man7/kf5options.7.gz man/sv/man7/qt5options.7.gz man/uk/man1/checkXML5.1.gz man/uk/man1/meinproc5.1.gz man/uk/man7/kf5options.7.gz man/uk/man7/qt5options.7.gz share/doc/HTML/af/kdoctools5-common/kde-localised.css share/doc/HTML/ca/kdoctools5-common/kde-localised.css share/doc/HTML/cs/kdoctools5-common/kde-localised.css share/doc/HTML/da/kdoctools5-common/kde-localised.css share/doc/HTML/de/kdoctools5-common/fdl-translated.html share/doc/HTML/de/kdoctools5-common/gpl-translated.html share/doc/HTML/de/kdoctools5-common/kde-localised.css share/doc/HTML/de/kdoctools5-common/lgpl-translated.html share/doc/HTML/el/kdoctools5-common/kde-localised.css share/doc/HTML/en/kdoctools5-common/artistic-license.html share/doc/HTML/en/kdoctools5-common/block_title_bottom.png share/doc/HTML/en/kdoctools5-common/block_title_mid.png share/doc/HTML/en/kdoctools5-common/block_title_top.png share/doc/HTML/en/kdoctools5-common/bsd-license.html share/doc/HTML/en/kdoctools5-common/ccbysa4-license.html share/doc/HTML/en/kdoctools5-common/fdl-license.html share/doc/HTML/en/kdoctools5-common/fdl-notice.html share/doc/HTML/en/kdoctools5-common/fdl-translated.html share/doc/HTML/en/kdoctools5-common/gpl-license.html share/doc/HTML/en/kdoctools5-common/gpl-translated.html share/doc/HTML/en/kdoctools5-common/kde-default.css share/doc/HTML/en/kdoctools5-common/kde-docs.css share/doc/HTML/en/kdoctools5-common/kde_logo.png share/doc/HTML/en/kdoctools5-common/kde_logo_bg.png share/doc/HTML/en/kdoctools5-common/kmenu.png share/doc/HTML/en/kdoctools5-common/lgpl-license.html share/doc/HTML/en/kdoctools5-common/lgpl-translated.html share/doc/HTML/en/kdoctools5-common/part_of_the_kde_family_horizontal_190.png share/doc/HTML/en/kdoctools5-common/qpl-license.html share/doc/HTML/en/kdoctools5-common/top-kde.jpg share/doc/HTML/en/kdoctools5-common/top-left.jpg share/doc/HTML/en/kdoctools5-common/top-right.jpg share/doc/HTML/en/kdoctools5-common/top.jpg share/doc/HTML/en/kdoctools5-common/x11-license.html share/doc/HTML/en/kdoctools5-common/xml.dcl share/doc/HTML/eo/kdoctools5-common/kde-localised.css share/doc/HTML/es/kdoctools5-common/kde-localised.css share/doc/HTML/et/kdoctools5-common/kde-localised.css share/doc/HTML/fr/kdoctools5-common/gpl-translated.html share/doc/HTML/fr/kdoctools5-common/kde-localised.css share/doc/HTML/gl/kdoctools5-common/kde-localised.css share/doc/HTML/he/kdoctools5-common/kde-localised.css share/doc/HTML/hu/kdoctools5-common/fdl-translated.html share/doc/HTML/hu/kdoctools5-common/gpl-translated.html share/doc/HTML/hu/kdoctools5-common/kde-localised.css share/doc/HTML/hu/kdoctools5-common/lgpl-translated.html share/doc/HTML/it/kdoctools5-common/gpl-translated.html share/doc/HTML/it/kdoctools5-common/kde-localised.css share/doc/HTML/ja/kdoctools5-common/kde-localised.css share/doc/HTML/ko/kdoctools5-common/fdl-translated.html share/doc/HTML/ko/kdoctools5-common/gpl-translated.html share/doc/HTML/ko/kdoctools5-common/kde-localised.css share/doc/HTML/ko/kdoctools5-common/lgpl-translated.html share/doc/HTML/lt/kdoctools5-common/kde-localised.css share/doc/HTML/nds/kdoctools5-common/kde-localised.css share/doc/HTML/nl/kdoctools5-common/fdl-translated.html share/doc/HTML/nl/kdoctools5-common/gpl-translated.html share/doc/HTML/nl/kdoctools5-common/kde-localised.css share/doc/HTML/nl/kdoctools5-common/lgpl-translated.html share/doc/HTML/nn/kdoctools5-common/kde-localised.css share/doc/HTML/pl/kdoctools5-common/gpl-translated.html share/doc/HTML/pl/kdoctools5-common/kde-localised.css share/doc/HTML/pt/kdoctools5-common/kde-localised.css share/doc/HTML/ro/kdoctools5-common/kde-localised.css share/doc/HTML/ru/kdoctools5-common/kde-localised.css share/doc/HTML/sl/kdoctools5-common/gpl-translated.html share/doc/HTML/sl/kdoctools5-common/kde-localised.css share/doc/HTML/sl/kdoctools5-common/lgpl-translated.html share/doc/HTML/sr/kdoctools5-common/kde-localised.css share/doc/HTML/sv/kdoctools5-common/kde-localised.css share/doc/HTML/tr/kdoctools5-common/gpl-translated.html share/doc/HTML/tr/kdoctools5-common/kde-localised.css share/doc/HTML/uk/kdoctools5-common/fdl-translated.html share/doc/HTML/uk/kdoctools5-common/gpl-translated.html share/doc/HTML/uk/kdoctools5-common/kde-localised.css share/doc/HTML/uk/kdoctools5-common/lgpl-translated.html share/doc/HTML/wa/kdoctools5-common/kde-localised.css share/doc/HTML/xh/kdoctools5-common/kde-localised.css share/kf5/kdoctools/customization/README share/kf5/kdoctools/customization/af/catalog.xml share/kf5/kdoctools/customization/af/entities/fdl-notice.docbook share/kf5/kdoctools/customization/af/entities/gpl-notice.docbook share/kf5/kdoctools/customization/af/entities/help-menu.docbook share/kf5/kdoctools/customization/af/entities/install-compile.docbook share/kf5/kdoctools/customization/af/entities/install-intro.docbook share/kf5/kdoctools/customization/af/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/af/entities/report-bugs.docbook share/kf5/kdoctools/customization/af/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/af/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/af/entities/underFDL.docbook share/kf5/kdoctools/customization/af/entities/underGPL.docbook share/kf5/kdoctools/customization/af/entities/underX11License.docbook share/kf5/kdoctools/customization/af/entities/update-doc.docbook share/kf5/kdoctools/customization/af/lang.entities share/kf5/kdoctools/customization/af/strings.entities share/kf5/kdoctools/customization/af/user.entities share/kf5/kdoctools/customization/bg/catalog.xml share/kf5/kdoctools/customization/bg/contributor.entities share/kf5/kdoctools/customization/bg/entities/fdl-notice.docbook share/kf5/kdoctools/customization/bg/entities/gpl-notice.docbook share/kf5/kdoctools/customization/bg/entities/help-menu.docbook share/kf5/kdoctools/customization/bg/entities/install-compile.docbook share/kf5/kdoctools/customization/bg/entities/install-intro.docbook share/kf5/kdoctools/customization/bg/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/bg/entities/report-bugs.docbook share/kf5/kdoctools/customization/bg/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/bg/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/bg/entities/underFDL.docbook share/kf5/kdoctools/customization/bg/entities/underGPL.docbook share/kf5/kdoctools/customization/bg/entities/underX11License.docbook share/kf5/kdoctools/customization/bg/entities/update-doc.docbook share/kf5/kdoctools/customization/bg/lang.entities share/kf5/kdoctools/customization/bg/strings.entities share/kf5/kdoctools/customization/bg/user.entities share/kf5/kdoctools/customization/ca/catalog.xml share/kf5/kdoctools/customization/ca/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ca/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ca/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ca/entities/help-menu.docbook share/kf5/kdoctools/customization/ca/entities/install-compile.docbook share/kf5/kdoctools/customization/ca/entities/install-intro.docbook share/kf5/kdoctools/customization/ca/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ca/entities/report-bugs.docbook share/kf5/kdoctools/customization/ca/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ca/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ca/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ca/entities/underFDL.docbook share/kf5/kdoctools/customization/ca/entities/underGPL.docbook share/kf5/kdoctools/customization/ca/entities/underLGPL.docbook share/kf5/kdoctools/customization/ca/entities/underX11License.docbook share/kf5/kdoctools/customization/ca/entities/update-doc.docbook share/kf5/kdoctools/customization/ca/lang.entities share/kf5/kdoctools/customization/ca/strings.entities share/kf5/kdoctools/customization/ca/user.entities share/kf5/kdoctools/customization/ca@valencia/catalog.xml share/kf5/kdoctools/customization/ca@valencia/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/help-menu.docbook share/kf5/kdoctools/customization/ca@valencia/entities/install-compile.docbook share/kf5/kdoctools/customization/ca@valencia/entities/install-intro.docbook share/kf5/kdoctools/customization/ca@valencia/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ca@valencia/entities/report-bugs.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underFDL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underGPL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underLGPL.docbook share/kf5/kdoctools/customization/ca@valencia/entities/underX11License.docbook share/kf5/kdoctools/customization/ca@valencia/entities/update-doc.docbook share/kf5/kdoctools/customization/ca@valencia/lang.entities share/kf5/kdoctools/customization/ca@valencia/strings.entities share/kf5/kdoctools/customization/ca@valencia/user.entities share/kf5/kdoctools/customization/catalog.xml share/kf5/kdoctools/customization/cs/catalog.xml share/kf5/kdoctools/customization/cs/entities/fdl-notice.docbook share/kf5/kdoctools/customization/cs/entities/gpl-notice.docbook share/kf5/kdoctools/customization/cs/entities/help-menu.docbook share/kf5/kdoctools/customization/cs/entities/install-compile.docbook share/kf5/kdoctools/customization/cs/entities/install-intro.docbook share/kf5/kdoctools/customization/cs/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/cs/entities/report-bugs.docbook share/kf5/kdoctools/customization/cs/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/cs/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/cs/entities/underFDL.docbook share/kf5/kdoctools/customization/cs/entities/underGPL.docbook share/kf5/kdoctools/customization/cs/entities/underX11License.docbook share/kf5/kdoctools/customization/cs/entities/update-doc.docbook share/kf5/kdoctools/customization/cs/lang.entities share/kf5/kdoctools/customization/cs/strings.entities share/kf5/kdoctools/customization/cs/user.entities share/kf5/kdoctools/customization/da/catalog.xml share/kf5/kdoctools/customization/da/entities/fdl-notice.docbook share/kf5/kdoctools/customization/da/entities/gpl-notice.docbook share/kf5/kdoctools/customization/da/entities/help-menu.docbook share/kf5/kdoctools/customization/da/entities/install-compile.docbook share/kf5/kdoctools/customization/da/entities/install-intro.docbook share/kf5/kdoctools/customization/da/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/da/entities/report-bugs.docbook share/kf5/kdoctools/customization/da/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/da/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/da/entities/underFDL.docbook share/kf5/kdoctools/customization/da/entities/underGPL.docbook share/kf5/kdoctools/customization/da/entities/underLGPL.docbook share/kf5/kdoctools/customization/da/entities/underX11License.docbook share/kf5/kdoctools/customization/da/entities/update-doc.docbook share/kf5/kdoctools/customization/da/lang.entities share/kf5/kdoctools/customization/da/strings.entities share/kf5/kdoctools/customization/da/user.entities share/kf5/kdoctools/customization/de/catalog.xml share/kf5/kdoctools/customization/de/entities/fdl-notice.docbook share/kf5/kdoctools/customization/de/entities/gpl-notice.docbook share/kf5/kdoctools/customization/de/entities/help-menu.docbook share/kf5/kdoctools/customization/de/entities/install-compile.docbook share/kf5/kdoctools/customization/de/entities/install-intro.docbook share/kf5/kdoctools/customization/de/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/de/entities/report-bugs.docbook share/kf5/kdoctools/customization/de/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/de/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/de/entities/underFDL.docbook share/kf5/kdoctools/customization/de/entities/underGPL.docbook share/kf5/kdoctools/customization/de/entities/underLGPL.docbook share/kf5/kdoctools/customization/de/entities/underX11License.docbook share/kf5/kdoctools/customization/de/entities/update-doc.docbook share/kf5/kdoctools/customization/de/lang.entities share/kf5/kdoctools/customization/de/strings.entities share/kf5/kdoctools/customization/de/user.entities share/kf5/kdoctools/customization/dtd/kdedbx45.dtd share/kf5/kdoctools/customization/dtd/modifications.elements share/kf5/kdoctools/customization/dtd/rdbhier2.elements share/kf5/kdoctools/customization/dtd/rdbpool.elements share/kf5/kdoctools/customization/el/catalog.xml share/kf5/kdoctools/customization/el/entities/fdl-notice.docbook share/kf5/kdoctools/customization/el/entities/gpl-notice.docbook share/kf5/kdoctools/customization/el/entities/help-menu.docbook share/kf5/kdoctools/customization/el/entities/install-compile.docbook share/kf5/kdoctools/customization/el/entities/install-intro.docbook share/kf5/kdoctools/customization/el/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/el/entities/report-bugs.docbook share/kf5/kdoctools/customization/el/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/el/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/el/entities/underFDL.docbook share/kf5/kdoctools/customization/el/entities/underGPL.docbook share/kf5/kdoctools/customization/el/entities/underX11License.docbook share/kf5/kdoctools/customization/el/entities/update-doc.docbook share/kf5/kdoctools/customization/el/lang.entities share/kf5/kdoctools/customization/el/strings.entities share/kf5/kdoctools/customization/el/user.entities share/kf5/kdoctools/customization/en-GB/catalog.xml share/kf5/kdoctools/customization/en-GB/entities/fdl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/gpl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/help-menu.docbook share/kf5/kdoctools/customization/en-GB/entities/install-compile.docbook share/kf5/kdoctools/customization/en-GB/entities/install-intro.docbook share/kf5/kdoctools/customization/en-GB/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/en-GB/entities/report-bugs.docbook share/kf5/kdoctools/customization/en-GB/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/en-GB/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/en-GB/entities/underFDL.docbook share/kf5/kdoctools/customization/en-GB/entities/underGPL.docbook share/kf5/kdoctools/customization/en-GB/entities/underX11License.docbook share/kf5/kdoctools/customization/en-GB/entities/update-doc.docbook share/kf5/kdoctools/customization/en-GB/lang.entities share/kf5/kdoctools/customization/en-GB/strings.entities share/kf5/kdoctools/customization/en-GB/user.entities share/kf5/kdoctools/customization/en/catalog.xml share/kf5/kdoctools/customization/en/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/en/entities/fdl-notice.docbook share/kf5/kdoctools/customization/en/entities/gpl-notice.docbook share/kf5/kdoctools/customization/en/entities/help-menu.docbook share/kf5/kdoctools/customization/en/entities/install-compile.docbook share/kf5/kdoctools/customization/en/entities/install-intro.docbook share/kf5/kdoctools/customization/en/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/en/entities/report-bugs.docbook share/kf5/kdoctools/customization/en/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/en/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/en/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/en/entities/underFDL.docbook share/kf5/kdoctools/customization/en/entities/underGPL.docbook share/kf5/kdoctools/customization/en/entities/underLGPL.docbook share/kf5/kdoctools/customization/en/entities/underX11License.docbook share/kf5/kdoctools/customization/en/entities/update-doc.docbook share/kf5/kdoctools/customization/en/lang.entities share/kf5/kdoctools/customization/en/strings.entities share/kf5/kdoctools/customization/en/user.entities share/kf5/kdoctools/customization/entities/contributor.entities share/kf5/kdoctools/customization/entities/general.entities share/kf5/kdoctools/customization/entities/l10n.entities share/kf5/kdoctools/customization/eo/catalog.xml share/kf5/kdoctools/customization/eo/entities/fdl-notice.docbook share/kf5/kdoctools/customization/eo/entities/gpl-notice.docbook share/kf5/kdoctools/customization/eo/entities/help-menu.docbook share/kf5/kdoctools/customization/eo/entities/install-compile.docbook share/kf5/kdoctools/customization/eo/entities/install-intro.docbook share/kf5/kdoctools/customization/eo/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/eo/entities/report-bugs.docbook share/kf5/kdoctools/customization/eo/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/eo/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/eo/entities/underFDL.docbook share/kf5/kdoctools/customization/eo/entities/underGPL.docbook share/kf5/kdoctools/customization/eo/entities/underX11License.docbook share/kf5/kdoctools/customization/eo/entities/update-doc.docbook share/kf5/kdoctools/customization/eo/lang.entities share/kf5/kdoctools/customization/eo/strings.entities share/kf5/kdoctools/customization/eo/user.entities share/kf5/kdoctools/customization/es/catalog.xml share/kf5/kdoctools/customization/es/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/es/entities/fdl-notice.docbook share/kf5/kdoctools/customization/es/entities/gpl-notice.docbook share/kf5/kdoctools/customization/es/entities/help-menu.docbook share/kf5/kdoctools/customization/es/entities/install-compile.docbook share/kf5/kdoctools/customization/es/entities/install-intro.docbook share/kf5/kdoctools/customization/es/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/es/entities/report-bugs.docbook share/kf5/kdoctools/customization/es/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/es/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/es/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/es/entities/underFDL.docbook share/kf5/kdoctools/customization/es/entities/underGPL.docbook share/kf5/kdoctools/customization/es/entities/underLGPL.docbook share/kf5/kdoctools/customization/es/entities/underX11License.docbook share/kf5/kdoctools/customization/es/entities/update-doc.docbook share/kf5/kdoctools/customization/es/lang.entities share/kf5/kdoctools/customization/es/strings.entities share/kf5/kdoctools/customization/es/user.entities share/kf5/kdoctools/customization/et/catalog.xml share/kf5/kdoctools/customization/et/entities/fdl-notice.docbook share/kf5/kdoctools/customization/et/entities/gpl-notice.docbook share/kf5/kdoctools/customization/et/entities/help-menu.docbook share/kf5/kdoctools/customization/et/entities/install-compile.docbook share/kf5/kdoctools/customization/et/entities/install-intro.docbook share/kf5/kdoctools/customization/et/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/et/entities/report-bugs.docbook share/kf5/kdoctools/customization/et/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/et/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/et/entities/underFDL.docbook share/kf5/kdoctools/customization/et/entities/underGPL.docbook share/kf5/kdoctools/customization/et/entities/underLGPL.docbook share/kf5/kdoctools/customization/et/entities/underX11License.docbook share/kf5/kdoctools/customization/et/entities/update-doc.docbook share/kf5/kdoctools/customization/et/lang.entities share/kf5/kdoctools/customization/et/strings.entities share/kf5/kdoctools/customization/et/user.entities share/kf5/kdoctools/customization/fi/catalog.xml share/kf5/kdoctools/customization/fi/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fi/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fi/entities/help-menu.docbook share/kf5/kdoctools/customization/fi/entities/install-compile.docbook share/kf5/kdoctools/customization/fi/entities/install-intro.docbook share/kf5/kdoctools/customization/fi/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fi/entities/report-bugs.docbook share/kf5/kdoctools/customization/fi/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fi/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fi/entities/underFDL.docbook share/kf5/kdoctools/customization/fi/entities/underGPL.docbook share/kf5/kdoctools/customization/fi/entities/underX11License.docbook share/kf5/kdoctools/customization/fi/entities/update-doc.docbook share/kf5/kdoctools/customization/fi/lang.entities share/kf5/kdoctools/customization/fi/strings.entities share/kf5/kdoctools/customization/fi/user.entities share/kf5/kdoctools/customization/fo/catalog.xml share/kf5/kdoctools/customization/fo/contributor.entities share/kf5/kdoctools/customization/fo/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fo/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fo/entities/help-menu.docbook share/kf5/kdoctools/customization/fo/entities/install-compile.docbook share/kf5/kdoctools/customization/fo/entities/install-intro.docbook share/kf5/kdoctools/customization/fo/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fo/entities/report-bugs.docbook share/kf5/kdoctools/customization/fo/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fo/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fo/entities/underFDL.docbook share/kf5/kdoctools/customization/fo/entities/underGPL.docbook share/kf5/kdoctools/customization/fo/entities/underX11License.docbook share/kf5/kdoctools/customization/fo/entities/update-doc.docbook share/kf5/kdoctools/customization/fo/lang.entities share/kf5/kdoctools/customization/fo/strings.entities share/kf5/kdoctools/customization/fo/user.entities share/kf5/kdoctools/customization/fr/catalog.xml share/kf5/kdoctools/customization/fr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/fr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/fr/entities/help-menu.docbook share/kf5/kdoctools/customization/fr/entities/install-compile.docbook share/kf5/kdoctools/customization/fr/entities/install-intro.docbook share/kf5/kdoctools/customization/fr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/fr/entities/report-bugs.docbook share/kf5/kdoctools/customization/fr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/fr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/fr/entities/underFDL.docbook share/kf5/kdoctools/customization/fr/entities/underGPL.docbook share/kf5/kdoctools/customization/fr/entities/underLGPL.docbook share/kf5/kdoctools/customization/fr/entities/underX11License.docbook share/kf5/kdoctools/customization/fr/entities/update-doc.docbook share/kf5/kdoctools/customization/fr/lang.entities share/kf5/kdoctools/customization/fr/strings.entities share/kf5/kdoctools/customization/fr/user.entities share/kf5/kdoctools/customization/gl/catalog.xml share/kf5/kdoctools/customization/gl/contributor.entities share/kf5/kdoctools/customization/gl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/gl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/gl/entities/help-menu.docbook share/kf5/kdoctools/customization/gl/entities/install-compile.docbook share/kf5/kdoctools/customization/gl/entities/install-intro.docbook share/kf5/kdoctools/customization/gl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/gl/entities/report-bugs.docbook share/kf5/kdoctools/customization/gl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/gl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/gl/entities/underFDL.docbook share/kf5/kdoctools/customization/gl/entities/underGPL.docbook share/kf5/kdoctools/customization/gl/entities/underLGPL.docbook share/kf5/kdoctools/customization/gl/entities/underX11License.docbook share/kf5/kdoctools/customization/gl/entities/update-doc.docbook share/kf5/kdoctools/customization/gl/lang.entities share/kf5/kdoctools/customization/gl/strings.entities share/kf5/kdoctools/customization/gl/user.entities share/kf5/kdoctools/customization/he/catalog.xml share/kf5/kdoctools/customization/he/entities/fdl-notice.docbook share/kf5/kdoctools/customization/he/entities/gpl-notice.docbook share/kf5/kdoctools/customization/he/entities/help-menu.docbook share/kf5/kdoctools/customization/he/entities/install-compile.docbook share/kf5/kdoctools/customization/he/entities/install-intro.docbook share/kf5/kdoctools/customization/he/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/he/entities/report-bugs.docbook share/kf5/kdoctools/customization/he/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/he/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/he/entities/underFDL.docbook share/kf5/kdoctools/customization/he/entities/underGPL.docbook share/kf5/kdoctools/customization/he/entities/underX11License.docbook share/kf5/kdoctools/customization/he/entities/update-doc.docbook share/kf5/kdoctools/customization/he/lang.entities share/kf5/kdoctools/customization/he/strings.entities share/kf5/kdoctools/customization/he/user.entities share/kf5/kdoctools/customization/hu/catalog.xml share/kf5/kdoctools/customization/hu/entities/fdl-notice.docbook share/kf5/kdoctools/customization/hu/entities/gpl-notice.docbook share/kf5/kdoctools/customization/hu/entities/help-menu.docbook share/kf5/kdoctools/customization/hu/entities/install-compile.docbook share/kf5/kdoctools/customization/hu/entities/install-intro.docbook share/kf5/kdoctools/customization/hu/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/hu/entities/report-bugs.docbook share/kf5/kdoctools/customization/hu/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/hu/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/hu/entities/underFDL.docbook share/kf5/kdoctools/customization/hu/entities/underGPL.docbook share/kf5/kdoctools/customization/hu/entities/underX11License.docbook share/kf5/kdoctools/customization/hu/entities/update-doc.docbook share/kf5/kdoctools/customization/hu/lang.entities share/kf5/kdoctools/customization/hu/strings.entities share/kf5/kdoctools/customization/hu/user.entities share/kf5/kdoctools/customization/id/catalog.xml share/kf5/kdoctools/customization/id/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/id/entities/fdl-notice.docbook share/kf5/kdoctools/customization/id/entities/gpl-notice.docbook share/kf5/kdoctools/customization/id/entities/help-menu.docbook share/kf5/kdoctools/customization/id/entities/install-compile.docbook share/kf5/kdoctools/customization/id/entities/install-intro.docbook share/kf5/kdoctools/customization/id/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/id/entities/report-bugs.docbook share/kf5/kdoctools/customization/id/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/id/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/id/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/id/entities/underFDL.docbook share/kf5/kdoctools/customization/id/entities/underGPL.docbook share/kf5/kdoctools/customization/id/entities/underLGPL.docbook share/kf5/kdoctools/customization/id/entities/underX11License.docbook share/kf5/kdoctools/customization/id/entities/update-doc.docbook share/kf5/kdoctools/customization/id/lang.entities share/kf5/kdoctools/customization/id/strings.entities share/kf5/kdoctools/customization/id/user.entities share/kf5/kdoctools/customization/it/catalog.xml share/kf5/kdoctools/customization/it/entities/fdl-notice.docbook share/kf5/kdoctools/customization/it/entities/gpl-notice.docbook share/kf5/kdoctools/customization/it/entities/help-menu.docbook share/kf5/kdoctools/customization/it/entities/install-compile.docbook share/kf5/kdoctools/customization/it/entities/install-intro.docbook share/kf5/kdoctools/customization/it/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/it/entities/report-bugs.docbook share/kf5/kdoctools/customization/it/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/it/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/it/entities/underFDL.docbook share/kf5/kdoctools/customization/it/entities/underGPL.docbook share/kf5/kdoctools/customization/it/entities/underLGPL.docbook share/kf5/kdoctools/customization/it/entities/underX11License.docbook share/kf5/kdoctools/customization/it/entities/update-doc.docbook share/kf5/kdoctools/customization/it/lang.entities share/kf5/kdoctools/customization/it/strings.entities share/kf5/kdoctools/customization/it/user.entities share/kf5/kdoctools/customization/ja/catalog.xml share/kf5/kdoctools/customization/ja/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ja/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ja/entities/help-menu.docbook share/kf5/kdoctools/customization/ja/entities/install-compile.docbook share/kf5/kdoctools/customization/ja/entities/install-intro.docbook share/kf5/kdoctools/customization/ja/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ja/entities/report-bugs.docbook share/kf5/kdoctools/customization/ja/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ja/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ja/entities/underFDL.docbook share/kf5/kdoctools/customization/ja/entities/underGPL.docbook share/kf5/kdoctools/customization/ja/entities/underX11License.docbook share/kf5/kdoctools/customization/ja/entities/update-doc.docbook share/kf5/kdoctools/customization/ja/lang.entities share/kf5/kdoctools/customization/ja/strings.entities share/kf5/kdoctools/customization/ja/user.entities share/kf5/kdoctools/customization/kde-chunk-common.xsl share/kf5/kdoctools/customization/kde-chunk-online.xsl share/kf5/kdoctools/customization/kde-chunk.xsl share/kf5/kdoctools/customization/kde-include-common.xsl share/kf5/kdoctools/customization/kde-include-man.xsl share/kf5/kdoctools/customization/kde-navig-online.xsl share/kf5/kdoctools/customization/kde-navig.xsl share/kf5/kdoctools/customization/kde-nochunk.xsl share/kf5/kdoctools/customization/kde-style.xsl share/kf5/kdoctools/customization/kde-ttlpg-online.xsl share/kf5/kdoctools/customization/kde-ttlpg.xsl share/kf5/kdoctools/customization/kde-web-navig.xsl share/kf5/kdoctools/customization/kde-web.xsl share/kf5/kdoctools/customization/ko/catalog.xml share/kf5/kdoctools/customization/ko/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ko/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ko/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ko/entities/help-menu.docbook share/kf5/kdoctools/customization/ko/entities/install-compile.docbook share/kf5/kdoctools/customization/ko/entities/install-intro.docbook share/kf5/kdoctools/customization/ko/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ko/entities/report-bugs.docbook share/kf5/kdoctools/customization/ko/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ko/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ko/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ko/entities/underFDL.docbook share/kf5/kdoctools/customization/ko/entities/underGPL.docbook share/kf5/kdoctools/customization/ko/entities/underLGPL.docbook share/kf5/kdoctools/customization/ko/entities/underX11License.docbook share/kf5/kdoctools/customization/ko/entities/update-doc.docbook share/kf5/kdoctools/customization/ko/lang.entities share/kf5/kdoctools/customization/ko/strings.entities share/kf5/kdoctools/customization/ko/user.entities share/kf5/kdoctools/customization/lt/catalog.xml share/kf5/kdoctools/customization/lt/contributor.entities share/kf5/kdoctools/customization/lt/entities/fdl-notice.docbook share/kf5/kdoctools/customization/lt/entities/gpl-notice.docbook share/kf5/kdoctools/customization/lt/entities/help-menu.docbook share/kf5/kdoctools/customization/lt/entities/install-compile.docbook share/kf5/kdoctools/customization/lt/entities/install-intro.docbook share/kf5/kdoctools/customization/lt/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/lt/entities/report-bugs.docbook share/kf5/kdoctools/customization/lt/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/lt/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/lt/entities/underFDL.docbook share/kf5/kdoctools/customization/lt/entities/underGPL.docbook share/kf5/kdoctools/customization/lt/entities/underLGPL.docbook share/kf5/kdoctools/customization/lt/entities/underX11License.docbook share/kf5/kdoctools/customization/lt/entities/update-doc.docbook share/kf5/kdoctools/customization/lt/lang.entities share/kf5/kdoctools/customization/lt/strings.entities share/kf5/kdoctools/customization/lt/user.entities share/kf5/kdoctools/customization/nds/catalog.xml share/kf5/kdoctools/customization/nds/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nds/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nds/entities/help-menu.docbook share/kf5/kdoctools/customization/nds/entities/install-compile.docbook share/kf5/kdoctools/customization/nds/entities/install-intro.docbook share/kf5/kdoctools/customization/nds/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nds/entities/report-bugs.docbook share/kf5/kdoctools/customization/nds/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nds/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nds/entities/underFDL.docbook share/kf5/kdoctools/customization/nds/entities/underGPL.docbook share/kf5/kdoctools/customization/nds/entities/underLGPL.docbook share/kf5/kdoctools/customization/nds/entities/underX11License.docbook share/kf5/kdoctools/customization/nds/entities/update-doc.docbook share/kf5/kdoctools/customization/nds/lang.entities share/kf5/kdoctools/customization/nds/strings.entities share/kf5/kdoctools/customization/nds/user.entities share/kf5/kdoctools/customization/nl/catalog.xml share/kf5/kdoctools/customization/nl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nl/entities/help-menu.docbook share/kf5/kdoctools/customization/nl/entities/install-compile.docbook share/kf5/kdoctools/customization/nl/entities/install-intro.docbook share/kf5/kdoctools/customization/nl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nl/entities/report-bugs.docbook share/kf5/kdoctools/customization/nl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nl/entities/underFDL.docbook share/kf5/kdoctools/customization/nl/entities/underGPL.docbook share/kf5/kdoctools/customization/nl/entities/underLGPL.docbook share/kf5/kdoctools/customization/nl/entities/underX11License.docbook share/kf5/kdoctools/customization/nl/entities/update-doc.docbook share/kf5/kdoctools/customization/nl/lang.entities share/kf5/kdoctools/customization/nl/strings.entities share/kf5/kdoctools/customization/nl/user.entities share/kf5/kdoctools/customization/nn/catalog.xml share/kf5/kdoctools/customization/nn/entities/fdl-notice.docbook share/kf5/kdoctools/customization/nn/entities/gpl-notice.docbook share/kf5/kdoctools/customization/nn/entities/help-menu.docbook share/kf5/kdoctools/customization/nn/entities/install-compile.docbook share/kf5/kdoctools/customization/nn/entities/install-intro.docbook share/kf5/kdoctools/customization/nn/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/nn/entities/report-bugs.docbook share/kf5/kdoctools/customization/nn/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/nn/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/nn/entities/underFDL.docbook share/kf5/kdoctools/customization/nn/entities/underGPL.docbook share/kf5/kdoctools/customization/nn/entities/underX11License.docbook share/kf5/kdoctools/customization/nn/entities/update-doc.docbook share/kf5/kdoctools/customization/nn/lang.entities share/kf5/kdoctools/customization/nn/strings.entities share/kf5/kdoctools/customization/nn/user.entities share/kf5/kdoctools/customization/no/catalog.xml share/kf5/kdoctools/customization/no/entities/fdl-notice.docbook share/kf5/kdoctools/customization/no/entities/gpl-notice.docbook share/kf5/kdoctools/customization/no/entities/help-menu.docbook share/kf5/kdoctools/customization/no/entities/install-compile.docbook share/kf5/kdoctools/customization/no/entities/install-intro.docbook share/kf5/kdoctools/customization/no/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/no/entities/report-bugs.docbook share/kf5/kdoctools/customization/no/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/no/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/no/entities/underFDL.docbook share/kf5/kdoctools/customization/no/entities/underGPL.docbook share/kf5/kdoctools/customization/no/entities/underX11License.docbook share/kf5/kdoctools/customization/no/entities/update-doc.docbook share/kf5/kdoctools/customization/no/lang.entities share/kf5/kdoctools/customization/no/strings.entities share/kf5/kdoctools/customization/no/user.entities share/kf5/kdoctools/customization/pl/catalog.xml share/kf5/kdoctools/customization/pl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pl/entities/help-menu.docbook share/kf5/kdoctools/customization/pl/entities/install-compile.docbook share/kf5/kdoctools/customization/pl/entities/install-intro.docbook share/kf5/kdoctools/customization/pl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pl/entities/report-bugs.docbook share/kf5/kdoctools/customization/pl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pl/entities/underFDL.docbook share/kf5/kdoctools/customization/pl/entities/underGPL.docbook share/kf5/kdoctools/customization/pl/entities/underLGPL.docbook share/kf5/kdoctools/customization/pl/entities/underX11License.docbook share/kf5/kdoctools/customization/pl/entities/update-doc.docbook share/kf5/kdoctools/customization/pl/lang.entities share/kf5/kdoctools/customization/pl/strings.entities share/kf5/kdoctools/customization/pl/user.entities share/kf5/kdoctools/customization/pt-BR/catalog.xml share/kf5/kdoctools/customization/pt-BR/contributor.entities share/kf5/kdoctools/customization/pt-BR/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/help-menu.docbook share/kf5/kdoctools/customization/pt-BR/entities/install-compile.docbook share/kf5/kdoctools/customization/pt-BR/entities/install-intro.docbook share/kf5/kdoctools/customization/pt-BR/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pt-BR/entities/report-bugs.docbook share/kf5/kdoctools/customization/pt-BR/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pt-BR/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pt-BR/entities/underFDL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underGPL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underLGPL.docbook share/kf5/kdoctools/customization/pt-BR/entities/underX11License.docbook share/kf5/kdoctools/customization/pt-BR/entities/update-doc.docbook share/kf5/kdoctools/customization/pt-BR/lang.entities share/kf5/kdoctools/customization/pt-BR/strings.entities share/kf5/kdoctools/customization/pt-BR/user.entities share/kf5/kdoctools/customization/pt/catalog.xml share/kf5/kdoctools/customization/pt/contributor.entities share/kf5/kdoctools/customization/pt/entities/fdl-notice.docbook share/kf5/kdoctools/customization/pt/entities/gpl-notice.docbook share/kf5/kdoctools/customization/pt/entities/help-menu.docbook share/kf5/kdoctools/customization/pt/entities/install-compile.docbook share/kf5/kdoctools/customization/pt/entities/install-intro.docbook share/kf5/kdoctools/customization/pt/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/pt/entities/report-bugs.docbook share/kf5/kdoctools/customization/pt/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/pt/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/pt/entities/underFDL.docbook share/kf5/kdoctools/customization/pt/entities/underGPL.docbook share/kf5/kdoctools/customization/pt/entities/underLGPL.docbook share/kf5/kdoctools/customization/pt/entities/underX11License.docbook share/kf5/kdoctools/customization/pt/entities/update-doc.docbook share/kf5/kdoctools/customization/pt/lang.entities share/kf5/kdoctools/customization/pt/strings.entities share/kf5/kdoctools/customization/pt/user.entities share/kf5/kdoctools/customization/ro/catalog.xml share/kf5/kdoctools/customization/ro/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ro/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ro/entities/help-menu.docbook share/kf5/kdoctools/customization/ro/entities/install-compile.docbook share/kf5/kdoctools/customization/ro/entities/install-intro.docbook share/kf5/kdoctools/customization/ro/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ro/entities/report-bugs.docbook share/kf5/kdoctools/customization/ro/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ro/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ro/entities/underFDL.docbook share/kf5/kdoctools/customization/ro/entities/underGPL.docbook share/kf5/kdoctools/customization/ro/entities/underLGPL.docbook share/kf5/kdoctools/customization/ro/entities/underX11License.docbook share/kf5/kdoctools/customization/ro/entities/update-doc.docbook share/kf5/kdoctools/customization/ro/lang.entities share/kf5/kdoctools/customization/ro/strings.entities share/kf5/kdoctools/customization/ro/user.entities share/kf5/kdoctools/customization/ru/catalog.xml share/kf5/kdoctools/customization/ru/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/ru/entities/fdl-notice.docbook share/kf5/kdoctools/customization/ru/entities/gpl-notice.docbook share/kf5/kdoctools/customization/ru/entities/help-menu.docbook share/kf5/kdoctools/customization/ru/entities/install-compile.docbook share/kf5/kdoctools/customization/ru/entities/install-intro.docbook share/kf5/kdoctools/customization/ru/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/ru/entities/report-bugs.docbook share/kf5/kdoctools/customization/ru/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/ru/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/ru/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/ru/entities/underFDL.docbook share/kf5/kdoctools/customization/ru/entities/underGPL.docbook share/kf5/kdoctools/customization/ru/entities/underLGPL.docbook share/kf5/kdoctools/customization/ru/entities/underX11License.docbook share/kf5/kdoctools/customization/ru/entities/update-doc.docbook share/kf5/kdoctools/customization/ru/lang.entities share/kf5/kdoctools/customization/ru/strings.entities share/kf5/kdoctools/customization/ru/user.entities share/kf5/kdoctools/customization/sk/catalog.xml share/kf5/kdoctools/customization/sk/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sk/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sk/entities/help-menu.docbook share/kf5/kdoctools/customization/sk/entities/install-compile.docbook share/kf5/kdoctools/customization/sk/entities/install-intro.docbook share/kf5/kdoctools/customization/sk/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sk/entities/report-bugs.docbook share/kf5/kdoctools/customization/sk/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sk/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sk/entities/underFDL.docbook share/kf5/kdoctools/customization/sk/entities/underGPL.docbook share/kf5/kdoctools/customization/sk/entities/underX11License.docbook share/kf5/kdoctools/customization/sk/entities/update-doc.docbook share/kf5/kdoctools/customization/sk/lang.entities share/kf5/kdoctools/customization/sk/strings.entities share/kf5/kdoctools/customization/sk/user.entities share/kf5/kdoctools/customization/sl/catalog.xml share/kf5/kdoctools/customization/sl/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sl/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sl/entities/help-menu.docbook share/kf5/kdoctools/customization/sl/entities/install-compile.docbook share/kf5/kdoctools/customization/sl/entities/install-intro.docbook share/kf5/kdoctools/customization/sl/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sl/entities/report-bugs.docbook share/kf5/kdoctools/customization/sl/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sl/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sl/entities/underFDL.docbook share/kf5/kdoctools/customization/sl/entities/underGPL.docbook share/kf5/kdoctools/customization/sl/entities/underX11License.docbook share/kf5/kdoctools/customization/sl/entities/update-doc.docbook share/kf5/kdoctools/customization/sl/lang.entities share/kf5/kdoctools/customization/sl/strings.entities share/kf5/kdoctools/customization/sl/user.entities share/kf5/kdoctools/customization/sq/catalog.xml share/kf5/kdoctools/customization/sq/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sq/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sq/entities/help-menu.docbook share/kf5/kdoctools/customization/sq/entities/install-compile.docbook share/kf5/kdoctools/customization/sq/entities/install-intro.docbook share/kf5/kdoctools/customization/sq/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sq/entities/report-bugs.docbook share/kf5/kdoctools/customization/sq/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sq/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sq/entities/underFDL.docbook share/kf5/kdoctools/customization/sq/entities/underGPL.docbook share/kf5/kdoctools/customization/sq/entities/underLGPL.docbook share/kf5/kdoctools/customization/sq/entities/underX11License.docbook share/kf5/kdoctools/customization/sq/entities/update-doc.docbook share/kf5/kdoctools/customization/sq/lang.entities share/kf5/kdoctools/customization/sq/strings.entities share/kf5/kdoctools/customization/sq/user.entities share/kf5/kdoctools/customization/sr/catalog.xml share/kf5/kdoctools/customization/sr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr/entities/help-menu.docbook share/kf5/kdoctools/customization/sr/entities/install-compile.docbook share/kf5/kdoctools/customization/sr/entities/install-intro.docbook share/kf5/kdoctools/customization/sr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr/entities/underFDL.docbook share/kf5/kdoctools/customization/sr/entities/underGPL.docbook share/kf5/kdoctools/customization/sr/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr/entities/underX11License.docbook share/kf5/kdoctools/customization/sr/entities/update-doc.docbook share/kf5/kdoctools/customization/sr/lang.entities share/kf5/kdoctools/customization/sr/strings.entities share/kf5/kdoctools/customization/sr/user.entities share/kf5/kdoctools/customization/sr@ijekavian/catalog.xml share/kf5/kdoctools/customization/sr@ijekavian/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@ijekavian/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@ijekavian/lang.entities share/kf5/kdoctools/customization/sr@ijekavian/strings.entities share/kf5/kdoctools/customization/sr@ijekavian/user.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/catalog.xml share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@ijekavianlatin/lang.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/strings.entities share/kf5/kdoctools/customization/sr@ijekavianlatin/user.entities share/kf5/kdoctools/customization/sr@latin/catalog.xml share/kf5/kdoctools/customization/sr@latin/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/help-menu.docbook share/kf5/kdoctools/customization/sr@latin/entities/install-compile.docbook share/kf5/kdoctools/customization/sr@latin/entities/install-intro.docbook share/kf5/kdoctools/customization/sr@latin/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sr@latin/entities/report-bugs.docbook share/kf5/kdoctools/customization/sr@latin/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sr@latin/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sr@latin/entities/underFDL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underGPL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underLGPL.docbook share/kf5/kdoctools/customization/sr@latin/entities/underX11License.docbook share/kf5/kdoctools/customization/sr@latin/entities/update-doc.docbook share/kf5/kdoctools/customization/sr@latin/lang.entities share/kf5/kdoctools/customization/sr@latin/strings.entities share/kf5/kdoctools/customization/sr@latin/user.entities share/kf5/kdoctools/customization/sv/catalog.xml share/kf5/kdoctools/customization/sv/entities/fdl-notice.docbook share/kf5/kdoctools/customization/sv/entities/gpl-notice.docbook share/kf5/kdoctools/customization/sv/entities/help-menu.docbook share/kf5/kdoctools/customization/sv/entities/install-compile.docbook share/kf5/kdoctools/customization/sv/entities/install-intro.docbook share/kf5/kdoctools/customization/sv/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/sv/entities/report-bugs.docbook share/kf5/kdoctools/customization/sv/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/sv/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/sv/entities/underFDL.docbook share/kf5/kdoctools/customization/sv/entities/underGPL.docbook share/kf5/kdoctools/customization/sv/entities/underLGPL.docbook share/kf5/kdoctools/customization/sv/entities/underX11License.docbook share/kf5/kdoctools/customization/sv/entities/update-doc.docbook share/kf5/kdoctools/customization/sv/lang.entities share/kf5/kdoctools/customization/sv/strings.entities share/kf5/kdoctools/customization/sv/user.entities share/kf5/kdoctools/customization/th/catalog.xml share/kf5/kdoctools/customization/th/entities/fdl-notice.docbook share/kf5/kdoctools/customization/th/entities/gpl-notice.docbook share/kf5/kdoctools/customization/th/entities/help-menu.docbook share/kf5/kdoctools/customization/th/entities/install-compile.docbook share/kf5/kdoctools/customization/th/entities/install-intro.docbook share/kf5/kdoctools/customization/th/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/th/entities/report-bugs.docbook share/kf5/kdoctools/customization/th/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/th/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/th/entities/underFDL.docbook share/kf5/kdoctools/customization/th/entities/underGPL.docbook share/kf5/kdoctools/customization/th/entities/underLGPL.docbook share/kf5/kdoctools/customization/th/entities/underX11License.docbook share/kf5/kdoctools/customization/th/entities/update-doc.docbook share/kf5/kdoctools/customization/th/lang.entities share/kf5/kdoctools/customization/th/strings.entities share/kf5/kdoctools/customization/th/user.entities share/kf5/kdoctools/customization/tr/catalog.xml share/kf5/kdoctools/customization/tr/entities/fdl-notice.docbook share/kf5/kdoctools/customization/tr/entities/gpl-notice.docbook share/kf5/kdoctools/customization/tr/entities/help-menu.docbook share/kf5/kdoctools/customization/tr/entities/install-compile.docbook share/kf5/kdoctools/customization/tr/entities/install-intro.docbook share/kf5/kdoctools/customization/tr/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/tr/entities/report-bugs.docbook share/kf5/kdoctools/customization/tr/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/tr/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/tr/entities/underFDL.docbook share/kf5/kdoctools/customization/tr/entities/underGPL.docbook share/kf5/kdoctools/customization/tr/entities/underX11License.docbook share/kf5/kdoctools/customization/tr/entities/update-doc.docbook share/kf5/kdoctools/customization/tr/lang.entities share/kf5/kdoctools/customization/tr/strings.entities share/kf5/kdoctools/customization/tr/user.entities share/kf5/kdoctools/customization/uk/catalog.xml share/kf5/kdoctools/customization/uk/entities/ccbysa4-notice.docbook share/kf5/kdoctools/customization/uk/entities/fdl-notice.docbook share/kf5/kdoctools/customization/uk/entities/gpl-notice.docbook share/kf5/kdoctools/customization/uk/entities/help-menu.docbook share/kf5/kdoctools/customization/uk/entities/install-compile.docbook share/kf5/kdoctools/customization/uk/entities/install-intro.docbook share/kf5/kdoctools/customization/uk/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/uk/entities/report-bugs.docbook share/kf5/kdoctools/customization/uk/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/uk/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/uk/entities/underCCBYSA4.docbook share/kf5/kdoctools/customization/uk/entities/underFDL.docbook share/kf5/kdoctools/customization/uk/entities/underGPL.docbook share/kf5/kdoctools/customization/uk/entities/underLGPL.docbook share/kf5/kdoctools/customization/uk/entities/underX11License.docbook share/kf5/kdoctools/customization/uk/entities/update-doc.docbook share/kf5/kdoctools/customization/uk/lang.entities share/kf5/kdoctools/customization/uk/strings.entities share/kf5/kdoctools/customization/uk/user.entities share/kf5/kdoctools/customization/wa/catalog.xml share/kf5/kdoctools/customization/wa/contributor.entities share/kf5/kdoctools/customization/wa/entities/fdl-notice.docbook share/kf5/kdoctools/customization/wa/entities/gpl-notice.docbook share/kf5/kdoctools/customization/wa/entities/help-menu.docbook share/kf5/kdoctools/customization/wa/entities/install-compile.docbook share/kf5/kdoctools/customization/wa/entities/install-intro.docbook share/kf5/kdoctools/customization/wa/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/wa/entities/report-bugs.docbook share/kf5/kdoctools/customization/wa/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/wa/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/wa/entities/underFDL.docbook share/kf5/kdoctools/customization/wa/entities/underGPL.docbook share/kf5/kdoctools/customization/wa/entities/underX11License.docbook share/kf5/kdoctools/customization/wa/entities/update-doc.docbook share/kf5/kdoctools/customization/wa/lang.entities share/kf5/kdoctools/customization/wa/strings.entities share/kf5/kdoctools/customization/wa/user.entities share/kf5/kdoctools/customization/xh/catalog.xml share/kf5/kdoctools/customization/xh/contributor.entities share/kf5/kdoctools/customization/xh/entities/fdl-notice.docbook share/kf5/kdoctools/customization/xh/entities/gpl-notice.docbook share/kf5/kdoctools/customization/xh/entities/help-menu.docbook share/kf5/kdoctools/customization/xh/entities/install-compile.docbook share/kf5/kdoctools/customization/xh/entities/install-intro.docbook share/kf5/kdoctools/customization/xh/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/xh/entities/report-bugs.docbook share/kf5/kdoctools/customization/xh/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/xh/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/xh/entities/underFDL.docbook share/kf5/kdoctools/customization/xh/entities/underGPL.docbook share/kf5/kdoctools/customization/xh/entities/underX11License.docbook share/kf5/kdoctools/customization/xh/entities/update-doc.docbook share/kf5/kdoctools/customization/xh/lang.entities share/kf5/kdoctools/customization/xh/strings.entities share/kf5/kdoctools/customization/xh/user.entities share/kf5/kdoctools/customization/xsl/README share/kf5/kdoctools/customization/xsl/all-l10n.xml share/kf5/kdoctools/customization/xsl/ca.xml share/kf5/kdoctools/customization/xsl/ca_valencia.xml share/kf5/kdoctools/customization/xsl/cs.xml share/kf5/kdoctools/customization/xsl/de.xml share/kf5/kdoctools/customization/xsl/el.xml share/kf5/kdoctools/customization/xsl/en.xml share/kf5/kdoctools/customization/xsl/es.xml share/kf5/kdoctools/customization/xsl/et.xml share/kf5/kdoctools/customization/xsl/fr.xml share/kf5/kdoctools/customization/xsl/gl.xml share/kf5/kdoctools/customization/xsl/hu.xml share/kf5/kdoctools/customization/xsl/id.xml share/kf5/kdoctools/customization/xsl/it.xml share/kf5/kdoctools/customization/xsl/ko.xml share/kf5/kdoctools/customization/xsl/lt.xml share/kf5/kdoctools/customization/xsl/nds.xml share/kf5/kdoctools/customization/xsl/nl.xml share/kf5/kdoctools/customization/xsl/nn.xml share/kf5/kdoctools/customization/xsl/pl.xml share/kf5/kdoctools/customization/xsl/pt.xml share/kf5/kdoctools/customization/xsl/pt_br.xml share/kf5/kdoctools/customization/xsl/ru.xml share/kf5/kdoctools/customization/xsl/sl.xml share/kf5/kdoctools/customization/xsl/sr.xml share/kf5/kdoctools/customization/xsl/sr_ijekavian.xml share/kf5/kdoctools/customization/xsl/sr_ijekavianlatin.xml share/kf5/kdoctools/customization/xsl/sr_latin.xml share/kf5/kdoctools/customization/xsl/sv.xml share/kf5/kdoctools/customization/xsl/tr.xml share/kf5/kdoctools/customization/xsl/uk.xml share/kf5/kdoctools/customization/xx/catalog.xml share/kf5/kdoctools/customization/xx/contributor.entities share/kf5/kdoctools/customization/xx/entities/fdl-notice.docbook share/kf5/kdoctools/customization/xx/entities/gpl-notice.docbook share/kf5/kdoctools/customization/xx/entities/help-menu.docbook share/kf5/kdoctools/customization/xx/entities/install-compile.docbook share/kf5/kdoctools/customization/xx/entities/install-intro.docbook share/kf5/kdoctools/customization/xx/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/xx/entities/report-bugs.docbook share/kf5/kdoctools/customization/xx/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/xx/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/xx/entities/underFDL.docbook share/kf5/kdoctools/customization/xx/entities/underGPL.docbook share/kf5/kdoctools/customization/xx/entities/underX11License.docbook share/kf5/kdoctools/customization/xx/entities/update-doc.docbook share/kf5/kdoctools/customization/xx/lang.entities share/kf5/kdoctools/customization/xx/strings.entities share/kf5/kdoctools/customization/xx/user.entities share/kf5/kdoctools/customization/zh-CN/catalog.xml share/kf5/kdoctools/customization/zh-CN/entities/fdl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/gpl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/help-menu.docbook share/kf5/kdoctools/customization/zh-CN/entities/install-compile.docbook share/kf5/kdoctools/customization/zh-CN/entities/install-intro.docbook share/kf5/kdoctools/customization/zh-CN/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/zh-CN/entities/report-bugs.docbook share/kf5/kdoctools/customization/zh-CN/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/zh-CN/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/zh-CN/entities/underFDL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underGPL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underLGPL.docbook share/kf5/kdoctools/customization/zh-CN/entities/underX11License.docbook share/kf5/kdoctools/customization/zh-CN/entities/update-doc.docbook share/kf5/kdoctools/customization/zh-CN/lang.entities share/kf5/kdoctools/customization/zh-CN/strings.entities share/kf5/kdoctools/customization/zh-CN/user.entities share/kf5/kdoctools/customization/zh-TW/catalog.xml share/kf5/kdoctools/customization/zh-TW/entities/fdl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/gpl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/help-menu.docbook share/kf5/kdoctools/customization/zh-TW/entities/install-compile.docbook share/kf5/kdoctools/customization/zh-TW/entities/install-intro.docbook share/kf5/kdoctools/customization/zh-TW/entities/lgpl-notice.docbook share/kf5/kdoctools/customization/zh-TW/entities/report-bugs.docbook share/kf5/kdoctools/customization/zh-TW/entities/underArtisticLicense.docbook share/kf5/kdoctools/customization/zh-TW/entities/underBSDLicense.docbook share/kf5/kdoctools/customization/zh-TW/entities/underFDL.docbook share/kf5/kdoctools/customization/zh-TW/entities/underGPL.docbook share/kf5/kdoctools/customization/zh-TW/entities/underX11License.docbook share/kf5/kdoctools/customization/zh-TW/entities/update-doc.docbook share/kf5/kdoctools/customization/zh-TW/lang.entities share/kf5/kdoctools/customization/zh-TW/strings.entities share/kf5/kdoctools/customization/zh-TW/user.entities share/locale/af/LC_MESSAGES/kdoctools5.mo share/locale/ar/LC_MESSAGES/kdoctools5.mo -share/locale/ast/LC_MESSAGES/kdoctools5.mo share/locale/az/LC_MESSAGES/kdoctools5.mo share/locale/be/LC_MESSAGES/kdoctools5.mo share/locale/bg/LC_MESSAGES/kdoctools5.mo share/locale/bn/LC_MESSAGES/kdoctools5.mo share/locale/br/LC_MESSAGES/kdoctools5.mo share/locale/bs/LC_MESSAGES/kdoctools5.mo share/locale/ca/LC_MESSAGES/kdoctools5.mo share/locale/ca@valencia/LC_MESSAGES/kdoctools5.mo share/locale/cs/LC_MESSAGES/kdoctools5.mo share/locale/csb/LC_MESSAGES/kdoctools5.mo share/locale/cy/LC_MESSAGES/kdoctools5.mo share/locale/da/LC_MESSAGES/kdoctools5.mo share/locale/de/LC_MESSAGES/kdoctools5.mo share/locale/el/LC_MESSAGES/kdoctools5.mo share/locale/en_GB/LC_MESSAGES/kdoctools5.mo share/locale/eo/LC_MESSAGES/kdoctools5.mo share/locale/es/LC_MESSAGES/kdoctools5.mo share/locale/et/LC_MESSAGES/kdoctools5.mo share/locale/eu/LC_MESSAGES/kdoctools5.mo share/locale/fa/LC_MESSAGES/kdoctools5.mo share/locale/fi/LC_MESSAGES/kdoctools5.mo share/locale/fr/LC_MESSAGES/kdoctools5.mo share/locale/fy/LC_MESSAGES/kdoctools5.mo share/locale/ga/LC_MESSAGES/kdoctools5.mo share/locale/gd/LC_MESSAGES/kdoctools5.mo share/locale/gl/LC_MESSAGES/kdoctools5.mo share/locale/gu/LC_MESSAGES/kdoctools5.mo share/locale/he/LC_MESSAGES/kdoctools5.mo share/locale/hi/LC_MESSAGES/kdoctools5.mo share/locale/hr/LC_MESSAGES/kdoctools5.mo share/locale/hsb/LC_MESSAGES/kdoctools5.mo share/locale/hu/LC_MESSAGES/kdoctools5.mo share/locale/ia/LC_MESSAGES/kdoctools5.mo share/locale/id/LC_MESSAGES/kdoctools5.mo share/locale/is/LC_MESSAGES/kdoctools5.mo share/locale/it/LC_MESSAGES/kdoctools5.mo share/locale/ja/LC_MESSAGES/kdoctools5.mo share/locale/ka/LC_MESSAGES/kdoctools5.mo share/locale/kk/LC_MESSAGES/kdoctools5.mo share/locale/km/LC_MESSAGES/kdoctools5.mo share/locale/kn/LC_MESSAGES/kdoctools5.mo share/locale/ko/LC_MESSAGES/kdoctools5.mo share/locale/ku/LC_MESSAGES/kdoctools5.mo share/locale/lt/LC_MESSAGES/kdoctools5.mo share/locale/lv/LC_MESSAGES/kdoctools5.mo share/locale/mai/LC_MESSAGES/kdoctools5.mo share/locale/mk/LC_MESSAGES/kdoctools5.mo share/locale/ml/LC_MESSAGES/kdoctools5.mo share/locale/mr/LC_MESSAGES/kdoctools5.mo share/locale/ms/LC_MESSAGES/kdoctools5.mo share/locale/nb/LC_MESSAGES/kdoctools5.mo share/locale/nds/LC_MESSAGES/kdoctools5.mo share/locale/ne/LC_MESSAGES/kdoctools5.mo share/locale/nl/LC_MESSAGES/kdoctools5.mo share/locale/nn/LC_MESSAGES/kdoctools5.mo share/locale/oc/LC_MESSAGES/kdoctools5.mo share/locale/pa/LC_MESSAGES/kdoctools5.mo share/locale/pl/LC_MESSAGES/kdoctools5.mo share/locale/pt/LC_MESSAGES/kdoctools5.mo share/locale/pt_BR/LC_MESSAGES/kdoctools5.mo share/locale/ro/LC_MESSAGES/kdoctools5.mo share/locale/ru/LC_MESSAGES/kdoctools5.mo share/locale/se/LC_MESSAGES/kdoctools5.mo share/locale/sk/LC_MESSAGES/kdoctools5.mo share/locale/sl/LC_MESSAGES/kdoctools5.mo share/locale/sq/LC_MESSAGES/kdoctools5.mo share/locale/sr/LC_MESSAGES/kdoctools5.mo share/locale/sr@ijekavian/LC_MESSAGES/kdoctools5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdoctools5.mo share/locale/sr@latin/LC_MESSAGES/kdoctools5.mo share/locale/sv/LC_MESSAGES/kdoctools5.mo share/locale/ta/LC_MESSAGES/kdoctools5.mo share/locale/tg/LC_MESSAGES/kdoctools5.mo share/locale/th/LC_MESSAGES/kdoctools5.mo share/locale/tr/LC_MESSAGES/kdoctools5.mo share/locale/ug/LC_MESSAGES/kdoctools5.mo share/locale/uk/LC_MESSAGES/kdoctools5.mo share/locale/uz/LC_MESSAGES/kdoctools5.mo share/locale/uz@cyrillic/LC_MESSAGES/kdoctools5.mo share/locale/vi/LC_MESSAGES/kdoctools5.mo share/locale/zh_CN/LC_MESSAGES/kdoctools5.mo share/locale/zh_TW/LC_MESSAGES/kdoctools5.mo diff --git a/devel/kf5-kfilemetadata/distinfo b/devel/kf5-kfilemetadata/distinfo index 6aac4714e9c1..5d942ca44820 100644 --- a/devel/kf5-kfilemetadata/distinfo +++ b/devel/kf5-kfilemetadata/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689105 -SHA256 (KDE/frameworks/5.99.0/kfilemetadata-5.99.0.tar.xz) = 7a1fcdb4505c9a6333272304e95651b6b5e41061095e1b4438aa2066b41dd196 -SIZE (KDE/frameworks/5.99.0/kfilemetadata-5.99.0.tar.xz) = 439532 +TIMESTAMP = 1667804639 +SHA256 (KDE/frameworks/5.100.0/kfilemetadata-5.100.0.tar.xz) = 6fb20c163dc21ee6f89cff4be6cd3939e49ffb2fa61e02a5bcc7b51d13567131 +SIZE (KDE/frameworks/5.100.0/kfilemetadata-5.100.0.tar.xz) = 452028 diff --git a/devel/kf5-ki18n/Makefile b/devel/kf5-ki18n/Makefile index e798cd5aaaa1..5bd41260ab82 100644 --- a/devel/kf5-ki18n/Makefile +++ b/devel/kf5-ki18n/Makefile @@ -1,17 +1,14 @@ PORTNAME= ki18n DISTVERSION= ${KDE_FRAMEWORKS_VERSION} CATEGORIES= devel kde kde-frameworks -PATCH_SITES= https://invent.kde.org/frameworks/ki18n/-/commit/ -PATCHFILES= 12e1987598ab30a407219eabb4ce489db107d97c.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced internationalization framework USES= cmake compiler:c++11-lib gettext-runtime \ gettext-tools:build,run kde:5 qt:5 tar:xz USE_KDE= ecm:build USE_QT= concurrent core declarative network script \ buildtools:build qmake:build testlib:build .include diff --git a/devel/kf5-ki18n/distinfo b/devel/kf5-ki18n/distinfo index 3315c88eddd1..d425b7d174e3 100644 --- a/devel/kf5-ki18n/distinfo +++ b/devel/kf5-ki18n/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1665571291 -SHA256 (KDE/frameworks/5.99.0/ki18n-5.99.0.tar.xz) = 1544dd5a002a2376f1018fee619ae2de861cd900cec312fade09e6a6943ef8ad -SIZE (KDE/frameworks/5.99.0/ki18n-5.99.0.tar.xz) = 955952 -SHA256 (KDE/frameworks/5.99.0/12e1987598ab30a407219eabb4ce489db107d97c.diff) = ae8117150671700e58dbee585f846ed1f575042e829a70341bd44d9f1b3eef88 -SIZE (KDE/frameworks/5.99.0/12e1987598ab30a407219eabb4ce489db107d97c.diff) = 366 +TIMESTAMP = 1668444739 +SHA256 (KDE/frameworks/5.100.0/ki18n-5.100.0.tar.xz) = de63f1d6b86591eff69c502c8d247d6d86494abdd1d179ea84855c3678b30f01 +SIZE (KDE/frameworks/5.100.0/ki18n-5.100.0.tar.xz) = 3157208 diff --git a/devel/kf5-ki18n/pkg-plist b/devel/kf5-ki18n/pkg-plist index 523b95a47ec1..4d1461623835 100644 --- a/devel/kf5-ki18n/pkg-plist +++ b/devel/kf5-ki18n/pkg-plist @@ -1,169 +1,169 @@ include/KF5/KI18n/KLazyLocalizedString include/KF5/KI18n/KLocalizedContext include/KF5/KI18n/KLocalizedString include/KF5/KI18n/KLocalizedTranslator include/KF5/KI18n/KuitMarkup include/KF5/KI18n/KuitSetup include/KF5/KI18n/ki18n_export.h include/KF5/KI18n/ki18n_version.h include/KF5/KI18n/klazylocalizedstring.h include/KF5/KI18n/klocalizedcontext.h include/KF5/KI18n/klocalizedstring.h include/KF5/KI18n/klocalizedtranslator.h include/KF5/KI18n/kuitmarkup.h include/KF5/KI18n/kuitsetup.h include/KF5/KI18nLocaleData/KCountry include/KF5/KI18nLocaleData/KCountrySubdivision include/KF5/KI18nLocaleData/KTimeZone include/KF5/KI18nLocaleData/kcountry.h include/KF5/KI18nLocaleData/kcountrysubdivision.h include/KF5/KI18nLocaleData/ki18nlocaledata_export.h include/KF5/KI18nLocaleData/ktimezone.h lib/cmake/KF5I18n/KF5I18nConfig.cmake lib/cmake/KF5I18n/KF5I18nConfigVersion.cmake lib/cmake/KF5I18n/KF5I18nMacros.cmake lib/cmake/KF5I18n/KF5I18nTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5I18n/KF5I18nTargets.cmake lib/cmake/KF5I18n/build-pofiles.cmake lib/cmake/KF5I18n/build-tsfiles.cmake lib/cmake/KF5I18n/kf5i18nuic.cmake lib/cmake/KF5I18n/ts-pmap-compile.py -lib/libKF5I18nLocaleData.so -lib/libKF5I18nLocaleData.so.5 -lib/libKF5I18nLocaleData.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5I18n.so lib/libKF5I18n.so.5 lib/libKF5I18n.so.%%KDE_FRAMEWORKS_VERSION%% +lib/libKF5I18nLocaleData.so +lib/libKF5I18nLocaleData.so.5 +lib/libKF5I18nLocaleData.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KI18n.pri %%QT_PLUGINDIR%%/kf5/ktranscript.so %%QT_QMLDIR%%/org/kde/i18n/localeData/libki18nlocaledataqmlplugin.so %%QT_QMLDIR%%/org/kde/i18n/localeData/qmldir share/locale/af/LC_MESSAGES/ki18n5.mo share/locale/ar/LC_MESSAGES/ki18n5.mo share/locale/as/LC_MESSAGES/ki18n5.mo -share/locale/ast/LC_MESSAGES/ki18n5.mo share/locale/az/LC_MESSAGES/ki18n5.mo share/locale/be/LC_MESSAGES/ki18n5.mo share/locale/be@latin/LC_MESSAGES/ki18n5.mo share/locale/bg/LC_MESSAGES/ki18n5.mo share/locale/bn/LC_MESSAGES/ki18n5.mo share/locale/bn_IN/LC_MESSAGES/ki18n5.mo share/locale/br/LC_MESSAGES/ki18n5.mo share/locale/bs/LC_MESSAGES/ki18n5.mo share/locale/ca/LC_MESSAGES/ki18n5.mo share/locale/ca/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/ca@valencia/LC_MESSAGES/ki18n5.mo share/locale/ca@valencia/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/crh/LC_MESSAGES/ki18n5.mo share/locale/cs/LC_MESSAGES/ki18n5.mo share/locale/csb/LC_MESSAGES/ki18n5.mo share/locale/cy/LC_MESSAGES/ki18n5.mo share/locale/da/LC_MESSAGES/ki18n5.mo share/locale/de/LC_MESSAGES/ki18n5.mo share/locale/el/LC_MESSAGES/ki18n5.mo share/locale/en_GB/LC_MESSAGES/ki18n5.mo share/locale/eo/LC_MESSAGES/ki18n5.mo share/locale/es/LC_MESSAGES/ki18n5.mo share/locale/et/LC_MESSAGES/ki18n5.mo share/locale/eu/LC_MESSAGES/ki18n5.mo share/locale/fa/LC_MESSAGES/ki18n5.mo share/locale/fi/LC_MESSAGES/ki18n5.mo share/locale/fi/LC_SCRIPTS/ki18n5/general.pmap share/locale/fi/LC_SCRIPTS/ki18n5/general.pmapc share/locale/fi/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/fr/LC_MESSAGES/ki18n5.mo share/locale/fy/LC_MESSAGES/ki18n5.mo share/locale/ga/LC_MESSAGES/ki18n5.mo share/locale/gd/LC_MESSAGES/ki18n5.mo share/locale/gd/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/gl/LC_MESSAGES/ki18n5.mo share/locale/gu/LC_MESSAGES/ki18n5.mo share/locale/ha/LC_MESSAGES/ki18n5.mo share/locale/he/LC_MESSAGES/ki18n5.mo share/locale/hi/LC_MESSAGES/ki18n5.mo share/locale/hne/LC_MESSAGES/ki18n5.mo share/locale/hr/LC_MESSAGES/ki18n5.mo share/locale/hsb/LC_MESSAGES/ki18n5.mo share/locale/hu/LC_MESSAGES/ki18n5.mo share/locale/hy/LC_MESSAGES/ki18n5.mo share/locale/ia/LC_MESSAGES/ki18n5.mo share/locale/id/LC_MESSAGES/ki18n5.mo +share/locale/ie/LC_MESSAGES/ki18n5.mo share/locale/is/LC_MESSAGES/ki18n5.mo share/locale/it/LC_MESSAGES/ki18n5.mo share/locale/ja/LC_MESSAGES/ki18n5.mo share/locale/ja/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/ka/LC_MESSAGES/ki18n5.mo share/locale/kk/LC_MESSAGES/ki18n5.mo share/locale/km/LC_MESSAGES/ki18n5.mo share/locale/kn/LC_MESSAGES/ki18n5.mo share/locale/ko/LC_MESSAGES/ki18n5.mo share/locale/ko/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/ku/LC_MESSAGES/ki18n5.mo share/locale/lb/LC_MESSAGES/ki18n5.mo share/locale/lt/LC_MESSAGES/ki18n5.mo share/locale/lv/LC_MESSAGES/ki18n5.mo share/locale/mai/LC_MESSAGES/ki18n5.mo share/locale/mk/LC_MESSAGES/ki18n5.mo share/locale/ml/LC_MESSAGES/ki18n5.mo share/locale/mr/LC_MESSAGES/ki18n5.mo share/locale/ms/LC_MESSAGES/ki18n5.mo share/locale/nb/LC_MESSAGES/ki18n5.mo share/locale/nb/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/nds/LC_MESSAGES/ki18n5.mo share/locale/ne/LC_MESSAGES/ki18n5.mo share/locale/nl/LC_MESSAGES/ki18n5.mo share/locale/nn/LC_MESSAGES/ki18n5.mo share/locale/nn/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/nn/LC_SCRIPTS/ki18n5/skjermelement.pmap share/locale/nn/LC_SCRIPTS/ki18n5/skjermelement.pmapc share/locale/oc/LC_MESSAGES/ki18n5.mo share/locale/or/LC_MESSAGES/ki18n5.mo share/locale/pa/LC_MESSAGES/ki18n5.mo share/locale/pl/LC_MESSAGES/ki18n5.mo share/locale/ps/LC_MESSAGES/ki18n5.mo share/locale/pt/LC_MESSAGES/ki18n5.mo share/locale/pt_BR/LC_MESSAGES/ki18n5.mo share/locale/ro/LC_MESSAGES/ki18n5.mo share/locale/ru/LC_MESSAGES/ki18n5.mo share/locale/ru/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/se/LC_MESSAGES/ki18n5.mo share/locale/si/LC_MESSAGES/ki18n5.mo share/locale/sk/LC_MESSAGES/ki18n5.mo share/locale/sl/LC_MESSAGES/ki18n5.mo share/locale/sq/LC_MESSAGES/ki18n5.mo share/locale/sr/LC_MESSAGES/ki18n5.mo share/locale/sr/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmap share/locale/sr/LC_SCRIPTS/ki18n5/trapnakron.pmapc share/locale/sr@ijekavian/LC_MESSAGES/ki18n5.mo share/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/trapnakron.pmap share/locale/sr@ijekavian/LC_SCRIPTS/ki18n5/trapnakron.pmapc share/locale/sr@ijekavianlatin/LC_MESSAGES/ki18n5.mo share/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/trapnakron.pmap share/locale/sr@ijekavianlatin/LC_SCRIPTS/ki18n5/trapnakron.pmapc share/locale/sr@latin/LC_MESSAGES/ki18n5.mo share/locale/sr@latin/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmap share/locale/sr@latin/LC_SCRIPTS/ki18n5/trapnakron.pmapc share/locale/sv/LC_MESSAGES/ki18n5.mo share/locale/ta/LC_MESSAGES/ki18n5.mo share/locale/te/LC_MESSAGES/ki18n5.mo share/locale/tg/LC_MESSAGES/ki18n5.mo share/locale/th/LC_MESSAGES/ki18n5.mo share/locale/tr/LC_MESSAGES/ki18n5.mo share/locale/tt/LC_MESSAGES/ki18n5.mo share/locale/ug/LC_MESSAGES/ki18n5.mo share/locale/uk/LC_MESSAGES/ki18n5.mo share/locale/uk/LC_SCRIPTS/ki18n5/ki18n5.js share/locale/uz/LC_MESSAGES/ki18n5.mo share/locale/uz@cyrillic/LC_MESSAGES/ki18n5.mo share/locale/vi/LC_MESSAGES/ki18n5.mo share/locale/wa/LC_MESSAGES/ki18n5.mo share/locale/xh/LC_MESSAGES/ki18n5.mo share/locale/zh_CN/LC_MESSAGES/ki18n5.mo share/locale/zh_HK/LC_MESSAGES/ki18n5.mo share/locale/zh_TW/LC_MESSAGES/ki18n5.mo share/qlogging-categories5/ki18n.categories share/qlogging-categories5/ki18n.renamecategories diff --git a/devel/kf5-kidletime/distinfo b/devel/kf5-kidletime/distinfo index adaa81b66877..c0ab3e5c90e4 100644 --- a/devel/kf5-kidletime/distinfo +++ b/devel/kf5-kidletime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689107 -SHA256 (KDE/frameworks/5.99.0/kidletime-5.99.0.tar.xz) = ef3dcaf17fd65fa7493864933a86b612a6079e6e2955517fa9c1eb0bbf83dcf1 -SIZE (KDE/frameworks/5.99.0/kidletime-5.99.0.tar.xz) = 30472 +TIMESTAMP = 1667804641 +SHA256 (KDE/frameworks/5.100.0/kidletime-5.100.0.tar.xz) = b4f0162df8a63e83cc2f2db3d4e6ca63ea13f93679186b0b897450b61d1b77c4 +SIZE (KDE/frameworks/5.100.0/kidletime-5.100.0.tar.xz) = 30476 diff --git a/devel/kf5-kio/distinfo b/devel/kf5-kio/distinfo index 31ce27790c95..31fe9ce9aa91 100644 --- a/devel/kf5-kio/distinfo +++ b/devel/kf5-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1665405470 -SHA256 (KDE/frameworks/5.99.0/kio-5.99.0.tar.xz) = efd2bf49ba5233c82983309af3b93e59b185ed9d1f9b6e1a6de2f556f33fa87c -SIZE (KDE/frameworks/5.99.0/kio-5.99.0.tar.xz) = 3407180 +TIMESTAMP = 1667804642 +SHA256 (KDE/frameworks/5.100.0/kio-5.100.0.tar.xz) = 088788d32eb38016d92c2fdfe29f337332089efa1f0d3a810cf807c2646d7cb6 +SIZE (KDE/frameworks/5.100.0/kio-5.100.0.tar.xz) = 3759832 diff --git a/devel/kf5-kio/pkg-plist b/devel/kf5-kio/pkg-plist index 0b24a3ad6853..745a49d40c6f 100644 --- a/devel/kf5-kio/pkg-plist +++ b/devel/kf5-kio/pkg-plist @@ -1,1093 +1,1097 @@ bin/kcookiejar5 bin/ktelnetservice5 bin/ktrash5 bin/protocoltojson etc/xdg/accept-languages.codes etc/xdg/kshorturifilterrc include/KF5/KIO/kio_version.h include/KF5/KIOCore/KACL include/KF5/KIOCore/KCoreDirLister include/KF5/KIOCore/KDirNotify include/KF5/KIOCore/KDiskFreeSpaceInfo include/KF5/KIOCore/KFileItem include/KF5/KIOCore/KFileItemListProperties include/KF5/KIOCore/KIO/AskUserActionInterface include/KF5/KIOCore/KIO/AuthInfo include/KF5/KIOCore/KIO/BatchRenameJob include/KF5/KIOCore/KIO/ChmodJob include/KF5/KIOCore/KIO/ConnectionServer include/KF5/KIOCore/KIO/CopyJob include/KF5/KIOCore/KIO/DavJob include/KF5/KIOCore/KIO/DeleteJob include/KF5/KIOCore/KIO/DesktopExecParser include/KF5/KIOCore/KIO/DirectorySizeJob include/KF5/KIOCore/KIO/EmptyTrashJob include/KF5/KIOCore/KIO/FileCopyJob include/KF5/KIOCore/KIO/FileJob include/KF5/KIOCore/KIO/FileSystemFreeSpaceJob include/KF5/KIOCore/KIO/ForwardingSlaveBase include/KF5/KIOCore/KIO/Global include/KF5/KIOCore/KIO/HostInfo include/KF5/KIOCore/KIO/IdleSlave include/KF5/KIOCore/KIO/Job include/KF5/KIOCore/KIO/JobTracker include/KF5/KIOCore/KIO/JobUiDelegateExtension include/KF5/KIOCore/KIO/JobUiDelegateFactory include/KF5/KIOCore/KIO/ListJob include/KF5/KIOCore/KIO/MetaData include/KF5/KIOCore/KIO/MimeTypeFinderJob include/KF5/KIOCore/KIO/MimetypeJob include/KF5/KIOCore/KIO/MkdirJob include/KF5/KIOCore/KIO/MkpathJob include/KF5/KIOCore/KIO/MultiGetJob include/KF5/KIOCore/KIO/NameFinderJob include/KF5/KIOCore/KIO/RestoreJob include/KF5/KIOCore/KIO/Scheduler include/KF5/KIOCore/KIO/SimpleJob include/KF5/KIOCore/KIO/Slave include/KF5/KIOCore/KIO/SlaveBase include/KF5/KIOCore/KIO/SlaveConfig include/KF5/KIOCore/KIO/SlaveInterface include/KF5/KIOCore/KIO/SpecialJob include/KF5/KIOCore/KIO/StatJob include/KF5/KIOCore/KIO/StoredTransferJob include/KF5/KIOCore/KIO/TCPSlaveBase include/KF5/KIOCore/KIO/TCPWorkerBase include/KF5/KIOCore/KIO/TransferJob include/KF5/KIOCore/KIO/UDSEntry include/KF5/KIOCore/KIO/WorkerBase include/KF5/KIOCore/KIO/WorkerFactory include/KF5/KIOCore/KMountPoint include/KF5/KIOCore/KNFSShare include/KF5/KIOCore/KPasswdServerClient include/KF5/KIOCore/KProtocolInfo include/KF5/KIOCore/KProtocolManager include/KF5/KIOCore/KRecentDocument include/KF5/KIOCore/KRemoteEncoding include/KF5/KIOCore/KSSLSettings include/KF5/KIOCore/KSambaShare include/KF5/KIOCore/KSambaShareData include/KF5/KIOCore/KSslCertificateManager include/KF5/KIOCore/KSslErrorUiData include/KF5/KIOCore/KTcpSocket include/KF5/KIOCore/KUrlAuthorized include/KF5/KIOCore/kacl.h include/KF5/KIOCore/kcoredirlister.h include/KF5/KIOCore/kdirnotify.h include/KF5/KIOCore/kdiskfreespaceinfo.h include/KF5/KIOCore/kfileitem.h include/KF5/KIOCore/kfileitemlistproperties.h include/KF5/KIOCore/kio/askuseractioninterface.h include/KF5/KIOCore/kio/authinfo.h include/KF5/KIOCore/kio/batchrenamejob.h include/KF5/KIOCore/kio/chmodjob.h include/KF5/KIOCore/kio/connectionserver.h include/KF5/KIOCore/kio/copyjob.h include/KF5/KIOCore/kio/davjob.h include/KF5/KIOCore/kio/deletejob.h include/KF5/KIOCore/kio/desktopexecparser.h include/KF5/KIOCore/kio/directorysizejob.h include/KF5/KIOCore/kio/emptytrashjob.h include/KF5/KIOCore/kio/filecopyjob.h include/KF5/KIOCore/kio/filejob.h include/KF5/KIOCore/kio/filesystemfreespacejob.h include/KF5/KIOCore/kio/forwardingslavebase.h include/KF5/KIOCore/kio/global.h include/KF5/KIOCore/kio/hostinfo.h include/KF5/KIOCore/kio/http_slave_defaults.h include/KF5/KIOCore/kio/idleslave.h include/KF5/KIOCore/kio/ioslave_defaults.h include/KF5/KIOCore/kio/ioworker_defaults.h include/KF5/KIOCore/kio/job.h include/KF5/KIOCore/kio/job_base.h include/KF5/KIOCore/kio/jobclasses.h include/KF5/KIOCore/kio/jobtracker.h include/KF5/KIOCore/kio/jobuidelegateextension.h include/KF5/KIOCore/kio/jobuidelegatefactory.h include/KF5/KIOCore/kio/listjob.h include/KF5/KIOCore/kio/metadata.h include/KF5/KIOCore/kio/mimetypefinderjob.h include/KF5/KIOCore/kio/mimetypejob.h include/KF5/KIOCore/kio/mkdirjob.h include/KF5/KIOCore/kio/mkpathjob.h include/KF5/KIOCore/kio/multigetjob.h include/KF5/KIOCore/kio/namefinderjob.h include/KF5/KIOCore/kio/restorejob.h include/KF5/KIOCore/kio/scheduler.h include/KF5/KIOCore/kio/simplejob.h include/KF5/KIOCore/kio/slave.h include/KF5/KIOCore/kio/slavebase.h include/KF5/KIOCore/kio/slaveconfig.h include/KF5/KIOCore/kio/slaveinterface.h include/KF5/KIOCore/kio/specialjob.h include/KF5/KIOCore/kio/statjob.h include/KF5/KIOCore/kio/storedtransferjob.h include/KF5/KIOCore/kio/tcpslavebase.h include/KF5/KIOCore/kio/tcpworkerbase.h include/KF5/KIOCore/kio/transferjob.h include/KF5/KIOCore/kio/udsentry.h include/KF5/KIOCore/kio/workerbase.h include/KF5/KIOCore/kio/workerfactory.h include/KF5/KIOCore/kiocore_export.h include/KF5/KIOCore/kmountpoint.h include/KF5/KIOCore/knfsshare.h include/KF5/KIOCore/kpasswdserverclient.h include/KF5/KIOCore/kprotocolinfo.h include/KF5/KIOCore/kprotocolmanager.h include/KF5/KIOCore/krecentdocument.h include/KF5/KIOCore/kremoteencoding.h include/KF5/KIOCore/ksambashare.h include/KF5/KIOCore/ksambasharedata.h include/KF5/KIOCore/ksslcertificatemanager.h include/KF5/KIOCore/ksslcertificatemanager_p.h include/KF5/KIOCore/ksslerroruidata.h include/KF5/KIOCore/ksslsettings.h include/KF5/KIOCore/ktcpsocket.h include/KF5/KIOCore/kurlauthorized.h include/KF5/KIOFileWidgets/KAbstractViewAdapter include/KF5/KIOFileWidgets/KDirOperator include/KF5/KIOFileWidgets/KDirSortFilterProxyModel include/KF5/KIOFileWidgets/KEncodingFileDialog include/KF5/KIOFileWidgets/KFileCopyToMenu include/KF5/KIOFileWidgets/KFileCustomDialog include/KF5/KIOFileWidgets/KFileFilterCombo include/KF5/KIOFileWidgets/KFilePlaceEditDialog include/KF5/KIOFileWidgets/KFilePlacesModel include/KF5/KIOFileWidgets/KFilePlacesView include/KF5/KIOFileWidgets/KFilePreviewGenerator include/KF5/KIOFileWidgets/KFileWidget include/KF5/KIOFileWidgets/KImageFilePreview include/KF5/KIOFileWidgets/KNameAndUrlInputDialog include/KF5/KIOFileWidgets/KNewFileMenu include/KF5/KIOFileWidgets/KPreviewWidgetBase include/KF5/KIOFileWidgets/KRecentDirs include/KF5/KIOFileWidgets/KStatusBarOfflineIndicator include/KF5/KIOFileWidgets/KUrlNavigator include/KF5/KIOFileWidgets/kabstractviewadapter.h include/KF5/KIOFileWidgets/kdiroperator.h include/KF5/KIOFileWidgets/kdirsortfilterproxymodel.h include/KF5/KIOFileWidgets/kencodingfiledialog.h include/KF5/KIOFileWidgets/kfilecopytomenu.h include/KF5/KIOFileWidgets/kfilecustomdialog.h include/KF5/KIOFileWidgets/kfilefiltercombo.h include/KF5/KIOFileWidgets/kfileplaceeditdialog.h include/KF5/KIOFileWidgets/kfileplacesmodel.h include/KF5/KIOFileWidgets/kfileplacesview.h include/KF5/KIOFileWidgets/kfilepreviewgenerator.h include/KF5/KIOFileWidgets/kfilewidget.h include/KF5/KIOFileWidgets/kimagefilepreview.h include/KF5/KIOFileWidgets/kiofilewidgets_export.h include/KF5/KIOFileWidgets/knameandurlinputdialog.h include/KF5/KIOFileWidgets/knewfilemenu.h include/KF5/KIOFileWidgets/kpreviewwidgetbase.h include/KF5/KIOFileWidgets/krecentdirs.h include/KF5/KIOFileWidgets/kstatusbarofflineindicator.h include/KF5/KIOFileWidgets/kurlnavigator.h include/KF5/KIOGui/KEMailClientLauncherJob include/KF5/KIOGui/KIO/ApplicationLauncherJob include/KF5/KIOGui/KIO/CommandLauncherJob include/KF5/KIOGui/KIO/FavIconRequestJob include/KF5/KIOGui/KIO/KCoreUrlNavigator include/KF5/KIOGui/KIO/OpenUrlJob include/KF5/KIOGui/KIO/OpenWithHandlerInterface +include/KF5/KIOGui/KIO/ThumbnailCreator include/KF5/KIOGui/KTerminalLauncherJob include/KF5/KIOGui/kemailclientlauncherjob.h include/KF5/KIOGui/kio/applicationlauncherjob.h include/KF5/KIOGui/kio/commandlauncherjob.h include/KF5/KIOGui/kio/faviconrequestjob.h include/KF5/KIOGui/kio/kcoreurlnavigator.h include/KF5/KIOGui/kio/openurljob.h include/KF5/KIOGui/kio/openwithhandlerinterface.h +include/KF5/KIOGui/kio/thumbnailcreator.h include/KF5/KIOGui/kiogui_export.h include/KF5/KIOGui/kterminallauncherjob.h include/KF5/KIOWidgets/KAbstractFileItemActionPlugin include/KF5/KIOWidgets/KAutoMount include/KF5/KIOWidgets/KBuildSycocaProgressDialog include/KF5/KIOWidgets/KDesktopFileActions include/KF5/KIOWidgets/KDirLister include/KF5/KIOWidgets/KDirModel include/KF5/KIOWidgets/KFile include/KF5/KIOWidgets/KFileItemActions include/KF5/KIOWidgets/KFileItemDelegate include/KF5/KIOWidgets/KIO/AccessManager +include/KF5/KIOWidgets/KIO/DeleteOrTrashJob include/KF5/KIOWidgets/KIO/DndPopupMenuPlugin include/KF5/KIOWidgets/KIO/DropJob include/KF5/KIOWidgets/KIO/FileUndoManager include/KF5/KIOWidgets/KIO/JobUiDelegate include/KF5/KIOWidgets/KIO/KUriFilterSearchProviderActions include/KF5/KIOWidgets/KIO/OpenFileManagerWindowJob include/KF5/KIOWidgets/KIO/Paste include/KF5/KIOWidgets/KIO/PasteJob include/KF5/KIOWidgets/KIO/PixmapLoader include/KF5/KIOWidgets/KIO/PreviewJob include/KF5/KIOWidgets/KIO/RenameDialog include/KF5/KIOWidgets/KIO/RenameFileDialog include/KF5/KIOWidgets/KIO/SkipDialog include/KF5/KIOWidgets/KIO/SslUi include/KF5/KIOWidgets/KIO/ThumbCreator include/KF5/KIOWidgets/KIO/ThumbDevicePixelRatioDependentCreator include/KF5/KIOWidgets/KIO/ThumbSequenceCreator include/KF5/KIOWidgets/KIO/WidgetsAskUserActionHandler include/KF5/KIOWidgets/KOpenWithDialog include/KF5/KIOWidgets/KOverlayIconPlugin include/KF5/KIOWidgets/KPropertiesDialog include/KF5/KIOWidgets/KRun include/KF5/KIOWidgets/KShellCompletion include/KF5/KIOWidgets/KSslCertificateBox include/KF5/KIOWidgets/KSslInfoDialog include/KF5/KIOWidgets/KUriFilter include/KF5/KIOWidgets/KUrlComboBox include/KF5/KIOWidgets/KUrlCompletion include/KF5/KIOWidgets/KUrlPixmapProvider include/KF5/KIOWidgets/KUrlRequester include/KF5/KIOWidgets/KUrlRequesterDialog include/KF5/KIOWidgets/kabstractfileitemactionplugin.h include/KF5/KIOWidgets/kautomount.h include/KF5/KIOWidgets/kbuildsycocaprogressdialog.h include/KF5/KIOWidgets/kdesktopfileactions.h include/KF5/KIOWidgets/kdirlister.h include/KF5/KIOWidgets/kdirmodel.h include/KF5/KIOWidgets/kfile.h include/KF5/KIOWidgets/kfileitemactions.h include/KF5/KIOWidgets/kfileitemdelegate.h include/KF5/KIOWidgets/kio/accessmanager.h +include/KF5/KIOWidgets/kio/deleteortrashjob.h include/KF5/KIOWidgets/kio/dndpopupmenuplugin.h include/KF5/KIOWidgets/kio/dropjob.h include/KF5/KIOWidgets/kio/fileundomanager.h include/KF5/KIOWidgets/kio/jobuidelegate.h include/KF5/KIOWidgets/kio/kurifiltersearchprovideractions.h include/KF5/KIOWidgets/kio/openfilemanagerwindowjob.h include/KF5/KIOWidgets/kio/paste.h include/KF5/KIOWidgets/kio/pastejob.h include/KF5/KIOWidgets/kio/pixmaploader.h include/KF5/KIOWidgets/kio/previewjob.h include/KF5/KIOWidgets/kio/renamedialog.h include/KF5/KIOWidgets/kio/renamefiledialog.h include/KF5/KIOWidgets/kio/skipdialog.h include/KF5/KIOWidgets/kio/sslui.h include/KF5/KIOWidgets/kio/thumbcreator.h include/KF5/KIOWidgets/kio/thumbdevicepixelratiodependentcreator.h include/KF5/KIOWidgets/kio/thumbsequencecreator.h include/KF5/KIOWidgets/kio/widgetsaskuseractionhandler.h include/KF5/KIOWidgets/kiowidgets_export.h include/KF5/KIOWidgets/kopenwithdialog.h include/KF5/KIOWidgets/koverlayiconplugin.h include/KF5/KIOWidgets/kpropertiesdialog.h include/KF5/KIOWidgets/krun.h include/KF5/KIOWidgets/kshellcompletion.h include/KF5/KIOWidgets/ksslcertificatebox.h include/KF5/KIOWidgets/ksslinfodialog.h include/KF5/KIOWidgets/kurifilter.h include/KF5/KIOWidgets/kurlcombobox.h include/KF5/KIOWidgets/kurlcompletion.h include/KF5/KIOWidgets/kurlpixmapprovider.h include/KF5/KIOWidgets/kurlrequester.h include/KF5/KIOWidgets/kurlrequesterdialog.h include/KF5/kio/kntlm.h include/KF5/kio/kntlm_export.h lib/cmake/KF5KIO/KF5KIOConfig.cmake lib/cmake/KF5KIO/KF5KIOConfigVersion.cmake lib/cmake/KF5KIO/KF5KIOTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KIO/KF5KIOTargets.cmake lib/libKF5KIOCore.so lib/libKF5KIOCore.so.5 lib/libKF5KIOCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOFileWidgets.so lib/libKF5KIOFileWidgets.so.5 lib/libKF5KIOFileWidgets.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOGui.so lib/libKF5KIOGui.so.5 lib/libKF5KIOGui.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIONTLM.so lib/libKF5KIONTLM.so.5 lib/libKF5KIONTLM.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5KIOWidgets.so lib/libKF5KIOWidgets.so.5 lib/libKF5KIOWidgets.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/kio_http_cache_cleaner lib/libexec/kf5/kiod5 lib/libexec/kf5/kioexec lib/libexec/kf5/kioslave5 lib/libexec/kf5/kpac_dhcp_helper %%QT_MKSPECDIR%%/modules/qt_KIOCore.pri %%QT_MKSPECDIR%%/modules/qt_KIOFileWidgets.pri %%QT_MKSPECDIR%%/modules/qt_KIOGui.pri %%QT_MKSPECDIR%%/modules/qt_KIOWidgets.pri %%QT_MKSPECDIR%%/modules/qt_KNTLM.pri %%QT_PLUGINDIR%%/designer/kio5widgets.so %%QT_PLUGINDIR%%/kcm_proxy.so %%QT_PLUGINDIR%%/kcm_trash.so %%QT_PLUGINDIR%%/kcm_webshortcuts.so %%QT_PLUGINDIR%%/kf5/kded/kcookiejar.so %%QT_PLUGINDIR%%/kf5/kded/proxyscout.so %%QT_PLUGINDIR%%/kf5/kded/remotenotifier.so %%QT_PLUGINDIR%%/kf5/kio/kio_file.so %%QT_PLUGINDIR%%/kf5/kio/kio_ftp.so %%QT_PLUGINDIR%%/kf5/kio/kio_ghelp.so %%QT_PLUGINDIR%%/kf5/kio/kio_help.so %%QT_PLUGINDIR%%/kf5/kio/kio_http.so %%QT_PLUGINDIR%%/kf5/kio/kio_remote.so %%QT_PLUGINDIR%%/kf5/kio/kio_trash.so %%QT_PLUGINDIR%%/kf5/kiod/kioexecd.so %%QT_PLUGINDIR%%/kf5/kiod/kpasswdserver.so %%QT_PLUGINDIR%%/kf5/kiod/kssld.so %%QT_PLUGINDIR%%/kf5/urifilters/fixhosturifilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kshorturifilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kuriikwsfilter.so %%QT_PLUGINDIR%%/kf5/urifilters/kurisearchfilter.so %%QT_PLUGINDIR%%/kf5/urifilters/localdomainurifilter.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_smb.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_cookies.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_netpref.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_proxy.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_webshortcuts.so man/ca/man8/kcookiejar5.8.gz man/ca@valencia/man8/kcookiejar5.8.gz man/de/man8/kcookiejar5.8.gz man/es/man8/kcookiejar5.8.gz man/fr/man8/kcookiejar5.8.gz man/it/man8/kcookiejar5.8.gz man/man8/kcookiejar5.8.gz man/nl/man8/kcookiejar5.8.gz man/pt/man8/kcookiejar5.8.gz man/pt_BR/man8/kcookiejar5.8.gz man/sv/man8/kcookiejar5.8.gz man/uk/man8/kcookiejar5.8.gz share/applications/kcm_trash.desktop share/applications/ktelnetservice5.desktop share/dbus-1/interfaces/kf5_org.kde.KCookieServer.xml share/dbus-1/interfaces/kf5_org.kde.KDirNotify.xml share/dbus-1/interfaces/kf5_org.kde.KPasswdServer.xml share/dbus-1/interfaces/kf5_org.kde.KSlaveLauncher.xml share/dbus-1/interfaces/kf5_org.kde.kio.FileUndoManager.xml share/dbus-1/services/org.kde.kcookiejar5.service share/dbus-1/services/org.kde.kiod5.service share/dbus-1/services/org.kde.kioexecd.service share/dbus-1/services/org.kde.kpasswdserver.service share/dbus-1/services/org.kde.kssld5.service share/doc/HTML/ca/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ca/kcontrol5/cookies/index.docbook share/doc/HTML/ca/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ca/kcontrol5/netpref/index.docbook share/doc/HTML/ca/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ca/kcontrol5/proxy/index.docbook share/doc/HTML/ca/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ca/kcontrol5/smb/index.docbook share/doc/HTML/ca/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ca/kcontrol5/trash/index.docbook share/doc/HTML/ca/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ca/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ca/kioslave5/data/index.cache.bz2 share/doc/HTML/ca/kioslave5/data/index.docbook share/doc/HTML/ca/kioslave5/file/index.cache.bz2 share/doc/HTML/ca/kioslave5/file/index.docbook share/doc/HTML/ca/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ca/kioslave5/ftp/index.docbook share/doc/HTML/ca/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ca/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ca/kioslave5/help/index.cache.bz2 share/doc/HTML/ca/kioslave5/help/index.docbook share/doc/HTML/ca/kioslave5/http/index.cache.bz2 share/doc/HTML/ca/kioslave5/http/index.docbook share/doc/HTML/ca/kioslave5/mailto/index.cache.bz2 share/doc/HTML/ca/kioslave5/mailto/index.docbook share/doc/HTML/ca/kioslave5/telnet/index.cache.bz2 share/doc/HTML/ca/kioslave5/telnet/index.docbook share/doc/HTML/ca/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ca/kioslave5/webdav/index.docbook share/doc/HTML/ca@valencia/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/cookies/index.docbook share/doc/HTML/ca@valencia/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/netpref/index.docbook share/doc/HTML/ca@valencia/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/proxy/index.docbook share/doc/HTML/ca@valencia/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/smb/index.docbook share/doc/HTML/ca@valencia/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/trash/index.docbook share/doc/HTML/ca@valencia/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ca@valencia/kioslave5/data/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/data/index.docbook share/doc/HTML/ca@valencia/kioslave5/file/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/file/index.docbook share/doc/HTML/ca@valencia/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/ftp/index.docbook share/doc/HTML/ca@valencia/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ca@valencia/kioslave5/help/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/help/index.docbook share/doc/HTML/ca@valencia/kioslave5/http/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/http/index.docbook share/doc/HTML/ca@valencia/kioslave5/mailto/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/mailto/index.docbook share/doc/HTML/ca@valencia/kioslave5/telnet/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/telnet/index.docbook share/doc/HTML/ca@valencia/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ca@valencia/kioslave5/webdav/index.docbook share/doc/HTML/de/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/de/kcontrol5/cookies/index.docbook share/doc/HTML/de/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/de/kcontrol5/netpref/index.docbook share/doc/HTML/de/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/de/kcontrol5/proxy/index.docbook share/doc/HTML/de/kcontrol5/smb/index.cache.bz2 share/doc/HTML/de/kcontrol5/smb/index.docbook share/doc/HTML/de/kcontrol5/trash/index.cache.bz2 share/doc/HTML/de/kcontrol5/trash/index.docbook share/doc/HTML/de/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/de/kcontrol5/webshortcuts/index.docbook share/doc/HTML/de/kioslave5/data/index.cache.bz2 share/doc/HTML/de/kioslave5/data/index.docbook share/doc/HTML/de/kioslave5/file/index.cache.bz2 share/doc/HTML/de/kioslave5/file/index.docbook share/doc/HTML/de/kioslave5/ftp/index.cache.bz2 share/doc/HTML/de/kioslave5/ftp/index.docbook share/doc/HTML/de/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/de/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/de/kioslave5/help/index.cache.bz2 share/doc/HTML/de/kioslave5/help/index.docbook share/doc/HTML/de/kioslave5/http/index.cache.bz2 share/doc/HTML/de/kioslave5/http/index.docbook share/doc/HTML/de/kioslave5/mailto/index.cache.bz2 share/doc/HTML/de/kioslave5/mailto/index.docbook share/doc/HTML/de/kioslave5/telnet/index.cache.bz2 share/doc/HTML/de/kioslave5/telnet/index.docbook share/doc/HTML/de/kioslave5/webdav/index.cache.bz2 share/doc/HTML/de/kioslave5/webdav/index.docbook share/doc/HTML/en/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/en/kcontrol5/cookies/index.docbook share/doc/HTML/en/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/en/kcontrol5/netpref/index.docbook share/doc/HTML/en/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/en/kcontrol5/proxy/index.docbook share/doc/HTML/en/kcontrol5/smb/index.cache.bz2 share/doc/HTML/en/kcontrol5/smb/index.docbook share/doc/HTML/en/kcontrol5/trash/index.cache.bz2 share/doc/HTML/en/kcontrol5/trash/index.docbook share/doc/HTML/en/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/en/kcontrol5/webshortcuts/index.docbook share/doc/HTML/en/kioslave5/data/index.cache.bz2 share/doc/HTML/en/kioslave5/data/index.docbook share/doc/HTML/en/kioslave5/file/index.cache.bz2 share/doc/HTML/en/kioslave5/file/index.docbook share/doc/HTML/en/kioslave5/ftp/index.cache.bz2 share/doc/HTML/en/kioslave5/ftp/index.docbook share/doc/HTML/en/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/en/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/en/kioslave5/help/index.cache.bz2 share/doc/HTML/en/kioslave5/help/index.docbook share/doc/HTML/en/kioslave5/http/index.cache.bz2 share/doc/HTML/en/kioslave5/http/index.docbook share/doc/HTML/en/kioslave5/mailto/index.cache.bz2 share/doc/HTML/en/kioslave5/mailto/index.docbook share/doc/HTML/en/kioslave5/telnet/index.cache.bz2 share/doc/HTML/en/kioslave5/telnet/index.docbook share/doc/HTML/en/kioslave5/webdav/index.cache.bz2 share/doc/HTML/en/kioslave5/webdav/index.docbook share/doc/HTML/es/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/es/kcontrol5/cookies/index.docbook share/doc/HTML/es/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/es/kcontrol5/netpref/index.docbook share/doc/HTML/es/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/es/kcontrol5/proxy/index.docbook share/doc/HTML/es/kcontrol5/smb/index.cache.bz2 share/doc/HTML/es/kcontrol5/smb/index.docbook share/doc/HTML/es/kcontrol5/trash/index.cache.bz2 share/doc/HTML/es/kcontrol5/trash/index.docbook share/doc/HTML/es/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/es/kcontrol5/webshortcuts/index.docbook share/doc/HTML/es/kioslave5/data/index.cache.bz2 share/doc/HTML/es/kioslave5/data/index.docbook share/doc/HTML/es/kioslave5/file/index.cache.bz2 share/doc/HTML/es/kioslave5/file/index.docbook share/doc/HTML/es/kioslave5/ftp/index.cache.bz2 share/doc/HTML/es/kioslave5/ftp/index.docbook share/doc/HTML/es/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/es/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/es/kioslave5/help/index.cache.bz2 share/doc/HTML/es/kioslave5/help/index.docbook share/doc/HTML/es/kioslave5/http/index.cache.bz2 share/doc/HTML/es/kioslave5/http/index.docbook share/doc/HTML/es/kioslave5/mailto/index.cache.bz2 share/doc/HTML/es/kioslave5/mailto/index.docbook share/doc/HTML/es/kioslave5/telnet/index.cache.bz2 share/doc/HTML/es/kioslave5/telnet/index.docbook share/doc/HTML/es/kioslave5/webdav/index.cache.bz2 share/doc/HTML/es/kioslave5/webdav/index.docbook share/doc/HTML/et/kioslave5/data/index.cache.bz2 share/doc/HTML/et/kioslave5/data/index.docbook share/doc/HTML/et/kioslave5/file/index.cache.bz2 share/doc/HTML/et/kioslave5/file/index.docbook share/doc/HTML/et/kioslave5/ftp/index.cache.bz2 share/doc/HTML/et/kioslave5/ftp/index.docbook share/doc/HTML/et/kioslave5/help/index.cache.bz2 share/doc/HTML/et/kioslave5/help/index.docbook share/doc/HTML/et/kioslave5/http/index.cache.bz2 share/doc/HTML/et/kioslave5/http/index.docbook share/doc/HTML/et/kioslave5/mailto/index.cache.bz2 share/doc/HTML/et/kioslave5/mailto/index.docbook share/doc/HTML/et/kioslave5/telnet/index.cache.bz2 share/doc/HTML/et/kioslave5/telnet/index.docbook share/doc/HTML/et/kioslave5/webdav/index.cache.bz2 share/doc/HTML/et/kioslave5/webdav/index.docbook share/doc/HTML/fr/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/fr/kcontrol5/cookies/index.docbook share/doc/HTML/fr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/fr/kcontrol5/netpref/index.docbook share/doc/HTML/fr/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/fr/kcontrol5/proxy/index.docbook share/doc/HTML/fr/kcontrol5/smb/index.cache.bz2 share/doc/HTML/fr/kcontrol5/smb/index.docbook share/doc/HTML/fr/kcontrol5/trash/index.cache.bz2 share/doc/HTML/fr/kcontrol5/trash/index.docbook share/doc/HTML/fr/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/fr/kcontrol5/webshortcuts/index.docbook share/doc/HTML/fr/kioslave5/data/index.cache.bz2 share/doc/HTML/fr/kioslave5/data/index.docbook share/doc/HTML/fr/kioslave5/file/index.cache.bz2 share/doc/HTML/fr/kioslave5/file/index.docbook share/doc/HTML/fr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/fr/kioslave5/ftp/index.docbook share/doc/HTML/fr/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/fr/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/fr/kioslave5/help/index.cache.bz2 share/doc/HTML/fr/kioslave5/help/index.docbook share/doc/HTML/fr/kioslave5/http/index.cache.bz2 share/doc/HTML/fr/kioslave5/http/index.docbook share/doc/HTML/fr/kioslave5/mailto/index.cache.bz2 share/doc/HTML/fr/kioslave5/mailto/index.docbook share/doc/HTML/fr/kioslave5/telnet/index.cache.bz2 share/doc/HTML/fr/kioslave5/telnet/index.docbook share/doc/HTML/fr/kioslave5/webdav/index.cache.bz2 share/doc/HTML/fr/kioslave5/webdav/index.docbook share/doc/HTML/gl/kioslave5/file/index.cache.bz2 share/doc/HTML/gl/kioslave5/file/index.docbook share/doc/HTML/gl/kioslave5/ftp/index.cache.bz2 share/doc/HTML/gl/kioslave5/ftp/index.docbook share/doc/HTML/gl/kioslave5/help/index.cache.bz2 share/doc/HTML/gl/kioslave5/help/index.docbook share/doc/HTML/gl/kioslave5/http/index.cache.bz2 share/doc/HTML/gl/kioslave5/http/index.docbook share/doc/HTML/gl/kioslave5/telnet/index.cache.bz2 share/doc/HTML/gl/kioslave5/telnet/index.docbook share/doc/HTML/gl/kioslave5/webdav/index.cache.bz2 share/doc/HTML/gl/kioslave5/webdav/index.docbook share/doc/HTML/it/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/it/kcontrol5/cookies/index.docbook share/doc/HTML/it/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/it/kcontrol5/netpref/index.docbook share/doc/HTML/it/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/it/kcontrol5/proxy/index.docbook share/doc/HTML/it/kcontrol5/smb/index.cache.bz2 share/doc/HTML/it/kcontrol5/smb/index.docbook share/doc/HTML/it/kcontrol5/trash/index.cache.bz2 share/doc/HTML/it/kcontrol5/trash/index.docbook share/doc/HTML/it/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/it/kcontrol5/webshortcuts/index.docbook share/doc/HTML/it/kioslave5/data/index.cache.bz2 share/doc/HTML/it/kioslave5/data/index.docbook share/doc/HTML/it/kioslave5/file/index.cache.bz2 share/doc/HTML/it/kioslave5/file/index.docbook share/doc/HTML/it/kioslave5/ftp/index.cache.bz2 share/doc/HTML/it/kioslave5/ftp/index.docbook share/doc/HTML/it/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/it/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/it/kioslave5/help/index.cache.bz2 share/doc/HTML/it/kioslave5/help/index.docbook share/doc/HTML/it/kioslave5/http/index.cache.bz2 share/doc/HTML/it/kioslave5/http/index.docbook share/doc/HTML/it/kioslave5/mailto/index.cache.bz2 share/doc/HTML/it/kioslave5/mailto/index.docbook share/doc/HTML/it/kioslave5/telnet/index.cache.bz2 share/doc/HTML/it/kioslave5/telnet/index.docbook share/doc/HTML/it/kioslave5/webdav/index.cache.bz2 share/doc/HTML/it/kioslave5/webdav/index.docbook share/doc/HTML/nb/kcontrol5/trash/index.cache.bz2 share/doc/HTML/nb/kcontrol5/trash/index.docbook share/doc/HTML/nl/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/nl/kcontrol5/cookies/index.docbook share/doc/HTML/nl/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/nl/kcontrol5/netpref/index.docbook share/doc/HTML/nl/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/nl/kcontrol5/proxy/index.docbook share/doc/HTML/nl/kcontrol5/smb/index.cache.bz2 share/doc/HTML/nl/kcontrol5/smb/index.docbook share/doc/HTML/nl/kcontrol5/trash/index.cache.bz2 share/doc/HTML/nl/kcontrol5/trash/index.docbook share/doc/HTML/nl/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/nl/kcontrol5/webshortcuts/index.docbook share/doc/HTML/nl/kioslave5/data/index.cache.bz2 share/doc/HTML/nl/kioslave5/data/index.docbook share/doc/HTML/nl/kioslave5/file/index.cache.bz2 share/doc/HTML/nl/kioslave5/file/index.docbook share/doc/HTML/nl/kioslave5/ftp/index.cache.bz2 share/doc/HTML/nl/kioslave5/ftp/index.docbook share/doc/HTML/nl/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/nl/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/nl/kioslave5/help/index.cache.bz2 share/doc/HTML/nl/kioslave5/help/index.docbook share/doc/HTML/nl/kioslave5/http/index.cache.bz2 share/doc/HTML/nl/kioslave5/http/index.docbook share/doc/HTML/nl/kioslave5/mailto/index.cache.bz2 share/doc/HTML/nl/kioslave5/mailto/index.docbook share/doc/HTML/nl/kioslave5/telnet/index.cache.bz2 share/doc/HTML/nl/kioslave5/telnet/index.docbook share/doc/HTML/nl/kioslave5/webdav/index.cache.bz2 share/doc/HTML/nl/kioslave5/webdav/index.docbook share/doc/HTML/pt/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/pt/kcontrol5/cookies/index.docbook share/doc/HTML/pt/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/pt/kcontrol5/netpref/index.docbook share/doc/HTML/pt/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/pt/kcontrol5/proxy/index.docbook share/doc/HTML/pt/kcontrol5/smb/index.cache.bz2 share/doc/HTML/pt/kcontrol5/smb/index.docbook share/doc/HTML/pt/kcontrol5/trash/index.cache.bz2 share/doc/HTML/pt/kcontrol5/trash/index.docbook share/doc/HTML/pt/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/pt/kcontrol5/webshortcuts/index.docbook share/doc/HTML/pt/kioslave5/data/index.cache.bz2 share/doc/HTML/pt/kioslave5/data/index.docbook share/doc/HTML/pt/kioslave5/file/index.cache.bz2 share/doc/HTML/pt/kioslave5/file/index.docbook share/doc/HTML/pt/kioslave5/ftp/index.cache.bz2 share/doc/HTML/pt/kioslave5/ftp/index.docbook share/doc/HTML/pt/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/pt/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/pt/kioslave5/help/index.cache.bz2 share/doc/HTML/pt/kioslave5/help/index.docbook share/doc/HTML/pt/kioslave5/http/index.cache.bz2 share/doc/HTML/pt/kioslave5/http/index.docbook share/doc/HTML/pt/kioslave5/mailto/index.cache.bz2 share/doc/HTML/pt/kioslave5/mailto/index.docbook share/doc/HTML/pt/kioslave5/telnet/index.cache.bz2 share/doc/HTML/pt/kioslave5/telnet/index.docbook share/doc/HTML/pt/kioslave5/webdav/index.cache.bz2 share/doc/HTML/pt/kioslave5/webdav/index.docbook share/doc/HTML/pt_BR/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/cookies/index.docbook share/doc/HTML/pt_BR/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/netpref/index.docbook share/doc/HTML/pt_BR/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/proxy/index.docbook share/doc/HTML/pt_BR/kcontrol5/smb/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/smb/index.docbook share/doc/HTML/pt_BR/kcontrol5/trash/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/trash/index.docbook share/doc/HTML/pt_BR/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/webshortcuts/index.docbook share/doc/HTML/pt_BR/kioslave5/data/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/data/index.docbook share/doc/HTML/pt_BR/kioslave5/file/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/file/index.docbook share/doc/HTML/pt_BR/kioslave5/ftp/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/ftp/index.docbook share/doc/HTML/pt_BR/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/pt_BR/kioslave5/help/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/help/index.docbook share/doc/HTML/pt_BR/kioslave5/http/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/http/index.docbook share/doc/HTML/pt_BR/kioslave5/mailto/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/mailto/index.docbook share/doc/HTML/pt_BR/kioslave5/telnet/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/telnet/index.docbook share/doc/HTML/pt_BR/kioslave5/webdav/index.cache.bz2 share/doc/HTML/pt_BR/kioslave5/webdav/index.docbook share/doc/HTML/ru/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/ru/kcontrol5/cookies/index.docbook share/doc/HTML/ru/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/ru/kcontrol5/netpref/index.docbook share/doc/HTML/ru/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/ru/kcontrol5/proxy/index.docbook share/doc/HTML/ru/kcontrol5/smb/index.cache.bz2 share/doc/HTML/ru/kcontrol5/smb/index.docbook share/doc/HTML/ru/kcontrol5/trash/index.cache.bz2 share/doc/HTML/ru/kcontrol5/trash/index.docbook share/doc/HTML/ru/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/ru/kcontrol5/webshortcuts/index.docbook share/doc/HTML/ru/kioslave5/data/index.cache.bz2 share/doc/HTML/ru/kioslave5/data/index.docbook share/doc/HTML/ru/kioslave5/file/index.cache.bz2 share/doc/HTML/ru/kioslave5/file/index.docbook share/doc/HTML/ru/kioslave5/ftp/index.cache.bz2 share/doc/HTML/ru/kioslave5/ftp/index.docbook share/doc/HTML/ru/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/ru/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/ru/kioslave5/help/index.cache.bz2 share/doc/HTML/ru/kioslave5/help/index.docbook share/doc/HTML/ru/kioslave5/http/index.cache.bz2 share/doc/HTML/ru/kioslave5/http/index.docbook share/doc/HTML/ru/kioslave5/telnet/index.cache.bz2 share/doc/HTML/ru/kioslave5/telnet/index.docbook share/doc/HTML/ru/kioslave5/webdav/index.cache.bz2 share/doc/HTML/ru/kioslave5/webdav/index.docbook share/doc/HTML/sr/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sr/kcontrol5/cookies/index.docbook share/doc/HTML/sr/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sr/kcontrol5/netpref/index.docbook share/doc/HTML/sr/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sr/kcontrol5/proxy/index.docbook share/doc/HTML/sr/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sr/kcontrol5/smb/index.docbook share/doc/HTML/sr/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sr/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sr/kioslave5/data/index.cache.bz2 share/doc/HTML/sr/kioslave5/data/index.docbook share/doc/HTML/sr/kioslave5/file/index.cache.bz2 share/doc/HTML/sr/kioslave5/file/index.docbook share/doc/HTML/sr/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sr/kioslave5/ftp/index.docbook share/doc/HTML/sr/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sr/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sr/kioslave5/help/index.cache.bz2 share/doc/HTML/sr/kioslave5/help/index.docbook share/doc/HTML/sr/kioslave5/http/index.cache.bz2 share/doc/HTML/sr/kioslave5/http/index.docbook share/doc/HTML/sr/kioslave5/mailto/index.cache.bz2 share/doc/HTML/sr/kioslave5/mailto/index.docbook share/doc/HTML/sr/kioslave5/telnet/index.cache.bz2 share/doc/HTML/sr/kioslave5/telnet/index.docbook share/doc/HTML/sr/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sr/kioslave5/webdav/index.docbook share/doc/HTML/sr@latin/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/cookies/index.docbook share/doc/HTML/sr@latin/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/netpref/index.docbook share/doc/HTML/sr@latin/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/proxy/index.docbook share/doc/HTML/sr@latin/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/smb/index.docbook share/doc/HTML/sr@latin/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sr@latin/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sr@latin/kioslave5/data/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/data/index.docbook share/doc/HTML/sr@latin/kioslave5/file/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/file/index.docbook share/doc/HTML/sr@latin/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/ftp/index.docbook share/doc/HTML/sr@latin/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sr@latin/kioslave5/help/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/help/index.docbook share/doc/HTML/sr@latin/kioslave5/http/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/http/index.docbook share/doc/HTML/sr@latin/kioslave5/mailto/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/mailto/index.docbook share/doc/HTML/sr@latin/kioslave5/telnet/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/telnet/index.docbook share/doc/HTML/sr@latin/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sr@latin/kioslave5/webdav/index.docbook share/doc/HTML/sv/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/sv/kcontrol5/cookies/index.docbook share/doc/HTML/sv/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/sv/kcontrol5/netpref/index.docbook share/doc/HTML/sv/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/sv/kcontrol5/proxy/index.docbook share/doc/HTML/sv/kcontrol5/smb/index.cache.bz2 share/doc/HTML/sv/kcontrol5/smb/index.docbook share/doc/HTML/sv/kcontrol5/trash/index.cache.bz2 share/doc/HTML/sv/kcontrol5/trash/index.docbook share/doc/HTML/sv/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/sv/kcontrol5/webshortcuts/index.docbook share/doc/HTML/sv/kioslave5/data/index.cache.bz2 share/doc/HTML/sv/kioslave5/data/index.docbook share/doc/HTML/sv/kioslave5/file/index.cache.bz2 share/doc/HTML/sv/kioslave5/file/index.docbook share/doc/HTML/sv/kioslave5/ftp/index.cache.bz2 share/doc/HTML/sv/kioslave5/ftp/index.docbook share/doc/HTML/sv/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/sv/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/sv/kioslave5/help/index.cache.bz2 share/doc/HTML/sv/kioslave5/help/index.docbook share/doc/HTML/sv/kioslave5/http/index.cache.bz2 share/doc/HTML/sv/kioslave5/http/index.docbook share/doc/HTML/sv/kioslave5/mailto/index.cache.bz2 share/doc/HTML/sv/kioslave5/mailto/index.docbook share/doc/HTML/sv/kioslave5/telnet/index.cache.bz2 share/doc/HTML/sv/kioslave5/telnet/index.docbook share/doc/HTML/sv/kioslave5/webdav/index.cache.bz2 share/doc/HTML/sv/kioslave5/webdav/index.docbook share/doc/HTML/uk/kcontrol5/cookies/index.cache.bz2 share/doc/HTML/uk/kcontrol5/cookies/index.docbook share/doc/HTML/uk/kcontrol5/netpref/index.cache.bz2 share/doc/HTML/uk/kcontrol5/netpref/index.docbook share/doc/HTML/uk/kcontrol5/proxy/index.cache.bz2 share/doc/HTML/uk/kcontrol5/proxy/index.docbook share/doc/HTML/uk/kcontrol5/smb/index.cache.bz2 share/doc/HTML/uk/kcontrol5/smb/index.docbook share/doc/HTML/uk/kcontrol5/trash/index.cache.bz2 share/doc/HTML/uk/kcontrol5/trash/index.docbook share/doc/HTML/uk/kcontrol5/webshortcuts/index.cache.bz2 share/doc/HTML/uk/kcontrol5/webshortcuts/index.docbook share/doc/HTML/uk/kioslave5/data/index.cache.bz2 share/doc/HTML/uk/kioslave5/data/index.docbook share/doc/HTML/uk/kioslave5/file/index.cache.bz2 share/doc/HTML/uk/kioslave5/file/index.docbook share/doc/HTML/uk/kioslave5/ftp/index.cache.bz2 share/doc/HTML/uk/kioslave5/ftp/index.docbook share/doc/HTML/uk/kioslave5/help/documentationnotfound/index.cache.bz2 share/doc/HTML/uk/kioslave5/help/documentationnotfound/index.docbook share/doc/HTML/uk/kioslave5/help/index.cache.bz2 share/doc/HTML/uk/kioslave5/help/index.docbook share/doc/HTML/uk/kioslave5/http/index.cache.bz2 share/doc/HTML/uk/kioslave5/http/index.docbook share/doc/HTML/uk/kioslave5/mailto/index.cache.bz2 share/doc/HTML/uk/kioslave5/mailto/index.docbook share/doc/HTML/uk/kioslave5/telnet/index.cache.bz2 share/doc/HTML/uk/kioslave5/telnet/index.docbook share/doc/HTML/uk/kioslave5/webdav/index.cache.bz2 share/doc/HTML/uk/kioslave5/webdav/index.docbook share/doc/HTML/zh_CN/kioslave5/telnet/index.cache.bz2 share/doc/HTML/zh_CN/kioslave5/telnet/index.docbook share/kconf_update/filepicker.upd share/kdevappwizard/templates/kioworker.tar.bz2 share/kf5/kcookiejar/domain_info share/knotifications5/proxyscout.notifyrc share/kservices5/cookies.desktop share/kservices5/http_cache_cleaner.desktop share/kservices5/kcmtrash.desktop share/kservices5/netpref.desktop share/kservices5/proxy.desktop share/kservices5/searchproviders/7digital.desktop share/kservices5/searchproviders/acronym.desktop share/kservices5/searchproviders/amazon.desktop share/kservices5/searchproviders/amazon_mp3.desktop share/kservices5/searchproviders/amg.desktop share/kservices5/searchproviders/archpkg.desktop share/kservices5/searchproviders/archwiki.desktop share/kservices5/searchproviders/backports.desktop share/kservices5/searchproviders/baidu.desktop share/kservices5/searchproviders/beolingus.desktop share/kservices5/searchproviders/bing.desktop share/kservices5/searchproviders/bug.desktop share/kservices5/searchproviders/call.desktop share/kservices5/searchproviders/cia.desktop share/kservices5/searchproviders/citeseer.desktop share/kservices5/searchproviders/cpan.desktop share/kservices5/searchproviders/cplusplus.desktop share/kservices5/searchproviders/cppreference.desktop share/kservices5/searchproviders/ctan.desktop share/kservices5/searchproviders/ctan_cat.desktop share/kservices5/searchproviders/dbug.desktop share/kservices5/searchproviders/de2en.desktop share/kservices5/searchproviders/de2fr.desktop share/kservices5/searchproviders/deb.desktop share/kservices5/searchproviders/deepl.desktop share/kservices5/searchproviders/dictfr.desktop share/kservices5/searchproviders/docbook.desktop share/kservices5/searchproviders/doi.desktop share/kservices5/searchproviders/duckduckgo.desktop share/kservices5/searchproviders/duckduckgo_info.desktop share/kservices5/searchproviders/duckduckgo_shopping.desktop share/kservices5/searchproviders/ecosia.desktop share/kservices5/searchproviders/en2de.desktop share/kservices5/searchproviders/en2es.desktop share/kservices5/searchproviders/en2fr.desktop share/kservices5/searchproviders/en2it.desktop share/kservices5/searchproviders/es2en.desktop share/kservices5/searchproviders/facebook.desktop share/kservices5/searchproviders/feedster.desktop share/kservices5/searchproviders/flatpak.desktop share/kservices5/searchproviders/flickr.desktop share/kservices5/searchproviders/flickrcc.desktop share/kservices5/searchproviders/foldoc.desktop share/kservices5/searchproviders/fr2de.desktop share/kservices5/searchproviders/fr2en.desktop share/kservices5/searchproviders/freecode.desktop share/kservices5/searchproviders/freedb.desktop share/kservices5/searchproviders/fsd.desktop share/kservices5/searchproviders/github.desktop share/kservices5/searchproviders/gitlab.desktop share/kservices5/searchproviders/google.desktop share/kservices5/searchproviders/google_advanced.desktop share/kservices5/searchproviders/google_code.desktop share/kservices5/searchproviders/google_groups.desktop share/kservices5/searchproviders/google_images.desktop share/kservices5/searchproviders/google_lucky.desktop share/kservices5/searchproviders/google_maps.desktop share/kservices5/searchproviders/google_movie.desktop share/kservices5/searchproviders/google_news.desktop share/kservices5/searchproviders/google_shopping.desktop share/kservices5/searchproviders/grec.desktop share/kservices5/searchproviders/hyperdictionary.desktop share/kservices5/searchproviders/hyperdictionary_thesaurus.desktop share/kservices5/searchproviders/identica_groups.desktop share/kservices5/searchproviders/identica_notices.desktop share/kservices5/searchproviders/identica_people.desktop share/kservices5/searchproviders/imdb.desktop share/kservices5/searchproviders/invent.desktop share/kservices5/searchproviders/invent_issues.desktop share/kservices5/searchproviders/invent_mr.desktop share/kservices5/searchproviders/invent_repo.desktop share/kservices5/searchproviders/it2en.desktop share/kservices5/searchproviders/jamendo.desktop share/kservices5/searchproviders/jeeves.desktop share/kservices5/searchproviders/kde.desktop share/kservices5/searchproviders/kde_apps.desktop share/kservices5/searchproviders/kde_forums.desktop share/kservices5/searchproviders/kde_store.desktop share/kservices5/searchproviders/kde_techbase.desktop share/kservices5/searchproviders/kde_userbase.desktop share/kservices5/searchproviders/kreddit.desktop share/kservices5/searchproviders/krita.desktop share/kservices5/searchproviders/learncpp.desktop share/kservices5/searchproviders/leo.desktop share/kservices5/searchproviders/linguee.desktop share/kservices5/searchproviders/magnatune.desktop share/kservices5/searchproviders/metacrawler.desktop share/kservices5/searchproviders/microsoft_cpp.desktop share/kservices5/searchproviders/msdn.desktop share/kservices5/searchproviders/multitran-deru.desktop share/kservices5/searchproviders/multitran-enru.desktop share/kservices5/searchproviders/multitran-esru.desktop share/kservices5/searchproviders/multitran-frru.desktop share/kservices5/searchproviders/multitran-itru.desktop share/kservices5/searchproviders/multitran-nlru.desktop share/kservices5/searchproviders/netcraft.desktop share/kservices5/searchproviders/nl-telephone.desktop share/kservices5/searchproviders/nl-teletekst.desktop share/kservices5/searchproviders/opendesktop.desktop share/kservices5/searchproviders/opensuse.desktop share/kservices5/searchproviders/pgpkeys.desktop share/kservices5/searchproviders/php.desktop share/kservices5/searchproviders/protondb.desktop share/kservices5/searchproviders/python.desktop share/kservices5/searchproviders/qt5.desktop share/kservices5/searchproviders/qt6.desktop share/kservices5/searchproviders/qwant.desktop share/kservices5/searchproviders/qwant_images.desktop share/kservices5/searchproviders/qwant_news.desktop share/kservices5/searchproviders/qwant_shopping.desktop share/kservices5/searchproviders/qwant_social.desktop share/kservices5/searchproviders/qwant_videos.desktop share/kservices5/searchproviders/rae.desktop share/kservices5/searchproviders/rag.desktop share/kservices5/searchproviders/reddit.desktop share/kservices5/searchproviders/rfc.desktop share/kservices5/searchproviders/rpmfind.desktop share/kservices5/searchproviders/ruby_application_archive.desktop share/kservices5/searchproviders/rust.desktop share/kservices5/searchproviders/soundcloud.desktop share/kservices5/searchproviders/sourceforge.desktop share/kservices5/searchproviders/technorati.desktop share/kservices5/searchproviders/technoratitags.desktop share/kservices5/searchproviders/thesaurus.desktop share/kservices5/searchproviders/tvtome.desktop share/kservices5/searchproviders/ubuntu.desktop share/kservices5/searchproviders/urbandictionary.desktop share/kservices5/searchproviders/uspto.desktop share/kservices5/searchproviders/vimeo.desktop share/kservices5/searchproviders/voila.desktop share/kservices5/searchproviders/webster.desktop share/kservices5/searchproviders/wikia.desktop share/kservices5/searchproviders/wikipedia.desktop share/kservices5/searchproviders/wiktionary.desktop share/kservices5/searchproviders/wine.desktop share/kservices5/searchproviders/wolfram_alpha.desktop share/kservices5/searchproviders/wordref.desktop share/kservices5/searchproviders/yahoo.desktop share/kservices5/searchproviders/yahoo_image.desktop share/kservices5/searchproviders/yahoo_local.desktop share/kservices5/searchproviders/yahoo_shopping.desktop share/kservices5/searchproviders/yahoo_video.desktop share/kservices5/searchproviders/yandex.desktop share/kservices5/searchproviders/youtube.desktop share/kservices5/smb.desktop share/kservices5/webshortcuts.desktop share/kservicetypes5/kfileitemactionplugin.desktop share/kservicetypes5/konqpopupmenuplugin.desktop share/kservicetypes5/kpropertiesdialogplugin.desktop -share/kservicetypes5/kurifilterplugin.desktop share/kservicetypes5/searchprovider.desktop share/locale/af/LC_MESSAGES/kio5.mo share/locale/ar/LC_MESSAGES/kio5.mo share/locale/ast/LC_MESSAGES/kio5.mo share/locale/az/LC_MESSAGES/kio5.mo share/locale/be/LC_MESSAGES/kio5.mo share/locale/be@latin/LC_MESSAGES/kio5.mo share/locale/bg/LC_MESSAGES/kio5.mo share/locale/bn/LC_MESSAGES/kio5.mo share/locale/br/LC_MESSAGES/kio5.mo share/locale/bs/LC_MESSAGES/kio5.mo share/locale/ca/LC_MESSAGES/kio5.mo share/locale/ca@valencia/LC_MESSAGES/kio5.mo share/locale/cs/LC_MESSAGES/kio5.mo share/locale/csb/LC_MESSAGES/kio5.mo share/locale/cy/LC_MESSAGES/kio5.mo share/locale/da/LC_MESSAGES/kio5.mo share/locale/de/LC_MESSAGES/kio5.mo share/locale/el/LC_MESSAGES/kio5.mo share/locale/en_GB/LC_MESSAGES/kio5.mo share/locale/eo/LC_MESSAGES/kio5.mo share/locale/es/LC_MESSAGES/kio5.mo share/locale/et/LC_MESSAGES/kio5.mo share/locale/eu/LC_MESSAGES/kio5.mo share/locale/fa/LC_MESSAGES/kio5.mo share/locale/fi/LC_MESSAGES/kio5.mo share/locale/fr/LC_MESSAGES/kio5.mo share/locale/fy/LC_MESSAGES/kio5.mo share/locale/ga/LC_MESSAGES/kio5.mo share/locale/gl/LC_MESSAGES/kio5.mo share/locale/gu/LC_MESSAGES/kio5.mo share/locale/he/LC_MESSAGES/kio5.mo share/locale/hi/LC_MESSAGES/kio5.mo share/locale/hr/LC_MESSAGES/kio5.mo share/locale/hsb/LC_MESSAGES/kio5.mo share/locale/hu/LC_MESSAGES/kio5.mo share/locale/ia/LC_MESSAGES/kio5.mo share/locale/id/LC_MESSAGES/kio5.mo +share/locale/ie/LC_MESSAGES/kio5.mo share/locale/is/LC_MESSAGES/kio5.mo share/locale/it/LC_MESSAGES/kio5.mo share/locale/ja/LC_MESSAGES/kio5.mo share/locale/ka/LC_MESSAGES/kio5.mo share/locale/kk/LC_MESSAGES/kio5.mo share/locale/km/LC_MESSAGES/kio5.mo share/locale/ko/LC_MESSAGES/kio5.mo share/locale/ku/LC_MESSAGES/kio5.mo share/locale/lt/LC_MESSAGES/kio5.mo share/locale/lv/LC_MESSAGES/kio5.mo share/locale/mai/LC_MESSAGES/kio5.mo share/locale/mk/LC_MESSAGES/kio5.mo share/locale/ml/LC_MESSAGES/kio5.mo share/locale/mr/LC_MESSAGES/kio5.mo share/locale/ms/LC_MESSAGES/kio5.mo share/locale/my/LC_MESSAGES/kio5.mo share/locale/nb/LC_MESSAGES/kio5.mo share/locale/nds/LC_MESSAGES/kio5.mo share/locale/ne/LC_MESSAGES/kio5.mo share/locale/nl/LC_MESSAGES/kio5.mo share/locale/nn/LC_MESSAGES/kio5.mo share/locale/oc/LC_MESSAGES/kio5.mo share/locale/pa/LC_MESSAGES/kio5.mo share/locale/pl/LC_MESSAGES/kio5.mo share/locale/pt/LC_MESSAGES/kio5.mo share/locale/pt_BR/LC_MESSAGES/kio5.mo share/locale/ro/LC_MESSAGES/kio5.mo share/locale/ru/LC_MESSAGES/kio5.mo share/locale/se/LC_MESSAGES/kio5.mo share/locale/sk/LC_MESSAGES/kio5.mo share/locale/sl/LC_MESSAGES/kio5.mo share/locale/sq/LC_MESSAGES/kio5.mo share/locale/sr/LC_MESSAGES/kio5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5.mo share/locale/sr@latin/LC_MESSAGES/kio5.mo share/locale/sv/LC_MESSAGES/kio5.mo share/locale/ta/LC_MESSAGES/kio5.mo share/locale/tg/LC_MESSAGES/kio5.mo share/locale/th/LC_MESSAGES/kio5.mo share/locale/tok/LC_MESSAGES/kio5.mo share/locale/tr/LC_MESSAGES/kio5.mo share/locale/ug/LC_MESSAGES/kio5.mo share/locale/uk/LC_MESSAGES/kio5.mo share/locale/uz/LC_MESSAGES/kio5.mo share/locale/uz@cyrillic/LC_MESSAGES/kio5.mo share/locale/vi/LC_MESSAGES/kio5.mo share/locale/wa/LC_MESSAGES/kio5.mo share/locale/xh/LC_MESSAGES/kio5.mo share/locale/zh_CN/LC_MESSAGES/kio5.mo share/locale/zh_TW/LC_MESSAGES/kio5.mo share/qlogging-categories5/kio.categories share/qlogging-categories5/kio.renamecategories diff --git a/devel/kf5-kitemmodels/distinfo b/devel/kf5-kitemmodels/distinfo index c9ea7d7a3890..a403f73c79fe 100644 --- a/devel/kf5-kitemmodels/distinfo +++ b/devel/kf5-kitemmodels/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689109 -SHA256 (KDE/frameworks/5.99.0/kitemmodels-5.99.0.tar.xz) = 37ce9d8dc6670cf3966dabb26935d74e6e22498157a2bad560e0dd22f36ca2fc -SIZE (KDE/frameworks/5.99.0/kitemmodels-5.99.0.tar.xz) = 407288 +TIMESTAMP = 1667804642 +SHA256 (KDE/frameworks/5.100.0/kitemmodels-5.100.0.tar.xz) = a327626184f36e19998ec8848714e362de615cbc2c98cdf3737457d9878e31d8 +SIZE (KDE/frameworks/5.100.0/kitemmodels-5.100.0.tar.xz) = 407436 diff --git a/devel/kf5-knewstuff/distinfo b/devel/kf5-knewstuff/distinfo index 27bdc40ebd51..7f360c270d43 100644 --- a/devel/kf5-knewstuff/distinfo +++ b/devel/kf5-knewstuff/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689110 -SHA256 (KDE/frameworks/5.99.0/knewstuff-5.99.0.tar.xz) = 4824b6aa08c58671b182ba489d45a83122b522315750cc90cf8f544337d4a72d -SIZE (KDE/frameworks/5.99.0/knewstuff-5.99.0.tar.xz) = 1162232 +TIMESTAMP = 1667804643 +SHA256 (KDE/frameworks/5.100.0/knewstuff-5.100.0.tar.xz) = c32e617b81a948d315b45b30668dfa61cdc39b8a866d5c2a3e86e88c2528dfa5 +SIZE (KDE/frameworks/5.100.0/knewstuff-5.100.0.tar.xz) = 3405756 diff --git a/devel/kf5-knewstuff/pkg-plist b/devel/kf5-knewstuff/pkg-plist index f03b380de0c2..0ab66fbe14a7 100644 --- a/devel/kf5-knewstuff/pkg-plist +++ b/devel/kf5-knewstuff/pkg-plist @@ -1,304 +1,305 @@ bin/knewstuff-dialog include/KF5/KMoreTools/KMoreTools include/KF5/KMoreTools/KMoreToolsMenuFactory include/KF5/KMoreTools/KMoreToolsPresets include/KF5/KMoreTools/kmoretools.h include/KF5/KMoreTools/kmoretoolsmenufactory.h include/KF5/KMoreTools/kmoretoolspresets.h include/KF5/KNewStuff3/KNS3/Button include/KF5/KNewStuff3/KNS3/DownloadDialog include/KF5/KNewStuff3/KNS3/DownloadManager include/KF5/KNewStuff3/KNS3/DownloadWidget include/KF5/KNewStuff3/KNS3/Entry include/KF5/KNewStuff3/KNS3/KMoreTools include/KF5/KNewStuff3/KNS3/KMoreToolsMenuFactory include/KF5/KNewStuff3/KNS3/KMoreToolsPresets include/KF5/KNewStuff3/KNS3/QtQuickDialogWrapper include/KF5/KNewStuff3/KNS3/UploadDialog include/KF5/KNewStuff3/KNS3/button.h include/KF5/KNewStuff3/KNS3/downloaddialog.h include/KF5/KNewStuff3/KNS3/downloadmanager.h include/KF5/KNewStuff3/KNS3/downloadwidget.h include/KF5/KNewStuff3/KNS3/entry.h include/KF5/KNewStuff3/KNS3/kmoretools.h include/KF5/KNewStuff3/KNS3/kmoretoolsmenufactory.h include/KF5/KNewStuff3/KNS3/kmoretoolspresets.h include/KF5/KNewStuff3/KNS3/knewstuff_export.h include/KF5/KNewStuff3/KNS3/knewstuffaction.h include/KF5/KNewStuff3/KNS3/qtquickdialogwrapper.h include/KF5/KNewStuff3/KNS3/uploaddialog.h include/KF5/KNewStuff3/KNSCore/Author include/KF5/KNewStuff3/KNSCore/Cache include/KF5/KNewStuff3/KNSCore/DownloadManager include/KF5/KNewStuff3/KNSCore/Engine include/KF5/KNewStuff3/KNSCore/EntryInternal include/KF5/KNewStuff3/KNSCore/EntryWrapper include/KF5/KNewStuff3/KNSCore/ErrorCode include/KF5/KNewStuff3/KNSCore/Installation include/KF5/KNewStuff3/KNSCore/ItemsModel include/KF5/KNewStuff3/KNSCore/Provider include/KF5/KNewStuff3/KNSCore/ProvidersModel include/KF5/KNewStuff3/KNSCore/Question include/KF5/KNewStuff3/KNSCore/QuestionListener include/KF5/KNewStuff3/KNSCore/QuestionManager include/KF5/KNewStuff3/KNSCore/Security include/KF5/KNewStuff3/KNSCore/TagsFilterChecker include/KF5/KNewStuff3/KNSCore/XmlLoader include/KF5/KNewStuff3/KNSCore/author.h include/KF5/KNewStuff3/KNSCore/cache.h include/KF5/KNewStuff3/KNSCore/downloadmanager.h include/KF5/KNewStuff3/KNSCore/engine.h include/KF5/KNewStuff3/KNSCore/entryinternal.h include/KF5/KNewStuff3/KNSCore/entrywrapper.h include/KF5/KNewStuff3/KNSCore/errorcode.h include/KF5/KNewStuff3/KNSCore/installation.h include/KF5/KNewStuff3/KNSCore/itemsmodel.h include/KF5/KNewStuff3/KNSCore/knewstuffcore_export.h include/KF5/KNewStuff3/KNSCore/provider.h include/KF5/KNewStuff3/KNSCore/providersmodel.h include/KF5/KNewStuff3/KNSCore/question.h include/KF5/KNewStuff3/KNSCore/questionlistener.h include/KF5/KNewStuff3/KNSCore/questionmanager.h include/KF5/KNewStuff3/KNSCore/security.h include/KF5/KNewStuff3/KNSCore/tagsfilterchecker.h include/KF5/KNewStuff3/KNSCore/xmlloader.h include/KF5/KNewStuff3/KNSWidgets/Action include/KF5/KNewStuff3/KNSWidgets/Button include/KF5/KNewStuff3/KNSWidgets/action.h include/KF5/KNewStuff3/KNSWidgets/button.h include/KF5/KNewStuff3/KNSWidgets/knewstuffwidgets_export.h include/KF5/KNewStuff3/knewstuff_version.h include/KF5/KNewStuff3/knewstuffcore_version.h include/KF5/KNewStuff3/knewstuffquick_version.h include/KF5/KNewStuff3/kns3/button.h include/KF5/KNewStuff3/kns3/downloaddialog.h include/KF5/KNewStuff3/kns3/downloadmanager.h include/KF5/KNewStuff3/kns3/downloadwidget.h include/KF5/KNewStuff3/kns3/entry.h include/KF5/KNewStuff3/kns3/kmoretools.h include/KF5/KNewStuff3/kns3/kmoretoolsmenufactory.h include/KF5/KNewStuff3/kns3/kmoretoolspresets.h include/KF5/KNewStuff3/kns3/knewstuff_export.h include/KF5/KNewStuff3/kns3/knewstuffaction.h include/KF5/KNewStuff3/kns3/qtquickdialogwrapper.h include/KF5/KNewStuff3/kns3/uploaddialog.h include/KF5/KNewStuff3/knscore/author.h include/KF5/KNewStuff3/knscore/cache.h include/KF5/KNewStuff3/knscore/downloadmanager.h include/KF5/KNewStuff3/knscore/engine.h include/KF5/KNewStuff3/knscore/entryinternal.h include/KF5/KNewStuff3/knscore/entrywrapper.h include/KF5/KNewStuff3/knscore/errorcode.h include/KF5/KNewStuff3/knscore/installation.h include/KF5/KNewStuff3/knscore/itemsmodel.h include/KF5/KNewStuff3/knscore/knewstuffcore_export.h include/KF5/KNewStuff3/knscore/provider.h include/KF5/KNewStuff3/knscore/providersmodel.h include/KF5/KNewStuff3/knscore/question.h include/KF5/KNewStuff3/knscore/questionlistener.h include/KF5/KNewStuff3/knscore/questionmanager.h include/KF5/KNewStuff3/knscore/security.h include/KF5/KNewStuff3/knscore/tagsfilterchecker.h include/KF5/KNewStuff3/knscore/xmlloader.h include/KF5/KNewStuff3/knswidgets/action.h include/KF5/KNewStuff3/knswidgets/button.h include/KF5/KNewStuff3/knswidgets/knewstuffwidgets_export.h lib/cmake/KF5NewStuff/KF5NewStuffConfig.cmake lib/cmake/KF5NewStuff/KF5NewStuffConfigVersion.cmake lib/cmake/KF5NewStuff/KF5NewStuffTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5NewStuff/KF5NewStuffTargets.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreConfig.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreConfigVersion.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5NewStuffCore/KF5NewStuffCoreTargets.cmake lib/cmake/KF5NewStuffQuick/KF5NewStuffQuickConfig.cmake lib/cmake/KF5NewStuffQuick/KF5NewStuffQuickConfigVersion.cmake lib/libKF5NewStuff.so lib/libKF5NewStuff.so.5 lib/libKF5NewStuff.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5NewStuffCore.so lib/libKF5NewStuffCore.so.5 lib/libKF5NewStuffCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5NewStuffWidgets.so lib/libKF5NewStuffWidgets.so.5 lib/libKF5NewStuffWidgets.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KNewStuff.pri %%QT_MKSPECDIR%%/modules/qt_KNewStuffCore.pri +%%QT_PLUGINDIR%%/designer/knewstuffwidgets.so %%QT_QMLDIR%%/org/kde/newstuff/Action.qml %%QT_QMLDIR%%/org/kde/newstuff/Button.qml %%QT_QMLDIR%%/org/kde/newstuff/Dialog.qml %%QT_QMLDIR%%/org/kde/newstuff/DialogContent.qml %%QT_QMLDIR%%/org/kde/newstuff/DownloadItemsSheet.qml %%QT_QMLDIR%%/org/kde/newstuff/EntryDetails.qml %%QT_QMLDIR%%/org/kde/newstuff/NewStuffItem.qml %%QT_QMLDIR%%/org/kde/newstuff/NewStuffList.qml %%QT_QMLDIR%%/org/kde/newstuff/Page.qml %%QT_QMLDIR%%/org/kde/newstuff/QuestionAsker.qml %%QT_QMLDIR%%/org/kde/newstuff/UploadPage.qml %%QT_QMLDIR%%/org/kde/newstuff/libnewstuffqmlplugin.so %%QT_QMLDIR%%/org/kde/newstuff/private/ConditionalLoader.qml %%QT_QMLDIR%%/org/kde/newstuff/private/EntryCommentDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/EntryCommentsPage.qml %%QT_QMLDIR%%/org/kde/newstuff/private/EntryScreenshots.qml %%QT_QMLDIR%%/org/kde/newstuff/private/ErrorDisplayer.qml %%QT_QMLDIR%%/org/kde/newstuff/private/GridTileDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/MessageBoxSheet.qml %%QT_QMLDIR%%/org/kde/newstuff/private/Rating.qml %%QT_QMLDIR%%/org/kde/newstuff/private/Shadow.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/BigPreviewDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/FeedbackOverlay.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/ThumbDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/private/entrygriddelegates/TileDelegate.qml %%QT_QMLDIR%%/org/kde/newstuff/qmldir share/kf5/kmoretools/presets-kmoretools/_README.md share/kf5/kmoretools/presets-kmoretools/angrysearch.desktop share/kf5/kmoretools/presets-kmoretools/catfish.desktop share/kf5/kmoretools/presets-kmoretools/com.obsproject.Studio.desktop share/kf5/kmoretools/presets-kmoretools/com.obsproject.Studio.png share/kf5/kmoretools/presets-kmoretools/com.uploadedlobster.peek.desktop share/kf5/kmoretools/presets-kmoretools/ding.desktop share/kf5/kmoretools/presets-kmoretools/disk.desktop share/kf5/kmoretools/presets-kmoretools/filelight.svg share/kf5/kmoretools/presets-kmoretools/fontinst.desktop share/kf5/kmoretools/presets-kmoretools/fontmatrix.desktop share/kf5/kmoretools/presets-kmoretools/fsearch.desktop share/kf5/kmoretools/presets-kmoretools/giggle.desktop share/kf5/kmoretools/presets-kmoretools/git-cola-folder-handler.desktop share/kf5/kmoretools/presets-kmoretools/git-cola-view-history.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/git-cola.desktop share/kf5/kmoretools/presets-kmoretools/git-cola.svg share/kf5/kmoretools/presets-kmoretools/gitg.desktop share/kf5/kmoretools/presets-kmoretools/gitg.png share/kf5/kmoretools/presets-kmoretools/gitk.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/gnome-search-tool.desktop share/kf5/kmoretools/presets-kmoretools/gparted.desktop share/kf5/kmoretools/presets-kmoretools/gparted.png share/kf5/kmoretools/presets-kmoretools/gucharmap.desktop share/kf5/kmoretools/presets-kmoretools/hotshots.desktop share/kf5/kmoretools/presets-kmoretools/hotshots.png share/kf5/kmoretools/presets-kmoretools/htop.desktop share/kf5/kmoretools/presets-kmoretools/kaption.desktop share/kf5/kmoretools/presets-kmoretools/kaption.desktop.TODO share/kf5/kmoretools/presets-kmoretools/kding.desktop share/kf5/kmoretools/presets-kmoretools/org.gnome.clocks.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.filelight.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kcharselect.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kdf.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kfind.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.kmousetool.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.ksysguard.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.ksystemlog.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.ktimer.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.partitionmanager.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.plasma.cuttlefish.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/org.kde.spectacle.desktop share/kf5/kmoretools/presets-kmoretools/qgit.kmt-edition.desktop share/kf5/kmoretools/presets-kmoretools/shutter.desktop share/kf5/kmoretools/presets-kmoretools/shutter.desktop.TODO share/kf5/kmoretools/presets-kmoretools/shutter.svg share/kf5/kmoretools/presets-kmoretools/simplescreenrecorder.desktop share/kf5/kmoretools/presets-kmoretools/vokoscreenNG.desktop share/kf5/kmoretools/presets-kmoretools/vokoscreenNG.png share/kf5/kmoretools/presets-kmoretools/xfce4-taskmanager.desktop share/locale/af/LC_MESSAGES/knewstuff5.mo share/locale/ar/LC_MESSAGES/knewstuff5.mo share/locale/as/LC_MESSAGES/knewstuff5.mo share/locale/az/LC_MESSAGES/knewstuff5.mo share/locale/be/LC_MESSAGES/knewstuff5.mo share/locale/be@latin/LC_MESSAGES/knewstuff5.mo share/locale/bg/LC_MESSAGES/knewstuff5.mo share/locale/bn/LC_MESSAGES/knewstuff5.mo share/locale/bn_IN/LC_MESSAGES/knewstuff5.mo share/locale/br/LC_MESSAGES/knewstuff5.mo share/locale/bs/LC_MESSAGES/knewstuff5.mo share/locale/ca/LC_MESSAGES/knewstuff5.mo share/locale/ca@valencia/LC_MESSAGES/knewstuff5.mo share/locale/crh/LC_MESSAGES/knewstuff5.mo share/locale/cs/LC_MESSAGES/knewstuff5.mo share/locale/csb/LC_MESSAGES/knewstuff5.mo share/locale/cy/LC_MESSAGES/knewstuff5.mo share/locale/da/LC_MESSAGES/knewstuff5.mo share/locale/de/LC_MESSAGES/knewstuff5.mo share/locale/el/LC_MESSAGES/knewstuff5.mo share/locale/en_GB/LC_MESSAGES/knewstuff5.mo share/locale/eo/LC_MESSAGES/knewstuff5.mo share/locale/es/LC_MESSAGES/knewstuff5.mo share/locale/et/LC_MESSAGES/knewstuff5.mo share/locale/eu/LC_MESSAGES/knewstuff5.mo share/locale/fa/LC_MESSAGES/knewstuff5.mo share/locale/fi/LC_MESSAGES/knewstuff5.mo share/locale/fr/LC_MESSAGES/knewstuff5.mo share/locale/fy/LC_MESSAGES/knewstuff5.mo share/locale/ga/LC_MESSAGES/knewstuff5.mo share/locale/gd/LC_MESSAGES/knewstuff5.mo share/locale/gl/LC_MESSAGES/knewstuff5.mo share/locale/gu/LC_MESSAGES/knewstuff5.mo share/locale/ha/LC_MESSAGES/knewstuff5.mo share/locale/he/LC_MESSAGES/knewstuff5.mo share/locale/hi/LC_MESSAGES/knewstuff5.mo share/locale/hne/LC_MESSAGES/knewstuff5.mo share/locale/hr/LC_MESSAGES/knewstuff5.mo share/locale/hsb/LC_MESSAGES/knewstuff5.mo share/locale/hu/LC_MESSAGES/knewstuff5.mo share/locale/hy/LC_MESSAGES/knewstuff5.mo share/locale/ia/LC_MESSAGES/knewstuff5.mo share/locale/id/LC_MESSAGES/knewstuff5.mo share/locale/is/LC_MESSAGES/knewstuff5.mo share/locale/it/LC_MESSAGES/knewstuff5.mo share/locale/ja/LC_MESSAGES/knewstuff5.mo share/locale/ka/LC_MESSAGES/knewstuff5.mo share/locale/kk/LC_MESSAGES/knewstuff5.mo share/locale/km/LC_MESSAGES/knewstuff5.mo share/locale/kn/LC_MESSAGES/knewstuff5.mo share/locale/ko/LC_MESSAGES/knewstuff5.mo share/locale/ku/LC_MESSAGES/knewstuff5.mo share/locale/lb/LC_MESSAGES/knewstuff5.mo share/locale/lt/LC_MESSAGES/knewstuff5.mo share/locale/lv/LC_MESSAGES/knewstuff5.mo share/locale/mai/LC_MESSAGES/knewstuff5.mo share/locale/mk/LC_MESSAGES/knewstuff5.mo share/locale/ml/LC_MESSAGES/knewstuff5.mo share/locale/mr/LC_MESSAGES/knewstuff5.mo share/locale/ms/LC_MESSAGES/knewstuff5.mo share/locale/nb/LC_MESSAGES/knewstuff5.mo share/locale/nds/LC_MESSAGES/knewstuff5.mo share/locale/ne/LC_MESSAGES/knewstuff5.mo share/locale/nl/LC_MESSAGES/knewstuff5.mo share/locale/nn/LC_MESSAGES/knewstuff5.mo share/locale/oc/LC_MESSAGES/knewstuff5.mo share/locale/or/LC_MESSAGES/knewstuff5.mo share/locale/pa/LC_MESSAGES/knewstuff5.mo share/locale/pl/LC_MESSAGES/knewstuff5.mo share/locale/ps/LC_MESSAGES/knewstuff5.mo share/locale/pt/LC_MESSAGES/knewstuff5.mo share/locale/pt_BR/LC_MESSAGES/knewstuff5.mo share/locale/ro/LC_MESSAGES/knewstuff5.mo share/locale/ru/LC_MESSAGES/knewstuff5.mo share/locale/se/LC_MESSAGES/knewstuff5.mo share/locale/si/LC_MESSAGES/knewstuff5.mo share/locale/sk/LC_MESSAGES/knewstuff5.mo share/locale/sl/LC_MESSAGES/knewstuff5.mo share/locale/sq/LC_MESSAGES/knewstuff5.mo share/locale/sr/LC_MESSAGES/knewstuff5.mo share/locale/sr@ijekavian/LC_MESSAGES/knewstuff5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knewstuff5.mo share/locale/sr@latin/LC_MESSAGES/knewstuff5.mo share/locale/sv/LC_MESSAGES/knewstuff5.mo share/locale/ta/LC_MESSAGES/knewstuff5.mo share/locale/te/LC_MESSAGES/knewstuff5.mo share/locale/tg/LC_MESSAGES/knewstuff5.mo share/locale/th/LC_MESSAGES/knewstuff5.mo share/locale/tr/LC_MESSAGES/knewstuff5.mo share/locale/tt/LC_MESSAGES/knewstuff5.mo share/locale/ug/LC_MESSAGES/knewstuff5.mo share/locale/uk/LC_MESSAGES/knewstuff5.mo share/locale/uz/LC_MESSAGES/knewstuff5.mo share/locale/uz@cyrillic/LC_MESSAGES/knewstuff5.mo share/locale/vi/LC_MESSAGES/knewstuff5.mo share/locale/wa/LC_MESSAGES/knewstuff5.mo share/locale/xh/LC_MESSAGES/knewstuff5.mo share/locale/zh_CN/LC_MESSAGES/knewstuff5.mo share/locale/zh_HK/LC_MESSAGES/knewstuff5.mo share/locale/zh_TW/LC_MESSAGES/knewstuff5.mo share/qlogging-categories5/knewstuff.categories share/qlogging-categories5/knewstuff.renamecategories diff --git a/devel/kf5-knotifications/distinfo b/devel/kf5-knotifications/distinfo index 45e682454ac6..d606f4234e95 100644 --- a/devel/kf5-knotifications/distinfo +++ b/devel/kf5-knotifications/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689111 -SHA256 (KDE/frameworks/5.99.0/knotifications-5.99.0.tar.xz) = 36b1126801f649b26fb77889a35874519e3f7033faa55cff20e965581c5c302b -SIZE (KDE/frameworks/5.99.0/knotifications-5.99.0.tar.xz) = 132248 +TIMESTAMP = 1667804644 +SHA256 (KDE/frameworks/5.100.0/knotifications-5.100.0.tar.xz) = ba21304f0bd2e50042f3bce1a3d2f5bee6058ab43388203d3b2a5ba3c362e6a3 +SIZE (KDE/frameworks/5.100.0/knotifications-5.100.0.tar.xz) = 2401432 diff --git a/devel/kf5-knotifications/pkg-plist b/devel/kf5-knotifications/pkg-plist index ac3fa56ecd0d..d4b2d0c592e5 100644 --- a/devel/kf5-knotifications/pkg-plist +++ b/devel/kf5-knotifications/pkg-plist @@ -1,133 +1,132 @@ include/KF5/KNotifications/KNotification include/KF5/KNotifications/KNotificationJobUiDelegate include/KF5/KNotifications/KNotificationPlugin include/KF5/KNotifications/KNotificationReplyAction include/KF5/KNotifications/KNotificationRestrictions include/KF5/KNotifications/KNotifyConfig include/KF5/KNotifications/KPassivePopup include/KF5/KNotifications/KStatusNotifierItem include/KF5/KNotifications/knotification.h include/KF5/KNotifications/knotificationjobuidelegate.h include/KF5/KNotifications/knotificationplugin.h include/KF5/KNotifications/knotificationreplyaction.h include/KF5/KNotifications/knotificationrestrictions.h include/KF5/KNotifications/knotifications_export.h include/KF5/KNotifications/knotifications_version.h include/KF5/KNotifications/knotifyconfig.h include/KF5/KNotifications/kpassivepopup.h include/KF5/KNotifications/kstatusnotifieritem.h lib/cmake/KF5Notifications/KF5NotificationsConfig.cmake lib/cmake/KF5Notifications/KF5NotificationsConfigVersion.cmake lib/cmake/KF5Notifications/KF5NotificationsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Notifications/KF5NotificationsTargets.cmake lib/libKF5Notifications.so lib/libKF5Notifications.so.5 lib/libKF5Notifications.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KNotifications.pri %%QT_QMLDIR%%/org/kde/notification/libknotificationqmlplugin.so %%QT_QMLDIR%%/org/kde/notification/qmldir share/dbus-1/interfaces/kf5_org.kde.StatusNotifierItem.xml share/dbus-1/interfaces/kf5_org.kde.StatusNotifierWatcher.xml share/locale/af/LC_MESSAGES/knotifications5_qt.qm share/locale/ar/LC_MESSAGES/knotifications5_qt.qm share/locale/as/LC_MESSAGES/knotifications5_qt.qm -share/locale/ast/LC_MESSAGES/knotifications5_qt.qm share/locale/az/LC_MESSAGES/knotifications5_qt.qm share/locale/be/LC_MESSAGES/knotifications5_qt.qm share/locale/be@latin/LC_MESSAGES/knotifications5_qt.qm share/locale/bg/LC_MESSAGES/knotifications5_qt.qm share/locale/bn/LC_MESSAGES/knotifications5_qt.qm share/locale/bn_IN/LC_MESSAGES/knotifications5_qt.qm share/locale/br/LC_MESSAGES/knotifications5_qt.qm share/locale/bs/LC_MESSAGES/knotifications5_qt.qm share/locale/ca/LC_MESSAGES/knotifications5_qt.qm share/locale/ca@valencia/LC_MESSAGES/knotifications5_qt.qm share/locale/crh/LC_MESSAGES/knotifications5_qt.qm share/locale/cs/LC_MESSAGES/knotifications5_qt.qm share/locale/csb/LC_MESSAGES/knotifications5_qt.qm share/locale/cy/LC_MESSAGES/knotifications5_qt.qm share/locale/da/LC_MESSAGES/knotifications5_qt.qm share/locale/de/LC_MESSAGES/knotifications5_qt.qm share/locale/el/LC_MESSAGES/knotifications5_qt.qm share/locale/en_GB/LC_MESSAGES/knotifications5_qt.qm share/locale/eo/LC_MESSAGES/knotifications5_qt.qm share/locale/es/LC_MESSAGES/knotifications5_qt.qm share/locale/et/LC_MESSAGES/knotifications5_qt.qm share/locale/eu/LC_MESSAGES/knotifications5_qt.qm share/locale/fa/LC_MESSAGES/knotifications5_qt.qm share/locale/fi/LC_MESSAGES/knotifications5_qt.qm share/locale/fr/LC_MESSAGES/knotifications5_qt.qm share/locale/fy/LC_MESSAGES/knotifications5_qt.qm share/locale/ga/LC_MESSAGES/knotifications5_qt.qm share/locale/gd/LC_MESSAGES/knotifications5_qt.qm share/locale/gl/LC_MESSAGES/knotifications5_qt.qm share/locale/gu/LC_MESSAGES/knotifications5_qt.qm share/locale/ha/LC_MESSAGES/knotifications5_qt.qm share/locale/he/LC_MESSAGES/knotifications5_qt.qm share/locale/hi/LC_MESSAGES/knotifications5_qt.qm share/locale/hne/LC_MESSAGES/knotifications5_qt.qm share/locale/hr/LC_MESSAGES/knotifications5_qt.qm share/locale/hsb/LC_MESSAGES/knotifications5_qt.qm share/locale/hu/LC_MESSAGES/knotifications5_qt.qm share/locale/hy/LC_MESSAGES/knotifications5_qt.qm share/locale/ia/LC_MESSAGES/knotifications5_qt.qm share/locale/id/LC_MESSAGES/knotifications5_qt.qm share/locale/is/LC_MESSAGES/knotifications5_qt.qm share/locale/it/LC_MESSAGES/knotifications5_qt.qm share/locale/ja/LC_MESSAGES/knotifications5_qt.qm share/locale/ka/LC_MESSAGES/knotifications5_qt.qm share/locale/kk/LC_MESSAGES/knotifications5_qt.qm share/locale/km/LC_MESSAGES/knotifications5_qt.qm share/locale/kn/LC_MESSAGES/knotifications5_qt.qm share/locale/ko/LC_MESSAGES/knotifications5_qt.qm share/locale/ku/LC_MESSAGES/knotifications5_qt.qm share/locale/lb/LC_MESSAGES/knotifications5_qt.qm share/locale/lt/LC_MESSAGES/knotifications5_qt.qm share/locale/lv/LC_MESSAGES/knotifications5_qt.qm share/locale/mai/LC_MESSAGES/knotifications5_qt.qm share/locale/mk/LC_MESSAGES/knotifications5_qt.qm share/locale/ml/LC_MESSAGES/knotifications5_qt.qm share/locale/mr/LC_MESSAGES/knotifications5_qt.qm share/locale/ms/LC_MESSAGES/knotifications5_qt.qm share/locale/nb/LC_MESSAGES/knotifications5_qt.qm share/locale/nds/LC_MESSAGES/knotifications5_qt.qm share/locale/ne/LC_MESSAGES/knotifications5_qt.qm share/locale/nl/LC_MESSAGES/knotifications5_qt.qm share/locale/nn/LC_MESSAGES/knotifications5_qt.qm share/locale/oc/LC_MESSAGES/knotifications5_qt.qm share/locale/or/LC_MESSAGES/knotifications5_qt.qm share/locale/pa/LC_MESSAGES/knotifications5_qt.qm share/locale/pl/LC_MESSAGES/knotifications5_qt.qm share/locale/ps/LC_MESSAGES/knotifications5_qt.qm share/locale/pt/LC_MESSAGES/knotifications5_qt.qm share/locale/pt_BR/LC_MESSAGES/knotifications5_qt.qm share/locale/ro/LC_MESSAGES/knotifications5_qt.qm share/locale/ru/LC_MESSAGES/knotifications5_qt.qm share/locale/se/LC_MESSAGES/knotifications5_qt.qm share/locale/si/LC_MESSAGES/knotifications5_qt.qm share/locale/sk/LC_MESSAGES/knotifications5_qt.qm share/locale/sl/LC_MESSAGES/knotifications5_qt.qm share/locale/sq/LC_MESSAGES/knotifications5_qt.qm share/locale/sr/LC_MESSAGES/knotifications5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/knotifications5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/knotifications5_qt.qm share/locale/sr@latin/LC_MESSAGES/knotifications5_qt.qm share/locale/sv/LC_MESSAGES/knotifications5_qt.qm share/locale/ta/LC_MESSAGES/knotifications5_qt.qm share/locale/te/LC_MESSAGES/knotifications5_qt.qm share/locale/tg/LC_MESSAGES/knotifications5_qt.qm share/locale/th/LC_MESSAGES/knotifications5_qt.qm share/locale/tr/LC_MESSAGES/knotifications5_qt.qm share/locale/tt/LC_MESSAGES/knotifications5_qt.qm share/locale/ug/LC_MESSAGES/knotifications5_qt.qm share/locale/uk/LC_MESSAGES/knotifications5_qt.qm share/locale/uz/LC_MESSAGES/knotifications5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/knotifications5_qt.qm share/locale/vi/LC_MESSAGES/knotifications5_qt.qm share/locale/wa/LC_MESSAGES/knotifications5_qt.qm share/locale/xh/LC_MESSAGES/knotifications5_qt.qm share/locale/zh_CN/LC_MESSAGES/knotifications5_qt.qm share/locale/zh_HK/LC_MESSAGES/knotifications5_qt.qm share/locale/zh_TW/LC_MESSAGES/knotifications5_qt.qm share/qlogging-categories5/knotifications.categories share/qlogging-categories5/knotifications.renamecategories diff --git a/devel/kf5-knotifyconfig/distinfo b/devel/kf5-knotifyconfig/distinfo index 95dd99ec910c..02973e749e3f 100644 --- a/devel/kf5-knotifyconfig/distinfo +++ b/devel/kf5-knotifyconfig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689112 -SHA256 (KDE/frameworks/5.99.0/knotifyconfig-5.99.0.tar.xz) = b7173315d1d255c571a0d2809edbd8091f9fe7b89bcac63ed5a0b50dbcf219cc -SIZE (KDE/frameworks/5.99.0/knotifyconfig-5.99.0.tar.xz) = 87416 +TIMESTAMP = 1667804645 +SHA256 (KDE/frameworks/5.100.0/knotifyconfig-5.100.0.tar.xz) = 1db5a4c4f0a8a4c1ff1db5df07d601dc63714720e4c5e52052811004bc27baa9 +SIZE (KDE/frameworks/5.100.0/knotifyconfig-5.100.0.tar.xz) = 2430392 diff --git a/devel/kf5-knotifyconfig/pkg-plist b/devel/kf5-knotifyconfig/pkg-plist index 5f59bcfb190b..dd93b3ba3c91 100644 --- a/devel/kf5-knotifyconfig/pkg-plist +++ b/devel/kf5-knotifyconfig/pkg-plist @@ -1,114 +1,113 @@ include/KF5/KNotifyConfig/KNotifyConfigWidget include/KF5/KNotifyConfig/knotifyconfig_export.h include/KF5/KNotifyConfig/knotifyconfig_version.h include/KF5/KNotifyConfig/knotifyconfigwidget.h lib/cmake/KF5NotifyConfig/KF5NotifyConfigConfig.cmake lib/cmake/KF5NotifyConfig/KF5NotifyConfigConfigVersion.cmake lib/cmake/KF5NotifyConfig/KF5NotifyConfigTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5NotifyConfig/KF5NotifyConfigTargets.cmake lib/libKF5NotifyConfig.so lib/libKF5NotifyConfig.so.5 lib/libKF5NotifyConfig.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KNotifyConfig.pri share/locale/af/LC_MESSAGES/knotifyconfig5.mo share/locale/ar/LC_MESSAGES/knotifyconfig5.mo share/locale/as/LC_MESSAGES/knotifyconfig5.mo -share/locale/ast/LC_MESSAGES/knotifyconfig5.mo share/locale/az/LC_MESSAGES/knotifyconfig5.mo share/locale/be/LC_MESSAGES/knotifyconfig5.mo share/locale/be@latin/LC_MESSAGES/knotifyconfig5.mo share/locale/bg/LC_MESSAGES/knotifyconfig5.mo share/locale/bn/LC_MESSAGES/knotifyconfig5.mo share/locale/bn_IN/LC_MESSAGES/knotifyconfig5.mo share/locale/br/LC_MESSAGES/knotifyconfig5.mo share/locale/bs/LC_MESSAGES/knotifyconfig5.mo share/locale/ca/LC_MESSAGES/knotifyconfig5.mo share/locale/ca@valencia/LC_MESSAGES/knotifyconfig5.mo share/locale/crh/LC_MESSAGES/knotifyconfig5.mo share/locale/cs/LC_MESSAGES/knotifyconfig5.mo share/locale/csb/LC_MESSAGES/knotifyconfig5.mo share/locale/cy/LC_MESSAGES/knotifyconfig5.mo share/locale/da/LC_MESSAGES/knotifyconfig5.mo share/locale/de/LC_MESSAGES/knotifyconfig5.mo share/locale/el/LC_MESSAGES/knotifyconfig5.mo share/locale/en_GB/LC_MESSAGES/knotifyconfig5.mo share/locale/eo/LC_MESSAGES/knotifyconfig5.mo share/locale/es/LC_MESSAGES/knotifyconfig5.mo share/locale/et/LC_MESSAGES/knotifyconfig5.mo share/locale/eu/LC_MESSAGES/knotifyconfig5.mo share/locale/fa/LC_MESSAGES/knotifyconfig5.mo share/locale/fi/LC_MESSAGES/knotifyconfig5.mo share/locale/fr/LC_MESSAGES/knotifyconfig5.mo share/locale/fy/LC_MESSAGES/knotifyconfig5.mo share/locale/ga/LC_MESSAGES/knotifyconfig5.mo share/locale/gd/LC_MESSAGES/knotifyconfig5.mo share/locale/gl/LC_MESSAGES/knotifyconfig5.mo share/locale/gu/LC_MESSAGES/knotifyconfig5.mo share/locale/ha/LC_MESSAGES/knotifyconfig5.mo share/locale/he/LC_MESSAGES/knotifyconfig5.mo share/locale/hi/LC_MESSAGES/knotifyconfig5.mo share/locale/hne/LC_MESSAGES/knotifyconfig5.mo share/locale/hr/LC_MESSAGES/knotifyconfig5.mo share/locale/hsb/LC_MESSAGES/knotifyconfig5.mo share/locale/hu/LC_MESSAGES/knotifyconfig5.mo share/locale/hy/LC_MESSAGES/knotifyconfig5.mo share/locale/ia/LC_MESSAGES/knotifyconfig5.mo share/locale/id/LC_MESSAGES/knotifyconfig5.mo share/locale/is/LC_MESSAGES/knotifyconfig5.mo share/locale/it/LC_MESSAGES/knotifyconfig5.mo share/locale/ja/LC_MESSAGES/knotifyconfig5.mo share/locale/ka/LC_MESSAGES/knotifyconfig5.mo share/locale/kk/LC_MESSAGES/knotifyconfig5.mo share/locale/km/LC_MESSAGES/knotifyconfig5.mo share/locale/kn/LC_MESSAGES/knotifyconfig5.mo share/locale/ko/LC_MESSAGES/knotifyconfig5.mo share/locale/ku/LC_MESSAGES/knotifyconfig5.mo share/locale/lb/LC_MESSAGES/knotifyconfig5.mo share/locale/lt/LC_MESSAGES/knotifyconfig5.mo share/locale/lv/LC_MESSAGES/knotifyconfig5.mo share/locale/mai/LC_MESSAGES/knotifyconfig5.mo share/locale/mk/LC_MESSAGES/knotifyconfig5.mo share/locale/ml/LC_MESSAGES/knotifyconfig5.mo share/locale/mr/LC_MESSAGES/knotifyconfig5.mo share/locale/ms/LC_MESSAGES/knotifyconfig5.mo share/locale/nb/LC_MESSAGES/knotifyconfig5.mo share/locale/nds/LC_MESSAGES/knotifyconfig5.mo share/locale/ne/LC_MESSAGES/knotifyconfig5.mo share/locale/nl/LC_MESSAGES/knotifyconfig5.mo share/locale/nn/LC_MESSAGES/knotifyconfig5.mo share/locale/oc/LC_MESSAGES/knotifyconfig5.mo share/locale/or/LC_MESSAGES/knotifyconfig5.mo share/locale/pa/LC_MESSAGES/knotifyconfig5.mo share/locale/pl/LC_MESSAGES/knotifyconfig5.mo share/locale/ps/LC_MESSAGES/knotifyconfig5.mo share/locale/pt/LC_MESSAGES/knotifyconfig5.mo share/locale/pt_BR/LC_MESSAGES/knotifyconfig5.mo share/locale/ro/LC_MESSAGES/knotifyconfig5.mo share/locale/ru/LC_MESSAGES/knotifyconfig5.mo share/locale/se/LC_MESSAGES/knotifyconfig5.mo share/locale/si/LC_MESSAGES/knotifyconfig5.mo share/locale/sk/LC_MESSAGES/knotifyconfig5.mo share/locale/sl/LC_MESSAGES/knotifyconfig5.mo share/locale/sq/LC_MESSAGES/knotifyconfig5.mo share/locale/sr/LC_MESSAGES/knotifyconfig5.mo share/locale/sr@ijekavian/LC_MESSAGES/knotifyconfig5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knotifyconfig5.mo share/locale/sr@latin/LC_MESSAGES/knotifyconfig5.mo share/locale/sv/LC_MESSAGES/knotifyconfig5.mo share/locale/ta/LC_MESSAGES/knotifyconfig5.mo share/locale/te/LC_MESSAGES/knotifyconfig5.mo share/locale/tg/LC_MESSAGES/knotifyconfig5.mo share/locale/th/LC_MESSAGES/knotifyconfig5.mo share/locale/tr/LC_MESSAGES/knotifyconfig5.mo share/locale/tt/LC_MESSAGES/knotifyconfig5.mo share/locale/ug/LC_MESSAGES/knotifyconfig5.mo share/locale/uk/LC_MESSAGES/knotifyconfig5.mo share/locale/uz/LC_MESSAGES/knotifyconfig5.mo share/locale/uz@cyrillic/LC_MESSAGES/knotifyconfig5.mo share/locale/vi/LC_MESSAGES/knotifyconfig5.mo share/locale/wa/LC_MESSAGES/knotifyconfig5.mo share/locale/xh/LC_MESSAGES/knotifyconfig5.mo share/locale/zh_CN/LC_MESSAGES/knotifyconfig5.mo share/locale/zh_HK/LC_MESSAGES/knotifyconfig5.mo share/locale/zh_TW/LC_MESSAGES/knotifyconfig5.mo share/qlogging-categories5/knotifyconfig.categories diff --git a/devel/kf5-kpackage/distinfo b/devel/kf5-kpackage/distinfo index 0daa00d20180..51af03743c13 100644 --- a/devel/kf5-kpackage/distinfo +++ b/devel/kf5-kpackage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689113 -SHA256 (KDE/frameworks/5.99.0/kpackage-5.99.0.tar.xz) = d8cb70f0abde1ab0b1968e7726b67e9843d7937cbae9440eda0f50f06a2ae417 -SIZE (KDE/frameworks/5.99.0/kpackage-5.99.0.tar.xz) = 133572 +TIMESTAMP = 1667804646 +SHA256 (KDE/frameworks/5.100.0/kpackage-5.100.0.tar.xz) = b28c657e94fb0466b934d0179fddd83647ab47fb54f43da67c24383e714e2685 +SIZE (KDE/frameworks/5.100.0/kpackage-5.100.0.tar.xz) = 186456 diff --git a/devel/kf5-kparts/distinfo b/devel/kf5-kparts/distinfo index 465227c10f6a..2208f0fd7d8b 100644 --- a/devel/kf5-kparts/distinfo +++ b/devel/kf5-kparts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689115 -SHA256 (KDE/frameworks/5.99.0/kparts-5.99.0.tar.xz) = 003220ff87733be6da6076207ab66a67a8745fd395d1250ebd978c0c430e7c5e -SIZE (KDE/frameworks/5.99.0/kparts-5.99.0.tar.xz) = 196832 +TIMESTAMP = 1667804647 +SHA256 (KDE/frameworks/5.100.0/kparts-5.100.0.tar.xz) = 68961dfab9543442ca6bdb627796c5c38172d7dc7955dab6a6adb3086e91c86f +SIZE (KDE/frameworks/5.100.0/kparts-5.100.0.tar.xz) = 2500728 diff --git a/devel/kf5-kpeople/distinfo b/devel/kf5-kpeople/distinfo index 14c1787f8b12..285293d6f15b 100644 --- a/devel/kf5-kpeople/distinfo +++ b/devel/kf5-kpeople/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689116 -SHA256 (KDE/frameworks/5.99.0/kpeople-5.99.0.tar.xz) = 7f05f4059d85371fafb9bbd1023b5995b6f8986c3fc4745a65f60513f71b663d -SIZE (KDE/frameworks/5.99.0/kpeople-5.99.0.tar.xz) = 60200 +TIMESTAMP = 1667804648 +SHA256 (KDE/frameworks/5.100.0/kpeople-5.100.0.tar.xz) = 0f43151d5e5f91214925cae7d8e4089e3a9c364d200da8a6ff1ce6a4b3eb3ee1 +SIZE (KDE/frameworks/5.100.0/kpeople-5.100.0.tar.xz) = 62828 diff --git a/devel/kf5-kpty/distinfo b/devel/kf5-kpty/distinfo index 52dd77629b3a..60359c7485b0 100644 --- a/devel/kf5-kpty/distinfo +++ b/devel/kf5-kpty/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689117 -SHA256 (KDE/frameworks/5.99.0/kpty-5.99.0.tar.xz) = a08489301dba85a766e2e6acbd62bf7faedd3d68279e0b2b1637541bebd0e86d -SIZE (KDE/frameworks/5.99.0/kpty-5.99.0.tar.xz) = 59584 +TIMESTAMP = 1667804649 +SHA256 (KDE/frameworks/5.100.0/kpty-5.100.0.tar.xz) = f208561be774b93c95e00e822d9644cebd1dfd2f5efd243ef01c9d47a738b440 +SIZE (KDE/frameworks/5.100.0/kpty-5.100.0.tar.xz) = 2445812 diff --git a/devel/kf5-kservice/distinfo b/devel/kf5-kservice/distinfo index 7e8a622fb829..95a1dc407be4 100644 --- a/devel/kf5-kservice/distinfo +++ b/devel/kf5-kservice/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689118 -SHA256 (KDE/frameworks/5.99.0/kservice-5.99.0.tar.xz) = 1a50ab72e833375bbad75f41d53f2d1059c8ac11d014b4481eef0825b1fd4665 -SIZE (KDE/frameworks/5.99.0/kservice-5.99.0.tar.xz) = 268904 +TIMESTAMP = 1667804650 +SHA256 (KDE/frameworks/5.100.0/kservice-5.100.0.tar.xz) = b33d121a1154a0646c869579eff961ad6bbf31dbc7d3f753e82ac8ebbc8504ef +SIZE (KDE/frameworks/5.100.0/kservice-5.100.0.tar.xz) = 2565172 diff --git a/devel/kf5-ktexteditor/distinfo b/devel/kf5-ktexteditor/distinfo index f2b07642201d..4f262b075120 100644 --- a/devel/kf5-ktexteditor/distinfo +++ b/devel/kf5-ktexteditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689119 -SHA256 (KDE/frameworks/5.99.0/ktexteditor-5.99.0.tar.xz) = 123d5cd554c6c90be65735f63b05a075205edf0701580f0d0fa7d9c23417868c -SIZE (KDE/frameworks/5.99.0/ktexteditor-5.99.0.tar.xz) = 2428464 +TIMESTAMP = 1667830750 +SHA256 (KDE/frameworks/5.100.0/ktexteditor-5.100.0.tar.xz) = a1f88cbfa927b4749962bc289eb26a85c580a2eb86189cc634ead9fcaa527ee5 +SIZE (KDE/frameworks/5.100.0/ktexteditor-5.100.0.tar.xz) = 2743652 diff --git a/devel/kf5-ktexteditor/pkg-plist b/devel/kf5-ktexteditor/pkg-plist index 56a592e6d8f2..40cca45dbc4e 100644 --- a/devel/kf5-ktexteditor/pkg-plist +++ b/devel/kf5-ktexteditor/pkg-plist @@ -1,170 +1,169 @@ include/KF5/KTextEditor/KTextEditor/AbstractAnnotationItemDelegate include/KF5/KTextEditor/KTextEditor/AnnotationInterface include/KF5/KTextEditor/KTextEditor/Application include/KF5/KTextEditor/KTextEditor/Attribute include/KF5/KTextEditor/KTextEditor/CodeCompletionInterface include/KF5/KTextEditor/KTextEditor/CodeCompletionModel include/KF5/KTextEditor/KTextEditor/CodeCompletionModelControllerInterface include/KF5/KTextEditor/KTextEditor/Command include/KF5/KTextEditor/KTextEditor/ConfigInterface include/KF5/KTextEditor/KTextEditor/ConfigPage include/KF5/KTextEditor/KTextEditor/Cursor include/KF5/KTextEditor/KTextEditor/Document include/KF5/KTextEditor/KTextEditor/DocumentCursor include/KF5/KTextEditor/KTextEditor/Editor include/KF5/KTextEditor/KTextEditor/InlineNote include/KF5/KTextEditor/KTextEditor/InlineNoteInterface include/KF5/KTextEditor/KTextEditor/InlineNoteProvider include/KF5/KTextEditor/KTextEditor/LineRange include/KF5/KTextEditor/KTextEditor/MainWindow include/KF5/KTextEditor/KTextEditor/MarkInterface include/KF5/KTextEditor/KTextEditor/Message include/KF5/KTextEditor/KTextEditor/ModificationInterface include/KF5/KTextEditor/KTextEditor/MovingCursor include/KF5/KTextEditor/KTextEditor/MovingInterface include/KF5/KTextEditor/KTextEditor/MovingRange include/KF5/KTextEditor/KTextEditor/MovingRangeFeedback include/KF5/KTextEditor/KTextEditor/Plugin include/KF5/KTextEditor/KTextEditor/Range include/KF5/KTextEditor/KTextEditor/SessionConfigInterface include/KF5/KTextEditor/KTextEditor/TextHintInterface include/KF5/KTextEditor/KTextEditor/View include/KF5/KTextEditor/ktexteditor/abstractannotationitemdelegate.h include/KF5/KTextEditor/ktexteditor/annotationinterface.h include/KF5/KTextEditor/ktexteditor/application.h include/KF5/KTextEditor/ktexteditor/attribute.h include/KF5/KTextEditor/ktexteditor/codecompletioninterface.h include/KF5/KTextEditor/ktexteditor/codecompletionmodel.h include/KF5/KTextEditor/ktexteditor/codecompletionmodelcontrollerinterface.h include/KF5/KTextEditor/ktexteditor/command.h include/KF5/KTextEditor/ktexteditor/configinterface.h include/KF5/KTextEditor/ktexteditor/configpage.h include/KF5/KTextEditor/ktexteditor/cursor.h include/KF5/KTextEditor/ktexteditor/document.h include/KF5/KTextEditor/ktexteditor/documentcursor.h include/KF5/KTextEditor/ktexteditor/editor.h include/KF5/KTextEditor/ktexteditor/inlinenote.h include/KF5/KTextEditor/ktexteditor/inlinenoteinterface.h include/KF5/KTextEditor/ktexteditor/inlinenoteprovider.h include/KF5/KTextEditor/ktexteditor/linerange.h include/KF5/KTextEditor/ktexteditor/mainwindow.h include/KF5/KTextEditor/ktexteditor/markinterface.h include/KF5/KTextEditor/ktexteditor/message.h include/KF5/KTextEditor/ktexteditor/modificationinterface.h include/KF5/KTextEditor/ktexteditor/movingcursor.h include/KF5/KTextEditor/ktexteditor/movinginterface.h include/KF5/KTextEditor/ktexteditor/movingrange.h include/KF5/KTextEditor/ktexteditor/movingrangefeedback.h include/KF5/KTextEditor/ktexteditor/plugin.h include/KF5/KTextEditor/ktexteditor/range.h include/KF5/KTextEditor/ktexteditor/sessionconfiginterface.h include/KF5/KTextEditor/ktexteditor/texthintinterface.h include/KF5/KTextEditor/ktexteditor/view.h include/KF5/KTextEditor/ktexteditor_export.h include/KF5/KTextEditor/ktexteditor_version.h lib/cmake/KF5TextEditor/KF5TextEditorConfig.cmake lib/cmake/KF5TextEditor/KF5TextEditorConfigVersion.cmake lib/cmake/KF5TextEditor/KF5TextEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5TextEditor/KF5TextEditorTargets.cmake lib/libKF5TextEditor.so lib/libKF5TextEditor.so.5 lib/libKF5TextEditor.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kauth/kauth_ktexteditor_helper %%QT_MKSPECDIR%%/modules/qt_KTextEditor.pri %%QT_PLUGINDIR%%/kf5/parts/katepart.so share/dbus-1/system-services/org.kde.ktexteditor.katetextbuffer.service share/dbus-1/system.d/org.kde.ktexteditor.katetextbuffer.conf share/katepart5/script/README.md share/kdevappwizard/templates/ktexteditor-plugin.tar.bz2 share/kservices5/katepart.desktop share/kservicetypes5/ktexteditor.desktop share/kservicetypes5/ktexteditorplugin.desktop share/locale/af/LC_MESSAGES/ktexteditor5.mo share/locale/ar/LC_MESSAGES/ktexteditor5.mo -share/locale/ast/LC_MESSAGES/ktexteditor5.mo share/locale/az/LC_MESSAGES/ktexteditor5.mo share/locale/be/LC_MESSAGES/ktexteditor5.mo share/locale/bg/LC_MESSAGES/ktexteditor5.mo share/locale/bn/LC_MESSAGES/ktexteditor5.mo share/locale/br/LC_MESSAGES/ktexteditor5.mo share/locale/bs/LC_MESSAGES/ktexteditor5.mo share/locale/ca/LC_MESSAGES/ktexteditor5.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditor5.mo share/locale/cs/LC_MESSAGES/ktexteditor5.mo share/locale/cy/LC_MESSAGES/ktexteditor5.mo share/locale/da/LC_MESSAGES/ktexteditor5.mo share/locale/de/LC_MESSAGES/ktexteditor5.mo share/locale/el/LC_MESSAGES/ktexteditor5.mo share/locale/en_GB/LC_MESSAGES/ktexteditor5.mo share/locale/eo/LC_MESSAGES/ktexteditor5.mo share/locale/es/LC_MESSAGES/ktexteditor5.mo share/locale/et/LC_MESSAGES/ktexteditor5.mo share/locale/eu/LC_MESSAGES/ktexteditor5.mo share/locale/fa/LC_MESSAGES/ktexteditor5.mo share/locale/fi/LC_MESSAGES/ktexteditor5.mo share/locale/fr/LC_MESSAGES/ktexteditor5.mo share/locale/fy/LC_MESSAGES/ktexteditor5.mo share/locale/ga/LC_MESSAGES/ktexteditor5.mo share/locale/gl/LC_MESSAGES/ktexteditor5.mo share/locale/gu/LC_MESSAGES/ktexteditor5.mo share/locale/he/LC_MESSAGES/ktexteditor5.mo share/locale/hi/LC_MESSAGES/ktexteditor5.mo share/locale/hr/LC_MESSAGES/ktexteditor5.mo share/locale/hsb/LC_MESSAGES/ktexteditor5.mo share/locale/hu/LC_MESSAGES/ktexteditor5.mo share/locale/ia/LC_MESSAGES/ktexteditor5.mo share/locale/id/LC_MESSAGES/ktexteditor5.mo share/locale/is/LC_MESSAGES/ktexteditor5.mo share/locale/it/LC_MESSAGES/ktexteditor5.mo share/locale/ja/LC_MESSAGES/ktexteditor5.mo share/locale/ka/LC_MESSAGES/ktexteditor5.mo share/locale/kk/LC_MESSAGES/ktexteditor5.mo share/locale/km/LC_MESSAGES/ktexteditor5.mo share/locale/ko/LC_MESSAGES/ktexteditor5.mo share/locale/ku/LC_MESSAGES/ktexteditor5.mo share/locale/lb/LC_MESSAGES/ktexteditor5.mo share/locale/lt/LC_MESSAGES/ktexteditor5.mo share/locale/lv/LC_MESSAGES/ktexteditor5.mo share/locale/mai/LC_MESSAGES/ktexteditor5.mo share/locale/mk/LC_MESSAGES/ktexteditor5.mo share/locale/ml/LC_MESSAGES/ktexteditor5.mo share/locale/mr/LC_MESSAGES/ktexteditor5.mo share/locale/ms/LC_MESSAGES/ktexteditor5.mo share/locale/nb/LC_MESSAGES/ktexteditor5.mo share/locale/nds/LC_MESSAGES/ktexteditor5.mo share/locale/ne/LC_MESSAGES/ktexteditor5.mo share/locale/nl/LC_MESSAGES/ktexteditor5.mo share/locale/nn/LC_MESSAGES/ktexteditor5.mo share/locale/oc/LC_MESSAGES/ktexteditor5.mo share/locale/pa/LC_MESSAGES/ktexteditor5.mo share/locale/pl/LC_MESSAGES/ktexteditor5.mo share/locale/pt/LC_MESSAGES/ktexteditor5.mo share/locale/pt_BR/LC_MESSAGES/ktexteditor5.mo share/locale/ro/LC_MESSAGES/ktexteditor5.mo share/locale/ru/LC_MESSAGES/ktexteditor5.mo share/locale/se/LC_MESSAGES/ktexteditor5.mo share/locale/si/LC_MESSAGES/ktexteditor5.mo share/locale/sk/LC_MESSAGES/ktexteditor5.mo share/locale/sl/LC_MESSAGES/ktexteditor5.mo share/locale/sq/LC_MESSAGES/ktexteditor5.mo share/locale/sr/LC_MESSAGES/ktexteditor5.mo share/locale/sr@ijekavian/LC_MESSAGES/ktexteditor5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ktexteditor5.mo share/locale/sr@latin/LC_MESSAGES/ktexteditor5.mo share/locale/sv/LC_MESSAGES/ktexteditor5.mo share/locale/ta/LC_MESSAGES/ktexteditor5.mo share/locale/tg/LC_MESSAGES/ktexteditor5.mo share/locale/th/LC_MESSAGES/ktexteditor5.mo share/locale/tr/LC_MESSAGES/ktexteditor5.mo share/locale/ug/LC_MESSAGES/ktexteditor5.mo share/locale/uk/LC_MESSAGES/ktexteditor5.mo share/locale/uz/LC_MESSAGES/ktexteditor5.mo share/locale/uz@cyrillic/LC_MESSAGES/ktexteditor5.mo share/locale/vi/LC_MESSAGES/ktexteditor5.mo share/locale/wa/LC_MESSAGES/ktexteditor5.mo share/locale/xh/LC_MESSAGES/ktexteditor5.mo share/locale/zh_CN/LC_MESSAGES/ktexteditor5.mo share/locale/zh_TW/LC_MESSAGES/ktexteditor5.mo share/polkit-1/actions/org.kde.ktexteditor.katetextbuffer.policy share/qlogging-categories5/ktexteditor.categories share/qlogging-categories5/ktexteditor.renamecategories diff --git a/devel/kf5-kunitconversion/distinfo b/devel/kf5-kunitconversion/distinfo index 22635d84a04e..56b8483fa2df 100644 --- a/devel/kf5-kunitconversion/distinfo +++ b/devel/kf5-kunitconversion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689120 -SHA256 (KDE/frameworks/5.99.0/kunitconversion-5.99.0.tar.xz) = dea28a89f4bff58fa8c62a09847f8837111940a0757e312c32f70b499224a42f -SIZE (KDE/frameworks/5.99.0/kunitconversion-5.99.0.tar.xz) = 899044 +TIMESTAMP = 1667804652 +SHA256 (KDE/frameworks/5.100.0/kunitconversion-5.100.0.tar.xz) = 1c5b8c30db9faeb4a997e5676b62676df80d8cc887f11ac68a0f2848651c141b +SIZE (KDE/frameworks/5.100.0/kunitconversion-5.100.0.tar.xz) = 915696 diff --git a/devel/kf5-kunitconversion/pkg-plist b/devel/kf5-kunitconversion/pkg-plist index f361c4c932a7..97af7a91e313 100644 --- a/devel/kf5-kunitconversion/pkg-plist +++ b/devel/kf5-kunitconversion/pkg-plist @@ -1,80 +1,80 @@ include/KF5/KUnitConversion/KUnitConversion/Converter include/KF5/KUnitConversion/KUnitConversion/Unit include/KF5/KUnitConversion/KUnitConversion/UnitCategory include/KF5/KUnitConversion/KUnitConversion/Value include/KF5/KUnitConversion/kunitconversion/converter.h include/KF5/KUnitConversion/kunitconversion/kunitconversion_export.h include/KF5/KUnitConversion/kunitconversion/unit.h include/KF5/KUnitConversion/kunitconversion/unitcategory.h include/KF5/KUnitConversion/kunitconversion/value.h include/KF5/KUnitConversion/kunitconversion_version.h lib/cmake/KF5UnitConversion/KF5UnitConversionConfig.cmake lib/cmake/KF5UnitConversion/KF5UnitConversionConfigVersion.cmake lib/cmake/KF5UnitConversion/KF5UnitConversionTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5UnitConversion/KF5UnitConversionTargets.cmake lib/libKF5UnitConversion.so lib/libKF5UnitConversion.so.5 lib/libKF5UnitConversion.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KUnitConversion.pri share/locale/ar/LC_MESSAGES/kunitconversion5.mo -share/locale/ast/LC_MESSAGES/kunitconversion5.mo share/locale/az/LC_MESSAGES/kunitconversion5.mo share/locale/bg/LC_MESSAGES/kunitconversion5.mo share/locale/bs/LC_MESSAGES/kunitconversion5.mo share/locale/ca/LC_MESSAGES/kunitconversion5.mo share/locale/ca@valencia/LC_MESSAGES/kunitconversion5.mo share/locale/cs/LC_MESSAGES/kunitconversion5.mo share/locale/da/LC_MESSAGES/kunitconversion5.mo share/locale/de/LC_MESSAGES/kunitconversion5.mo share/locale/el/LC_MESSAGES/kunitconversion5.mo share/locale/en_GB/LC_MESSAGES/kunitconversion5.mo share/locale/eo/LC_MESSAGES/kunitconversion5.mo share/locale/es/LC_MESSAGES/kunitconversion5.mo share/locale/et/LC_MESSAGES/kunitconversion5.mo share/locale/eu/LC_MESSAGES/kunitconversion5.mo share/locale/fi/LC_MESSAGES/kunitconversion5.mo share/locale/fr/LC_MESSAGES/kunitconversion5.mo share/locale/ga/LC_MESSAGES/kunitconversion5.mo share/locale/gd/LC_MESSAGES/kunitconversion5.mo share/locale/gl/LC_MESSAGES/kunitconversion5.mo share/locale/hr/LC_MESSAGES/kunitconversion5.mo share/locale/hu/LC_MESSAGES/kunitconversion5.mo share/locale/ia/LC_MESSAGES/kunitconversion5.mo share/locale/id/LC_MESSAGES/kunitconversion5.mo share/locale/is/LC_MESSAGES/kunitconversion5.mo share/locale/it/LC_MESSAGES/kunitconversion5.mo share/locale/ja/LC_MESSAGES/kunitconversion5.mo +share/locale/ka/LC_MESSAGES/kunitconversion5.mo share/locale/kk/LC_MESSAGES/kunitconversion5.mo share/locale/ko/LC_MESSAGES/kunitconversion5.mo share/locale/lt/LC_MESSAGES/kunitconversion5.mo share/locale/lv/LC_MESSAGES/kunitconversion5.mo share/locale/ml/LC_MESSAGES/kunitconversion5.mo share/locale/mr/LC_MESSAGES/kunitconversion5.mo share/locale/ms/LC_MESSAGES/kunitconversion5.mo share/locale/nb/LC_MESSAGES/kunitconversion5.mo share/locale/nds/LC_MESSAGES/kunitconversion5.mo share/locale/nl/LC_MESSAGES/kunitconversion5.mo share/locale/nn/LC_MESSAGES/kunitconversion5.mo share/locale/pa/LC_MESSAGES/kunitconversion5.mo share/locale/pl/LC_MESSAGES/kunitconversion5.mo share/locale/pt/LC_MESSAGES/kunitconversion5.mo share/locale/pt_BR/LC_MESSAGES/kunitconversion5.mo share/locale/ro/LC_MESSAGES/kunitconversion5.mo share/locale/ru/LC_MESSAGES/kunitconversion5.mo share/locale/se/LC_MESSAGES/kunitconversion5.mo share/locale/sk/LC_MESSAGES/kunitconversion5.mo share/locale/sl/LC_MESSAGES/kunitconversion5.mo share/locale/sr/LC_MESSAGES/kunitconversion5.mo share/locale/sr@ijekavian/LC_MESSAGES/kunitconversion5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kunitconversion5.mo share/locale/sr@latin/LC_MESSAGES/kunitconversion5.mo share/locale/sv/LC_MESSAGES/kunitconversion5.mo share/locale/ta/LC_MESSAGES/kunitconversion5.mo share/locale/tg/LC_MESSAGES/kunitconversion5.mo share/locale/th/LC_MESSAGES/kunitconversion5.mo share/locale/tr/LC_MESSAGES/kunitconversion5.mo share/locale/ug/LC_MESSAGES/kunitconversion5.mo share/locale/uk/LC_MESSAGES/kunitconversion5.mo share/locale/zh_CN/LC_MESSAGES/kunitconversion5.mo share/locale/zh_TW/LC_MESSAGES/kunitconversion5.mo share/qlogging-categories5/kunitconversion.categories diff --git a/devel/kf5-solid/distinfo b/devel/kf5-solid/distinfo index 3666af889187..1867bc50caae 100644 --- a/devel/kf5-solid/distinfo +++ b/devel/kf5-solid/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689121 -SHA256 (KDE/frameworks/5.99.0/solid-5.99.0.tar.xz) = 8be5463ddfb5a186fad63a1260b67e794bbfc9c9191cdb2239238bb521f6d07b -SIZE (KDE/frameworks/5.99.0/solid-5.99.0.tar.xz) = 261264 +TIMESTAMP = 1667804653 +SHA256 (KDE/frameworks/5.100.0/solid-5.100.0.tar.xz) = 8d9993ed9d24565cf3a8c9c109ecf900867e5cc13e247fda4faa7118b4244683 +SIZE (KDE/frameworks/5.100.0/solid-5.100.0.tar.xz) = 302412 diff --git a/devel/kf5-solid/pkg-plist b/devel/kf5-solid/pkg-plist index 7306774a45f2..9a9f0940fd15 100644 --- a/devel/kf5-solid/pkg-plist +++ b/devel/kf5-solid/pkg-plist @@ -1,112 +1,112 @@ bin/solid-hardware5 include/KF5/Solid/Solid/Battery include/KF5/Solid/Solid/Block include/KF5/Solid/Solid/Camera include/KF5/Solid/Solid/Device include/KF5/Solid/Solid/DeviceInterface include/KF5/Solid/Solid/DeviceNotifier include/KF5/Solid/Solid/GenericInterface include/KF5/Solid/Solid/NetworkShare include/KF5/Solid/Solid/OpticalDisc include/KF5/Solid/Solid/OpticalDrive include/KF5/Solid/Solid/PortableMediaPlayer include/KF5/Solid/Solid/Predicate include/KF5/Solid/Solid/Processor include/KF5/Solid/Solid/SolidNamespace include/KF5/Solid/Solid/StorageAccess include/KF5/Solid/Solid/StorageDrive include/KF5/Solid/Solid/StorageVolume include/KF5/Solid/solid/battery.h include/KF5/Solid/solid/block.h include/KF5/Solid/solid/camera.h include/KF5/Solid/solid/device.h include/KF5/Solid/solid/deviceinterface.h include/KF5/Solid/solid/devicenotifier.h include/KF5/Solid/solid/genericinterface.h include/KF5/Solid/solid/networkshare.h include/KF5/Solid/solid/opticaldisc.h include/KF5/Solid/solid/opticaldrive.h include/KF5/Solid/solid/portablemediaplayer.h include/KF5/Solid/solid/predicate.h include/KF5/Solid/solid/processor.h include/KF5/Solid/solid/solid_export.h -include/KF5/Solid/solid_version.h include/KF5/Solid/solid/solidnamespace.h include/KF5/Solid/solid/storageaccess.h include/KF5/Solid/solid/storagedrive.h include/KF5/Solid/solid/storagevolume.h +include/KF5/Solid/solid_version.h lib/cmake/KF5Solid/KF5SolidConfig.cmake lib/cmake/KF5Solid/KF5SolidConfigVersion.cmake lib/cmake/KF5Solid/KF5SolidTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Solid/KF5SolidTargets.cmake lib/libKF5Solid.so lib/libKF5Solid.so.5 lib/libKF5Solid.so.%%KDE_FRAMEWORKS_VERSION%% +%%QT_MKSPECDIR%%/modules/qt_Solid.pri %%QT_QMLDIR%%/org/kde/solid/libsolidextensionplugin.so %%QT_QMLDIR%%/org/kde/solid/qmldir -%%QT_MKSPECDIR%%/modules/qt_Solid.pri share/locale/ar/LC_MESSAGES/solid5_qt.qm -share/locale/ast/LC_MESSAGES/solid5_qt.qm share/locale/az/LC_MESSAGES/solid5_qt.qm share/locale/bg/LC_MESSAGES/solid5_qt.qm share/locale/bs/LC_MESSAGES/solid5_qt.qm share/locale/ca/LC_MESSAGES/solid5_qt.qm share/locale/ca@valencia/LC_MESSAGES/solid5_qt.qm share/locale/cs/LC_MESSAGES/solid5_qt.qm share/locale/da/LC_MESSAGES/solid5_qt.qm share/locale/de/LC_MESSAGES/solid5_qt.qm share/locale/el/LC_MESSAGES/solid5_qt.qm share/locale/en_GB/LC_MESSAGES/solid5_qt.qm share/locale/eo/LC_MESSAGES/solid5_qt.qm share/locale/es/LC_MESSAGES/solid5_qt.qm share/locale/et/LC_MESSAGES/solid5_qt.qm share/locale/eu/LC_MESSAGES/solid5_qt.qm share/locale/fi/LC_MESSAGES/solid5_qt.qm share/locale/fr/LC_MESSAGES/solid5_qt.qm share/locale/ga/LC_MESSAGES/solid5_qt.qm share/locale/gd/LC_MESSAGES/solid5_qt.qm share/locale/gl/LC_MESSAGES/solid5_qt.qm share/locale/he/LC_MESSAGES/solid5_qt.qm share/locale/hr/LC_MESSAGES/solid5_qt.qm share/locale/hu/LC_MESSAGES/solid5_qt.qm share/locale/ia/LC_MESSAGES/solid5_qt.qm share/locale/id/LC_MESSAGES/solid5_qt.qm share/locale/is/LC_MESSAGES/solid5_qt.qm share/locale/it/LC_MESSAGES/solid5_qt.qm share/locale/ja/LC_MESSAGES/solid5_qt.qm +share/locale/ka/LC_MESSAGES/solid5_qt.qm share/locale/kk/LC_MESSAGES/solid5_qt.qm share/locale/km/LC_MESSAGES/solid5_qt.qm share/locale/ko/LC_MESSAGES/solid5_qt.qm share/locale/lt/LC_MESSAGES/solid5_qt.qm share/locale/lv/LC_MESSAGES/solid5_qt.qm share/locale/ml/LC_MESSAGES/solid5_qt.qm share/locale/mr/LC_MESSAGES/solid5_qt.qm share/locale/ms/LC_MESSAGES/solid5_qt.qm share/locale/nb/LC_MESSAGES/solid5_qt.qm share/locale/nds/LC_MESSAGES/solid5_qt.qm share/locale/nl/LC_MESSAGES/solid5_qt.qm share/locale/nn/LC_MESSAGES/solid5_qt.qm share/locale/pa/LC_MESSAGES/solid5_qt.qm share/locale/pl/LC_MESSAGES/solid5_qt.qm share/locale/pt/LC_MESSAGES/solid5_qt.qm share/locale/pt_BR/LC_MESSAGES/solid5_qt.qm share/locale/ro/LC_MESSAGES/solid5_qt.qm share/locale/ru/LC_MESSAGES/solid5_qt.qm share/locale/se/LC_MESSAGES/solid5_qt.qm share/locale/sk/LC_MESSAGES/solid5_qt.qm share/locale/sl/LC_MESSAGES/solid5_qt.qm share/locale/sr/LC_MESSAGES/solid5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/solid5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/solid5_qt.qm share/locale/sr@latin/LC_MESSAGES/solid5_qt.qm share/locale/sv/LC_MESSAGES/solid5_qt.qm share/locale/ta/LC_MESSAGES/solid5_qt.qm share/locale/tg/LC_MESSAGES/solid5_qt.qm share/locale/th/LC_MESSAGES/solid5_qt.qm share/locale/tr/LC_MESSAGES/solid5_qt.qm share/locale/ug/LC_MESSAGES/solid5_qt.qm share/locale/uk/LC_MESSAGES/solid5_qt.qm share/locale/zh_CN/LC_MESSAGES/solid5_qt.qm share/locale/zh_TW/LC_MESSAGES/solid5_qt.qm share/qlogging-categories5/solid.categories share/qlogging-categories5/solid.renamecategories diff --git a/devel/kf5-threadweaver/distinfo b/devel/kf5-threadweaver/distinfo index 472e680246e0..ded28967b526 100644 --- a/devel/kf5-threadweaver/distinfo +++ b/devel/kf5-threadweaver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689122 -SHA256 (KDE/frameworks/5.99.0/threadweaver-5.99.0.tar.xz) = ca4612ba1f6fc97f863fcd6e725ad2fb80d5d3109e5a3afd0aa0553645667bc8 -SIZE (KDE/frameworks/5.99.0/threadweaver-5.99.0.tar.xz) = 1413044 +TIMESTAMP = 1667804654 +SHA256 (KDE/frameworks/5.100.0/threadweaver-5.100.0.tar.xz) = 035a2ef1145e51d023791e6c638f9132635c800440072fd3161ed30863445735 +SIZE (KDE/frameworks/5.100.0/threadweaver-5.100.0.tar.xz) = 1413016 diff --git a/dns/kf5-kdnssd/distinfo b/dns/kf5-kdnssd/distinfo index ca1969845854..918ac61db6a9 100644 --- a/dns/kf5-kdnssd/distinfo +++ b/dns/kf5-kdnssd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689123 -SHA256 (KDE/frameworks/5.99.0/kdnssd-5.99.0.tar.xz) = 47314f59bb3ca3cc66459afd596be561909981279c84ca64a179a7d09f582a1c -SIZE (KDE/frameworks/5.99.0/kdnssd-5.99.0.tar.xz) = 61096 +TIMESTAMP = 1667804654 +SHA256 (KDE/frameworks/5.100.0/kdnssd-5.100.0.tar.xz) = 63751c3ba7faa48c7b18c5f0e6128748b117f3c2706fee1e1d593e7cf68472ba +SIZE (KDE/frameworks/5.100.0/kdnssd-5.100.0.tar.xz) = 2309604 diff --git a/dns/kf5-kdnssd/pkg-plist b/dns/kf5-kdnssd/pkg-plist index 8abc7cf1cd9d..fd51e3cb49cf 100644 --- a/dns/kf5-kdnssd/pkg-plist +++ b/dns/kf5-kdnssd/pkg-plist @@ -1,143 +1,142 @@ include/KF5/KDNSSD/DNSSD/DomainBrowser include/KF5/KDNSSD/DNSSD/DomainModel include/KF5/KDNSSD/DNSSD/PublicService include/KF5/KDNSSD/DNSSD/RemoteService include/KF5/KDNSSD/DNSSD/ServiceBase include/KF5/KDNSSD/DNSSD/ServiceBrowser include/KF5/KDNSSD/DNSSD/ServiceModel include/KF5/KDNSSD/DNSSD/ServiceTypeBrowser include/KF5/KDNSSD/KDNSSD/DomainBrowser include/KF5/KDNSSD/KDNSSD/DomainModel include/KF5/KDNSSD/KDNSSD/PublicService include/KF5/KDNSSD/KDNSSD/RemoteService include/KF5/KDNSSD/KDNSSD/ServiceBase include/KF5/KDNSSD/KDNSSD/ServiceBrowser include/KF5/KDNSSD/KDNSSD/ServiceModel include/KF5/KDNSSD/KDNSSD/ServiceTypeBrowser include/KF5/KDNSSD/dnssd/domainbrowser.h include/KF5/KDNSSD/dnssd/domainmodel.h include/KF5/KDNSSD/dnssd/publicservice.h include/KF5/KDNSSD/dnssd/remoteservice.h include/KF5/KDNSSD/dnssd/servicebase.h include/KF5/KDNSSD/dnssd/servicebrowser.h include/KF5/KDNSSD/dnssd/servicemodel.h include/KF5/KDNSSD/dnssd/servicetypebrowser.h include/KF5/KDNSSD/kdnssd/domainbrowser.h include/KF5/KDNSSD/kdnssd/domainmodel.h include/KF5/KDNSSD/kdnssd/kdnssd_export.h include/KF5/KDNSSD/kdnssd/publicservice.h include/KF5/KDNSSD/kdnssd/remoteservice.h include/KF5/KDNSSD/kdnssd/servicebase.h include/KF5/KDNSSD/kdnssd/servicebrowser.h include/KF5/KDNSSD/kdnssd/servicemodel.h include/KF5/KDNSSD/kdnssd/servicetypebrowser.h include/KF5/KDNSSD/kdnssd_version.h lib/cmake/KF5DNSSD/KF5DNSSDConfig.cmake lib/cmake/KF5DNSSD/KF5DNSSDConfigVersion.cmake lib/cmake/KF5DNSSD/KF5DNSSDTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DNSSD/KF5DNSSDTargets.cmake lib/libKF5DNSSD.so lib/libKF5DNSSD.so.5 lib/libKF5DNSSD.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KDNSSD.pri share/locale/af/LC_MESSAGES/kdnssd5_qt.qm share/locale/ar/LC_MESSAGES/kdnssd5_qt.qm share/locale/as/LC_MESSAGES/kdnssd5_qt.qm -share/locale/ast/LC_MESSAGES/kdnssd5_qt.qm share/locale/az/LC_MESSAGES/kdnssd5_qt.qm share/locale/be/LC_MESSAGES/kdnssd5_qt.qm share/locale/be@latin/LC_MESSAGES/kdnssd5_qt.qm share/locale/bg/LC_MESSAGES/kdnssd5_qt.qm share/locale/bn/LC_MESSAGES/kdnssd5_qt.qm share/locale/bn_IN/LC_MESSAGES/kdnssd5_qt.qm share/locale/br/LC_MESSAGES/kdnssd5_qt.qm share/locale/bs/LC_MESSAGES/kdnssd5_qt.qm share/locale/ca/LC_MESSAGES/kdnssd5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kdnssd5_qt.qm share/locale/crh/LC_MESSAGES/kdnssd5_qt.qm share/locale/cs/LC_MESSAGES/kdnssd5_qt.qm share/locale/csb/LC_MESSAGES/kdnssd5_qt.qm share/locale/cy/LC_MESSAGES/kdnssd5_qt.qm share/locale/da/LC_MESSAGES/kdnssd5_qt.qm share/locale/de/LC_MESSAGES/kdnssd5_qt.qm share/locale/el/LC_MESSAGES/kdnssd5_qt.qm share/locale/en_GB/LC_MESSAGES/kdnssd5_qt.qm share/locale/eo/LC_MESSAGES/kdnssd5_qt.qm share/locale/es/LC_MESSAGES/kdnssd5_qt.qm share/locale/et/LC_MESSAGES/kdnssd5_qt.qm share/locale/eu/LC_MESSAGES/kdnssd5_qt.qm share/locale/fa/LC_MESSAGES/kdnssd5_qt.qm share/locale/fi/LC_MESSAGES/kdnssd5_qt.qm share/locale/fr/LC_MESSAGES/kdnssd5_qt.qm share/locale/fy/LC_MESSAGES/kdnssd5_qt.qm share/locale/ga/LC_MESSAGES/kdnssd5_qt.qm share/locale/gd/LC_MESSAGES/kdnssd5_qt.qm share/locale/gl/LC_MESSAGES/kdnssd5_qt.qm share/locale/gu/LC_MESSAGES/kdnssd5_qt.qm share/locale/ha/LC_MESSAGES/kdnssd5_qt.qm share/locale/he/LC_MESSAGES/kdnssd5_qt.qm share/locale/hi/LC_MESSAGES/kdnssd5_qt.qm share/locale/hne/LC_MESSAGES/kdnssd5_qt.qm share/locale/hr/LC_MESSAGES/kdnssd5_qt.qm share/locale/hsb/LC_MESSAGES/kdnssd5_qt.qm share/locale/hu/LC_MESSAGES/kdnssd5_qt.qm share/locale/hy/LC_MESSAGES/kdnssd5_qt.qm share/locale/ia/LC_MESSAGES/kdnssd5_qt.qm share/locale/id/LC_MESSAGES/kdnssd5_qt.qm share/locale/is/LC_MESSAGES/kdnssd5_qt.qm share/locale/it/LC_MESSAGES/kdnssd5_qt.qm share/locale/ja/LC_MESSAGES/kdnssd5_qt.qm share/locale/ka/LC_MESSAGES/kdnssd5_qt.qm share/locale/kk/LC_MESSAGES/kdnssd5_qt.qm share/locale/km/LC_MESSAGES/kdnssd5_qt.qm share/locale/kn/LC_MESSAGES/kdnssd5_qt.qm share/locale/ko/LC_MESSAGES/kdnssd5_qt.qm share/locale/ku/LC_MESSAGES/kdnssd5_qt.qm share/locale/lb/LC_MESSAGES/kdnssd5_qt.qm share/locale/lt/LC_MESSAGES/kdnssd5_qt.qm share/locale/lv/LC_MESSAGES/kdnssd5_qt.qm share/locale/mai/LC_MESSAGES/kdnssd5_qt.qm share/locale/mk/LC_MESSAGES/kdnssd5_qt.qm share/locale/ml/LC_MESSAGES/kdnssd5_qt.qm share/locale/mr/LC_MESSAGES/kdnssd5_qt.qm share/locale/ms/LC_MESSAGES/kdnssd5_qt.qm share/locale/nb/LC_MESSAGES/kdnssd5_qt.qm share/locale/nds/LC_MESSAGES/kdnssd5_qt.qm share/locale/ne/LC_MESSAGES/kdnssd5_qt.qm share/locale/nl/LC_MESSAGES/kdnssd5_qt.qm share/locale/nn/LC_MESSAGES/kdnssd5_qt.qm share/locale/oc/LC_MESSAGES/kdnssd5_qt.qm share/locale/or/LC_MESSAGES/kdnssd5_qt.qm share/locale/pa/LC_MESSAGES/kdnssd5_qt.qm share/locale/pl/LC_MESSAGES/kdnssd5_qt.qm share/locale/ps/LC_MESSAGES/kdnssd5_qt.qm share/locale/pt/LC_MESSAGES/kdnssd5_qt.qm share/locale/pt_BR/LC_MESSAGES/kdnssd5_qt.qm share/locale/ro/LC_MESSAGES/kdnssd5_qt.qm share/locale/ru/LC_MESSAGES/kdnssd5_qt.qm share/locale/se/LC_MESSAGES/kdnssd5_qt.qm share/locale/si/LC_MESSAGES/kdnssd5_qt.qm share/locale/sk/LC_MESSAGES/kdnssd5_qt.qm share/locale/sl/LC_MESSAGES/kdnssd5_qt.qm share/locale/sq/LC_MESSAGES/kdnssd5_qt.qm share/locale/sr/LC_MESSAGES/kdnssd5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kdnssd5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kdnssd5_qt.qm share/locale/sr@latin/LC_MESSAGES/kdnssd5_qt.qm share/locale/sv/LC_MESSAGES/kdnssd5_qt.qm share/locale/ta/LC_MESSAGES/kdnssd5_qt.qm share/locale/te/LC_MESSAGES/kdnssd5_qt.qm share/locale/tg/LC_MESSAGES/kdnssd5_qt.qm share/locale/th/LC_MESSAGES/kdnssd5_qt.qm share/locale/tr/LC_MESSAGES/kdnssd5_qt.qm share/locale/tt/LC_MESSAGES/kdnssd5_qt.qm share/locale/ug/LC_MESSAGES/kdnssd5_qt.qm share/locale/uk/LC_MESSAGES/kdnssd5_qt.qm share/locale/uz/LC_MESSAGES/kdnssd5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kdnssd5_qt.qm share/locale/vi/LC_MESSAGES/kdnssd5_qt.qm share/locale/wa/LC_MESSAGES/kdnssd5_qt.qm share/locale/xh/LC_MESSAGES/kdnssd5_qt.qm share/locale/zh_CN/LC_MESSAGES/kdnssd5_qt.qm share/locale/zh_HK/LC_MESSAGES/kdnssd5_qt.qm share/locale/zh_TW/LC_MESSAGES/kdnssd5_qt.qm diff --git a/graphics/kf5-kimageformats/Makefile b/graphics/kf5-kimageformats/Makefile index 43ebec29cfdf..48031bdacf9a 100644 --- a/graphics/kf5-kimageformats/Makefile +++ b/graphics/kf5-kimageformats/Makefile @@ -1,44 +1,38 @@ PORTNAME= kimageformats DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 2 CATEGORIES= graphics kde kde-frameworks -PATCH_SITES= https://invent.kde.org/frameworks/${PORTNAME}/-/commit/ -PATCHFILES+= f475a4b24a16.patch:-p1 # chase https://github.com/AOMediaCodec/libavif/commit/b3d441ad6d3f -PATCHFILES+= 350ce1b990460cb2178f369f22fe80803f5645f3.diff:-p1 \ - 1190e53e9b69da6f9663ceb75c4813c5708b7cbd.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing support for additional image formats LIB_DEPENDS= libImath.so:math/Imath USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive \ ecm:build USE_QT= core gui printsupport widgets \ buildtools:build qmake:build CFLAGS+= -I${LOCALBASE}/include/Imath OPTIONS_DEFINE= AVIF JXL HEIF OPENEXR OPTIONS_DEFAULT= AVIF JXL HEIF OPENEXR OPTIONS_SUB= yes AVIF_LIB_DEPENDS= libavif.so:graphics/libavif AVIF_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_libavif JXL_LIB_DEPENDS= libjxl.so:graphics/libjxl JXL_CMAKE_BOOL= KIMAGEFORMATS_JXL HEIF_LIB_DEPENDS= libheif.so:graphics/libheif HEIF_CMAKE_BOOL= KIMAGEFORMATS_HEIF OPENEXR_LIB_DEPENDS= libOpenEXR.so:graphics/openexr OPENEXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR post-patch: ${REINPLACE_CMD} s,Imf::Int64,uint64_t, \ ${WRKSRC}/src/imageformats/exr.cpp .include diff --git a/graphics/kf5-kimageformats/distinfo b/graphics/kf5-kimageformats/distinfo index de498fcf26dd..d600eaf0ede6 100644 --- a/graphics/kf5-kimageformats/distinfo +++ b/graphics/kf5-kimageformats/distinfo @@ -1,9 +1,3 @@ -TIMESTAMP = 1665857812 -SHA256 (KDE/frameworks/5.99.0/kimageformats-5.99.0.tar.xz) = 06e636d4fe03d8d1b0bfed728d00c83fa639e2990fd5664a7101bd77621db1ee -SIZE (KDE/frameworks/5.99.0/kimageformats-5.99.0.tar.xz) = 12298368 -SHA256 (KDE/frameworks/5.99.0/f475a4b24a16.patch) = a9b4e458d237333cd3c638e9fea832ef2eb752149b3e9d12c0e8127a9f12565f -SIZE (KDE/frameworks/5.99.0/f475a4b24a16.patch) = 1916 -SHA256 (KDE/frameworks/5.99.0/350ce1b990460cb2178f369f22fe80803f5645f3.diff) = ad31c7ed52ef23ace5a60c5d234ca6e4412addac7ccea490535167b45fc901e2 -SIZE (KDE/frameworks/5.99.0/350ce1b990460cb2178f369f22fe80803f5645f3.diff) = 547 -SHA256 (KDE/frameworks/5.99.0/1190e53e9b69da6f9663ceb75c4813c5708b7cbd.diff) = 0fede45390acd8fa166fb33ca03b52150ac4c217c11d7d1006a77fb5e72aa4cc -SIZE (KDE/frameworks/5.99.0/1190e53e9b69da6f9663ceb75c4813c5708b7cbd.diff) = 504 +TIMESTAMP = 1667830742 +SHA256 (KDE/frameworks/5.100.0/kimageformats-5.100.0.tar.xz) = cbb5253d55c0ac09689b772f0723a42c290e8df3448116f556f5d320c6738827 +SIZE (KDE/frameworks/5.100.0/kimageformats-5.100.0.tar.xz) = 12669456 diff --git a/graphics/kf5-kplotting/distinfo b/graphics/kf5-kplotting/distinfo index 9583b1243c20..faa1df2accf5 100644 --- a/graphics/kf5-kplotting/distinfo +++ b/graphics/kf5-kplotting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689126 -SHA256 (KDE/frameworks/5.99.0/kplotting-5.99.0.tar.xz) = d85bf4020c444b5d377effcff71197a12e15bbdeb3fbc3dd58444be702fcb47b -SIZE (KDE/frameworks/5.99.0/kplotting-5.99.0.tar.xz) = 33736 +TIMESTAMP = 1667804657 +SHA256 (KDE/frameworks/5.100.0/kplotting-5.100.0.tar.xz) = f5e411ba79a1945d6778b5a337d963a080cb3016be41b1708ab25d77a63751d3 +SIZE (KDE/frameworks/5.100.0/kplotting-5.100.0.tar.xz) = 33740 diff --git a/graphics/kf5-kquickcharts/distinfo b/graphics/kf5-kquickcharts/distinfo index 07151ca54f73..70c267a8b234 100644 --- a/graphics/kf5-kquickcharts/distinfo +++ b/graphics/kf5-kquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689127 -SHA256 (KDE/frameworks/5.99.0/kquickcharts-5.99.0.tar.xz) = 69612537175cde6ece727f43a9a6fa557d27bd7e2ab38123ab2a24c29394c02c -SIZE (KDE/frameworks/5.99.0/kquickcharts-5.99.0.tar.xz) = 110732 +TIMESTAMP = 1667804658 +SHA256 (KDE/frameworks/5.100.0/kquickcharts-5.100.0.tar.xz) = 3ff3de4ae87dcb17db3bd3451cfdb99f004c16dd0cafa53ef452abfed86aadac +SIZE (KDE/frameworks/5.100.0/kquickcharts-5.100.0.tar.xz) = 110752 diff --git a/graphics/kf5-prison/distinfo b/graphics/kf5-prison/distinfo index bea2a9bb0192..1c30e4deb1af 100644 --- a/graphics/kf5-prison/distinfo +++ b/graphics/kf5-prison/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689128 -SHA256 (KDE/frameworks/5.99.0/prison-5.99.0.tar.xz) = 84deb9c19e79ca73fee27151e140006f4eebd5326bc22a226a2b7bfbf074c1f1 -SIZE (KDE/frameworks/5.99.0/prison-5.99.0.tar.xz) = 78696 +TIMESTAMP = 1667804659 +SHA256 (KDE/frameworks/5.100.0/prison-5.100.0.tar.xz) = 30c9a6ef8364b811f2015b6d8ca36714cd39e514919fdc054768ae871dcb9483 +SIZE (KDE/frameworks/5.100.0/prison-5.100.0.tar.xz) = 54948 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index 65cad95576a9..9e77759ce7cc 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1173 +1,1173 @@ 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/bs/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular_chm.mo share/locale/bs/LC_MESSAGES/okular_comicbook.mo share/locale/bs/LC_MESSAGES/okular_djvu.mo share/locale/bs/LC_MESSAGES/okular_dvi.mo share/locale/bs/LC_MESSAGES/okular_epub.mo share/locale/bs/LC_MESSAGES/okular_fax.mo share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo share/locale/bs/LC_MESSAGES/okular_plucker.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo share/locale/bs/LC_MESSAGES/okular_xps.mo share/locale/bs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca/LC_MESSAGES/okular.mo share/locale/ca/LC_MESSAGES/okular_chm.mo share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo share/locale/ca/LC_MESSAGES/okular_tiff.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca@valencia/LC_MESSAGES/okular.mo share/locale/ca@valencia/LC_MESSAGES/okular_chm.mo share/locale/ca@valencia/LC_MESSAGES/okular_comicbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_djvu.mo share/locale/ca@valencia/LC_MESSAGES/okular_dvi.mo share/locale/ca@valencia/LC_MESSAGES/okular_epub.mo share/locale/ca@valencia/LC_MESSAGES/okular_fax.mo share/locale/ca@valencia/LC_MESSAGES/okular_fictionbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo share/locale/ca@valencia/LC_MESSAGES/okular_plucker.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo share/locale/ca@valencia/LC_MESSAGES/okular_tiff.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_chm.mo share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/da/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular_chm.mo share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo share/locale/da/LC_MESSAGES/okular_markdown.mo share/locale/da/LC_MESSAGES/okular_mobi.mo share/locale/da/LC_MESSAGES/okular_plucker.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo share/locale/da/LC_MESSAGES/okular_xps.mo share/locale/da/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/de/LC_MESSAGES/okular.mo share/locale/de/LC_MESSAGES/okular_chm.mo share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.mo share/locale/de/LC_MESSAGES/okular_tiff.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/el/LC_MESSAGES/okular.mo share/locale/el/LC_MESSAGES/okular_chm.mo share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.mo share/locale/el/LC_MESSAGES/okular_tiff.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/en_GB/LC_MESSAGES/okular.mo share/locale/en_GB/LC_MESSAGES/okular_chm.mo share/locale/en_GB/LC_MESSAGES/okular_comicbook.mo share/locale/en_GB/LC_MESSAGES/okular_djvu.mo share/locale/en_GB/LC_MESSAGES/okular_dvi.mo share/locale/en_GB/LC_MESSAGES/okular_epub.mo share/locale/en_GB/LC_MESSAGES/okular_fax.mo share/locale/en_GB/LC_MESSAGES/okular_fictionbook.mo share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo share/locale/en_GB/LC_MESSAGES/okular_plucker.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo share/locale/en_GB/LC_MESSAGES/okular_tiff.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eo/LC_MESSAGES/okular.mo share/locale/eo/LC_MESSAGES/okular_chm.mo share/locale/eo/LC_MESSAGES/okular_comicbook.mo share/locale/eo/LC_MESSAGES/okular_djvu.mo share/locale/eo/LC_MESSAGES/okular_dvi.mo share/locale/eo/LC_MESSAGES/okular_epub.mo share/locale/eo/LC_MESSAGES/okular_fax.mo share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo share/locale/eo/LC_MESSAGES/okular_plucker.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo share/locale/eo/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/okular.mo share/locale/es/LC_MESSAGES/okular_chm.mo share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.mo share/locale/es/LC_MESSAGES/okular_tiff.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/et/LC_MESSAGES/okular.mo share/locale/et/LC_MESSAGES/okular_chm.mo share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_markdown.mo share/locale/et/LC_MESSAGES/okular_mobi.mo share/locale/et/LC_MESSAGES/okular_plucker.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo share/locale/et/LC_MESSAGES/okular_xps.mo share/locale/et/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eu/LC_MESSAGES/okular.mo share/locale/eu/LC_MESSAGES/okular_chm.mo share/locale/eu/LC_MESSAGES/okular_comicbook.mo share/locale/eu/LC_MESSAGES/okular_djvu.mo share/locale/eu/LC_MESSAGES/okular_dvi.mo share/locale/eu/LC_MESSAGES/okular_epub.mo share/locale/eu/LC_MESSAGES/okular_fax.mo share/locale/eu/LC_MESSAGES/okular_fictionbook.mo share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo share/locale/eu/LC_MESSAGES/okular_tiff.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fa/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular_chm.mo share/locale/fi/LC_MESSAGES/okular_comicbook.mo share/locale/fi/LC_MESSAGES/okular_djvu.mo share/locale/fi/LC_MESSAGES/okular_dvi.mo share/locale/fi/LC_MESSAGES/okular_epub.mo share/locale/fi/LC_MESSAGES/okular_fax.mo share/locale/fi/LC_MESSAGES/okular_fictionbook.mo share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo share/locale/fi/LC_MESSAGES/okular_tiff.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fr/LC_MESSAGES/okular.mo share/locale/fr/LC_MESSAGES/okular_chm.mo share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo share/locale/fr/LC_MESSAGES/okular_tiff.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_chm.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_chm.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_txt.mo share/locale/gl/LC_MESSAGES/okular_xps.mo share/locale/gl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/he/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular_chm.mo share/locale/hi/LC_MESSAGES/okular_comicbook.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_epub.mo share/locale/hi/LC_MESSAGES/okular_fax.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo share/locale/hi/LC_MESSAGES/okular_markdown.mo share/locale/hi/LC_MESSAGES/okular_mobi.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_tiff.mo share/locale/hi/LC_MESSAGES/okular_txt.mo share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/hr/LC_MESSAGES/okular.mo share/locale/hr/LC_MESSAGES/okular_chm.mo share/locale/hr/LC_MESSAGES/okular_comicbook.mo share/locale/hr/LC_MESSAGES/okular_djvu.mo share/locale/hr/LC_MESSAGES/okular_dvi.mo share/locale/hr/LC_MESSAGES/okular_epub.mo share/locale/hr/LC_MESSAGES/okular_fax.mo share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo share/locale/hr/LC_MESSAGES/okular_plucker.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular_chm.mo share/locale/hu/LC_MESSAGES/okular_comicbook.mo share/locale/hu/LC_MESSAGES/okular_djvu.mo share/locale/hu/LC_MESSAGES/okular_dvi.mo share/locale/hu/LC_MESSAGES/okular_epub.mo share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo share/locale/hu/LC_MESSAGES/okular_markdown.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ia/LC_MESSAGES/okular.mo share/locale/ia/LC_MESSAGES/okular_chm.mo share/locale/ia/LC_MESSAGES/okular_comicbook.mo share/locale/ia/LC_MESSAGES/okular_djvu.mo share/locale/ia/LC_MESSAGES/okular_dvi.mo share/locale/ia/LC_MESSAGES/okular_epub.mo share/locale/ia/LC_MESSAGES/okular_fax.mo share/locale/ia/LC_MESSAGES/okular_fictionbook.mo share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo share/locale/ia/LC_MESSAGES/okular_tiff.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/id/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular_chm.mo share/locale/is/LC_MESSAGES/okular_comicbook.mo share/locale/is/LC_MESSAGES/okular_djvu.mo share/locale/is/LC_MESSAGES/okular_dvi.mo share/locale/is/LC_MESSAGES/okular_epub.mo share/locale/is/LC_MESSAGES/okular_fax.mo share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_mobi.mo share/locale/is/LC_MESSAGES/okular_plucker.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/it/LC_MESSAGES/okular.mo share/locale/it/LC_MESSAGES/okular_chm.mo share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.mo share/locale/it/LC_MESSAGES/okular_tiff.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ja/LC_MESSAGES/okular.mo share/locale/ja/LC_MESSAGES/okular_chm.mo share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo share/locale/ja/LC_MESSAGES/okular_plucker.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_tiff.mo share/locale/ja/LC_MESSAGES/okular_txt.mo share/locale/ja/LC_MESSAGES/okular_xps.mo share/locale/ja/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/kk/LC_MESSAGES/okular.mo share/locale/kk/LC_MESSAGES/okular_chm.mo share/locale/kk/LC_MESSAGES/okular_comicbook.mo share/locale/kk/LC_MESSAGES/okular_djvu.mo share/locale/kk/LC_MESSAGES/okular_dvi.mo share/locale/kk/LC_MESSAGES/okular_epub.mo share/locale/kk/LC_MESSAGES/okular_fax.mo share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo share/locale/kk/LC_MESSAGES/okular_plucker.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo share/locale/kk/LC_MESSAGES/okular_xps.mo share/locale/kk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_chm.mo share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo share/locale/km/LC_MESSAGES/okular_epub.mo share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo share/locale/km/LC_MESSAGES/okular_plucker.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/okular.mo share/locale/ko/LC_MESSAGES/okular_chm.mo share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lt/LC_MESSAGES/okular.mo share/locale/lt/LC_MESSAGES/okular_chm.mo share/locale/lt/LC_MESSAGES/okular_comicbook.mo share/locale/lt/LC_MESSAGES/okular_djvu.mo share/locale/lt/LC_MESSAGES/okular_dvi.mo share/locale/lt/LC_MESSAGES/okular_epub.mo share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_markdown.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo share/locale/lt/LC_MESSAGES/okular_tiff.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lv/LC_MESSAGES/okular.mo share/locale/lv/LC_MESSAGES/okular_chm.mo share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo share/locale/lv/LC_MESSAGES/okular_plucker.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/okular.mo share/locale/ml/LC_MESSAGES/okular_chm.mo share/locale/ml/LC_MESSAGES/okular_comicbook.mo share/locale/ml/LC_MESSAGES/okular_djvu.mo share/locale/ml/LC_MESSAGES/okular_dvi.mo share/locale/ml/LC_MESSAGES/okular_epub.mo share/locale/ml/LC_MESSAGES/okular_fax.mo share/locale/ml/LC_MESSAGES/okular_fictionbook.mo share/locale/ml/LC_MESSAGES/okular_ghostview.mo share/locale/ml/LC_MESSAGES/okular_kimgio.mo share/locale/ml/LC_MESSAGES/okular_markdown.mo share/locale/ml/LC_MESSAGES/okular_mobi.mo share/locale/ml/LC_MESSAGES/okular_plucker.mo share/locale/ml/LC_MESSAGES/okular_poppler.mo share/locale/ml/LC_MESSAGES/okular_txt.mo share/locale/ml/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/mr/LC_MESSAGES/okular.mo share/locale/mr/LC_MESSAGES/okular_chm.mo share/locale/mr/LC_MESSAGES/okular_comicbook.mo share/locale/mr/LC_MESSAGES/okular_djvu.mo share/locale/mr/LC_MESSAGES/okular_dvi.mo share/locale/mr/LC_MESSAGES/okular_epub.mo share/locale/mr/LC_MESSAGES/okular_fax.mo share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo share/locale/mr/LC_MESSAGES/okular_plucker.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nb/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular_chm.mo share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo share/locale/nb/LC_MESSAGES/okular_plucker.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo share/locale/nb/LC_MESSAGES/okular_xps.mo share/locale/nb/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nds/LC_MESSAGES/okular.mo share/locale/nds/LC_MESSAGES/okular_chm.mo share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo share/locale/nds/LC_MESSAGES/okular_plucker.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo share/locale/nds/LC_MESSAGES/okular_xps.mo share/locale/nds/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nl/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular_chm.mo share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo share/locale/nl/LC_MESSAGES/okular_tiff.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nn/LC_MESSAGES/okular.mo share/locale/nn/LC_MESSAGES/okular_chm.mo share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo share/locale/nn/LC_MESSAGES/okular_tiff.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_chm.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_chm.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_chm.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_chm.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_chm.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_markdown.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_tiff.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_chm.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/se/LC_MESSAGES/okular.mo share/locale/se/LC_MESSAGES/okular_chm.mo share/locale/se/LC_MESSAGES/okular_djvu.mo share/locale/se/LC_MESSAGES/okular_dvi.mo share/locale/se/LC_MESSAGES/okular_fictionbook.mo share/locale/se/LC_MESSAGES/okular_ghostview.mo share/locale/se/LC_MESSAGES/okular_kimgio.mo share/locale/se/LC_MESSAGES/okular_plucker.mo share/locale/se/LC_MESSAGES/okular_poppler.mo share/locale/se/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/okular.mo share/locale/sk/LC_MESSAGES/okular_chm.mo share/locale/sk/LC_MESSAGES/okular_comicbook.mo share/locale/sk/LC_MESSAGES/okular_djvu.mo share/locale/sk/LC_MESSAGES/okular_dvi.mo share/locale/sk/LC_MESSAGES/okular_epub.mo share/locale/sk/LC_MESSAGES/okular_fax.mo share/locale/sk/LC_MESSAGES/okular_fictionbook.mo share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo share/locale/sk/LC_MESSAGES/okular_tiff.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sl/LC_MESSAGES/okular.mo share/locale/sl/LC_MESSAGES/okular_chm.mo share/locale/sl/LC_MESSAGES/okular_comicbook.mo share/locale/sl/LC_MESSAGES/okular_djvu.mo share/locale/sl/LC_MESSAGES/okular_dvi.mo share/locale/sl/LC_MESSAGES/okular_epub.mo share/locale/sl/LC_MESSAGES/okular_fax.mo share/locale/sl/LC_MESSAGES/okular_fictionbook.mo share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo share/locale/sl/LC_MESSAGES/okular_tiff.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sq/LC_MESSAGES/okular_chm.mo share/locale/sq/LC_MESSAGES/okular_comicbook.mo share/locale/sq/LC_MESSAGES/okular_djvu.mo share/locale/sq/LC_MESSAGES/okular_dvi.mo share/locale/sq/LC_MESSAGES/okular_epub.mo share/locale/sq/LC_MESSAGES/okular_fax.mo share/locale/sq/LC_MESSAGES/okular_fictionbook.mo share/locale/sq/LC_MESSAGES/okular_ghostview.mo share/locale/sq/LC_MESSAGES/okular_kimgio.mo share/locale/sq/LC_MESSAGES/okular_mobi.mo share/locale/sq/LC_MESSAGES/okular_plucker.mo share/locale/sq/LC_MESSAGES/okular_poppler.mo share/locale/sq/LC_MESSAGES/okular_xps.mo share/locale/sr/LC_MESSAGES/okular.mo share/locale/sr/LC_MESSAGES/okular_chm.mo share/locale/sr/LC_MESSAGES/okular_comicbook.mo share/locale/sr/LC_MESSAGES/okular_djvu.mo share/locale/sr/LC_MESSAGES/okular_dvi.mo share/locale/sr/LC_MESSAGES/okular_epub.mo share/locale/sr/LC_MESSAGES/okular_fax.mo share/locale/sr/LC_MESSAGES/okular_fictionbook.mo share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo share/locale/sr/LC_MESSAGES/okular_plucker.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo share/locale/sr/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_chm.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ta/LC_MESSAGES/okular.mo share/locale/ta/LC_MESSAGES/okular_djvu.mo share/locale/ta/LC_MESSAGES/okular_epub.mo share/locale/ta/LC_MESSAGES/okular_fax.mo share/locale/ta/LC_MESSAGES/okular_fictionbook.mo share/locale/ta/LC_MESSAGES/okular_ghostview.mo share/locale/ta/LC_MESSAGES/okular_kimgio.mo share/locale/ta/LC_MESSAGES/okular_markdown.mo share/locale/ta/LC_MESSAGES/okular_plucker.mo share/locale/ta/LC_MESSAGES/okular_poppler.mo share/locale/ta/LC_MESSAGES/okular_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/tr/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular_chm.mo share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_markdown.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_tiff.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_chm.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_chm.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/vi/LC_MESSAGES/okular.mo share/locale/vi/LC_MESSAGES/okular_chm.mo share/locale/vi/LC_MESSAGES/okular_comicbook.mo share/locale/vi/LC_MESSAGES/okular_djvu.mo share/locale/vi/LC_MESSAGES/okular_dvi.mo share/locale/vi/LC_MESSAGES/okular_epub.mo share/locale/vi/LC_MESSAGES/okular_fax.mo share/locale/vi/LC_MESSAGES/okular_fictionbook.mo share/locale/vi/LC_MESSAGES/okular_ghostview.mo share/locale/vi/LC_MESSAGES/okular_kimgio.mo share/locale/vi/LC_MESSAGES/okular_markdown.mo share/locale/vi/LC_MESSAGES/okular_mobi.mo share/locale/vi/LC_MESSAGES/okular_plucker.mo share/locale/vi/LC_MESSAGES/okular_poppler.mo share/locale/vi/LC_MESSAGES/okular_tiff.mo share/locale/vi/LC_MESSAGES/okular_txt.mo share/locale/vi/LC_MESSAGES/okular_xps.mo share/locale/vi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_chm.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular_chm.mo share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo share/locale/zh_CN/LC_MESSAGES/okular_plucker.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo share/locale/zh_CN/LC_MESSAGES/okular_tiff.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/zh_TW/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular_chm.mo share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo share/locale/zh_TW/LC_MESSAGES/okular_plucker.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_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/lang/kf5-kross/distinfo b/lang/kf5-kross/distinfo index 980d1fff8b00..cc5f496d6a2b 100644 --- a/lang/kf5-kross/distinfo +++ b/lang/kf5-kross/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689129 -SHA256 (KDE/frameworks/5.99.0/kross-5.99.0.tar.xz) = 7bf7a895f15554e4a88d63aa2216be9af7662bb8c28e56bad5b31953a97788d6 -SIZE (KDE/frameworks/5.99.0/kross-5.99.0.tar.xz) = 129400 +TIMESTAMP = 1667804660 +SHA256 (KDE/frameworks/5.100.0/kross-5.100.0.tar.xz) = b26fcdc1b88d5d706ce7d527f3a8cfddc8554254813e158488f3fb2ed5b6f64a +SIZE (KDE/frameworks/5.100.0/kross-5.100.0.tar.xz) = 2468528 diff --git a/misc/kf5-purpose/distinfo b/misc/kf5-purpose/distinfo index 1f33de524199..83b5b9283d83 100644 --- a/misc/kf5-purpose/distinfo +++ b/misc/kf5-purpose/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689130 -SHA256 (KDE/frameworks/5.99.0/purpose-5.99.0.tar.xz) = 1e9f30b4da3a5751423ed4e1e3cd76ec6d103ab485d859362e29273858ce02ae -SIZE (KDE/frameworks/5.99.0/purpose-5.99.0.tar.xz) = 174964 +TIMESTAMP = 1667804660 +SHA256 (KDE/frameworks/5.100.0/purpose-5.100.0.tar.xz) = 3c0eb5b744cb7505ece3e59e2f1ca445137f5969a73f253bca14eb5ff168532f +SIZE (KDE/frameworks/5.100.0/purpose-5.100.0.tar.xz) = 176608 diff --git a/misc/kf5-purpose/pkg-plist b/misc/kf5-purpose/pkg-plist index 944b0120af90..13c121ac5733 100644 --- a/misc/kf5-purpose/pkg-plist +++ b/misc/kf5-purpose/pkg-plist @@ -1,671 +1,669 @@ include/KF5/purpose/Purpose/AlternativesModel include/KF5/purpose/Purpose/Configuration include/KF5/purpose/Purpose/Job include/KF5/purpose/Purpose/PluginBase include/KF5/purpose/purpose/alternativesmodel.h include/KF5/purpose/purpose/configuration.h include/KF5/purpose/purpose/job.h include/KF5/purpose/purpose/pluginbase.h include/KF5/purpose/purpose/purpose_export.h include/KF5/purpose/purpose_version.h include/KF5/purposewidgets/PurposeWidgets/Menu include/KF5/purposewidgets/purposewidgets/menu.h include/KF5/purposewidgets/purposewidgets/purposewidgets_export.h lib/cmake/KDEExperimentalPurpose/KDEExperimentalPurposeConfig.cmake lib/cmake/KF5Purpose/KF5PurposeConfig.cmake lib/cmake/KF5Purpose/KF5PurposeConfigVersion.cmake lib/cmake/KF5Purpose/KF5PurposeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Purpose/KF5PurposeTargets.cmake lib/libKF5Purpose.so lib/libKF5Purpose.so.5 lib/libKF5Purpose.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PurposeWidgets.so lib/libKF5PurposeWidgets.so.5 lib/libKF5PurposeWidgets.so.%%KDE_FRAMEWORKS_VERSION%% lib/libPhabricatorHelpers.so.5 lib/libPhabricatorHelpers.so.%%KDE_FRAMEWORKS_VERSION%% lib/libReviewboardHelpers.so.5 lib/libReviewboardHelpers.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/purposeprocess %%QT_PLUGINDIR%%/kf5/kfileitemaction/sharefileitemaction.so %%QT_PLUGINDIR%%/kf5/purpose/barcodeplugin.so %%QT_PLUGINDIR%%/kf5/purpose/emailplugin.so %%QT_PLUGINDIR%%/kf5/purpose/imgurplugin.so %%QT_PLUGINDIR%%/kf5/purpose/kdeconnectplugin.so %%QT_PLUGINDIR%%/kf5/purpose/kdeconnectsmsplugin.so %%QT_PLUGINDIR%%/kf5/purpose/ktpsendfileplugin.so %%QT_PLUGINDIR%%/kf5/purpose/nextcloudplugin.so %%QT_PLUGINDIR%%/kf5/purpose/pastebinplugin.so %%QT_PLUGINDIR%%/kf5/purpose/phabricatorplugin.so %%QT_PLUGINDIR%%/kf5/purpose/reviewboardplugin.so %%QT_PLUGINDIR%%/kf5/purpose/saveasplugin.so %%QT_PLUGINDIR%%/kf5/purpose/telegramplugin.so %%QT_PLUGINDIR%%/kf5/purpose/twitterplugin.so %%QT_PLUGINDIR%%/kf5/purpose/youtubeplugin.so %%QT_QMLDIR%%/org/kde/purpose/AlternativesView.qml %%QT_QMLDIR%%/org/kde/purpose/JobView.qml %%QT_QMLDIR%%/org/kde/purpose/libpurposequickplugin.so %%QT_QMLDIR%%/org/kde/purpose/phabricator/libphabricatorquickplugin.so %%QT_QMLDIR%%/org/kde/purpose/phabricator/qmldir %%QT_QMLDIR%%/org/kde/purpose/qmldir %%QT_QMLDIR%%/org/kde/purpose/reviewboard/librbpurposequickplugin.so %%QT_QMLDIR%%/org/kde/purpose/reviewboard/qmldir share/accounts/services/kde/google-youtube.service share/accounts/services/kde/nextcloud-upload.service share/icons/hicolor/128x128/apps/phabricator-purpose.png share/icons/hicolor/128x128/apps/reviewboard-purpose.png share/icons/hicolor/16x16/actions/kipiplugin_youtube.png share/icons/hicolor/16x16/apps/phabricator-purpose.png share/icons/hicolor/16x16/apps/reviewboard-purpose.png share/icons/hicolor/22x22/actions/kipiplugin_youtube.png share/icons/hicolor/32x32/actions/kipiplugin_youtube.png share/icons/hicolor/48x48/actions/kipiplugin_youtube.png share/icons/hicolor/64x64/actions/kipiplugin_youtube.png share/locale/ar/LC_MESSAGES/libpurpose_quick.mo share/locale/ar/LC_MESSAGES/libpurpose_widgets.mo share/locale/ar/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ar/LC_MESSAGES/purpose_barcode.mo share/locale/ar/LC_MESSAGES/purpose_bluetooth.mo share/locale/ar/LC_MESSAGES/purpose_imgur.mo share/locale/ar/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ar/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ar/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ar/LC_MESSAGES/purpose_nextcloud.mo share/locale/ar/LC_MESSAGES/purpose_pastebin.mo share/locale/ar/LC_MESSAGES/purpose_phabricator.mo share/locale/ar/LC_MESSAGES/purpose_reviewboard.mo share/locale/ar/LC_MESSAGES/purpose_saveas.mo share/locale/ar/LC_MESSAGES/purpose_youtube.mo -share/locale/ast/LC_MESSAGES/purpose_kdeconnectsms.mo -share/locale/ast/LC_MESSAGES/purpose_ktp-sendfile.mo -share/locale/ast/LC_MESSAGES/purpose_pastebin.mo share/locale/az/LC_MESSAGES/libpurpose_quick.mo share/locale/az/LC_MESSAGES/libpurpose_widgets.mo share/locale/az/LC_MESSAGES/purpose-fileitemaction.mo share/locale/az/LC_MESSAGES/purpose_barcode.mo share/locale/az/LC_MESSAGES/purpose_bluetooth.mo share/locale/az/LC_MESSAGES/purpose_imgur.mo share/locale/az/LC_MESSAGES/purpose_kdeconnect.mo share/locale/az/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/az/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/az/LC_MESSAGES/purpose_nextcloud.mo share/locale/az/LC_MESSAGES/purpose_pastebin.mo share/locale/az/LC_MESSAGES/purpose_phabricator.mo share/locale/az/LC_MESSAGES/purpose_reviewboard.mo share/locale/az/LC_MESSAGES/purpose_saveas.mo share/locale/az/LC_MESSAGES/purpose_youtube.mo share/locale/bg/LC_MESSAGES/libpurpose_quick.mo share/locale/bg/LC_MESSAGES/libpurpose_widgets.mo share/locale/bg/LC_MESSAGES/purpose-fileitemaction.mo share/locale/bg/LC_MESSAGES/purpose_barcode.mo share/locale/bg/LC_MESSAGES/purpose_bluetooth.mo share/locale/bg/LC_MESSAGES/purpose_imgur.mo share/locale/bg/LC_MESSAGES/purpose_kdeconnect.mo share/locale/bg/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/bg/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/bg/LC_MESSAGES/purpose_nextcloud.mo share/locale/bg/LC_MESSAGES/purpose_pastebin.mo share/locale/bg/LC_MESSAGES/purpose_phabricator.mo share/locale/bg/LC_MESSAGES/purpose_reviewboard.mo share/locale/bg/LC_MESSAGES/purpose_saveas.mo share/locale/bg/LC_MESSAGES/purpose_youtube.mo share/locale/ca/LC_MESSAGES/libpurpose_quick.mo share/locale/ca/LC_MESSAGES/libpurpose_widgets.mo share/locale/ca/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ca/LC_MESSAGES/purpose_barcode.mo share/locale/ca/LC_MESSAGES/purpose_bluetooth.mo share/locale/ca/LC_MESSAGES/purpose_imgur.mo share/locale/ca/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ca/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ca/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ca/LC_MESSAGES/purpose_nextcloud.mo share/locale/ca/LC_MESSAGES/purpose_pastebin.mo share/locale/ca/LC_MESSAGES/purpose_phabricator.mo share/locale/ca/LC_MESSAGES/purpose_reviewboard.mo share/locale/ca/LC_MESSAGES/purpose_saveas.mo share/locale/ca/LC_MESSAGES/purpose_youtube.mo share/locale/ca@valencia/LC_MESSAGES/libpurpose_quick.mo share/locale/ca@valencia/LC_MESSAGES/libpurpose_widgets.mo share/locale/ca@valencia/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/purpose_barcode.mo share/locale/ca@valencia/LC_MESSAGES/purpose_bluetooth.mo share/locale/ca@valencia/LC_MESSAGES/purpose_imgur.mo share/locale/ca@valencia/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ca@valencia/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ca@valencia/LC_MESSAGES/purpose_nextcloud.mo share/locale/ca@valencia/LC_MESSAGES/purpose_pastebin.mo share/locale/ca@valencia/LC_MESSAGES/purpose_phabricator.mo share/locale/ca@valencia/LC_MESSAGES/purpose_reviewboard.mo share/locale/ca@valencia/LC_MESSAGES/purpose_saveas.mo share/locale/ca@valencia/LC_MESSAGES/purpose_youtube.mo share/locale/cs/LC_MESSAGES/libpurpose_quick.mo share/locale/cs/LC_MESSAGES/libpurpose_widgets.mo share/locale/cs/LC_MESSAGES/purpose-fileitemaction.mo share/locale/cs/LC_MESSAGES/purpose_barcode.mo share/locale/cs/LC_MESSAGES/purpose_bluetooth.mo share/locale/cs/LC_MESSAGES/purpose_imgur.mo share/locale/cs/LC_MESSAGES/purpose_kdeconnect.mo share/locale/cs/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/cs/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/cs/LC_MESSAGES/purpose_nextcloud.mo share/locale/cs/LC_MESSAGES/purpose_pastebin.mo share/locale/cs/LC_MESSAGES/purpose_phabricator.mo share/locale/cs/LC_MESSAGES/purpose_reviewboard.mo share/locale/cs/LC_MESSAGES/purpose_saveas.mo share/locale/cs/LC_MESSAGES/purpose_youtube.mo share/locale/da/LC_MESSAGES/libpurpose_quick.mo share/locale/da/LC_MESSAGES/libpurpose_widgets.mo share/locale/da/LC_MESSAGES/purpose-fileitemaction.mo share/locale/da/LC_MESSAGES/purpose_bluetooth.mo share/locale/da/LC_MESSAGES/purpose_imgur.mo share/locale/da/LC_MESSAGES/purpose_kdeconnect.mo share/locale/da/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/da/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/da/LC_MESSAGES/purpose_nextcloud.mo share/locale/da/LC_MESSAGES/purpose_pastebin.mo share/locale/da/LC_MESSAGES/purpose_phabricator.mo share/locale/da/LC_MESSAGES/purpose_reviewboard.mo share/locale/da/LC_MESSAGES/purpose_saveas.mo share/locale/da/LC_MESSAGES/purpose_youtube.mo share/locale/de/LC_MESSAGES/libpurpose_quick.mo share/locale/de/LC_MESSAGES/libpurpose_widgets.mo share/locale/de/LC_MESSAGES/purpose-fileitemaction.mo share/locale/de/LC_MESSAGES/purpose_barcode.mo share/locale/de/LC_MESSAGES/purpose_bluetooth.mo share/locale/de/LC_MESSAGES/purpose_imgur.mo share/locale/de/LC_MESSAGES/purpose_kdeconnect.mo share/locale/de/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/de/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/de/LC_MESSAGES/purpose_nextcloud.mo share/locale/de/LC_MESSAGES/purpose_pastebin.mo share/locale/de/LC_MESSAGES/purpose_phabricator.mo share/locale/de/LC_MESSAGES/purpose_reviewboard.mo share/locale/de/LC_MESSAGES/purpose_saveas.mo share/locale/de/LC_MESSAGES/purpose_youtube.mo share/locale/el/LC_MESSAGES/libpurpose_quick.mo share/locale/el/LC_MESSAGES/libpurpose_widgets.mo share/locale/el/LC_MESSAGES/purpose-fileitemaction.mo share/locale/el/LC_MESSAGES/purpose_barcode.mo share/locale/el/LC_MESSAGES/purpose_bluetooth.mo share/locale/el/LC_MESSAGES/purpose_imgur.mo share/locale/el/LC_MESSAGES/purpose_kdeconnect.mo share/locale/el/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/el/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/el/LC_MESSAGES/purpose_nextcloud.mo share/locale/el/LC_MESSAGES/purpose_pastebin.mo share/locale/el/LC_MESSAGES/purpose_phabricator.mo share/locale/el/LC_MESSAGES/purpose_reviewboard.mo share/locale/el/LC_MESSAGES/purpose_saveas.mo share/locale/el/LC_MESSAGES/purpose_youtube.mo share/locale/en_GB/LC_MESSAGES/libpurpose_quick.mo share/locale/en_GB/LC_MESSAGES/libpurpose_widgets.mo share/locale/en_GB/LC_MESSAGES/purpose-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/purpose_barcode.mo share/locale/en_GB/LC_MESSAGES/purpose_bluetooth.mo share/locale/en_GB/LC_MESSAGES/purpose_imgur.mo share/locale/en_GB/LC_MESSAGES/purpose_kdeconnect.mo share/locale/en_GB/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/en_GB/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/en_GB/LC_MESSAGES/purpose_nextcloud.mo share/locale/en_GB/LC_MESSAGES/purpose_pastebin.mo share/locale/en_GB/LC_MESSAGES/purpose_phabricator.mo share/locale/en_GB/LC_MESSAGES/purpose_reviewboard.mo share/locale/en_GB/LC_MESSAGES/purpose_saveas.mo share/locale/en_GB/LC_MESSAGES/purpose_youtube.mo share/locale/es/LC_MESSAGES/libpurpose_quick.mo share/locale/es/LC_MESSAGES/libpurpose_widgets.mo share/locale/es/LC_MESSAGES/purpose-fileitemaction.mo share/locale/es/LC_MESSAGES/purpose_barcode.mo share/locale/es/LC_MESSAGES/purpose_bluetooth.mo share/locale/es/LC_MESSAGES/purpose_imgur.mo share/locale/es/LC_MESSAGES/purpose_kdeconnect.mo share/locale/es/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/es/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/es/LC_MESSAGES/purpose_nextcloud.mo share/locale/es/LC_MESSAGES/purpose_pastebin.mo share/locale/es/LC_MESSAGES/purpose_phabricator.mo share/locale/es/LC_MESSAGES/purpose_reviewboard.mo share/locale/es/LC_MESSAGES/purpose_saveas.mo share/locale/es/LC_MESSAGES/purpose_youtube.mo share/locale/et/LC_MESSAGES/libpurpose_quick.mo share/locale/et/LC_MESSAGES/libpurpose_widgets.mo share/locale/et/LC_MESSAGES/purpose-fileitemaction.mo share/locale/et/LC_MESSAGES/purpose_bluetooth.mo share/locale/et/LC_MESSAGES/purpose_imgur.mo share/locale/et/LC_MESSAGES/purpose_kdeconnect.mo share/locale/et/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/et/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/et/LC_MESSAGES/purpose_nextcloud.mo share/locale/et/LC_MESSAGES/purpose_pastebin.mo share/locale/et/LC_MESSAGES/purpose_phabricator.mo share/locale/et/LC_MESSAGES/purpose_reviewboard.mo share/locale/et/LC_MESSAGES/purpose_saveas.mo share/locale/et/LC_MESSAGES/purpose_youtube.mo share/locale/eu/LC_MESSAGES/libpurpose_quick.mo share/locale/eu/LC_MESSAGES/libpurpose_widgets.mo share/locale/eu/LC_MESSAGES/purpose-fileitemaction.mo share/locale/eu/LC_MESSAGES/purpose_barcode.mo share/locale/eu/LC_MESSAGES/purpose_bluetooth.mo share/locale/eu/LC_MESSAGES/purpose_imgur.mo share/locale/eu/LC_MESSAGES/purpose_kdeconnect.mo share/locale/eu/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/eu/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/eu/LC_MESSAGES/purpose_nextcloud.mo share/locale/eu/LC_MESSAGES/purpose_pastebin.mo share/locale/eu/LC_MESSAGES/purpose_phabricator.mo share/locale/eu/LC_MESSAGES/purpose_reviewboard.mo share/locale/eu/LC_MESSAGES/purpose_saveas.mo share/locale/eu/LC_MESSAGES/purpose_youtube.mo share/locale/fi/LC_MESSAGES/libpurpose_quick.mo share/locale/fi/LC_MESSAGES/libpurpose_widgets.mo share/locale/fi/LC_MESSAGES/purpose-fileitemaction.mo share/locale/fi/LC_MESSAGES/purpose_barcode.mo share/locale/fi/LC_MESSAGES/purpose_bluetooth.mo share/locale/fi/LC_MESSAGES/purpose_imgur.mo share/locale/fi/LC_MESSAGES/purpose_kdeconnect.mo share/locale/fi/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/fi/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/fi/LC_MESSAGES/purpose_nextcloud.mo share/locale/fi/LC_MESSAGES/purpose_pastebin.mo share/locale/fi/LC_MESSAGES/purpose_phabricator.mo share/locale/fi/LC_MESSAGES/purpose_reviewboard.mo share/locale/fi/LC_MESSAGES/purpose_saveas.mo share/locale/fi/LC_MESSAGES/purpose_youtube.mo share/locale/fr/LC_MESSAGES/libpurpose_quick.mo share/locale/fr/LC_MESSAGES/libpurpose_widgets.mo share/locale/fr/LC_MESSAGES/purpose-fileitemaction.mo share/locale/fr/LC_MESSAGES/purpose_barcode.mo share/locale/fr/LC_MESSAGES/purpose_bluetooth.mo share/locale/fr/LC_MESSAGES/purpose_imgur.mo share/locale/fr/LC_MESSAGES/purpose_kdeconnect.mo share/locale/fr/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/fr/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/fr/LC_MESSAGES/purpose_nextcloud.mo share/locale/fr/LC_MESSAGES/purpose_pastebin.mo share/locale/fr/LC_MESSAGES/purpose_phabricator.mo share/locale/fr/LC_MESSAGES/purpose_reviewboard.mo share/locale/fr/LC_MESSAGES/purpose_saveas.mo share/locale/fr/LC_MESSAGES/purpose_youtube.mo share/locale/gl/LC_MESSAGES/libpurpose_quick.mo share/locale/gl/LC_MESSAGES/libpurpose_widgets.mo share/locale/gl/LC_MESSAGES/purpose-fileitemaction.mo share/locale/gl/LC_MESSAGES/purpose_bluetooth.mo share/locale/gl/LC_MESSAGES/purpose_imgur.mo share/locale/gl/LC_MESSAGES/purpose_kdeconnect.mo share/locale/gl/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/gl/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/gl/LC_MESSAGES/purpose_nextcloud.mo share/locale/gl/LC_MESSAGES/purpose_pastebin.mo share/locale/gl/LC_MESSAGES/purpose_phabricator.mo share/locale/gl/LC_MESSAGES/purpose_reviewboard.mo share/locale/gl/LC_MESSAGES/purpose_saveas.mo share/locale/gl/LC_MESSAGES/purpose_youtube.mo share/locale/hu/LC_MESSAGES/libpurpose_quick.mo share/locale/hu/LC_MESSAGES/libpurpose_widgets.mo share/locale/hu/LC_MESSAGES/purpose-fileitemaction.mo share/locale/hu/LC_MESSAGES/purpose_barcode.mo share/locale/hu/LC_MESSAGES/purpose_bluetooth.mo share/locale/hu/LC_MESSAGES/purpose_imgur.mo share/locale/hu/LC_MESSAGES/purpose_kdeconnect.mo share/locale/hu/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/hu/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/hu/LC_MESSAGES/purpose_nextcloud.mo share/locale/hu/LC_MESSAGES/purpose_pastebin.mo share/locale/hu/LC_MESSAGES/purpose_phabricator.mo share/locale/hu/LC_MESSAGES/purpose_reviewboard.mo share/locale/hu/LC_MESSAGES/purpose_saveas.mo share/locale/hu/LC_MESSAGES/purpose_youtube.mo share/locale/ia/LC_MESSAGES/libpurpose_quick.mo share/locale/ia/LC_MESSAGES/libpurpose_widgets.mo share/locale/ia/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ia/LC_MESSAGES/purpose_barcode.mo share/locale/ia/LC_MESSAGES/purpose_bluetooth.mo share/locale/ia/LC_MESSAGES/purpose_imgur.mo share/locale/ia/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ia/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ia/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ia/LC_MESSAGES/purpose_nextcloud.mo share/locale/ia/LC_MESSAGES/purpose_pastebin.mo share/locale/ia/LC_MESSAGES/purpose_phabricator.mo share/locale/ia/LC_MESSAGES/purpose_reviewboard.mo share/locale/ia/LC_MESSAGES/purpose_saveas.mo share/locale/ia/LC_MESSAGES/purpose_youtube.mo share/locale/id/LC_MESSAGES/libpurpose_quick.mo share/locale/id/LC_MESSAGES/libpurpose_widgets.mo share/locale/id/LC_MESSAGES/purpose-fileitemaction.mo share/locale/id/LC_MESSAGES/purpose_bluetooth.mo share/locale/id/LC_MESSAGES/purpose_imgur.mo share/locale/id/LC_MESSAGES/purpose_kdeconnect.mo share/locale/id/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/id/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/id/LC_MESSAGES/purpose_nextcloud.mo share/locale/id/LC_MESSAGES/purpose_pastebin.mo share/locale/id/LC_MESSAGES/purpose_phabricator.mo share/locale/id/LC_MESSAGES/purpose_reviewboard.mo share/locale/id/LC_MESSAGES/purpose_saveas.mo share/locale/id/LC_MESSAGES/purpose_youtube.mo share/locale/it/LC_MESSAGES/libpurpose_quick.mo share/locale/it/LC_MESSAGES/libpurpose_widgets.mo share/locale/it/LC_MESSAGES/purpose-fileitemaction.mo share/locale/it/LC_MESSAGES/purpose_barcode.mo share/locale/it/LC_MESSAGES/purpose_bluetooth.mo share/locale/it/LC_MESSAGES/purpose_imgur.mo share/locale/it/LC_MESSAGES/purpose_kdeconnect.mo share/locale/it/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/it/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/it/LC_MESSAGES/purpose_nextcloud.mo share/locale/it/LC_MESSAGES/purpose_pastebin.mo share/locale/it/LC_MESSAGES/purpose_phabricator.mo share/locale/it/LC_MESSAGES/purpose_reviewboard.mo share/locale/it/LC_MESSAGES/purpose_saveas.mo share/locale/it/LC_MESSAGES/purpose_youtube.mo share/locale/ja/LC_MESSAGES/libpurpose_quick.mo share/locale/ja/LC_MESSAGES/libpurpose_widgets.mo share/locale/ja/LC_MESSAGES/purpose-fileitemaction.mo +share/locale/ja/LC_MESSAGES/purpose_barcode.mo share/locale/ja/LC_MESSAGES/purpose_bluetooth.mo share/locale/ja/LC_MESSAGES/purpose_imgur.mo share/locale/ja/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ja/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ja/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ja/LC_MESSAGES/purpose_nextcloud.mo share/locale/ja/LC_MESSAGES/purpose_pastebin.mo share/locale/ja/LC_MESSAGES/purpose_phabricator.mo share/locale/ja/LC_MESSAGES/purpose_reviewboard.mo share/locale/ja/LC_MESSAGES/purpose_saveas.mo share/locale/ja/LC_MESSAGES/purpose_youtube.mo share/locale/ka/LC_MESSAGES/libpurpose_quick.mo share/locale/ka/LC_MESSAGES/libpurpose_widgets.mo share/locale/ka/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ka/LC_MESSAGES/purpose_barcode.mo share/locale/ka/LC_MESSAGES/purpose_bluetooth.mo share/locale/ka/LC_MESSAGES/purpose_imgur.mo share/locale/ka/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ka/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ka/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ka/LC_MESSAGES/purpose_nextcloud.mo share/locale/ka/LC_MESSAGES/purpose_pastebin.mo share/locale/ka/LC_MESSAGES/purpose_phabricator.mo share/locale/ka/LC_MESSAGES/purpose_reviewboard.mo share/locale/ka/LC_MESSAGES/purpose_saveas.mo share/locale/ka/LC_MESSAGES/purpose_youtube.mo share/locale/ko/LC_MESSAGES/libpurpose_quick.mo share/locale/ko/LC_MESSAGES/libpurpose_widgets.mo share/locale/ko/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ko/LC_MESSAGES/purpose_barcode.mo share/locale/ko/LC_MESSAGES/purpose_bluetooth.mo share/locale/ko/LC_MESSAGES/purpose_imgur.mo share/locale/ko/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ko/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ko/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ko/LC_MESSAGES/purpose_nextcloud.mo share/locale/ko/LC_MESSAGES/purpose_pastebin.mo share/locale/ko/LC_MESSAGES/purpose_phabricator.mo share/locale/ko/LC_MESSAGES/purpose_reviewboard.mo share/locale/ko/LC_MESSAGES/purpose_saveas.mo share/locale/ko/LC_MESSAGES/purpose_youtube.mo share/locale/lt/LC_MESSAGES/libpurpose_quick.mo share/locale/lt/LC_MESSAGES/libpurpose_widgets.mo share/locale/lt/LC_MESSAGES/purpose-fileitemaction.mo share/locale/lt/LC_MESSAGES/purpose_bluetooth.mo share/locale/lt/LC_MESSAGES/purpose_imgur.mo share/locale/lt/LC_MESSAGES/purpose_kdeconnect.mo share/locale/lt/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/lt/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/lt/LC_MESSAGES/purpose_nextcloud.mo share/locale/lt/LC_MESSAGES/purpose_pastebin.mo share/locale/lt/LC_MESSAGES/purpose_phabricator.mo share/locale/lt/LC_MESSAGES/purpose_reviewboard.mo share/locale/lt/LC_MESSAGES/purpose_saveas.mo share/locale/lt/LC_MESSAGES/purpose_youtube.mo share/locale/ml/LC_MESSAGES/libpurpose_quick.mo share/locale/ml/LC_MESSAGES/libpurpose_widgets.mo share/locale/ml/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ml/LC_MESSAGES/purpose_bluetooth.mo share/locale/ml/LC_MESSAGES/purpose_imgur.mo share/locale/ml/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ml/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ml/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ml/LC_MESSAGES/purpose_nextcloud.mo share/locale/ml/LC_MESSAGES/purpose_pastebin.mo share/locale/ml/LC_MESSAGES/purpose_phabricator.mo share/locale/ml/LC_MESSAGES/purpose_reviewboard.mo share/locale/ml/LC_MESSAGES/purpose_saveas.mo share/locale/ml/LC_MESSAGES/purpose_youtube.mo share/locale/nb/LC_MESSAGES/purpose_reviewboard.mo share/locale/nl/LC_MESSAGES/libpurpose_quick.mo share/locale/nl/LC_MESSAGES/libpurpose_widgets.mo share/locale/nl/LC_MESSAGES/purpose-fileitemaction.mo share/locale/nl/LC_MESSAGES/purpose_barcode.mo share/locale/nl/LC_MESSAGES/purpose_bluetooth.mo share/locale/nl/LC_MESSAGES/purpose_imgur.mo share/locale/nl/LC_MESSAGES/purpose_kdeconnect.mo share/locale/nl/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/nl/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/nl/LC_MESSAGES/purpose_nextcloud.mo share/locale/nl/LC_MESSAGES/purpose_pastebin.mo share/locale/nl/LC_MESSAGES/purpose_phabricator.mo share/locale/nl/LC_MESSAGES/purpose_reviewboard.mo share/locale/nl/LC_MESSAGES/purpose_saveas.mo share/locale/nl/LC_MESSAGES/purpose_youtube.mo share/locale/nn/LC_MESSAGES/libpurpose_quick.mo share/locale/nn/LC_MESSAGES/libpurpose_widgets.mo share/locale/nn/LC_MESSAGES/purpose-fileitemaction.mo share/locale/nn/LC_MESSAGES/purpose_bluetooth.mo share/locale/nn/LC_MESSAGES/purpose_imgur.mo share/locale/nn/LC_MESSAGES/purpose_kdeconnect.mo share/locale/nn/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/nn/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/nn/LC_MESSAGES/purpose_nextcloud.mo share/locale/nn/LC_MESSAGES/purpose_pastebin.mo share/locale/nn/LC_MESSAGES/purpose_phabricator.mo share/locale/nn/LC_MESSAGES/purpose_reviewboard.mo share/locale/nn/LC_MESSAGES/purpose_saveas.mo share/locale/nn/LC_MESSAGES/purpose_youtube.mo share/locale/pl/LC_MESSAGES/libpurpose_quick.mo share/locale/pl/LC_MESSAGES/libpurpose_widgets.mo share/locale/pl/LC_MESSAGES/purpose-fileitemaction.mo share/locale/pl/LC_MESSAGES/purpose_barcode.mo share/locale/pl/LC_MESSAGES/purpose_bluetooth.mo share/locale/pl/LC_MESSAGES/purpose_imgur.mo share/locale/pl/LC_MESSAGES/purpose_kdeconnect.mo share/locale/pl/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/pl/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/pl/LC_MESSAGES/purpose_nextcloud.mo share/locale/pl/LC_MESSAGES/purpose_pastebin.mo share/locale/pl/LC_MESSAGES/purpose_phabricator.mo share/locale/pl/LC_MESSAGES/purpose_reviewboard.mo share/locale/pl/LC_MESSAGES/purpose_saveas.mo share/locale/pl/LC_MESSAGES/purpose_youtube.mo share/locale/pt/LC_MESSAGES/libpurpose_quick.mo share/locale/pt/LC_MESSAGES/libpurpose_widgets.mo share/locale/pt/LC_MESSAGES/purpose-fileitemaction.mo share/locale/pt/LC_MESSAGES/purpose_barcode.mo share/locale/pt/LC_MESSAGES/purpose_bluetooth.mo share/locale/pt/LC_MESSAGES/purpose_imgur.mo share/locale/pt/LC_MESSAGES/purpose_kdeconnect.mo share/locale/pt/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/pt/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/pt/LC_MESSAGES/purpose_nextcloud.mo share/locale/pt/LC_MESSAGES/purpose_pastebin.mo share/locale/pt/LC_MESSAGES/purpose_phabricator.mo share/locale/pt/LC_MESSAGES/purpose_reviewboard.mo share/locale/pt/LC_MESSAGES/purpose_saveas.mo share/locale/pt/LC_MESSAGES/purpose_youtube.mo share/locale/pt_BR/LC_MESSAGES/libpurpose_quick.mo share/locale/pt_BR/LC_MESSAGES/libpurpose_widgets.mo share/locale/pt_BR/LC_MESSAGES/purpose-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/purpose_barcode.mo share/locale/pt_BR/LC_MESSAGES/purpose_bluetooth.mo share/locale/pt_BR/LC_MESSAGES/purpose_imgur.mo share/locale/pt_BR/LC_MESSAGES/purpose_kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/pt_BR/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/pt_BR/LC_MESSAGES/purpose_nextcloud.mo share/locale/pt_BR/LC_MESSAGES/purpose_pastebin.mo share/locale/pt_BR/LC_MESSAGES/purpose_phabricator.mo share/locale/pt_BR/LC_MESSAGES/purpose_reviewboard.mo share/locale/pt_BR/LC_MESSAGES/purpose_saveas.mo share/locale/pt_BR/LC_MESSAGES/purpose_youtube.mo share/locale/ro/LC_MESSAGES/libpurpose_quick.mo share/locale/ro/LC_MESSAGES/libpurpose_widgets.mo share/locale/ro/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ro/LC_MESSAGES/purpose_barcode.mo share/locale/ro/LC_MESSAGES/purpose_bluetooth.mo share/locale/ro/LC_MESSAGES/purpose_imgur.mo share/locale/ro/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ro/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ro/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ro/LC_MESSAGES/purpose_nextcloud.mo share/locale/ro/LC_MESSAGES/purpose_pastebin.mo share/locale/ro/LC_MESSAGES/purpose_saveas.mo share/locale/ro/LC_MESSAGES/purpose_youtube.mo share/locale/ru/LC_MESSAGES/libpurpose_quick.mo share/locale/ru/LC_MESSAGES/libpurpose_widgets.mo share/locale/ru/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ru/LC_MESSAGES/purpose_bluetooth.mo share/locale/ru/LC_MESSAGES/purpose_imgur.mo share/locale/ru/LC_MESSAGES/purpose_kdeconnect.mo share/locale/ru/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ru/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/ru/LC_MESSAGES/purpose_nextcloud.mo share/locale/ru/LC_MESSAGES/purpose_pastebin.mo share/locale/ru/LC_MESSAGES/purpose_phabricator.mo share/locale/ru/LC_MESSAGES/purpose_reviewboard.mo share/locale/ru/LC_MESSAGES/purpose_saveas.mo share/locale/ru/LC_MESSAGES/purpose_youtube.mo share/locale/sk/LC_MESSAGES/libpurpose_quick.mo share/locale/sk/LC_MESSAGES/libpurpose_widgets.mo share/locale/sk/LC_MESSAGES/purpose-fileitemaction.mo share/locale/sk/LC_MESSAGES/purpose_barcode.mo share/locale/sk/LC_MESSAGES/purpose_bluetooth.mo share/locale/sk/LC_MESSAGES/purpose_imgur.mo share/locale/sk/LC_MESSAGES/purpose_kdeconnect.mo share/locale/sk/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/sk/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/sk/LC_MESSAGES/purpose_nextcloud.mo share/locale/sk/LC_MESSAGES/purpose_pastebin.mo share/locale/sk/LC_MESSAGES/purpose_phabricator.mo share/locale/sk/LC_MESSAGES/purpose_reviewboard.mo share/locale/sk/LC_MESSAGES/purpose_saveas.mo share/locale/sk/LC_MESSAGES/purpose_youtube.mo share/locale/sl/LC_MESSAGES/libpurpose_quick.mo share/locale/sl/LC_MESSAGES/libpurpose_widgets.mo share/locale/sl/LC_MESSAGES/purpose-fileitemaction.mo share/locale/sl/LC_MESSAGES/purpose_barcode.mo share/locale/sl/LC_MESSAGES/purpose_bluetooth.mo share/locale/sl/LC_MESSAGES/purpose_imgur.mo share/locale/sl/LC_MESSAGES/purpose_kdeconnect.mo share/locale/sl/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/sl/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/sl/LC_MESSAGES/purpose_nextcloud.mo share/locale/sl/LC_MESSAGES/purpose_pastebin.mo share/locale/sl/LC_MESSAGES/purpose_phabricator.mo share/locale/sl/LC_MESSAGES/purpose_reviewboard.mo share/locale/sl/LC_MESSAGES/purpose_saveas.mo share/locale/sl/LC_MESSAGES/purpose_youtube.mo share/locale/sq/LC_MESSAGES/purpose_youtube.mo share/locale/sv/LC_MESSAGES/libpurpose_quick.mo share/locale/sv/LC_MESSAGES/libpurpose_widgets.mo share/locale/sv/LC_MESSAGES/purpose-fileitemaction.mo share/locale/sv/LC_MESSAGES/purpose_barcode.mo share/locale/sv/LC_MESSAGES/purpose_bluetooth.mo share/locale/sv/LC_MESSAGES/purpose_imgur.mo share/locale/sv/LC_MESSAGES/purpose_kdeconnect.mo share/locale/sv/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/sv/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/sv/LC_MESSAGES/purpose_nextcloud.mo share/locale/sv/LC_MESSAGES/purpose_pastebin.mo share/locale/sv/LC_MESSAGES/purpose_phabricator.mo share/locale/sv/LC_MESSAGES/purpose_reviewboard.mo share/locale/sv/LC_MESSAGES/purpose_saveas.mo share/locale/sv/LC_MESSAGES/purpose_youtube.mo share/locale/ta/LC_MESSAGES/libpurpose_widgets.mo share/locale/ta/LC_MESSAGES/purpose-fileitemaction.mo share/locale/ta/LC_MESSAGES/purpose_bluetooth.mo share/locale/ta/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/ta/LC_MESSAGES/purpose_pastebin.mo share/locale/ta/LC_MESSAGES/purpose_saveas.mo share/locale/tg/LC_MESSAGES/libpurpose_quick.mo share/locale/tg/LC_MESSAGES/libpurpose_widgets.mo share/locale/tg/LC_MESSAGES/purpose-fileitemaction.mo share/locale/tg/LC_MESSAGES/purpose_bluetooth.mo share/locale/tg/LC_MESSAGES/purpose_imgur.mo share/locale/tg/LC_MESSAGES/purpose_kdeconnect.mo share/locale/tg/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/tg/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/tg/LC_MESSAGES/purpose_nextcloud.mo share/locale/tg/LC_MESSAGES/purpose_pastebin.mo share/locale/tg/LC_MESSAGES/purpose_phabricator.mo share/locale/tg/LC_MESSAGES/purpose_reviewboard.mo share/locale/tg/LC_MESSAGES/purpose_saveas.mo share/locale/tg/LC_MESSAGES/purpose_youtube.mo share/locale/tr/LC_MESSAGES/libpurpose_quick.mo share/locale/tr/LC_MESSAGES/libpurpose_widgets.mo share/locale/tr/LC_MESSAGES/purpose-fileitemaction.mo share/locale/tr/LC_MESSAGES/purpose_barcode.mo share/locale/tr/LC_MESSAGES/purpose_bluetooth.mo share/locale/tr/LC_MESSAGES/purpose_imgur.mo share/locale/tr/LC_MESSAGES/purpose_kdeconnect.mo share/locale/tr/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/tr/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/tr/LC_MESSAGES/purpose_nextcloud.mo share/locale/tr/LC_MESSAGES/purpose_pastebin.mo share/locale/tr/LC_MESSAGES/purpose_phabricator.mo share/locale/tr/LC_MESSAGES/purpose_reviewboard.mo share/locale/tr/LC_MESSAGES/purpose_saveas.mo share/locale/tr/LC_MESSAGES/purpose_youtube.mo share/locale/uk/LC_MESSAGES/libpurpose_quick.mo share/locale/uk/LC_MESSAGES/libpurpose_widgets.mo share/locale/uk/LC_MESSAGES/purpose-fileitemaction.mo share/locale/uk/LC_MESSAGES/purpose_barcode.mo share/locale/uk/LC_MESSAGES/purpose_bluetooth.mo share/locale/uk/LC_MESSAGES/purpose_imgur.mo share/locale/uk/LC_MESSAGES/purpose_kdeconnect.mo share/locale/uk/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/uk/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/uk/LC_MESSAGES/purpose_nextcloud.mo share/locale/uk/LC_MESSAGES/purpose_pastebin.mo share/locale/uk/LC_MESSAGES/purpose_phabricator.mo share/locale/uk/LC_MESSAGES/purpose_reviewboard.mo share/locale/uk/LC_MESSAGES/purpose_saveas.mo share/locale/uk/LC_MESSAGES/purpose_youtube.mo share/locale/zh_CN/LC_MESSAGES/libpurpose_quick.mo share/locale/zh_CN/LC_MESSAGES/libpurpose_widgets.mo share/locale/zh_CN/LC_MESSAGES/purpose-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/purpose_barcode.mo share/locale/zh_CN/LC_MESSAGES/purpose_bluetooth.mo share/locale/zh_CN/LC_MESSAGES/purpose_imgur.mo share/locale/zh_CN/LC_MESSAGES/purpose_kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/zh_CN/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/zh_CN/LC_MESSAGES/purpose_nextcloud.mo share/locale/zh_CN/LC_MESSAGES/purpose_pastebin.mo share/locale/zh_CN/LC_MESSAGES/purpose_phabricator.mo share/locale/zh_CN/LC_MESSAGES/purpose_reviewboard.mo share/locale/zh_CN/LC_MESSAGES/purpose_saveas.mo share/locale/zh_CN/LC_MESSAGES/purpose_youtube.mo share/locale/zh_TW/LC_MESSAGES/libpurpose_quick.mo share/locale/zh_TW/LC_MESSAGES/libpurpose_widgets.mo share/locale/zh_TW/LC_MESSAGES/purpose-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/purpose_barcode.mo share/locale/zh_TW/LC_MESSAGES/purpose_bluetooth.mo share/locale/zh_TW/LC_MESSAGES/purpose_imgur.mo share/locale/zh_TW/LC_MESSAGES/purpose_kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/purpose_kdeconnectsms.mo share/locale/zh_TW/LC_MESSAGES/purpose_ktp-sendfile.mo share/locale/zh_TW/LC_MESSAGES/purpose_nextcloud.mo share/locale/zh_TW/LC_MESSAGES/purpose_pastebin.mo share/locale/zh_TW/LC_MESSAGES/purpose_phabricator.mo share/locale/zh_TW/LC_MESSAGES/purpose_reviewboard.mo share/locale/zh_TW/LC_MESSAGES/purpose_saveas.mo share/locale/zh_TW/LC_MESSAGES/purpose_youtube.mo %%DATADIR%%/barcodeplugin_config.qml %%DATADIR%%/kdeconnectplugin_config.qml %%DATADIR%%/nextcloudplugin_config.qml %%DATADIR%%/phabricatorplugin_config.qml %%DATADIR%%/reviewboardplugin_config.qml %%DATADIR%%/saveasplugin_config.qml %%DATADIR%%/youtubeplugin_config.qml share/qlogging-categories5/purpose.categories share/qlogging-categories5/purpose.renamecategories diff --git a/multimedia/kf5-kmediaplayer/distinfo b/multimedia/kf5-kmediaplayer/distinfo index 3b087e158476..9fb52dd9ffd9 100644 --- a/multimedia/kf5-kmediaplayer/distinfo +++ b/multimedia/kf5-kmediaplayer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689131 -SHA256 (KDE/frameworks/5.99.0/kmediaplayer-5.99.0.tar.xz) = de0ebb80f3db9989b2693eb63214e7b10ccb18498254fd44a907caa95eb04cb8 -SIZE (KDE/frameworks/5.99.0/kmediaplayer-5.99.0.tar.xz) = 9940 +TIMESTAMP = 1667804661 +SHA256 (KDE/frameworks/5.100.0/kmediaplayer-5.100.0.tar.xz) = a2ac4bab7ee6409de2b40dd7cf1db38cac48f4dd5bb45e3c13a2a6d142834a00 +SIZE (KDE/frameworks/5.100.0/kmediaplayer-5.100.0.tar.xz) = 9944 diff --git a/multimedia/kmplayer/files/patch-CMakeLists.txt b/multimedia/kmplayer/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..7d5bc5f4e19c --- /dev/null +++ b/multimedia/kmplayer/files/patch-CMakeLists.txt @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2022-11-22 05:48:52 UTC ++++ CMakeLists.txt +@@ -1,8 +1,6 @@ project(kmplayer) + cmake_minimum_required(VERSION 2.8.12) + project(kmplayer) + +-cmake_policy(VERSION 2.6) +- + SET(KMPLAYER_MAJOR_VERSION "0") + SET(KMPLAYER_MINOR_VERSION "12") + SET(KMPLAYER_PATCH_VERSION "0b") diff --git a/net-im/kopete/pkg-plist b/net-im/kopete/pkg-plist index a4a6cc286941..d94fb0ff8ec6 100644 --- a/net-im/kopete/pkg-plist +++ b/net-im/kopete/pkg-plist @@ -1,731 +1,731 @@ 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/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/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-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/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_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_xstatus30.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus31.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/Light-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light.css %%DATADIR%%/styles/Hacker/Contents/Resources/images/background2.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/background.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/kopete.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending-white.gif %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Hacker/Contents/Resources/main.css %%DATADIR%%/styles/Hacker/README %%DATADIR%%/styles/Hacker/gpl.txt %%DATADIR%%/styles/Konqi/Contents/Resources/Footer.html %%DATADIR%%/styles/Konqi/Contents/Resources/Header.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Status.html %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_trans.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre1.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre2.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre3.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre4.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre5.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre6.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-blue.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-green.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-moon.jpg %%DATADIR%%/styles/Konqi/Contents/Resources/main.css %%DATADIR%%/styles/Konqi/Contents/Resources/puce.png %%DATADIR%%/styles/Kopete/Contents/Resources/Footer.html %%DATADIR%%/styles/Kopete/Contents/Resources/Header.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Status.html %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Big_pictures.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/images/action.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/important.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Kopete/Contents/Resources/images/system.png %%DATADIR%%/styles/Kopete/Contents/Resources/main.css %%DATADIR%%/styles/Pidgin/Contents/Info.plist %%DATADIR%%/styles/Pidgin/Contents/Resources/Footer.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Header.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Status.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Contact-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Name-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/No-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Status-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Pidgin/Contents/Resources/main.css %%DATADIR%%/styles/Retropete/Contents/Resources/Footer.html %%DATADIR%%/styles/Retropete/Contents/Resources/Header.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Retropete/Contents/Resources/Status.html %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Retropete/Contents/Resources/main.css %%DATADIR%%/webpresence/webpresence_html.xsl %%DATADIR%%/webpresence/webpresence_html_images.xsl %%DATADIR%%/webpresence/webpresence_xhtml.xsl %%DATADIR%%/webpresence/webpresence_xhtml_images.xsl %%DATADIR%%_history/historychatui.rc %%DATADIR%%_history/historyui.rc share/kservices5/aim.protocol share/kservices5/chatwindow.desktop share/kservices5/emailwindow.desktop share/kservices5/kconfiguredialog/kopete_addbookmarks_config.desktop share/kservices5/kconfiguredialog/kopete_autoreplace_config.desktop share/kservices5/kconfiguredialog/kopete_highlight_config.desktop share/kservices5/kconfiguredialog/kopete_history_config.desktop share/kservices5/kconfiguredialog/kopete_otr_config.desktop share/kservices5/kconfiguredialog/kopete_privacy_config.desktop share/kservices5/kconfiguredialog/kopete_texteffect_config.desktop share/kservices5/kconfiguredialog/kopete_urlpicpreview_config.desktop share/kservices5/kconfiguredialog/kopete_webpresence_config.desktop share/kservices5/kopete_accountconfig.desktop share/kservices5/kopete_addbookmarks.desktop share/kservices5/kopete_aim.desktop share/kservices5/kopete_appearanceconfig.desktop share/kservices5/kopete_autoreplace.desktop share/kservices5/kopete_avdeviceconfig.desktop share/kservices5/kopete_behaviorconfig.desktop share/kservices5/kopete_bonjour.desktop share/kservices5/kopete_chatwindowconfig.desktop share/kservices5/kopete_contactnotes.desktop share/kservices5/kopete_groupwise.desktop share/kservices5/kopete_highlight.desktop share/kservices5/kopete_history.desktop share/kservices5/kopete_icq.desktop share/kservices5/kopete_jabber.desktop share/kservices5/kopete_otr.desktop share/kservices5/kopete_pluginconfig.desktop share/kservices5/kopete_privacy.desktop share/kservices5/kopete_qq.desktop share/kservices5/kopete_statistics.desktop share/kservices5/kopete_statusconfig.desktop share/kservices5/kopete_testbed.desktop share/kservices5/kopete_texteffect.desktop share/kservices5/kopete_urlpicpreview.desktop share/kservices5/kopete_webpresence.desktop share/kservices5/kopete_wp.desktop share/kservices5/xmpp.protocol share/kservicetypes5/kopeteplugin.desktop share/kservicetypes5/kopeteprotocol.desktop share/kservicetypes5/kopeteui.desktop share/kxmlgui5/kopete/kopetechatwindow.rc share/kxmlgui5/kopete/kopeteemailwindow.rc share/kxmlgui5/kopete/kopeteui.rc share/kxmlgui5/kopete/privacychatui.rc share/kxmlgui5/kopete/privacyui.rc share/kxmlgui5/kopete_groupwise/gwchatui.rc share/kxmlgui5/kopete_otr/otrchatui.rc share/kxmlgui5/kopete_otr/otrui.rc share/locale/ar/LC_MESSAGES/kio_jabberdisco.mo share/locale/ar/LC_MESSAGES/kopete.mo share/locale/be/LC_MESSAGES/kio_jabberdisco.mo share/locale/be/LC_MESSAGES/kopete.mo share/locale/bg/LC_MESSAGES/kio_jabberdisco.mo share/locale/bg/LC_MESSAGES/kopete.mo share/locale/bs/LC_MESSAGES/kio_jabberdisco.mo share/locale/bs/LC_MESSAGES/kopete.mo share/locale/ca/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca/LC_MESSAGES/kopete.mo share/locale/ca@valencia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca@valencia/LC_MESSAGES/kopete.mo share/locale/cs/LC_MESSAGES/kio_jabberdisco.mo share/locale/cs/LC_MESSAGES/kopete.mo share/locale/da/LC_MESSAGES/kio_jabberdisco.mo share/locale/da/LC_MESSAGES/kopete.mo share/locale/de/LC_MESSAGES/kio_jabberdisco.mo share/locale/de/LC_MESSAGES/kopete.mo share/locale/el/LC_MESSAGES/kio_jabberdisco.mo share/locale/el/LC_MESSAGES/kopete.mo share/locale/en_GB/LC_MESSAGES/kio_jabberdisco.mo share/locale/en_GB/LC_MESSAGES/kopete.mo share/locale/eo/LC_MESSAGES/kio_jabberdisco.mo share/locale/eo/LC_MESSAGES/kopete.mo share/locale/es/LC_MESSAGES/kio_jabberdisco.mo share/locale/es/LC_MESSAGES/kopete.mo share/locale/et/LC_MESSAGES/kio_jabberdisco.mo share/locale/et/LC_MESSAGES/kopete.mo share/locale/eu/LC_MESSAGES/kio_jabberdisco.mo share/locale/eu/LC_MESSAGES/kopete.mo share/locale/fa/LC_MESSAGES/kio_jabberdisco.mo share/locale/fa/LC_MESSAGES/kopete.mo share/locale/fi/LC_MESSAGES/kio_jabberdisco.mo share/locale/fi/LC_MESSAGES/kopete.mo share/locale/fr/LC_MESSAGES/kio_jabberdisco.mo share/locale/fr/LC_MESSAGES/kopete.mo share/locale/ga/LC_MESSAGES/kio_jabberdisco.mo share/locale/ga/LC_MESSAGES/kopete.mo share/locale/gl/LC_MESSAGES/kio_jabberdisco.mo share/locale/gl/LC_MESSAGES/kopete.mo share/locale/he/LC_MESSAGES/kopete.mo share/locale/hi/LC_MESSAGES/kio_jabberdisco.mo share/locale/hi/LC_MESSAGES/kopete.mo share/locale/hr/LC_MESSAGES/kio_jabberdisco.mo share/locale/hr/LC_MESSAGES/kopete.mo share/locale/hu/LC_MESSAGES/kio_jabberdisco.mo share/locale/hu/LC_MESSAGES/kopete.mo share/locale/ia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ia/LC_MESSAGES/kopete.mo share/locale/is/LC_MESSAGES/kio_jabberdisco.mo share/locale/is/LC_MESSAGES/kopete.mo share/locale/it/LC_MESSAGES/kio_jabberdisco.mo share/locale/it/LC_MESSAGES/kopete.mo share/locale/ja/LC_MESSAGES/kio_jabberdisco.mo share/locale/ja/LC_MESSAGES/kopete.mo share/locale/kk/LC_MESSAGES/kio_jabberdisco.mo share/locale/kk/LC_MESSAGES/kopete.mo share/locale/km/LC_MESSAGES/kio_jabberdisco.mo share/locale/km/LC_MESSAGES/kopete.mo share/locale/ko/LC_MESSAGES/kio_jabberdisco.mo share/locale/ko/LC_MESSAGES/kopete.mo share/locale/lt/LC_MESSAGES/kio_jabberdisco.mo share/locale/lt/LC_MESSAGES/kopete.mo share/locale/lv/LC_MESSAGES/kio_jabberdisco.mo share/locale/lv/LC_MESSAGES/kopete.mo share/locale/ml/LC_MESSAGES/kio_jabberdisco.mo share/locale/mr/LC_MESSAGES/kio_jabberdisco.mo share/locale/mr/LC_MESSAGES/kopete.mo share/locale/nb/LC_MESSAGES/kio_jabberdisco.mo share/locale/nb/LC_MESSAGES/kopete.mo share/locale/nds/LC_MESSAGES/kio_jabberdisco.mo share/locale/nds/LC_MESSAGES/kopete.mo share/locale/nl/LC_MESSAGES/kio_jabberdisco.mo share/locale/nl/LC_MESSAGES/kopete.mo share/locale/nn/LC_MESSAGES/kio_jabberdisco.mo share/locale/nn/LC_MESSAGES/kopete.mo share/locale/pa/LC_MESSAGES/kio_jabberdisco.mo share/locale/pa/LC_MESSAGES/kopete.mo share/locale/pl/LC_MESSAGES/kio_jabberdisco.mo share/locale/pl/LC_MESSAGES/kopete.mo share/locale/pt/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt/LC_MESSAGES/kopete.mo share/locale/pt_BR/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt_BR/LC_MESSAGES/kopete.mo share/locale/ro/LC_MESSAGES/kio_jabberdisco.mo share/locale/ro/LC_MESSAGES/kopete.mo share/locale/ru/LC_MESSAGES/kio_jabberdisco.mo share/locale/ru/LC_MESSAGES/kopete.mo share/locale/se/LC_MESSAGES/kio_jabberdisco.mo share/locale/se/LC_MESSAGES/kopete.mo share/locale/sk/LC_MESSAGES/kio_jabberdisco.mo share/locale/sk/LC_MESSAGES/kopete.mo share/locale/sl/LC_MESSAGES/kio_jabberdisco.mo share/locale/sl/LC_MESSAGES/kopete.mo share/locale/sq/LC_MESSAGES/kio_jabberdisco.mo share/locale/sq/LC_MESSAGES/kopete.mo share/locale/sr/LC_MESSAGES/kio_jabberdisco.mo share/locale/sr/LC_MESSAGES/kopete.mo share/locale/sv/LC_MESSAGES/kio_jabberdisco.mo share/locale/sv/LC_MESSAGES/kopete.mo share/locale/ta/LC_MESSAGES/kopete.mo share/locale/tg/LC_MESSAGES/kopete.mo share/locale/tr/LC_MESSAGES/kio_jabberdisco.mo share/locale/tr/LC_MESSAGES/kopete.mo share/locale/ug/LC_MESSAGES/kio_jabberdisco.mo share/locale/ug/LC_MESSAGES/kopete.mo share/locale/uk/LC_MESSAGES/kio_jabberdisco.mo share/locale/uk/LC_MESSAGES/kopete.mo share/locale/vi/LC_MESSAGES/kio_jabberdisco.mo share/locale/vi/LC_MESSAGES/kopete.mo share/locale/wa/LC_MESSAGES/kopete.mo share/locale/zh_CN/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_CN/LC_MESSAGES/kopete.mo share/locale/zh_TW/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_TW/LC_MESSAGES/kopete.mo share/metainfo/org.kde.kopete.appdata.xml -share/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/kf5-kcalendarcore/distinfo b/net/kf5-kcalendarcore/distinfo index 0d9641229035..589554cbefc6 100644 --- a/net/kf5-kcalendarcore/distinfo +++ b/net/kf5-kcalendarcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689132 -SHA256 (KDE/frameworks/5.99.0/kcalendarcore-5.99.0.tar.xz) = 1951c46acbaa0475190bfd35f00398dbe9031e25ebe8d8f7508d60f0a77cec87 -SIZE (KDE/frameworks/5.99.0/kcalendarcore-5.99.0.tar.xz) = 267796 +TIMESTAMP = 1667804662 +SHA256 (KDE/frameworks/5.100.0/kcalendarcore-5.100.0.tar.xz) = 600c2409faf7e4cc9c7375676a5cfcfdf5b74e8b47a5b44afd2c4babf8c5bf57 +SIZE (KDE/frameworks/5.100.0/kcalendarcore-5.100.0.tar.xz) = 268088 diff --git a/net/kf5-kcontacts/distinfo b/net/kf5-kcontacts/distinfo index 1198adc71489..561c34506b65 100644 --- a/net/kf5-kcontacts/distinfo +++ b/net/kf5-kcontacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689133 -SHA256 (KDE/frameworks/5.99.0/kcontacts-5.99.0.tar.xz) = a5ab0691d844adedb698f4884acb9b3f3984a77755d9837d036d024a3b4262b8 -SIZE (KDE/frameworks/5.99.0/kcontacts-5.99.0.tar.xz) = 195412 +TIMESTAMP = 1667804663 +SHA256 (KDE/frameworks/5.100.0/kcontacts-5.100.0.tar.xz) = e5063a08367525923cd6c500c7c6674b3a4ee16ec9866207bfe36c0df8c6884b +SIZE (KDE/frameworks/5.100.0/kcontacts-5.100.0.tar.xz) = 212484 diff --git a/net/kf5-kcontacts/pkg-plist b/net/kf5-kcontacts/pkg-plist index 56cdb9c8c229..4a371919b100 100644 --- a/net/kf5-kcontacts/pkg-plist +++ b/net/kf5-kcontacts/pkg-plist @@ -1,139 +1,138 @@ include/KF5/KContacts/KContacts/Address include/KF5/KContacts/KContacts/AddressFormat include/KF5/KContacts/KContacts/Addressee include/KF5/KContacts/KContacts/AddresseeList include/KF5/KContacts/KContacts/CalendarUrl include/KF5/KContacts/KContacts/ClientPidMap include/KF5/KContacts/KContacts/ContactGroup include/KF5/KContacts/KContacts/ContactGroupTool include/KF5/KContacts/KContacts/Email include/KF5/KContacts/KContacts/Field include/KF5/KContacts/KContacts/FieldGroup include/KF5/KContacts/KContacts/Gender include/KF5/KContacts/KContacts/Geo include/KF5/KContacts/KContacts/Impp include/KF5/KContacts/KContacts/Key include/KF5/KContacts/KContacts/LDIFConverter include/KF5/KContacts/KContacts/Lang include/KF5/KContacts/KContacts/Namespace include/KF5/KContacts/KContacts/NickName include/KF5/KContacts/KContacts/Note include/KF5/KContacts/KContacts/Org include/KF5/KContacts/KContacts/PhoneNumber include/KF5/KContacts/KContacts/Picture include/KF5/KContacts/KContacts/Related include/KF5/KContacts/KContacts/ResourceLocatorUrl include/KF5/KContacts/KContacts/Role include/KF5/KContacts/KContacts/Secrecy include/KF5/KContacts/KContacts/Sound include/KF5/KContacts/KContacts/TimeZone include/KF5/KContacts/KContacts/Title include/KF5/KContacts/KContacts/VCardConverter include/KF5/KContacts/KContacts/VCardDrag include/KF5/KContacts/kcontacts/address.h include/KF5/KContacts/kcontacts/addressee.h include/KF5/KContacts/kcontacts/addresseelist.h include/KF5/KContacts/kcontacts/addressformat.h include/KF5/KContacts/kcontacts/calendarurl.h include/KF5/KContacts/kcontacts/clientpidmap.h include/KF5/KContacts/kcontacts/contactgroup.h include/KF5/KContacts/kcontacts/contactgrouptool.h include/KF5/KContacts/kcontacts/email.h include/KF5/KContacts/kcontacts/field.h include/KF5/KContacts/kcontacts/fieldgroup.h include/KF5/KContacts/kcontacts/gender.h include/KF5/KContacts/kcontacts/geo.h include/KF5/KContacts/kcontacts/impp.h include/KF5/KContacts/kcontacts/kcontacts_export.h include/KF5/KContacts/kcontacts/key.h include/KF5/KContacts/kcontacts/lang.h include/KF5/KContacts/kcontacts/ldifconverter.h include/KF5/KContacts/kcontacts/namespace.h include/KF5/KContacts/kcontacts/nickname.h include/KF5/KContacts/kcontacts/note.h include/KF5/KContacts/kcontacts/org.h include/KF5/KContacts/kcontacts/phonenumber.h include/KF5/KContacts/kcontacts/picture.h include/KF5/KContacts/kcontacts/related.h include/KF5/KContacts/kcontacts/resourcelocatorurl.h include/KF5/KContacts/kcontacts/role.h include/KF5/KContacts/kcontacts/secrecy.h include/KF5/KContacts/kcontacts/sound.h include/KF5/KContacts/kcontacts/timezone.h include/KF5/KContacts/kcontacts/title.h include/KF5/KContacts/kcontacts/vcardconverter.h include/KF5/KContacts/kcontacts/vcarddrag.h include/KF5/KContacts/kcontacts_version.h lib/cmake/KF5Contacts/KF5ContactsConfig.cmake lib/cmake/KF5Contacts/KF5ContactsConfigVersion.cmake lib/cmake/KF5Contacts/KF5ContactsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Contacts/KF5ContactsTargets.cmake lib/libKF5Contacts.so lib/libKF5Contacts.so.5 lib/libKF5Contacts.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KContacts.pri share/locale/ar/LC_MESSAGES/kcontacts5.mo -share/locale/ast/LC_MESSAGES/kcontacts5.mo share/locale/az/LC_MESSAGES/kcontacts5.mo share/locale/be/LC_MESSAGES/kcontacts5.mo share/locale/bg/LC_MESSAGES/kcontacts5.mo share/locale/bs/LC_MESSAGES/kcontacts5.mo share/locale/ca/LC_MESSAGES/kcontacts5.mo share/locale/ca@valencia/LC_MESSAGES/kcontacts5.mo share/locale/cs/LC_MESSAGES/kcontacts5.mo share/locale/da/LC_MESSAGES/kcontacts5.mo share/locale/de/LC_MESSAGES/kcontacts5.mo share/locale/el/LC_MESSAGES/kcontacts5.mo share/locale/en_GB/LC_MESSAGES/kcontacts5.mo share/locale/eo/LC_MESSAGES/kcontacts5.mo share/locale/es/LC_MESSAGES/kcontacts5.mo share/locale/et/LC_MESSAGES/kcontacts5.mo share/locale/eu/LC_MESSAGES/kcontacts5.mo share/locale/fi/LC_MESSAGES/kcontacts5.mo share/locale/fr/LC_MESSAGES/kcontacts5.mo share/locale/ga/LC_MESSAGES/kcontacts5.mo share/locale/gl/LC_MESSAGES/kcontacts5.mo share/locale/hi/LC_MESSAGES/kcontacts5.mo share/locale/hne/LC_MESSAGES/kcontacts5.mo share/locale/hu/LC_MESSAGES/kcontacts5.mo share/locale/ia/LC_MESSAGES/kcontacts5.mo share/locale/id/LC_MESSAGES/kcontacts5.mo share/locale/it/LC_MESSAGES/kcontacts5.mo share/locale/ja/LC_MESSAGES/kcontacts5.mo share/locale/ka/LC_MESSAGES/kcontacts5.mo share/locale/kk/LC_MESSAGES/kcontacts5.mo share/locale/km/LC_MESSAGES/kcontacts5.mo share/locale/ko/LC_MESSAGES/kcontacts5.mo share/locale/lt/LC_MESSAGES/kcontacts5.mo share/locale/lv/LC_MESSAGES/kcontacts5.mo share/locale/mai/LC_MESSAGES/kcontacts5.mo share/locale/ml/LC_MESSAGES/kcontacts5.mo share/locale/mr/LC_MESSAGES/kcontacts5.mo share/locale/nb/LC_MESSAGES/kcontacts5.mo share/locale/nds/LC_MESSAGES/kcontacts5.mo share/locale/nl/LC_MESSAGES/kcontacts5.mo share/locale/nn/LC_MESSAGES/kcontacts5.mo share/locale/pa/LC_MESSAGES/kcontacts5.mo share/locale/pl/LC_MESSAGES/kcontacts5.mo share/locale/pt/LC_MESSAGES/kcontacts5.mo share/locale/pt_BR/LC_MESSAGES/kcontacts5.mo share/locale/ro/LC_MESSAGES/kcontacts5.mo share/locale/ru/LC_MESSAGES/kcontacts5.mo share/locale/se/LC_MESSAGES/kcontacts5.mo share/locale/sk/LC_MESSAGES/kcontacts5.mo share/locale/sl/LC_MESSAGES/kcontacts5.mo share/locale/sq/LC_MESSAGES/kcontacts5.mo share/locale/sr/LC_MESSAGES/kcontacts5.mo share/locale/sr@ijekavian/LC_MESSAGES/kcontacts5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kcontacts5.mo share/locale/sr@latin/LC_MESSAGES/kcontacts5.mo share/locale/sv/LC_MESSAGES/kcontacts5.mo share/locale/tg/LC_MESSAGES/kcontacts5.mo share/locale/th/LC_MESSAGES/kcontacts5.mo share/locale/tr/LC_MESSAGES/kcontacts5.mo share/locale/ug/LC_MESSAGES/kcontacts5.mo share/locale/uk/LC_MESSAGES/kcontacts5.mo share/locale/zh_CN/LC_MESSAGES/kcontacts5.mo share/locale/zh_TW/LC_MESSAGES/kcontacts5.mo share/qlogging-categories5/kcontacts.categories share/qlogging-categories5/kcontacts.renamecategories diff --git a/net/kf5-kdav/distinfo b/net/kf5-kdav/distinfo index 44c4d72cbb78..a04a982d6c79 100644 --- a/net/kf5-kdav/distinfo +++ b/net/kf5-kdav/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689134 -SHA256 (KDE/frameworks/5.99.0/kdav-5.99.0.tar.xz) = edf3e811f24205294973e495731bce7e8f0bfdfc84c284cdbcc572be3cb566e4 -SIZE (KDE/frameworks/5.99.0/kdav-5.99.0.tar.xz) = 65644 +TIMESTAMP = 1667804664 +SHA256 (KDE/frameworks/5.100.0/kdav-5.100.0.tar.xz) = 6ed9451c103558d47149964d09c27535f04e8715867b299735e5c31bc7e78e24 +SIZE (KDE/frameworks/5.100.0/kdav-5.100.0.tar.xz) = 65632 diff --git a/net/kf5-kholidays/distinfo b/net/kf5-kholidays/distinfo index 6c8b04fbfa23..c111d43df181 100644 --- a/net/kf5-kholidays/distinfo +++ b/net/kf5-kholidays/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689135 -SHA256 (KDE/frameworks/5.99.0/kholidays-5.99.0.tar.xz) = f8131a0d9526bc8d5dc6818f10409175e2e329a78157e64b131dda5ff52c26cc -SIZE (KDE/frameworks/5.99.0/kholidays-5.99.0.tar.xz) = 241976 +TIMESTAMP = 1667804665 +SHA256 (KDE/frameworks/5.100.0/kholidays-5.100.0.tar.xz) = 4fc4631347611b5d9a79c170a24df92c783bc8fe123763f20628a453eee9ca1c +SIZE (KDE/frameworks/5.100.0/kholidays-5.100.0.tar.xz) = 251784 diff --git a/net/kf5-kholidays/pkg-plist b/net/kf5-kholidays/pkg-plist index cd3dac166fc1..c1b96640fcfa 100644 --- a/net/kf5-kholidays/pkg-plist +++ b/net/kf5-kholidays/pkg-plist @@ -1,99 +1,99 @@ include/KF5/KHolidays/KHolidays/AstroSeasons include/KF5/KHolidays/KHolidays/Holiday include/KF5/KHolidays/KHolidays/HolidayRegion include/KF5/KHolidays/KHolidays/LunarPhase include/KF5/KHolidays/KHolidays/SunRiseSet include/KF5/KHolidays/KHolidays/Zodiac include/KF5/KHolidays/kholidays/astroseasons.h include/KF5/KHolidays/kholidays/holiday.h include/KF5/KHolidays/kholidays/holidayregion.h include/KF5/KHolidays/kholidays/kholidays_export.h -include/KF5/KHolidays/kholidays_version.h include/KF5/KHolidays/kholidays/lunarphase.h include/KF5/KHolidays/kholidays/sunriseset.h include/KF5/KHolidays/kholidays/zodiac.h +include/KF5/KHolidays/kholidays_version.h lib/cmake/KF5Holidays/KF5HolidaysConfig.cmake lib/cmake/KF5Holidays/KF5HolidaysConfigVersion.cmake lib/cmake/KF5Holidays/KF5HolidaysTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Holidays/KF5HolidaysTargets.cmake lib/libKF5Holidays.so lib/libKF5Holidays.so.5 lib/libKF5Holidays.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KHolidays.pri %%QT_QMLDIR%%/org/kde/kholidays/libkholidaysdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kholidays/qmldir share/locale/ar/LC_MESSAGES/libkholidays5_qt.qm -share/locale/ast/LC_MESSAGES/libkholidays5_qt.qm share/locale/az/LC_MESSAGES/libkholidays5_qt.qm share/locale/be/LC_MESSAGES/libkholidays5_qt.qm share/locale/bg/LC_MESSAGES/libkholidays5_qt.qm share/locale/br/LC_MESSAGES/libkholidays5_qt.qm share/locale/bs/LC_MESSAGES/libkholidays5_qt.qm share/locale/ca/LC_MESSAGES/libkholidays5_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkholidays5_qt.qm share/locale/cs/LC_MESSAGES/libkholidays5_qt.qm share/locale/cy/LC_MESSAGES/libkholidays5_qt.qm share/locale/da/LC_MESSAGES/libkholidays5_qt.qm share/locale/de/LC_MESSAGES/libkholidays5_qt.qm share/locale/el/LC_MESSAGES/libkholidays5_qt.qm share/locale/en_GB/LC_MESSAGES/libkholidays5_qt.qm share/locale/eo/LC_MESSAGES/libkholidays5_qt.qm share/locale/es/LC_MESSAGES/libkholidays5_qt.qm share/locale/et/LC_MESSAGES/libkholidays5_qt.qm share/locale/eu/LC_MESSAGES/libkholidays5_qt.qm share/locale/fa/LC_MESSAGES/libkholidays5_qt.qm share/locale/fi/LC_MESSAGES/libkholidays5_qt.qm share/locale/fr/LC_MESSAGES/libkholidays5_qt.qm share/locale/fy/LC_MESSAGES/libkholidays5_qt.qm share/locale/ga/LC_MESSAGES/libkholidays5_qt.qm share/locale/gl/LC_MESSAGES/libkholidays5_qt.qm share/locale/he/LC_MESSAGES/libkholidays5_qt.qm share/locale/hi/LC_MESSAGES/libkholidays5_qt.qm share/locale/hne/LC_MESSAGES/libkholidays5_qt.qm share/locale/hu/LC_MESSAGES/libkholidays5_qt.qm share/locale/ia/LC_MESSAGES/libkholidays5_qt.qm share/locale/id/LC_MESSAGES/libkholidays5_qt.qm share/locale/is/LC_MESSAGES/libkholidays5_qt.qm share/locale/it/LC_MESSAGES/libkholidays5_qt.qm share/locale/ja/LC_MESSAGES/libkholidays5_qt.qm +share/locale/ka/LC_MESSAGES/libkholidays5_qt.qm share/locale/kk/LC_MESSAGES/libkholidays5_qt.qm share/locale/km/LC_MESSAGES/libkholidays5_qt.qm share/locale/ko/LC_MESSAGES/libkholidays5_qt.qm share/locale/lt/LC_MESSAGES/libkholidays5_qt.qm share/locale/lv/LC_MESSAGES/libkholidays5_qt.qm -share/locale/ml/LC_MESSAGES/libkholidays5_qt.qm share/locale/mk/LC_MESSAGES/libkholidays5_qt.qm +share/locale/ml/LC_MESSAGES/libkholidays5_qt.qm share/locale/mr/LC_MESSAGES/libkholidays5_qt.qm share/locale/ms/LC_MESSAGES/libkholidays5_qt.qm share/locale/nb/LC_MESSAGES/libkholidays5_qt.qm share/locale/nds/LC_MESSAGES/libkholidays5_qt.qm share/locale/ne/LC_MESSAGES/libkholidays5_qt.qm share/locale/nl/LC_MESSAGES/libkholidays5_qt.qm share/locale/nn/LC_MESSAGES/libkholidays5_qt.qm share/locale/pa/LC_MESSAGES/libkholidays5_qt.qm share/locale/pl/LC_MESSAGES/libkholidays5_qt.qm share/locale/pt/LC_MESSAGES/libkholidays5_qt.qm share/locale/pt_BR/LC_MESSAGES/libkholidays5_qt.qm share/locale/ro/LC_MESSAGES/libkholidays5_qt.qm share/locale/ru/LC_MESSAGES/libkholidays5_qt.qm share/locale/se/LC_MESSAGES/libkholidays5_qt.qm share/locale/sk/LC_MESSAGES/libkholidays5_qt.qm share/locale/sl/LC_MESSAGES/libkholidays5_qt.qm share/locale/sq/LC_MESSAGES/libkholidays5_qt.qm share/locale/sr/LC_MESSAGES/libkholidays5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/libkholidays5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/libkholidays5_qt.qm share/locale/sr@latin/LC_MESSAGES/libkholidays5_qt.qm share/locale/sv/LC_MESSAGES/libkholidays5_qt.qm share/locale/ta/LC_MESSAGES/libkholidays5_qt.qm share/locale/tg/LC_MESSAGES/libkholidays5_qt.qm share/locale/th/LC_MESSAGES/libkholidays5_qt.qm share/locale/tr/LC_MESSAGES/libkholidays5_qt.qm share/locale/ug/LC_MESSAGES/libkholidays5_qt.qm share/locale/uk/LC_MESSAGES/libkholidays5_qt.qm share/locale/uz/LC_MESSAGES/libkholidays5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/libkholidays5_qt.qm share/locale/wa/LC_MESSAGES/libkholidays5_qt.qm share/locale/zh_CN/LC_MESSAGES/libkholidays5_qt.qm share/locale/zh_TW/LC_MESSAGES/libkholidays5_qt.qm share/qlogging-categories5/kholidays.categories diff --git a/net/kf5-kxmlrpcclient/distinfo b/net/kf5-kxmlrpcclient/distinfo index e00404b6b631..d0fab2978218 100644 --- a/net/kf5-kxmlrpcclient/distinfo +++ b/net/kf5-kxmlrpcclient/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689137 -SHA256 (KDE/frameworks/5.99.0/kxmlrpcclient-5.99.0.tar.xz) = bd84e005dc605d6512044ee55d1ce739d0d218a8f37c6691d07a40202f3aaa66 -SIZE (KDE/frameworks/5.99.0/kxmlrpcclient-5.99.0.tar.xz) = 32148 +TIMESTAMP = 1667804666 +SHA256 (KDE/frameworks/5.100.0/kxmlrpcclient-5.100.0.tar.xz) = b946ffebb297777fe0fda19b00e4f2bc3a8624ab4cb301bd5c818b83d49cce3a +SIZE (KDE/frameworks/5.100.0/kxmlrpcclient-5.100.0.tar.xz) = 32148 diff --git a/net/kf5-syndication/distinfo b/net/kf5-syndication/distinfo index d72dd3cb3443..04f0d6e269bf 100644 --- a/net/kf5-syndication/distinfo +++ b/net/kf5-syndication/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689138 -SHA256 (KDE/frameworks/5.99.0/syndication-5.99.0.tar.xz) = e29898500a85c3327f4dc078746c08cf44b6e523b070ba49d65a572e14a8cfd1 -SIZE (KDE/frameworks/5.99.0/syndication-5.99.0.tar.xz) = 510500 +TIMESTAMP = 1667804667 +SHA256 (KDE/frameworks/5.100.0/syndication-5.100.0.tar.xz) = c548045b97da030ebf0cab8c6b0e32d3508384fa5aedee3c794d7fe60b9df38d +SIZE (KDE/frameworks/5.100.0/syndication-5.100.0.tar.xz) = 510500 diff --git a/security/kf5-kdesu/distinfo b/security/kf5-kdesu/distinfo index 2bd01f03d236..216a6bd4c39d 100644 --- a/security/kf5-kdesu/distinfo +++ b/security/kf5-kdesu/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689139 -SHA256 (KDE/frameworks/5.99.0/kdesu-5.99.0.tar.xz) = b393d9de503c2785eb20fe88b21983abf6917e1079b2b2d77341cd6255751c32 -SIZE (KDE/frameworks/5.99.0/kdesu-5.99.0.tar.xz) = 56284 +TIMESTAMP = 1667804668 +SHA256 (KDE/frameworks/5.100.0/kdesu-5.100.0.tar.xz) = 2fd889ad3df827109417abb9e58509f5bd8b06930a0f608ba22892693f0ff6b1 +SIZE (KDE/frameworks/5.100.0/kdesu-5.100.0.tar.xz) = 56260 diff --git a/security/kf5-kdesu/pkg-plist b/security/kf5-kdesu/pkg-plist index de2b90ce9885..93778d6a2c37 100644 --- a/security/kf5-kdesu/pkg-plist +++ b/security/kf5-kdesu/pkg-plist @@ -1,82 +1,81 @@ include/KF5/KDESu/KDESu/Client include/KF5/KDESu/KDESu/PtyProcess include/KF5/KDESu/KDESu/SshProcess include/KF5/KDESu/KDESu/StubProcess include/KF5/KDESu/KDESu/SuProcess include/KF5/KDESu/kdesu/client.h include/KF5/KDESu/kdesu/defaults.h include/KF5/KDESu/kdesu/kdesu_export.h include/KF5/KDESu/kdesu/process.h include/KF5/KDESu/kdesu/ptyprocess.h include/KF5/KDESu/kdesu/ssh.h include/KF5/KDESu/kdesu/sshprocess.h include/KF5/KDESu/kdesu/stub.h include/KF5/KDESu/kdesu/stubprocess.h include/KF5/KDESu/kdesu/su.h include/KF5/KDESu/kdesu/suprocess.h include/KF5/KDESu/kdesu_version.h lib/cmake/KF5Su/KF5SuConfig.cmake lib/cmake/KF5Su/KF5SuConfigVersion.cmake lib/cmake/KF5Su/KF5SuTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Su/KF5SuTargets.cmake lib/libKF5Su.so lib/libKF5Su.so.5 lib/libKF5Su.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/kdesu_stub lib/libexec/kf5/kdesud %%QT_MKSPECDIR%%/modules/qt_KDESu.pri share/locale/ar/LC_MESSAGES/kdesud5.mo -share/locale/ast/LC_MESSAGES/kdesud5.mo share/locale/az/LC_MESSAGES/kdesud5.mo share/locale/bg/LC_MESSAGES/kdesud5.mo share/locale/bs/LC_MESSAGES/kdesud5.mo share/locale/ca/LC_MESSAGES/kdesud5.mo share/locale/ca@valencia/LC_MESSAGES/kdesud5.mo share/locale/cs/LC_MESSAGES/kdesud5.mo share/locale/da/LC_MESSAGES/kdesud5.mo share/locale/de/LC_MESSAGES/kdesud5.mo share/locale/el/LC_MESSAGES/kdesud5.mo share/locale/en_GB/LC_MESSAGES/kdesud5.mo share/locale/es/LC_MESSAGES/kdesud5.mo share/locale/et/LC_MESSAGES/kdesud5.mo share/locale/eu/LC_MESSAGES/kdesud5.mo share/locale/fi/LC_MESSAGES/kdesud5.mo share/locale/fr/LC_MESSAGES/kdesud5.mo share/locale/gd/LC_MESSAGES/kdesud5.mo share/locale/gl/LC_MESSAGES/kdesud5.mo share/locale/hi/LC_MESSAGES/kdesud5.mo share/locale/hu/LC_MESSAGES/kdesud5.mo share/locale/ia/LC_MESSAGES/kdesud5.mo share/locale/id/LC_MESSAGES/kdesud5.mo share/locale/is/LC_MESSAGES/kdesud5.mo share/locale/it/LC_MESSAGES/kdesud5.mo share/locale/ja/LC_MESSAGES/kdesud5.mo share/locale/ka/LC_MESSAGES/kdesud5.mo share/locale/ko/LC_MESSAGES/kdesud5.mo share/locale/lt/LC_MESSAGES/kdesud5.mo share/locale/ml/LC_MESSAGES/kdesud5.mo share/locale/nb/LC_MESSAGES/kdesud5.mo share/locale/nds/LC_MESSAGES/kdesud5.mo share/locale/nl/LC_MESSAGES/kdesud5.mo share/locale/nn/LC_MESSAGES/kdesud5.mo share/locale/pa/LC_MESSAGES/kdesud5.mo share/locale/pl/LC_MESSAGES/kdesud5.mo share/locale/pt/LC_MESSAGES/kdesud5.mo share/locale/pt_BR/LC_MESSAGES/kdesud5.mo share/locale/ro/LC_MESSAGES/kdesud5.mo share/locale/ru/LC_MESSAGES/kdesud5.mo share/locale/se/LC_MESSAGES/kdesud5.mo share/locale/sk/LC_MESSAGES/kdesud5.mo share/locale/sl/LC_MESSAGES/kdesud5.mo share/locale/sr/LC_MESSAGES/kdesud5.mo share/locale/sr@ijekavian/LC_MESSAGES/kdesud5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesud5.mo share/locale/sr@latin/LC_MESSAGES/kdesud5.mo share/locale/sv/LC_MESSAGES/kdesud5.mo share/locale/tg/LC_MESSAGES/kdesud5.mo share/locale/tr/LC_MESSAGES/kdesud5.mo share/locale/uk/LC_MESSAGES/kdesud5.mo share/locale/vi/LC_MESSAGES/kdesud5.mo share/locale/zh_CN/LC_MESSAGES/kdesud5.mo share/locale/zh_TW/LC_MESSAGES/kdesud5.mo share/qlogging-categories5/ksu.categories diff --git a/sysutils/k3b/pkg-plist b/sysutils/k3b/pkg-plist index 5b6139edfcf0..e7fbd24c0704 100644 --- a/sysutils/k3b/pkg-plist +++ b/sysutils/k3b/pkg-plist @@ -1,540 +1,540 @@ 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/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/ia/LC_MESSAGES/k3b.mo share/locale/ia/LC_MESSAGES/kio_videodvd.mo share/locale/ia/LC_MESSAGES/libk3b.mo share/locale/ia/LC_MESSAGES/libk3bdevice.mo share/locale/id/LC_MESSAGES/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/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo share/locale/se/LC_MESSAGES/k3b.mo share/locale/se/LC_MESSAGES/libk3b.mo share/locale/se/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo share/locale/sq/LC_MESSAGES/k3b.mo share/locale/sq/LC_MESSAGES/kio_videodvd.mo share/locale/sq/LC_MESSAGES/libk3b.mo share/locale/sq/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop diff --git a/sysutils/kf5-baloo/distinfo b/sysutils/kf5-baloo/distinfo index 0deb149cac5c..f7850c7dd1c2 100644 --- a/sysutils/kf5-baloo/distinfo +++ b/sysutils/kf5-baloo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689140 -SHA256 (KDE/frameworks/5.99.0/baloo-5.99.0.tar.xz) = 00fb769b32eec159368b1eed31a7bfdd2bae3ce37a81d044a8ab2d2a9406ff6a -SIZE (KDE/frameworks/5.99.0/baloo-5.99.0.tar.xz) = 293276 +TIMESTAMP = 1667804669 +SHA256 (KDE/frameworks/5.100.0/baloo-5.100.0.tar.xz) = f93be67b84fe54de17607b14d5875f0b1967d1f16833c19f655ae5ce4ca06e88 +SIZE (KDE/frameworks/5.100.0/baloo-5.100.0.tar.xz) = 301308 diff --git a/sysutils/kf5-baloo/pkg-plist b/sysutils/kf5-baloo/pkg-plist index 5d599c57e79a..0e899debb6af 100644 --- a/sysutils/kf5-baloo/pkg-plist +++ b/sysutils/kf5-baloo/pkg-plist @@ -1,438 +1,436 @@ bin/baloo_file bin/baloo_file_extractor bin/balooctl bin/baloosearch bin/balooshow etc/xdg/autostart/baloo_file.desktop include/KF5/Baloo/Baloo/File include/KF5/Baloo/Baloo/FileMonitor include/KF5/Baloo/Baloo/IndexerConfig include/KF5/Baloo/Baloo/Query include/KF5/Baloo/Baloo/QueryRunnable include/KF5/Baloo/Baloo/ResultIterator include/KF5/Baloo/Baloo/TagListJob include/KF5/Baloo/baloo/baloosettings.h include/KF5/Baloo/baloo/core_export.h include/KF5/Baloo/baloo/file.h include/KF5/Baloo/baloo/filemonitor.h include/KF5/Baloo/baloo/indexerconfig.h include/KF5/Baloo/baloo/query.h include/KF5/Baloo/baloo/queryrunnable.h include/KF5/Baloo/baloo/resultiterator.h include/KF5/Baloo/baloo/taglistjob.h include/KF5/Baloo/baloo_version.h lib/cmake/KF5Baloo/KF5BalooConfig.cmake lib/cmake/KF5Baloo/KF5BalooConfigVersion.cmake lib/cmake/KF5Baloo/KF5BalooTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Baloo/KF5BalooTargets.cmake lib/libKF5Baloo.so lib/libKF5Baloo.so.5 lib/libKF5Baloo.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5BalooEngine.so.5 lib/libKF5BalooEngine.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/baloo_file lib/libexec/baloo_file_extractor %%QT_MKSPECDIR%%/modules/qt_Baloo.pri %%QT_PLUGINDIR%%/kf5/kded/baloosearchmodule.so %%QT_PLUGINDIR%%/kf5/kio/baloosearch.so %%QT_PLUGINDIR%%/kf5/kio/tags.so %%QT_PLUGINDIR%%/kf5/kio/timeline.so %%QT_QMLDIR%%/org/kde/baloo/experimental/libbaloomonitorplugin.so %%QT_QMLDIR%%/org/kde/baloo/experimental/qmldir %%QT_QMLDIR%%/org/kde/baloo/libbalooplugin.so %%QT_QMLDIR%%/org/kde/baloo/qmldir lib/systemd/user/kde-baloo.service libdata/pkgconfig/Baloo.pc share/dbus-1/interfaces/org.kde.BalooWatcherApplication.xml share/dbus-1/interfaces/org.kde.baloo.file.indexer.xml share/dbus-1/interfaces/org.kde.baloo.fileindexer.xml share/dbus-1/interfaces/org.kde.baloo.main.xml share/dbus-1/interfaces/org.kde.baloo.scheduler.xml share/locale/ar/LC_MESSAGES/balooctl5.mo share/locale/ar/LC_MESSAGES/baloodb5.mo share/locale/ar/LC_MESSAGES/balooengine5.mo share/locale/ar/LC_MESSAGES/baloosearch5.mo share/locale/ar/LC_MESSAGES/balooshow5.mo share/locale/ar/LC_MESSAGES/kio5_baloosearch.mo share/locale/ar/LC_MESSAGES/kio5_tags.mo share/locale/ar/LC_MESSAGES/kio5_timeline.mo -share/locale/ast/LC_MESSAGES/balooctl5.mo -share/locale/ast/LC_MESSAGES/kio5_timeline.mo share/locale/az/LC_MESSAGES/balooctl5.mo share/locale/az/LC_MESSAGES/baloodb5.mo share/locale/az/LC_MESSAGES/balooengine5.mo share/locale/az/LC_MESSAGES/baloosearch5.mo share/locale/az/LC_MESSAGES/balooshow5.mo share/locale/az/LC_MESSAGES/kio5_baloosearch.mo share/locale/az/LC_MESSAGES/kio5_tags.mo share/locale/az/LC_MESSAGES/kio5_timeline.mo share/locale/bg/LC_MESSAGES/balooctl5.mo share/locale/bg/LC_MESSAGES/baloodb5.mo share/locale/bg/LC_MESSAGES/balooengine5.mo share/locale/bg/LC_MESSAGES/baloosearch5.mo share/locale/bg/LC_MESSAGES/balooshow5.mo share/locale/bg/LC_MESSAGES/kio5_baloosearch.mo share/locale/bg/LC_MESSAGES/kio5_tags.mo share/locale/bg/LC_MESSAGES/kio5_timeline.mo share/locale/bs/LC_MESSAGES/balooctl5.mo share/locale/bs/LC_MESSAGES/baloosearch5.mo share/locale/bs/LC_MESSAGES/balooshow5.mo share/locale/bs/LC_MESSAGES/kio5_baloosearch.mo share/locale/bs/LC_MESSAGES/kio5_tags.mo share/locale/bs/LC_MESSAGES/kio5_timeline.mo share/locale/ca/LC_MESSAGES/balooctl5.mo share/locale/ca/LC_MESSAGES/baloodb5.mo share/locale/ca/LC_MESSAGES/balooengine5.mo share/locale/ca/LC_MESSAGES/baloosearch5.mo share/locale/ca/LC_MESSAGES/balooshow5.mo share/locale/ca/LC_MESSAGES/kio5_baloosearch.mo share/locale/ca/LC_MESSAGES/kio5_tags.mo share/locale/ca/LC_MESSAGES/kio5_timeline.mo share/locale/ca@valencia/LC_MESSAGES/balooctl5.mo share/locale/ca@valencia/LC_MESSAGES/baloodb5.mo share/locale/ca@valencia/LC_MESSAGES/balooengine5.mo share/locale/ca@valencia/LC_MESSAGES/baloosearch5.mo share/locale/ca@valencia/LC_MESSAGES/balooshow5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_baloosearch.mo share/locale/ca@valencia/LC_MESSAGES/kio5_tags.mo share/locale/ca@valencia/LC_MESSAGES/kio5_timeline.mo share/locale/cs/LC_MESSAGES/balooctl5.mo share/locale/cs/LC_MESSAGES/baloodb5.mo share/locale/cs/LC_MESSAGES/balooengine5.mo share/locale/cs/LC_MESSAGES/baloosearch5.mo share/locale/cs/LC_MESSAGES/balooshow5.mo share/locale/cs/LC_MESSAGES/kio5_baloosearch.mo share/locale/cs/LC_MESSAGES/kio5_tags.mo share/locale/cs/LC_MESSAGES/kio5_timeline.mo share/locale/da/LC_MESSAGES/balooctl5.mo share/locale/da/LC_MESSAGES/baloodb5.mo share/locale/da/LC_MESSAGES/balooengine5.mo share/locale/da/LC_MESSAGES/baloosearch5.mo share/locale/da/LC_MESSAGES/balooshow5.mo share/locale/da/LC_MESSAGES/kio5_baloosearch.mo share/locale/da/LC_MESSAGES/kio5_tags.mo share/locale/da/LC_MESSAGES/kio5_timeline.mo share/locale/de/LC_MESSAGES/balooctl5.mo share/locale/de/LC_MESSAGES/baloodb5.mo share/locale/de/LC_MESSAGES/balooengine5.mo share/locale/de/LC_MESSAGES/baloosearch5.mo share/locale/de/LC_MESSAGES/balooshow5.mo share/locale/de/LC_MESSAGES/kio5_baloosearch.mo share/locale/de/LC_MESSAGES/kio5_tags.mo share/locale/de/LC_MESSAGES/kio5_timeline.mo share/locale/el/LC_MESSAGES/balooctl5.mo share/locale/el/LC_MESSAGES/baloodb5.mo share/locale/el/LC_MESSAGES/balooengine5.mo share/locale/el/LC_MESSAGES/baloosearch5.mo share/locale/el/LC_MESSAGES/balooshow5.mo share/locale/el/LC_MESSAGES/kio5_baloosearch.mo share/locale/el/LC_MESSAGES/kio5_tags.mo share/locale/el/LC_MESSAGES/kio5_timeline.mo share/locale/en_GB/LC_MESSAGES/balooctl5.mo share/locale/en_GB/LC_MESSAGES/baloodb5.mo share/locale/en_GB/LC_MESSAGES/balooengine5.mo share/locale/en_GB/LC_MESSAGES/baloosearch5.mo share/locale/en_GB/LC_MESSAGES/balooshow5.mo share/locale/en_GB/LC_MESSAGES/kio5_baloosearch.mo share/locale/en_GB/LC_MESSAGES/kio5_tags.mo share/locale/en_GB/LC_MESSAGES/kio5_timeline.mo share/locale/es/LC_MESSAGES/balooctl5.mo share/locale/es/LC_MESSAGES/baloodb5.mo share/locale/es/LC_MESSAGES/balooengine5.mo share/locale/es/LC_MESSAGES/baloosearch5.mo share/locale/es/LC_MESSAGES/balooshow5.mo share/locale/es/LC_MESSAGES/kio5_baloosearch.mo share/locale/es/LC_MESSAGES/kio5_tags.mo share/locale/es/LC_MESSAGES/kio5_timeline.mo share/locale/et/LC_MESSAGES/balooctl5.mo share/locale/et/LC_MESSAGES/baloodb5.mo share/locale/et/LC_MESSAGES/balooengine5.mo share/locale/et/LC_MESSAGES/baloosearch5.mo share/locale/et/LC_MESSAGES/balooshow5.mo share/locale/et/LC_MESSAGES/kio5_baloosearch.mo share/locale/et/LC_MESSAGES/kio5_tags.mo share/locale/et/LC_MESSAGES/kio5_timeline.mo share/locale/eu/LC_MESSAGES/balooctl5.mo share/locale/eu/LC_MESSAGES/baloodb5.mo share/locale/eu/LC_MESSAGES/balooengine5.mo share/locale/eu/LC_MESSAGES/baloosearch5.mo share/locale/eu/LC_MESSAGES/balooshow5.mo share/locale/eu/LC_MESSAGES/kio5_baloosearch.mo share/locale/eu/LC_MESSAGES/kio5_tags.mo share/locale/eu/LC_MESSAGES/kio5_timeline.mo share/locale/fi/LC_MESSAGES/balooctl5.mo share/locale/fi/LC_MESSAGES/baloodb5.mo share/locale/fi/LC_MESSAGES/balooengine5.mo share/locale/fi/LC_MESSAGES/baloosearch5.mo share/locale/fi/LC_MESSAGES/balooshow5.mo share/locale/fi/LC_MESSAGES/kio5_baloosearch.mo share/locale/fi/LC_MESSAGES/kio5_tags.mo share/locale/fi/LC_MESSAGES/kio5_timeline.mo share/locale/fr/LC_MESSAGES/balooctl5.mo share/locale/fr/LC_MESSAGES/baloodb5.mo share/locale/fr/LC_MESSAGES/balooengine5.mo share/locale/fr/LC_MESSAGES/baloosearch5.mo share/locale/fr/LC_MESSAGES/balooshow5.mo share/locale/fr/LC_MESSAGES/kio5_baloosearch.mo share/locale/fr/LC_MESSAGES/kio5_tags.mo share/locale/fr/LC_MESSAGES/kio5_timeline.mo share/locale/gd/LC_MESSAGES/balooctl5.mo share/locale/gd/LC_MESSAGES/baloosearch5.mo share/locale/gd/LC_MESSAGES/balooshow5.mo share/locale/gd/LC_MESSAGES/kio5_baloosearch.mo share/locale/gd/LC_MESSAGES/kio5_tags.mo share/locale/gd/LC_MESSAGES/kio5_timeline.mo share/locale/gl/LC_MESSAGES/balooctl5.mo share/locale/gl/LC_MESSAGES/baloodb5.mo share/locale/gl/LC_MESSAGES/balooengine5.mo share/locale/gl/LC_MESSAGES/baloosearch5.mo share/locale/gl/LC_MESSAGES/balooshow5.mo share/locale/gl/LC_MESSAGES/kio5_baloosearch.mo share/locale/gl/LC_MESSAGES/kio5_tags.mo share/locale/gl/LC_MESSAGES/kio5_timeline.mo share/locale/he/LC_MESSAGES/kio5_baloosearch.mo share/locale/he/LC_MESSAGES/kio5_timeline.mo share/locale/hu/LC_MESSAGES/balooctl5.mo share/locale/hu/LC_MESSAGES/baloodb5.mo share/locale/hu/LC_MESSAGES/balooengine5.mo share/locale/hu/LC_MESSAGES/baloosearch5.mo share/locale/hu/LC_MESSAGES/balooshow5.mo share/locale/hu/LC_MESSAGES/kio5_baloosearch.mo share/locale/hu/LC_MESSAGES/kio5_tags.mo share/locale/hu/LC_MESSAGES/kio5_timeline.mo share/locale/ia/LC_MESSAGES/balooctl5.mo share/locale/ia/LC_MESSAGES/baloodb5.mo share/locale/ia/LC_MESSAGES/balooengine5.mo share/locale/ia/LC_MESSAGES/baloosearch5.mo share/locale/ia/LC_MESSAGES/balooshow5.mo share/locale/ia/LC_MESSAGES/kio5_baloosearch.mo share/locale/ia/LC_MESSAGES/kio5_tags.mo share/locale/ia/LC_MESSAGES/kio5_timeline.mo share/locale/id/LC_MESSAGES/balooctl5.mo share/locale/id/LC_MESSAGES/baloodb5.mo share/locale/id/LC_MESSAGES/balooengine5.mo share/locale/id/LC_MESSAGES/baloosearch5.mo share/locale/id/LC_MESSAGES/balooshow5.mo share/locale/id/LC_MESSAGES/kio5_baloosearch.mo share/locale/id/LC_MESSAGES/kio5_tags.mo share/locale/id/LC_MESSAGES/kio5_timeline.mo share/locale/it/LC_MESSAGES/balooctl5.mo share/locale/it/LC_MESSAGES/baloodb5.mo share/locale/it/LC_MESSAGES/balooengine5.mo share/locale/it/LC_MESSAGES/baloosearch5.mo share/locale/it/LC_MESSAGES/balooshow5.mo share/locale/it/LC_MESSAGES/kio5_baloosearch.mo share/locale/it/LC_MESSAGES/kio5_tags.mo share/locale/it/LC_MESSAGES/kio5_timeline.mo share/locale/ja/LC_MESSAGES/balooctl5.mo share/locale/ja/LC_MESSAGES/baloodb5.mo share/locale/ja/LC_MESSAGES/balooengine5.mo share/locale/ja/LC_MESSAGES/baloosearch5.mo share/locale/ja/LC_MESSAGES/balooshow5.mo share/locale/ja/LC_MESSAGES/kio5_baloosearch.mo share/locale/ja/LC_MESSAGES/kio5_tags.mo share/locale/ja/LC_MESSAGES/kio5_timeline.mo share/locale/ka/LC_MESSAGES/balooctl5.mo share/locale/ka/LC_MESSAGES/baloodb5.mo share/locale/ka/LC_MESSAGES/balooengine5.mo share/locale/ka/LC_MESSAGES/baloosearch5.mo share/locale/ka/LC_MESSAGES/balooshow5.mo share/locale/ka/LC_MESSAGES/kio5_baloosearch.mo share/locale/ka/LC_MESSAGES/kio5_tags.mo share/locale/ka/LC_MESSAGES/kio5_timeline.mo share/locale/ko/LC_MESSAGES/balooctl5.mo share/locale/ko/LC_MESSAGES/baloodb5.mo share/locale/ko/LC_MESSAGES/balooengine5.mo share/locale/ko/LC_MESSAGES/baloosearch5.mo share/locale/ko/LC_MESSAGES/balooshow5.mo share/locale/ko/LC_MESSAGES/kio5_baloosearch.mo share/locale/ko/LC_MESSAGES/kio5_tags.mo share/locale/ko/LC_MESSAGES/kio5_timeline.mo share/locale/lt/LC_MESSAGES/balooctl5.mo share/locale/lt/LC_MESSAGES/baloodb5.mo share/locale/lt/LC_MESSAGES/balooengine5.mo share/locale/lt/LC_MESSAGES/baloosearch5.mo share/locale/lt/LC_MESSAGES/balooshow5.mo share/locale/lt/LC_MESSAGES/kio5_baloosearch.mo share/locale/lt/LC_MESSAGES/kio5_tags.mo share/locale/lt/LC_MESSAGES/kio5_timeline.mo share/locale/ml/LC_MESSAGES/balooctl5.mo share/locale/ml/LC_MESSAGES/baloodb5.mo share/locale/ml/LC_MESSAGES/balooengine5.mo share/locale/ml/LC_MESSAGES/baloosearch5.mo share/locale/ml/LC_MESSAGES/balooshow5.mo share/locale/ml/LC_MESSAGES/kio5_baloosearch.mo share/locale/ml/LC_MESSAGES/kio5_tags.mo share/locale/ml/LC_MESSAGES/kio5_timeline.mo share/locale/nb/LC_MESSAGES/balooctl5.mo share/locale/nb/LC_MESSAGES/baloosearch5.mo share/locale/nb/LC_MESSAGES/balooshow5.mo share/locale/nb/LC_MESSAGES/kio5_baloosearch.mo share/locale/nb/LC_MESSAGES/kio5_tags.mo share/locale/nb/LC_MESSAGES/kio5_timeline.mo share/locale/nds/LC_MESSAGES/balooctl5.mo share/locale/nds/LC_MESSAGES/baloosearch5.mo share/locale/nds/LC_MESSAGES/balooshow5.mo share/locale/nds/LC_MESSAGES/kio5_baloosearch.mo share/locale/nds/LC_MESSAGES/kio5_tags.mo share/locale/nds/LC_MESSAGES/kio5_timeline.mo share/locale/nl/LC_MESSAGES/balooctl5.mo share/locale/nl/LC_MESSAGES/baloodb5.mo share/locale/nl/LC_MESSAGES/balooengine5.mo share/locale/nl/LC_MESSAGES/baloosearch5.mo share/locale/nl/LC_MESSAGES/balooshow5.mo share/locale/nl/LC_MESSAGES/kio5_baloosearch.mo share/locale/nl/LC_MESSAGES/kio5_tags.mo share/locale/nl/LC_MESSAGES/kio5_timeline.mo share/locale/nn/LC_MESSAGES/balooctl5.mo share/locale/nn/LC_MESSAGES/baloodb5.mo share/locale/nn/LC_MESSAGES/balooengine5.mo share/locale/nn/LC_MESSAGES/baloosearch5.mo share/locale/nn/LC_MESSAGES/balooshow5.mo share/locale/nn/LC_MESSAGES/kio5_baloosearch.mo share/locale/nn/LC_MESSAGES/kio5_tags.mo share/locale/nn/LC_MESSAGES/kio5_timeline.mo share/locale/pa/LC_MESSAGES/balooctl5.mo share/locale/pa/LC_MESSAGES/baloosearch5.mo share/locale/pa/LC_MESSAGES/balooshow5.mo share/locale/pa/LC_MESSAGES/kio5_baloosearch.mo share/locale/pa/LC_MESSAGES/kio5_tags.mo share/locale/pa/LC_MESSAGES/kio5_timeline.mo share/locale/pl/LC_MESSAGES/balooctl5.mo share/locale/pl/LC_MESSAGES/baloodb5.mo share/locale/pl/LC_MESSAGES/balooengine5.mo share/locale/pl/LC_MESSAGES/baloosearch5.mo share/locale/pl/LC_MESSAGES/balooshow5.mo share/locale/pl/LC_MESSAGES/kio5_baloosearch.mo share/locale/pl/LC_MESSAGES/kio5_tags.mo share/locale/pl/LC_MESSAGES/kio5_timeline.mo share/locale/pt/LC_MESSAGES/balooctl5.mo share/locale/pt/LC_MESSAGES/baloodb5.mo share/locale/pt/LC_MESSAGES/balooengine5.mo share/locale/pt/LC_MESSAGES/baloosearch5.mo share/locale/pt/LC_MESSAGES/balooshow5.mo share/locale/pt/LC_MESSAGES/kio5_baloosearch.mo share/locale/pt/LC_MESSAGES/kio5_tags.mo share/locale/pt/LC_MESSAGES/kio5_timeline.mo share/locale/pt_BR/LC_MESSAGES/balooctl5.mo share/locale/pt_BR/LC_MESSAGES/baloodb5.mo share/locale/pt_BR/LC_MESSAGES/balooengine5.mo share/locale/pt_BR/LC_MESSAGES/baloosearch5.mo share/locale/pt_BR/LC_MESSAGES/balooshow5.mo share/locale/pt_BR/LC_MESSAGES/kio5_baloosearch.mo share/locale/pt_BR/LC_MESSAGES/kio5_tags.mo share/locale/pt_BR/LC_MESSAGES/kio5_timeline.mo share/locale/ro/LC_MESSAGES/balooctl5.mo share/locale/ro/LC_MESSAGES/baloodb5.mo share/locale/ro/LC_MESSAGES/balooengine5.mo share/locale/ro/LC_MESSAGES/baloosearch5.mo share/locale/ro/LC_MESSAGES/balooshow5.mo share/locale/ro/LC_MESSAGES/kio5_baloosearch.mo share/locale/ro/LC_MESSAGES/kio5_tags.mo share/locale/ro/LC_MESSAGES/kio5_timeline.mo share/locale/ru/LC_MESSAGES/balooctl5.mo share/locale/ru/LC_MESSAGES/baloodb5.mo share/locale/ru/LC_MESSAGES/balooengine5.mo share/locale/ru/LC_MESSAGES/baloosearch5.mo share/locale/ru/LC_MESSAGES/balooshow5.mo share/locale/ru/LC_MESSAGES/kio5_baloosearch.mo share/locale/ru/LC_MESSAGES/kio5_tags.mo share/locale/ru/LC_MESSAGES/kio5_timeline.mo share/locale/sk/LC_MESSAGES/balooctl5.mo share/locale/sk/LC_MESSAGES/baloodb5.mo share/locale/sk/LC_MESSAGES/balooengine5.mo share/locale/sk/LC_MESSAGES/baloosearch5.mo share/locale/sk/LC_MESSAGES/balooshow5.mo share/locale/sk/LC_MESSAGES/kio5_baloosearch.mo share/locale/sk/LC_MESSAGES/kio5_tags.mo share/locale/sk/LC_MESSAGES/kio5_timeline.mo share/locale/sl/LC_MESSAGES/balooctl5.mo share/locale/sl/LC_MESSAGES/baloodb5.mo share/locale/sl/LC_MESSAGES/balooengine5.mo share/locale/sl/LC_MESSAGES/baloosearch5.mo share/locale/sl/LC_MESSAGES/balooshow5.mo share/locale/sl/LC_MESSAGES/kio5_baloosearch.mo share/locale/sl/LC_MESSAGES/kio5_tags.mo share/locale/sl/LC_MESSAGES/kio5_timeline.mo share/locale/sr/LC_MESSAGES/balooctl5.mo share/locale/sr/LC_MESSAGES/baloosearch5.mo share/locale/sr/LC_MESSAGES/balooshow5.mo share/locale/sr/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr/LC_MESSAGES/kio5_tags.mo share/locale/sr/LC_MESSAGES/kio5_timeline.mo share/locale/sr@ijekavian/LC_MESSAGES/balooctl5.mo share/locale/sr@ijekavian/LC_MESSAGES/baloosearch5.mo share/locale/sr@ijekavian/LC_MESSAGES/balooshow5.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_tags.mo share/locale/sr@ijekavian/LC_MESSAGES/kio5_timeline.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/balooctl5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/baloosearch5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/balooshow5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_tags.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_timeline.mo share/locale/sr@latin/LC_MESSAGES/balooctl5.mo share/locale/sr@latin/LC_MESSAGES/baloosearch5.mo share/locale/sr@latin/LC_MESSAGES/balooshow5.mo share/locale/sr@latin/LC_MESSAGES/kio5_baloosearch.mo share/locale/sr@latin/LC_MESSAGES/kio5_tags.mo share/locale/sr@latin/LC_MESSAGES/kio5_timeline.mo share/locale/sv/LC_MESSAGES/balooctl5.mo share/locale/sv/LC_MESSAGES/baloodb5.mo share/locale/sv/LC_MESSAGES/balooengine5.mo share/locale/sv/LC_MESSAGES/baloosearch5.mo share/locale/sv/LC_MESSAGES/balooshow5.mo share/locale/sv/LC_MESSAGES/kio5_baloosearch.mo share/locale/sv/LC_MESSAGES/kio5_tags.mo share/locale/sv/LC_MESSAGES/kio5_timeline.mo share/locale/ta/LC_MESSAGES/balooctl5.mo share/locale/ta/LC_MESSAGES/baloodb5.mo share/locale/ta/LC_MESSAGES/balooengine5.mo share/locale/ta/LC_MESSAGES/baloosearch5.mo share/locale/ta/LC_MESSAGES/balooshow5.mo share/locale/ta/LC_MESSAGES/kio5_baloosearch.mo share/locale/ta/LC_MESSAGES/kio5_tags.mo share/locale/ta/LC_MESSAGES/kio5_timeline.mo share/locale/tg/LC_MESSAGES/balooctl5.mo share/locale/tg/LC_MESSAGES/baloodb5.mo share/locale/tg/LC_MESSAGES/balooengine5.mo share/locale/tg/LC_MESSAGES/baloosearch5.mo share/locale/tg/LC_MESSAGES/balooshow5.mo share/locale/tg/LC_MESSAGES/kio5_baloosearch.mo share/locale/tg/LC_MESSAGES/kio5_tags.mo share/locale/tg/LC_MESSAGES/kio5_timeline.mo share/locale/tr/LC_MESSAGES/balooctl5.mo share/locale/tr/LC_MESSAGES/baloodb5.mo share/locale/tr/LC_MESSAGES/balooengine5.mo share/locale/tr/LC_MESSAGES/baloosearch5.mo share/locale/tr/LC_MESSAGES/balooshow5.mo share/locale/tr/LC_MESSAGES/kio5_baloosearch.mo share/locale/tr/LC_MESSAGES/kio5_tags.mo share/locale/tr/LC_MESSAGES/kio5_timeline.mo share/locale/uk/LC_MESSAGES/balooctl5.mo share/locale/uk/LC_MESSAGES/baloodb5.mo share/locale/uk/LC_MESSAGES/balooengine5.mo share/locale/uk/LC_MESSAGES/baloosearch5.mo share/locale/uk/LC_MESSAGES/balooshow5.mo share/locale/uk/LC_MESSAGES/kio5_baloosearch.mo share/locale/uk/LC_MESSAGES/kio5_tags.mo share/locale/uk/LC_MESSAGES/kio5_timeline.mo share/locale/zh_CN/LC_MESSAGES/balooctl5.mo share/locale/zh_CN/LC_MESSAGES/baloodb5.mo share/locale/zh_CN/LC_MESSAGES/balooengine5.mo share/locale/zh_CN/LC_MESSAGES/baloosearch5.mo share/locale/zh_CN/LC_MESSAGES/balooshow5.mo share/locale/zh_CN/LC_MESSAGES/kio5_baloosearch.mo share/locale/zh_CN/LC_MESSAGES/kio5_tags.mo share/locale/zh_CN/LC_MESSAGES/kio5_timeline.mo share/locale/zh_TW/LC_MESSAGES/balooctl5.mo share/locale/zh_TW/LC_MESSAGES/baloodb5.mo share/locale/zh_TW/LC_MESSAGES/balooengine5.mo share/locale/zh_TW/LC_MESSAGES/baloosearch5.mo share/locale/zh_TW/LC_MESSAGES/balooshow5.mo share/locale/zh_TW/LC_MESSAGES/kio5_baloosearch.mo share/locale/zh_TW/LC_MESSAGES/kio5_tags.mo share/locale/zh_TW/LC_MESSAGES/kio5_timeline.mo share/qlogging-categories5/baloo.categories share/qlogging-categories5/baloo.renamecategories diff --git a/sysutils/kf5-kwallet/distinfo b/sysutils/kf5-kwallet/distinfo index 58fc278ecee1..c1e00068d191 100644 --- a/sysutils/kf5-kwallet/distinfo +++ b/sysutils/kf5-kwallet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689141 -SHA256 (KDE/frameworks/5.99.0/kwallet-5.99.0.tar.xz) = d2c66b736872563a7ce4db5765325ecf5ec07c8f296e7160946bccefcce02a07 -SIZE (KDE/frameworks/5.99.0/kwallet-5.99.0.tar.xz) = 333436 +TIMESTAMP = 1667804670 +SHA256 (KDE/frameworks/5.100.0/kwallet-5.100.0.tar.xz) = 2bbdf57f515b36d95e8adcf56e96157bb7621f5284abfc3b6e5d63f9f2832e80 +SIZE (KDE/frameworks/5.100.0/kwallet-5.100.0.tar.xz) = 347328 diff --git a/textproc/kf5-kcodecs/distinfo b/textproc/kf5-kcodecs/distinfo index ca403c0f3cf2..0f821bb56faf 100644 --- a/textproc/kf5-kcodecs/distinfo +++ b/textproc/kf5-kcodecs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689142 -SHA256 (KDE/frameworks/5.99.0/kcodecs-5.99.0.tar.xz) = 62cd8011339db338c84dd06b009b8c26632e3c559177782e2b7b12c799862076 -SIZE (KDE/frameworks/5.99.0/kcodecs-5.99.0.tar.xz) = 237228 +TIMESTAMP = 1667804671 +SHA256 (KDE/frameworks/5.100.0/kcodecs-5.100.0.tar.xz) = 55e8b79a27846d1ef90cdc2567b227b31ef8ef5325143c95d404f6eca1e40ca3 +SIZE (KDE/frameworks/5.100.0/kcodecs-5.100.0.tar.xz) = 2533476 diff --git a/textproc/kf5-sonnet/distinfo b/textproc/kf5-sonnet/distinfo index c51aa162891e..ed6d61802eef 100644 --- a/textproc/kf5-sonnet/distinfo +++ b/textproc/kf5-sonnet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689143 -SHA256 (KDE/frameworks/5.99.0/sonnet-5.99.0.tar.xz) = f3f18e00f9205cfcf7d6923ccdbec480001da86f39623fe012773ee63afca7e4 -SIZE (KDE/frameworks/5.99.0/sonnet-5.99.0.tar.xz) = 307868 +TIMESTAMP = 1667804671 +SHA256 (KDE/frameworks/5.100.0/sonnet-5.100.0.tar.xz) = e4e72b9385900d53afec16fd1272c91b56d39d849dc54974b7d9178b3c3a1e19 +SIZE (KDE/frameworks/5.100.0/sonnet-5.100.0.tar.xz) = 2463748 diff --git a/textproc/kf5-sonnet/pkg-plist b/textproc/kf5-sonnet/pkg-plist index 4886394cde25..46f4633db70f 100644 --- a/textproc/kf5-sonnet/pkg-plist +++ b/textproc/kf5-sonnet/pkg-plist @@ -1,148 +1,147 @@ bin/gentrigrams bin/parsetrigrams include/KF5/Sonnet/sonnet_version.h include/KF5/SonnetCore/Sonnet/BackgroundChecker include/KF5/SonnetCore/Sonnet/GuessLanguage include/KF5/SonnetCore/Sonnet/Settings include/KF5/SonnetCore/Sonnet/Speller include/KF5/SonnetCore/sonnet/backgroundchecker.h include/KF5/SonnetCore/sonnet/guesslanguage.h include/KF5/SonnetCore/sonnet/settings.h include/KF5/SonnetCore/sonnet/sonnetcore_export.h include/KF5/SonnetCore/sonnet/speller.h include/KF5/SonnetUi/Sonnet/ConfigDialog include/KF5/SonnetUi/Sonnet/ConfigView include/KF5/SonnetUi/Sonnet/ConfigWidget include/KF5/SonnetUi/Sonnet/Dialog include/KF5/SonnetUi/Sonnet/DictionaryComboBox include/KF5/SonnetUi/Sonnet/Highlighter include/KF5/SonnetUi/Sonnet/SpellCheckDecorator include/KF5/SonnetUi/sonnet/configdialog.h include/KF5/SonnetUi/sonnet/configview.h include/KF5/SonnetUi/sonnet/configwidget.h include/KF5/SonnetUi/sonnet/dialog.h include/KF5/SonnetUi/sonnet/dictionarycombobox.h include/KF5/SonnetUi/sonnet/highlighter.h include/KF5/SonnetUi/sonnet/sonnetui_export.h include/KF5/SonnetUi/sonnet/spellcheckdecorator.h lib/cmake/KF5Sonnet/KF5SonnetConfig.cmake lib/cmake/KF5Sonnet/KF5SonnetConfigVersion.cmake lib/cmake/KF5Sonnet/KF5SonnetTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Sonnet/KF5SonnetTargets.cmake lib/libKF5SonnetCore.so lib/libKF5SonnetCore.so.5 lib/libKF5SonnetCore.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5SonnetUi.so lib/libKF5SonnetUi.so.5 lib/libKF5SonnetUi.so.%%KDE_FRAMEWORKS_VERSION%% -%%QT_PLUGINDIR%%/kf5/sonnet/sonnet_aspell.so -%%QT_PLUGINDIR%%/kf5/sonnet/sonnet_hunspell.so -%%QT_PLUGINDIR%%/designer/sonnetui5widgets.so %%QT_MKSPECDIR%%/modules/qt_SonnetCore.pri %%QT_MKSPECDIR%%/modules/qt_SonnetUi.pri +%%QT_PLUGINDIR%%/designer/sonnetui5widgets.so +%%QT_PLUGINDIR%%/kf5/sonnet/sonnet_aspell.so +%%QT_PLUGINDIR%%/kf5/sonnet/sonnet_hunspell.so %%QT_QMLDIR%%/org/kde/sonnet/libsonnetquickplugin.so %%QT_QMLDIR%%/org/kde/sonnet/plugins.qmltypes %%QT_QMLDIR%%/org/kde/sonnet/qmldir share/locale/af/LC_MESSAGES/sonnet5_qt.qm share/locale/ar/LC_MESSAGES/sonnet5_qt.qm share/locale/as/LC_MESSAGES/sonnet5_qt.qm -share/locale/ast/LC_MESSAGES/sonnet5_qt.qm share/locale/az/LC_MESSAGES/sonnet5_qt.qm share/locale/be/LC_MESSAGES/sonnet5_qt.qm share/locale/be@latin/LC_MESSAGES/sonnet5_qt.qm share/locale/bg/LC_MESSAGES/sonnet5_qt.qm share/locale/bn/LC_MESSAGES/sonnet5_qt.qm share/locale/bn_IN/LC_MESSAGES/sonnet5_qt.qm share/locale/br/LC_MESSAGES/sonnet5_qt.qm share/locale/bs/LC_MESSAGES/sonnet5_qt.qm share/locale/ca/LC_MESSAGES/sonnet5_qt.qm share/locale/ca@valencia/LC_MESSAGES/sonnet5_qt.qm share/locale/crh/LC_MESSAGES/sonnet5_qt.qm share/locale/cs/LC_MESSAGES/sonnet5_qt.qm share/locale/csb/LC_MESSAGES/sonnet5_qt.qm share/locale/cy/LC_MESSAGES/sonnet5_qt.qm share/locale/da/LC_MESSAGES/sonnet5_qt.qm share/locale/de/LC_MESSAGES/sonnet5_qt.qm share/locale/el/LC_MESSAGES/sonnet5_qt.qm share/locale/en_GB/LC_MESSAGES/sonnet5_qt.qm share/locale/eo/LC_MESSAGES/sonnet5_qt.qm share/locale/es/LC_MESSAGES/sonnet5_qt.qm share/locale/et/LC_MESSAGES/sonnet5_qt.qm share/locale/eu/LC_MESSAGES/sonnet5_qt.qm share/locale/fa/LC_MESSAGES/sonnet5_qt.qm share/locale/fi/LC_MESSAGES/sonnet5_qt.qm share/locale/fr/LC_MESSAGES/sonnet5_qt.qm share/locale/fy/LC_MESSAGES/sonnet5_qt.qm share/locale/ga/LC_MESSAGES/sonnet5_qt.qm share/locale/gd/LC_MESSAGES/sonnet5_qt.qm share/locale/gl/LC_MESSAGES/sonnet5_qt.qm share/locale/gu/LC_MESSAGES/sonnet5_qt.qm share/locale/ha/LC_MESSAGES/sonnet5_qt.qm share/locale/he/LC_MESSAGES/sonnet5_qt.qm share/locale/hi/LC_MESSAGES/sonnet5_qt.qm share/locale/hne/LC_MESSAGES/sonnet5_qt.qm share/locale/hr/LC_MESSAGES/sonnet5_qt.qm share/locale/hsb/LC_MESSAGES/sonnet5_qt.qm share/locale/hu/LC_MESSAGES/sonnet5_qt.qm share/locale/hy/LC_MESSAGES/sonnet5_qt.qm share/locale/ia/LC_MESSAGES/sonnet5_qt.qm share/locale/id/LC_MESSAGES/sonnet5_qt.qm share/locale/is/LC_MESSAGES/sonnet5_qt.qm share/locale/it/LC_MESSAGES/sonnet5_qt.qm share/locale/ja/LC_MESSAGES/sonnet5_qt.qm share/locale/ka/LC_MESSAGES/sonnet5_qt.qm share/locale/kk/LC_MESSAGES/sonnet5_qt.qm share/locale/km/LC_MESSAGES/sonnet5_qt.qm share/locale/kn/LC_MESSAGES/sonnet5_qt.qm share/locale/ko/LC_MESSAGES/sonnet5_qt.qm share/locale/ku/LC_MESSAGES/sonnet5_qt.qm share/locale/lb/LC_MESSAGES/sonnet5_qt.qm share/locale/lt/LC_MESSAGES/sonnet5_qt.qm share/locale/lv/LC_MESSAGES/sonnet5_qt.qm share/locale/mai/LC_MESSAGES/sonnet5_qt.qm share/locale/mk/LC_MESSAGES/sonnet5_qt.qm share/locale/ml/LC_MESSAGES/sonnet5_qt.qm share/locale/mr/LC_MESSAGES/sonnet5_qt.qm share/locale/ms/LC_MESSAGES/sonnet5_qt.qm share/locale/nb/LC_MESSAGES/sonnet5_qt.qm share/locale/nds/LC_MESSAGES/sonnet5_qt.qm share/locale/ne/LC_MESSAGES/sonnet5_qt.qm share/locale/nl/LC_MESSAGES/sonnet5_qt.qm share/locale/nn/LC_MESSAGES/sonnet5_qt.qm share/locale/oc/LC_MESSAGES/sonnet5_qt.qm share/locale/or/LC_MESSAGES/sonnet5_qt.qm share/locale/pa/LC_MESSAGES/sonnet5_qt.qm share/locale/pl/LC_MESSAGES/sonnet5_qt.qm share/locale/ps/LC_MESSAGES/sonnet5_qt.qm share/locale/pt/LC_MESSAGES/sonnet5_qt.qm share/locale/pt_BR/LC_MESSAGES/sonnet5_qt.qm share/locale/ro/LC_MESSAGES/sonnet5_qt.qm share/locale/ru/LC_MESSAGES/sonnet5_qt.qm share/locale/se/LC_MESSAGES/sonnet5_qt.qm share/locale/si/LC_MESSAGES/sonnet5_qt.qm share/locale/sk/LC_MESSAGES/sonnet5_qt.qm share/locale/sl/LC_MESSAGES/sonnet5_qt.qm share/locale/sq/LC_MESSAGES/sonnet5_qt.qm share/locale/sr/LC_MESSAGES/sonnet5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/sonnet5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/sonnet5_qt.qm share/locale/sr@latin/LC_MESSAGES/sonnet5_qt.qm share/locale/sv/LC_MESSAGES/sonnet5_qt.qm share/locale/ta/LC_MESSAGES/sonnet5_qt.qm share/locale/te/LC_MESSAGES/sonnet5_qt.qm share/locale/tg/LC_MESSAGES/sonnet5_qt.qm share/locale/th/LC_MESSAGES/sonnet5_qt.qm share/locale/tr/LC_MESSAGES/sonnet5_qt.qm share/locale/tt/LC_MESSAGES/sonnet5_qt.qm share/locale/ug/LC_MESSAGES/sonnet5_qt.qm share/locale/uk/LC_MESSAGES/sonnet5_qt.qm share/locale/uz/LC_MESSAGES/sonnet5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/sonnet5_qt.qm share/locale/vi/LC_MESSAGES/sonnet5_qt.qm share/locale/wa/LC_MESSAGES/sonnet5_qt.qm share/locale/xh/LC_MESSAGES/sonnet5_qt.qm share/locale/zh_CN/LC_MESSAGES/sonnet5_qt.qm share/locale/zh_HK/LC_MESSAGES/sonnet5_qt.qm share/locale/zh_TW/LC_MESSAGES/sonnet5_qt.qm share/qlogging-categories5/sonnet.categories share/qlogging-categories5/sonnet.renamecategories diff --git a/textproc/kf5-syntax-highlighting/distinfo b/textproc/kf5-syntax-highlighting/distinfo index 8ea266e37863..c0f63920f473 100644 --- a/textproc/kf5-syntax-highlighting/distinfo +++ b/textproc/kf5-syntax-highlighting/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689144 -SHA256 (KDE/frameworks/5.99.0/syntax-highlighting-5.99.0.tar.xz) = be0bbfdb7b7ba27ae682db618138a63b8cf4ce0469c7d097b5ca4de36a13097a -SIZE (KDE/frameworks/5.99.0/syntax-highlighting-5.99.0.tar.xz) = 2461708 +TIMESTAMP = 1667804672 +SHA256 (KDE/frameworks/5.100.0/syntax-highlighting-5.100.0.tar.xz) = e0a79487d2d42ad603b650dc8ed09935883f2f1aa1feff087144a01994414cb4 +SIZE (KDE/frameworks/5.100.0/syntax-highlighting-5.100.0.tar.xz) = 3366676 diff --git a/www/kf5-kdewebkit/distinfo b/www/kf5-kdewebkit/distinfo index 77648513fa36..ffcdee5c2e46 100644 --- a/www/kf5-kdewebkit/distinfo +++ b/www/kf5-kdewebkit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689145 -SHA256 (KDE/frameworks/5.99.0/kdewebkit-5.99.0.tar.xz) = 17e210af7a8aa36e45a95c63010d9a7d0106cb06efef744b5e8d2c6cf8303dd4 -SIZE (KDE/frameworks/5.99.0/kdewebkit-5.99.0.tar.xz) = 30080 +TIMESTAMP = 1667804673 +SHA256 (KDE/frameworks/5.100.0/kdewebkit-5.100.0.tar.xz) = 25ec2801a5584e4cfb42d9d7e39b9bacf71b5d901b731b4453b6ac9f1419f481 +SIZE (KDE/frameworks/5.100.0/kdewebkit-5.100.0.tar.xz) = 30084 diff --git a/www/kf5-khtml/distinfo b/www/kf5-khtml/distinfo index 2ca586b464f1..0f7e2ddaebbb 100644 --- a/www/kf5-khtml/distinfo +++ b/www/kf5-khtml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689146 -SHA256 (KDE/frameworks/5.99.0/khtml-5.99.0.tar.xz) = f92f37167b658fbbfb52ccbc3e6f970fa79f1d3069ef3e2de07a50d3518c936f -SIZE (KDE/frameworks/5.99.0/khtml-5.99.0.tar.xz) = 1964536 +TIMESTAMP = 1667804674 +SHA256 (KDE/frameworks/5.100.0/khtml-5.100.0.tar.xz) = 40a5cd6e3a5db5310bca59ccb7a6cbf70f3f45b1a3db9b933882390f6c581c41 +SIZE (KDE/frameworks/5.100.0/khtml-5.100.0.tar.xz) = 4030332 diff --git a/www/kf5-kjs/distinfo b/www/kf5-kjs/distinfo index faf598c32d13..4edc4bbc6359 100644 --- a/www/kf5-kjs/distinfo +++ b/www/kf5-kjs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689147 -SHA256 (KDE/frameworks/5.99.0/kjs-5.99.0.tar.xz) = 40f11254a4c67d679fbda594bf0c5029bf88d555bdb7d31bf4807a28df085e4b -SIZE (KDE/frameworks/5.99.0/kjs-5.99.0.tar.xz) = 339692 +TIMESTAMP = 1667804675 +SHA256 (KDE/frameworks/5.100.0/kjs-5.100.0.tar.xz) = 61729dbb28913bbf46627d4a1f75e553f6666b4fb896a97623e78417f01ac2ae +SIZE (KDE/frameworks/5.100.0/kjs-5.100.0.tar.xz) = 339860 diff --git a/www/kf5-kjsembed/distinfo b/www/kf5-kjsembed/distinfo index 6dcb90e85cb1..4f375c8ce384 100644 --- a/www/kf5-kjsembed/distinfo +++ b/www/kf5-kjsembed/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689149 -SHA256 (KDE/frameworks/5.99.0/kjsembed-5.99.0.tar.xz) = fc89d03bf59732f9436ae88dd20505a49d58a7c7bd46858263cb0462d2262070 -SIZE (KDE/frameworks/5.99.0/kjsembed-5.99.0.tar.xz) = 172272 +TIMESTAMP = 1667804676 +SHA256 (KDE/frameworks/5.100.0/kjsembed-5.100.0.tar.xz) = a7864c09cc7407b045b829fc3ba4a084fea18d183c3a867795c864d326734cf0 +SIZE (KDE/frameworks/5.100.0/kjsembed-5.100.0.tar.xz) = 2518732 diff --git a/x11-themes/kf5-breeze-icons/distinfo b/x11-themes/kf5-breeze-icons/distinfo index 5cd2cbdd7f63..3832290e1a27 100644 --- a/x11-themes/kf5-breeze-icons/distinfo +++ b/x11-themes/kf5-breeze-icons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689150 -SHA256 (KDE/frameworks/5.99.0/breeze-icons-5.99.0.tar.xz) = 480f699c04382c91997ff954e645f134ee513817bde2799675fa484956cd3cfd -SIZE (KDE/frameworks/5.99.0/breeze-icons-5.99.0.tar.xz) = 2156684 +TIMESTAMP = 1667804677 +SHA256 (KDE/frameworks/5.100.0/breeze-icons-5.100.0.tar.xz) = d02c1b6952fddb306ff58f368ffc8d5cbdf0d46afd652c9c56c86020440dcadb +SIZE (KDE/frameworks/5.100.0/breeze-icons-5.100.0.tar.xz) = 2156704 diff --git a/x11-themes/kf5-breeze-icons/pkg-plist b/x11-themes/kf5-breeze-icons/pkg-plist index f478cdaad720..8f5eb334eafa 100644 --- a/x11-themes/kf5-breeze-icons/pkg-plist +++ b/x11-themes/kf5-breeze-icons/pkg-plist @@ -1,22755 +1,22786 @@ share/icons/breeze-dark/actions/12/object-fill.svg share/icons/breeze-dark/actions/12/object-stroke-style.svg share/icons/breeze-dark/actions/12/object-stroke.svg share/icons/breeze-dark/actions/12/transform-affect-gradient.svg share/icons/breeze-dark/actions/12/transform-affect-pattern.svg share/icons/breeze-dark/actions/12/transform-affect-rounded-corners.svg share/icons/breeze-dark/actions/12/transform-affect-stroke.svg share/icons/breeze-dark/actions/16/CVnamespace.svg share/icons/breeze-dark/actions/16/Info-amarok.svg share/icons/breeze-dark/actions/16/PrePostCondition.svg share/icons/breeze-dark/actions/16/accept_signal.svg share/icons/breeze-dark/actions/16/accept_time_event.svg +share/icons/breeze-dark/actions/16/accessories-dictionary-symbolic.svg share/icons/breeze-dark/actions/16/acrobat.svg share/icons/breeze-dark/actions/16/action-albumfolder-importdir2.svg share/icons/breeze-dark/actions/16/action-rss_tag.svg share/icons/breeze-dark/actions/16/activities.svg share/icons/breeze-dark/actions/16/activity-fork.svg share/icons/breeze-dark/actions/16/actor.svg share/icons/breeze-dark/actions/16/add-placemark.svg share/icons/breeze-dark/actions/16/add-subtitle.svg share/icons/breeze-dark/actions/16/address-book-new.svg share/icons/breeze-dark/actions/16/addressbook-details.svg share/icons/breeze-dark/actions/16/adjustcol.svg share/icons/breeze-dark/actions/16/adjustrow.svg share/icons/breeze-dark/actions/16/adress-book-new.svg share/icons/breeze-dark/actions/16/aggregation.svg share/icons/breeze-dark/actions/16/akonadi-phone-home.svg share/icons/breeze-dark/actions/16/albumfolder-importdir.svg share/icons/breeze-dark/actions/16/albumfolder-importimages.svg share/icons/breeze-dark/actions/16/albumfolder-new.svg share/icons/breeze-dark/actions/16/albumfolder-properties.svg share/icons/breeze-dark/actions/16/albumfolder-user-trash.svg share/icons/breeze-dark/actions/16/align-horizontal-baseline.svg share/icons/breeze-dark/actions/16/align-horizontal-bottom-out.svg share/icons/breeze-dark/actions/16/align-horizontal-center.svg share/icons/breeze-dark/actions/16/align-horizontal-left-out.svg share/icons/breeze-dark/actions/16/align-horizontal-left-to-anchor.svg share/icons/breeze-dark/actions/16/align-horizontal-left.svg share/icons/breeze-dark/actions/16/align-horizontal-right-out.svg share/icons/breeze-dark/actions/16/align-horizontal-right-to-anchor.svg share/icons/breeze-dark/actions/16/align-horizontal-right.svg share/icons/breeze-dark/actions/16/align-horizontal-top-out.svg share/icons/breeze-dark/actions/16/align-vertical-baseline.svg share/icons/breeze-dark/actions/16/align-vertical-bottom-out.svg share/icons/breeze-dark/actions/16/align-vertical-bottom-to-anchor.svg share/icons/breeze-dark/actions/16/align-vertical-bottom.svg share/icons/breeze-dark/actions/16/align-vertical-center.svg share/icons/breeze-dark/actions/16/align-vertical-top-out.svg share/icons/breeze-dark/actions/16/align-vertical-top-to-anchor.svg share/icons/breeze-dark/actions/16/align-vertical-top.svg share/icons/breeze-dark/actions/16/amarok_artist.svg share/icons/breeze-dark/actions/16/amarok_cart_add.svg share/icons/breeze-dark/actions/16/amarok_cart_remove.svg share/icons/breeze-dark/actions/16/amarok_cart_view.svg share/icons/breeze-dark/actions/16/amarok_change_language.svg share/icons/breeze-dark/actions/16/amarok_clock.svg share/icons/breeze-dark/actions/16/amarok_lyrics.svg share/icons/breeze-dark/actions/16/amarok_playcount.svg share/icons/breeze-dark/actions/16/amarok_playlist.svg share/icons/breeze-dark/actions/16/amarok_playlist_refresh.svg share/icons/breeze-dark/actions/16/amarok_scripts.svg share/icons/breeze-dark/actions/16/anchor.svg share/icons/breeze-dark/actions/16/animation-stage.svg share/icons/breeze-dark/actions/16/answer-correct.svg share/icons/breeze-dark/actions/16/answer.svg share/icons/breeze-dark/actions/16/application-exit.svg share/icons/breeze-dark/actions/16/application-menu.svg share/icons/breeze-dark/actions/16/appointment-new.svg share/icons/breeze-dark/actions/16/approved.svg share/icons/breeze-dark/actions/16/archive-extract.svg share/icons/breeze-dark/actions/16/archive-insert-directory.svg share/icons/breeze-dark/actions/16/archive-insert.svg share/icons/breeze-dark/actions/16/archive-remove.svg share/icons/breeze-dark/actions/16/arrow-down-double.svg share/icons/breeze-dark/actions/16/arrow-down.svg share/icons/breeze-dark/actions/16/arrow-left-double.svg share/icons/breeze-dark/actions/16/arrow-left.svg share/icons/breeze-dark/actions/16/arrow-right-double.svg share/icons/breeze-dark/actions/16/arrow-right.svg share/icons/breeze-dark/actions/16/arrow-up-double.svg share/icons/breeze-dark/actions/16/arrow-up.svg share/icons/breeze-dark/actions/16/arrow.svg share/icons/breeze-dark/actions/16/artifact.svg share/icons/breeze-dark/actions/16/artistictext-tool.svg share/icons/breeze-dark/actions/16/association.svg share/icons/breeze-dark/actions/16/atmosphere.svg share/icons/breeze-dark/actions/16/auto-scale-all.svg share/icons/breeze-dark/actions/16/auto-scale-x.svg share/icons/breeze-dark/actions/16/auto-scale-y.svg share/icons/breeze-dark/actions/16/autocorrection.svg share/icons/breeze-dark/actions/16/automated-tasks.svg share/icons/breeze-dark/actions/16/backup.svg share/icons/breeze-dark/actions/16/beamerblock.svg share/icons/breeze-dark/actions/16/beamerframe.svg share/icons/breeze-dark/actions/16/bibtex.svg share/icons/breeze-dark/actions/16/bigskip.svg share/icons/breeze-dark/actions/16/bitmap-trace.svg share/icons/breeze-dark/actions/16/black_sum.svg share/icons/breeze-dark/actions/16/bookmark-add-folder.svg share/icons/breeze-dark/actions/16/bookmark-edit.svg share/icons/breeze-dark/actions/16/bookmark-new-list.svg share/icons/breeze-dark/actions/16/bookmark-new.svg share/icons/breeze-dark/actions/16/bookmark-remove.svg share/icons/breeze-dark/actions/16/bookmark-toolbar.svg share/icons/breeze-dark/actions/16/bookmarks-organize.svg share/icons/breeze-dark/actions/16/bookmarks.svg share/icons/breeze-dark/actions/16/borderpainter.svg share/icons/breeze-dark/actions/16/bordertool.svg share/icons/breeze-dark/actions/16/box.svg share/icons/breeze-dark/actions/16/bqm-add.svg share/icons/breeze-dark/actions/16/bqm-addqueue.svg share/icons/breeze-dark/actions/16/bqm-commit.svg share/icons/breeze-dark/actions/16/bqm-diff.svg share/icons/breeze-dark/actions/16/bqm-remove.svg share/icons/breeze-dark/actions/16/bqm-rmqueue.svg share/icons/breeze-dark/actions/16/bqm-update.svg share/icons/breeze-dark/actions/16/branch.svg share/icons/breeze-dark/actions/16/call-start.svg share/icons/breeze-dark/actions/16/call-stop.svg share/icons/breeze-dark/actions/16/call-voicemail.svg share/icons/breeze-dark/actions/16/callout-shape.svg share/icons/breeze-dark/actions/16/cards-block.svg share/icons/breeze-dark/actions/16/category.svg share/icons/breeze-dark/actions/16/category2parent.svg share/icons/breeze-dark/actions/16/cell_edit.svg share/icons/breeze-dark/actions/16/cell_layout.svg share/icons/breeze-dark/actions/16/character-set.svg share/icons/breeze-dark/actions/16/check_constraint.svg share/icons/breeze-dark/actions/16/checkbox.svg share/icons/breeze-dark/actions/16/checkmark.svg share/icons/breeze-dark/actions/16/child2category.svg share/icons/breeze-dark/actions/16/choice-rhomb.svg share/icons/breeze-dark/actions/16/choice-round.svg share/icons/breeze-dark/actions/16/chronometer-lap.svg share/icons/breeze-dark/actions/16/chronometer-pause.svg share/icons/breeze-dark/actions/16/chronometer-reset.svg share/icons/breeze-dark/actions/16/chronometer-start.svg share/icons/breeze-dark/actions/16/chronometer.svg share/icons/breeze-dark/actions/16/circular-arrow-shape.svg share/icons/breeze-dark/actions/16/class-or-package.svg share/icons/breeze-dark/actions/16/class.svg share/icons/breeze-dark/actions/16/clock-large.svg share/icons/breeze-dark/actions/16/clock.svg share/icons/breeze-dark/actions/16/cloud-download.svg share/icons/breeze-dark/actions/16/cloud-upload.svg share/icons/breeze-dark/actions/16/code-block.svg share/icons/breeze-dark/actions/16/code-class.svg share/icons/breeze-dark/actions/16/code-context.svg share/icons/breeze-dark/actions/16/code-function.svg share/icons/breeze-dark/actions/16/code-typedef.svg share/icons/breeze-dark/actions/16/code-variable.svg share/icons/breeze-dark/actions/16/collapse-all.svg share/icons/breeze-dark/actions/16/collapse.svg share/icons/breeze-dark/actions/16/collection-rescan-amarok.svg share/icons/breeze-dark/actions/16/color-fill.svg share/icons/breeze-dark/actions/16/color-gradient.svg share/icons/breeze-dark/actions/16/color-management.svg share/icons/breeze-dark/actions/16/color-mode-black-white.svg share/icons/breeze-dark/actions/16/color-mode-hue-shift-negative.svg share/icons/breeze-dark/actions/16/color-mode-hue-shift-positive.svg share/icons/breeze-dark/actions/16/color-mode-invert-image.svg share/icons/breeze-dark/actions/16/color-mode-invert-text.svg share/icons/breeze-dark/actions/16/color-picker-black.svg share/icons/breeze-dark/actions/16/color-picker-grey.svg share/icons/breeze-dark/actions/16/color-picker-white.svg share/icons/breeze-dark/actions/16/color-picker.svg share/icons/breeze-dark/actions/16/colormanagement.svg share/icons/breeze-dark/actions/16/colors-chromablue.svg share/icons/breeze-dark/actions/16/colors-chromagreen.svg share/icons/breeze-dark/actions/16/colors-chromared.svg share/icons/breeze-dark/actions/16/colors-luma.svg share/icons/breeze-dark/actions/16/combined_fragment.svg share/icons/breeze-dark/actions/16/compass.svg share/icons/breeze-dark/actions/16/component.svg share/icons/breeze-dark/actions/16/composition.svg share/icons/breeze-dark/actions/16/configure-shortcuts.svg share/icons/breeze-dark/actions/16/configure-toolbars.svg share/icons/breeze-dark/actions/16/configure.svg share/icons/breeze-dark/actions/16/configure_kile.svg share/icons/breeze-dark/actions/16/configure_project.svg share/icons/breeze-dark/actions/16/contact-new.svg share/icons/breeze-dark/actions/16/containment.svg share/icons/breeze-dark/actions/16/contents.svg share/icons/breeze-dark/actions/16/convert.svg share/icons/breeze-dark/actions/16/createpath.svg share/icons/breeze-dark/actions/16/cross-shape.svg share/icons/breeze-dark/actions/16/crosshairs.svg share/icons/breeze-dark/actions/16/cursor-arrow.svg share/icons/breeze-dark/actions/16/curve-connector.svg share/icons/breeze-dark/actions/16/dashboard-show.svg share/icons/breeze-dark/actions/16/database-index.svg share/icons/breeze-dark/actions/16/datatype.svg share/icons/breeze-dark/actions/16/dblatex.svg share/icons/breeze-dark/actions/16/debug-execute-from-cursor.svg share/icons/breeze-dark/actions/16/debug-execute-to-cursor.svg share/icons/breeze-dark/actions/16/debug-run-cursor.svg share/icons/breeze-dark/actions/16/debug-run.svg share/icons/breeze-dark/actions/16/debug-step-instruction.svg share/icons/breeze-dark/actions/16/debug-step-into-instruction.svg share/icons/breeze-dark/actions/16/debug-step-into.svg share/icons/breeze-dark/actions/16/debug-step-out.svg share/icons/breeze-dark/actions/16/debug-step-over.svg share/icons/breeze-dark/actions/16/deep-history.svg share/icons/breeze-dark/actions/16/delete-comment.svg share/icons/breeze-dark/actions/16/delete-table-row.svg share/icons/breeze-dark/actions/16/delete.svg share/icons/breeze-dark/actions/16/delete_table.svg share/icons/breeze-dark/actions/16/deletecell.svg share/icons/breeze-dark/actions/16/dependency.svg share/icons/breeze-dark/actions/16/diag_activity.svg share/icons/breeze-dark/actions/16/diag_class.svg share/icons/breeze-dark/actions/16/diag_component.svg share/icons/breeze-dark/actions/16/dialog-align-and-distribute.svg share/icons/breeze-dark/actions/16/dialog-cancel.svg share/icons/breeze-dark/actions/16/dialog-close.svg share/icons/breeze-dark/actions/16/dialog-fill-and-stroke.svg share/icons/breeze-dark/actions/16/dialog-filters.svg share/icons/breeze-dark/actions/16/dialog-icon-preview.svg share/icons/breeze-dark/actions/16/dialog-input-devices.svg share/icons/breeze-dark/actions/16/dialog-layers.svg share/icons/breeze-dark/actions/16/dialog-memory.svg share/icons/breeze-dark/actions/16/dialog-messages.svg share/icons/breeze-dark/actions/16/dialog-object-properties.svg share/icons/breeze-dark/actions/16/dialog-ok-apply.svg share/icons/breeze-dark/actions/16/dialog-ok.svg share/icons/breeze-dark/actions/16/dialog-rows-and-columns.svg share/icons/breeze-dark/actions/16/dialog-scripts.svg share/icons/breeze-dark/actions/16/dialog-text-and-font.svg share/icons/breeze-dark/actions/16/dialog-tile-clones.svg share/icons/breeze-dark/actions/16/dialog-transform.svg share/icons/breeze-dark/actions/16/dialog-xml-editor.svg share/icons/breeze-dark/actions/16/dirsync.svg share/icons/breeze-dark/actions/16/displaymathmode.svg share/icons/breeze-dark/actions/16/dissociatecell.svg share/icons/breeze-dark/actions/16/distortionfx.svg share/icons/breeze-dark/actions/16/distribute-horizontal-baseline.svg share/icons/breeze-dark/actions/16/distribute-horizontal-center.svg share/icons/breeze-dark/actions/16/distribute-horizontal-equal.svg share/icons/breeze-dark/actions/16/distribute-horizontal-gaps.svg share/icons/breeze-dark/actions/16/distribute-horizontal-left.svg share/icons/breeze-dark/actions/16/distribute-horizontal-margin.svg share/icons/breeze-dark/actions/16/distribute-horizontal-page.svg share/icons/breeze-dark/actions/16/distribute-horizontal-right.svg share/icons/breeze-dark/actions/16/distribute-horizontal-x.svg share/icons/breeze-dark/actions/16/distribute-horizontal.svg share/icons/breeze-dark/actions/16/distribute-vertical-baseline.svg share/icons/breeze-dark/actions/16/distribute-vertical-bottom.svg share/icons/breeze-dark/actions/16/distribute-vertical-center.svg share/icons/breeze-dark/actions/16/distribute-vertical-equal.svg share/icons/breeze-dark/actions/16/distribute-vertical-gaps.svg share/icons/breeze-dark/actions/16/distribute-vertical-margin.svg share/icons/breeze-dark/actions/16/distribute-vertical-page.svg share/icons/breeze-dark/actions/16/distribute-vertical-top.svg share/icons/breeze-dark/actions/16/distribute-vertical-y.svg share/icons/breeze-dark/actions/16/distribute-vertical.svg share/icons/breeze-dark/actions/16/document-cleanup.svg share/icons/breeze-dark/actions/16/document-close.svg share/icons/breeze-dark/actions/16/document-compareleft.svg share/icons/breeze-dark/actions/16/document-compareright.svg share/icons/breeze-dark/actions/16/document-decrypt.svg share/icons/breeze-dark/actions/16/document-duplicate.svg share/icons/breeze-dark/actions/16/document-edit-decrypt-verify.svg share/icons/breeze-dark/actions/16/document-edit-decrypt.svg share/icons/breeze-dark/actions/16/document-edit-encrypt.svg share/icons/breeze-dark/actions/16/document-edit-sign-encrypt.svg share/icons/breeze-dark/actions/16/document-edit-sign.svg share/icons/breeze-dark/actions/16/document-edit-verify.svg share/icons/breeze-dark/actions/16/document-edit.svg share/icons/breeze-dark/actions/16/document-encrypt.svg share/icons/breeze-dark/actions/16/document-encrypted.svg share/icons/breeze-dark/actions/16/document-equal.svg share/icons/breeze-dark/actions/16/document-export-ocal.svg share/icons/breeze-dark/actions/16/document-export-table.svg share/icons/breeze-dark/actions/16/document-export.svg share/icons/breeze-dark/actions/16/document-import-ocal.svg share/icons/breeze-dark/actions/16/document-import.svg share/icons/breeze-dark/actions/16/document-multiple.svg share/icons/breeze-dark/actions/16/document-new-from-template.svg share/icons/breeze-dark/actions/16/document-new.svg share/icons/breeze-dark/actions/16/document-open-data.svg share/icons/breeze-dark/actions/16/document-open-folder.svg share/icons/breeze-dark/actions/16/document-open-recent.svg share/icons/breeze-dark/actions/16/document-open-remote.svg share/icons/breeze-dark/actions/16/document-open.svg share/icons/breeze-dark/actions/16/document-preview-archive.svg share/icons/breeze-dark/actions/16/document-preview.svg share/icons/breeze-dark/actions/16/document-print-direct.svg share/icons/breeze-dark/actions/16/document-print-frame.svg share/icons/breeze-dark/actions/16/document-print-preview.svg share/icons/breeze-dark/actions/16/document-print.svg share/icons/breeze-dark/actions/16/document-properties.svg share/icons/breeze-dark/actions/16/document-replace.svg share/icons/breeze-dark/actions/16/document-revert.svg share/icons/breeze-dark/actions/16/document-save-all.svg share/icons/breeze-dark/actions/16/document-save-as.svg share/icons/breeze-dark/actions/16/document-save.svg share/icons/breeze-dark/actions/16/document-scan.svg share/icons/breeze-dark/actions/16/document-send.svg share/icons/breeze-dark/actions/16/document-share.svg share/icons/breeze-dark/actions/16/document-sign.svg share/icons/breeze-dark/actions/16/document-single.svg share/icons/breeze-dark/actions/16/document-swap.svg share/icons/breeze-dark/actions/16/document-unequal.svg share/icons/breeze-dark/actions/16/documentation.svg share/icons/breeze-dark/actions/16/documentinfo.svg share/icons/breeze-dark/actions/16/donate.svg share/icons/breeze-dark/actions/16/download-amarok.svg share/icons/breeze-dark/actions/16/download-later.svg share/icons/breeze-dark/actions/16/download.svg share/icons/breeze-dark/actions/16/draw-arrow-back.svg share/icons/breeze-dark/actions/16/draw-arrow-down.svg share/icons/breeze-dark/actions/16/draw-arrow-forward.svg share/icons/breeze-dark/actions/16/draw-arrow-up.svg share/icons/breeze-dark/actions/16/draw-arrow.svg share/icons/breeze-dark/actions/16/draw-bezier-curves.svg share/icons/breeze-dark/actions/16/draw-brush.svg share/icons/breeze-dark/actions/16/draw-circle.svg share/icons/breeze-dark/actions/16/draw-connector.svg share/icons/breeze-dark/actions/16/draw-cross.svg share/icons/breeze-dark/actions/16/draw-cuboid.svg share/icons/breeze-dark/actions/16/draw-donut.svg share/icons/breeze-dark/actions/16/draw-ellipse-arc.svg share/icons/breeze-dark/actions/16/draw-ellipse-segment.svg share/icons/breeze-dark/actions/16/draw-ellipse-whole.svg share/icons/breeze-dark/actions/16/draw-ellipse.svg share/icons/breeze-dark/actions/16/draw-eraser-delete-objects.svg share/icons/breeze-dark/actions/16/draw-eraser.svg share/icons/breeze-dark/actions/16/draw-freehand.svg share/icons/breeze-dark/actions/16/draw-halfcircle1.svg share/icons/breeze-dark/actions/16/draw-halfcircle2.svg share/icons/breeze-dark/actions/16/draw-halfcircle3.svg share/icons/breeze-dark/actions/16/draw-halfcircle4.svg share/icons/breeze-dark/actions/16/draw-highlight.svg share/icons/breeze-dark/actions/16/draw-line.svg share/icons/breeze-dark/actions/16/draw-path.svg share/icons/breeze-dark/actions/16/draw-polygon-star.svg share/icons/breeze-dark/actions/16/draw-polygon.svg share/icons/breeze-dark/actions/16/draw-polyline.svg share/icons/breeze-dark/actions/16/draw-rectangle-rounded.svg share/icons/breeze-dark/actions/16/draw-rectangle.svg share/icons/breeze-dark/actions/16/draw-spiral.svg share/icons/breeze-dark/actions/16/draw-square-inverted-corners.svg share/icons/breeze-dark/actions/16/draw-star.svg share/icons/breeze-dark/actions/16/draw-text.svg share/icons/breeze-dark/actions/16/draw-triangle.svg share/icons/breeze-dark/actions/16/draw-triangle1.svg share/icons/breeze-dark/actions/16/draw-triangle2.svg share/icons/breeze-dark/actions/16/draw-triangle3.svg share/icons/breeze-dark/actions/16/draw-triangle4.svg share/icons/breeze-dark/actions/16/draw-watercolor.svg share/icons/breeze-dark/actions/16/dvipdf.svg share/icons/breeze-dark/actions/16/dvipng.svg share/icons/breeze-dark/actions/16/dvips.svg share/icons/breeze-dark/actions/16/dynamic-amarok.svg share/icons/breeze-dark/actions/16/edit-bomb.svg share/icons/breeze-dark/actions/16/edit-clear-all.svg share/icons/breeze-dark/actions/16/edit-clear-history.svg share/icons/breeze-dark/actions/16/edit-clear-list.svg share/icons/breeze-dark/actions/16/edit-clear-locationbar-ltr.svg share/icons/breeze-dark/actions/16/edit-clear-locationbar-rtl.svg share/icons/breeze-dark/actions/16/edit-clear.svg share/icons/breeze-dark/actions/16/edit-clone-unlink.svg share/icons/breeze-dark/actions/16/edit-clone.svg share/icons/breeze-dark/actions/16/edit-comment.svg share/icons/breeze-dark/actions/16/edit-copy-path.svg share/icons/breeze-dark/actions/16/edit-copy.svg share/icons/breeze-dark/actions/16/edit-cut.svg share/icons/breeze-dark/actions/16/edit-delete-remove.svg share/icons/breeze-dark/actions/16/edit-delete-shred.svg share/icons/breeze-dark/actions/16/edit-delete.svg share/icons/breeze-dark/actions/16/edit-download.svg share/icons/breeze-dark/actions/16/edit-duplicate.svg share/icons/breeze-dark/actions/16/edit-entry.svg share/icons/breeze-dark/actions/16/edit-find-mail.svg share/icons/breeze-dark/actions/16/edit-find-project.svg share/icons/breeze-dark/actions/16/edit-find-replace.svg share/icons/breeze-dark/actions/16/edit-find-user.svg share/icons/breeze-dark/actions/16/edit-find.svg share/icons/breeze-dark/actions/16/edit-guides.svg share/icons/breeze-dark/actions/16/edit-image-face-add.svg share/icons/breeze-dark/actions/16/edit-image-face-detect.svg share/icons/breeze-dark/actions/16/edit-image-face-recognize.svg share/icons/breeze-dark/actions/16/edit-image-face-show.svg share/icons/breeze-dark/actions/16/edit-image.svg share/icons/breeze-dark/actions/16/edit-line-width.svg share/icons/breeze-dark/actions/16/edit-link.svg share/icons/breeze-dark/actions/16/edit-map.svg share/icons/breeze-dark/actions/16/edit-move.svg share/icons/breeze-dark/actions/16/edit-node.svg share/icons/breeze-dark/actions/16/edit-none.svg share/icons/breeze-dark/actions/16/edit-opacity.svg share/icons/breeze-dark/actions/16/edit-paste-in-place.svg share/icons/breeze-dark/actions/16/edit-paste-style.svg share/icons/breeze-dark/actions/16/edit-paste.svg share/icons/breeze-dark/actions/16/edit-redo.svg share/icons/breeze-dark/actions/16/edit-rename.svg share/icons/breeze-dark/actions/16/edit-reset.svg share/icons/breeze-dark/actions/16/edit-select-all-layers.svg share/icons/breeze-dark/actions/16/edit-select-all.svg share/icons/breeze-dark/actions/16/edit-select-invert.svg share/icons/breeze-dark/actions/16/edit-select-none.svg share/icons/breeze-dark/actions/16/edit-select-original.svg share/icons/breeze-dark/actions/16/edit-select-text.svg share/icons/breeze-dark/actions/16/edit-select.svg share/icons/breeze-dark/actions/16/edit-table-cell-merge.svg share/icons/breeze-dark/actions/16/edit-table-cell-split.svg share/icons/breeze-dark/actions/16/edit-table-delete-column.svg share/icons/breeze-dark/actions/16/edit-table-delete-row.svg share/icons/breeze-dark/actions/16/edit-table-insert-column-left.svg share/icons/breeze-dark/actions/16/edit-table-insert-column-right.svg share/icons/breeze-dark/actions/16/edit-table-insert-row-above.svg share/icons/breeze-dark/actions/16/edit-table-insert-row-below.svg share/icons/breeze-dark/actions/16/edit-table-insert-row-under.svg share/icons/breeze-dark/actions/16/edit-text-frame-update.svg share/icons/breeze-dark/actions/16/edit-undo-history.svg share/icons/breeze-dark/actions/16/edit-undo.svg share/icons/breeze-dark/actions/16/editimage.svg share/icons/breeze-dark/actions/16/editor.svg share/icons/breeze-dark/actions/16/editpath.svg share/icons/breeze-dark/actions/16/edittext.svg share/icons/breeze-dark/actions/16/ellipse-shape.svg share/icons/breeze-dark/actions/16/emph.svg share/icons/breeze-dark/actions/16/end_of_life.svg share/icons/breeze-dark/actions/16/end_state.svg share/icons/breeze-dark/actions/16/entity.svg share/icons/breeze-dark/actions/16/entry-clone.svg share/icons/breeze-dark/actions/16/entry-delete.svg share/icons/breeze-dark/actions/16/entry-edit.svg share/icons/breeze-dark/actions/16/enum.svg share/icons/breeze-dark/actions/16/enumerate.svg share/icons/breeze-dark/actions/16/error.svg share/icons/breeze-dark/actions/16/escape-direction-all.svg share/icons/breeze-dark/actions/16/escape-direction-down.svg share/icons/breeze-dark/actions/16/escape-direction-horizontal.svg share/icons/breeze-dark/actions/16/escape-direction-left.svg share/icons/breeze-dark/actions/16/escape-direction-right.svg share/icons/breeze-dark/actions/16/escape-direction-up.svg share/icons/breeze-dark/actions/16/escape-direction-vertical.svg share/icons/breeze-dark/actions/16/exception.svg share/icons/breeze-dark/actions/16/exifinfo.svg share/icons/breeze-dark/actions/16/expand-all.svg share/icons/breeze-dark/actions/16/expand.svg share/icons/breeze-dark/actions/16/favorite-genres-amarok.svg share/icons/breeze-dark/actions/16/feed-subscribe.svg share/icons/breeze-dark/actions/16/file-zoom-in.svg share/icons/breeze-dark/actions/16/file-zoom-out.svg share/icons/breeze-dark/actions/16/filegrep.svg share/icons/breeze-dark/actions/16/filename-album-amarok.svg share/icons/breeze-dark/actions/16/filename-and-amarok.svg share/icons/breeze-dark/actions/16/filename-artist-amarok.svg share/icons/breeze-dark/actions/16/filename-bpm-amarok.svg share/icons/breeze-dark/actions/16/filename-comment-amarok.svg share/icons/breeze-dark/actions/16/filename-composer-amarok.svg share/icons/breeze-dark/actions/16/filename-dash-amarok.svg share/icons/breeze-dark/actions/16/filename-discnumber-amarok.svg share/icons/breeze-dark/actions/16/filename-divider.svg share/icons/breeze-dark/actions/16/filename-dot-amarok.svg share/icons/breeze-dark/actions/16/filename-filetype-amarok.svg share/icons/breeze-dark/actions/16/filename-genre-amarok.svg share/icons/breeze-dark/actions/16/filename-group-length.svg share/icons/breeze-dark/actions/16/filename-group-tracks.svg share/icons/breeze-dark/actions/16/filename-ignore-amarok.svg share/icons/breeze-dark/actions/16/filename-initial-amarok.svg share/icons/breeze-dark/actions/16/filename-last-played.svg share/icons/breeze-dark/actions/16/filename-moodbar.svg share/icons/breeze-dark/actions/16/filename-sample-rate.svg share/icons/breeze-dark/actions/16/filename-slash-amarok.svg share/icons/breeze-dark/actions/16/filename-space-amarok.svg share/icons/breeze-dark/actions/16/filename-title-amarok.svg share/icons/breeze-dark/actions/16/filename-track-amarok.svg share/icons/breeze-dark/actions/16/filename-underscore-amarok.svg share/icons/breeze-dark/actions/16/filename-year-amarok.svg share/icons/breeze-dark/actions/16/fileview-preview.svg share/icons/breeze-dark/actions/16/fill-color.svg share/icons/breeze-dark/actions/16/fill-rule-even-odd.svg share/icons/breeze-dark/actions/16/fill-rule-nonzero.svg share/icons/breeze-dark/actions/16/final_activity.svg share/icons/breeze-dark/actions/16/find-location.svg share/icons/breeze-dark/actions/16/flag-black.svg share/icons/breeze-dark/actions/16/flag-blue.svg share/icons/breeze-dark/actions/16/flag-green.svg share/icons/breeze-dark/actions/16/flag-red.svg share/icons/breeze-dark/actions/16/flag-yellow.svg share/icons/breeze-dark/actions/16/flag.svg share/icons/breeze-dark/actions/16/flash.svg share/icons/breeze-dark/actions/16/flashlight-off.svg share/icons/breeze-dark/actions/16/flashlight-on.svg share/icons/breeze-dark/actions/16/folder-new.svg share/icons/breeze-dark/actions/16/folder-open-recent.svg share/icons/breeze-dark/actions/16/folder-stash.svg share/icons/breeze-dark/actions/16/folder-sync.svg share/icons/breeze-dark/actions/16/followmouse.svg share/icons/breeze-dark/actions/16/font-disable.svg share/icons/breeze-dark/actions/16/font-enable.svg share/icons/breeze-dark/actions/16/font-face.svg share/icons/breeze-dark/actions/16/font-size-down.svg share/icons/breeze-dark/actions/16/font-size-up.svg share/icons/breeze-dark/actions/16/font.svg share/icons/breeze-dark/actions/16/foreign_green.svg share/icons/breeze-dark/actions/16/foreign_red.svg share/icons/breeze-dark/actions/16/foreignkey_constraint.svg share/icons/breeze-dark/actions/16/fork.svg share/icons/breeze-dark/actions/16/format-add-node.svg share/icons/breeze-dark/actions/16/format-align-vertical-bottom.svg share/icons/breeze-dark/actions/16/format-align-vertical-center.svg share/icons/breeze-dark/actions/16/format-align-vertical-top.svg share/icons/breeze-dark/actions/16/format-border-set-all.svg share/icons/breeze-dark/actions/16/format-border-set-bottom.svg share/icons/breeze-dark/actions/16/format-border-set-diagonal-bl-tr.svg share/icons/breeze-dark/actions/16/format-border-set-diagonal-tl-br.svg share/icons/breeze-dark/actions/16/format-border-set-external.svg share/icons/breeze-dark/actions/16/format-border-set-internal-horizontal.svg share/icons/breeze-dark/actions/16/format-border-set-internal-vertical.svg share/icons/breeze-dark/actions/16/format-border-set-internal.svg share/icons/breeze-dark/actions/16/format-border-set-left.svg share/icons/breeze-dark/actions/16/format-border-set-none.svg share/icons/breeze-dark/actions/16/format-border-set-right.svg share/icons/breeze-dark/actions/16/format-border-set-top.svg share/icons/breeze-dark/actions/16/format-border-style.svg share/icons/breeze-dark/actions/16/format-break-node.svg share/icons/breeze-dark/actions/16/format-connect-node.svg share/icons/breeze-dark/actions/16/format-disconnect-node.svg share/icons/breeze-dark/actions/16/format-fill-color.svg share/icons/breeze-dark/actions/16/format-font-size-less.svg share/icons/breeze-dark/actions/16/format-font-size-more.svg share/icons/breeze-dark/actions/16/format-indent-less.svg share/icons/breeze-dark/actions/16/format-indent-more.svg share/icons/breeze-dark/actions/16/format-join-node.svg share/icons/breeze-dark/actions/16/format-justify-center.svg share/icons/breeze-dark/actions/16/format-justify-fill.svg share/icons/breeze-dark/actions/16/format-justify-left.svg share/icons/breeze-dark/actions/16/format-justify-right.svg share/icons/breeze-dark/actions/16/format-line-spacing-double.svg share/icons/breeze-dark/actions/16/format-line-spacing-normal.svg share/icons/breeze-dark/actions/16/format-line-spacing-triple.svg share/icons/breeze-dark/actions/16/format-list-ordered.svg share/icons/breeze-dark/actions/16/format-list-unordered.svg share/icons/breeze-dark/actions/16/format-number-percent.svg share/icons/breeze-dark/actions/16/format-precision-less.svg share/icons/breeze-dark/actions/16/format-precision-more.svg share/icons/breeze-dark/actions/16/format-remove-node.svg share/icons/breeze-dark/actions/16/format-stroke-color.svg share/icons/breeze-dark/actions/16/format-text-blockquote.svg share/icons/breeze-dark/actions/16/format-text-bold.svg share/icons/breeze-dark/actions/16/format-text-capitalize.svg share/icons/breeze-dark/actions/16/format-text-code.svg share/icons/breeze-dark/actions/16/format-text-color.svg share/icons/breeze-dark/actions/16/format-text-direction-horizontal.svg share/icons/breeze-dark/actions/16/format-text-direction-ltr.svg share/icons/breeze-dark/actions/16/format-text-direction-rtl.svg share/icons/breeze-dark/actions/16/format-text-direction-vertical.svg share/icons/breeze-dark/actions/16/format-text-italic.svg share/icons/breeze-dark/actions/16/format-text-lowercase.svg share/icons/breeze-dark/actions/16/format-text-strikethrough.svg share/icons/breeze-dark/actions/16/format-text-subscript.svg share/icons/breeze-dark/actions/16/format-text-superscript.svg share/icons/breeze-dark/actions/16/format-text-symbol.svg share/icons/breeze-dark/actions/16/format-text-underline-squiggle.svg share/icons/breeze-dark/actions/16/format-text-underline.svg share/icons/breeze-dark/actions/16/format-text-uppercase.svg share/icons/breeze-dark/actions/16/formula.svg share/icons/breeze-dark/actions/16/freerotation.svg share/icons/breeze-dark/actions/16/games-achievements.svg share/icons/breeze-dark/actions/16/games-config-background.svg share/icons/breeze-dark/actions/16/games-config-board.svg share/icons/breeze-dark/actions/16/games-config-custom.svg share/icons/breeze-dark/actions/16/games-config-options.svg share/icons/breeze-dark/actions/16/games-config-theme.svg share/icons/breeze-dark/actions/16/games-config-tiles.svg share/icons/breeze-dark/actions/16/games-difficult.svg share/icons/breeze-dark/actions/16/games-endturn.svg share/icons/breeze-dark/actions/16/games-highscores.svg share/icons/breeze-dark/actions/16/games-hint.svg share/icons/breeze-dark/actions/16/games-solve.svg share/icons/breeze-dark/actions/16/geany-build.svg share/icons/breeze-dark/actions/16/geany-close-all.svg share/icons/breeze-dark/actions/16/geany-save-all.svg share/icons/breeze-dark/actions/16/gearhead-shape.svg share/icons/breeze-dark/actions/16/generalisation.svg share/icons/breeze-dark/actions/16/generalise.svg share/icons/breeze-dark/actions/16/get-hot-new-stuff.svg share/icons/breeze-dark/actions/16/globe.svg share/icons/breeze-dark/actions/16/gnumeric-autofilter-delete.svg share/icons/breeze-dark/actions/16/gnumeric-autofilter.svg share/icons/breeze-dark/actions/16/gnumeric-brush.svg share/icons/breeze-dark/actions/16/gnumeric-cells-merge.svg share/icons/breeze-dark/actions/16/gnumeric-cells-split.svg share/icons/breeze-dark/actions/16/gnumeric-column-add.svg share/icons/breeze-dark/actions/16/gnumeric-column-delete.svg share/icons/breeze-dark/actions/16/gnumeric-column-hide.svg share/icons/breeze-dark/actions/16/gnumeric-column-size.svg share/icons/breeze-dark/actions/16/gnumeric-column-unhide.svg share/icons/breeze-dark/actions/16/gnumeric-comment-add.svg share/icons/breeze-dark/actions/16/gnumeric-comment-delete.svg share/icons/breeze-dark/actions/16/gnumeric-comment-edit.svg share/icons/breeze-dark/actions/16/gnumeric-component-insert-shaped.svg share/icons/breeze-dark/actions/16/gnumeric-data-slicer.svg share/icons/breeze-dark/actions/16/gnumeric-font.svg share/icons/breeze-dark/actions/16/gnumeric-format-border-bottom.svg share/icons/breeze-dark/actions/16/gnumeric-format-border-diag.svg share/icons/breeze-dark/actions/16/gnumeric-format-border-left.svg share/icons/breeze-dark/actions/16/gnumeric-format-border-rev-diag.svg share/icons/breeze-dark/actions/16/gnumeric-format-border-right.svg share/icons/breeze-dark/actions/16/gnumeric-format-border-top.svg share/icons/breeze-dark/actions/16/gnumeric-formulaguru.svg share/icons/breeze-dark/actions/16/gnumeric-graphguru.svg share/icons/breeze-dark/actions/16/gnumeric-group.svg share/icons/breeze-dark/actions/16/gnumeric-link-add.svg share/icons/breeze-dark/actions/16/gnumeric-link-delete.svg share/icons/breeze-dark/actions/16/gnumeric-link-edit.svg share/icons/breeze-dark/actions/16/gnumeric-link-email.svg share/icons/breeze-dark/actions/16/gnumeric-link-external.svg share/icons/breeze-dark/actions/16/gnumeric-link-internal.svg share/icons/breeze-dark/actions/16/gnumeric-link-url.svg share/icons/breeze-dark/actions/16/gnumeric-pagesetup-hf-page.svg share/icons/breeze-dark/actions/16/gnumeric-pagesetup-hf-pages.svg share/icons/breeze-dark/actions/16/gnumeric-pivottable.svg share/icons/breeze-dark/actions/16/gnumeric-row-add.svg share/icons/breeze-dark/actions/16/gnumeric-row-delete.svg share/icons/breeze-dark/actions/16/gnumeric-row-hide.svg share/icons/breeze-dark/actions/16/gnumeric-row-size.svg share/icons/breeze-dark/actions/16/gnumeric-row-unhide.svg share/icons/breeze-dark/actions/16/gnumeric-subscript.svg share/icons/breeze-dark/actions/16/gnumeric-superscript.svg share/icons/breeze-dark/actions/16/gnumeric-ungroup.svg share/icons/breeze-dark/actions/16/gnumeric-visible.svg share/icons/breeze-dark/actions/16/go-bottom.svg share/icons/breeze-dark/actions/16/go-down-search.svg share/icons/breeze-dark/actions/16/go-down-skip.svg share/icons/breeze-dark/actions/16/go-down.svg share/icons/breeze-dark/actions/16/go-first-view-page.svg share/icons/breeze-dark/actions/16/go-first-view.svg share/icons/breeze-dark/actions/16/go-first.svg share/icons/breeze-dark/actions/16/go-home-large.svg share/icons/breeze-dark/actions/16/go-home.svg share/icons/breeze-dark/actions/16/go-jump-declaration.svg share/icons/breeze-dark/actions/16/go-jump-definition.svg share/icons/breeze-dark/actions/16/go-jump-locationbar.svg share/icons/breeze-dark/actions/16/go-jump-today.svg share/icons/breeze-dark/actions/16/go-jump.svg share/icons/breeze-dark/actions/16/go-last-view-page.svg share/icons/breeze-dark/actions/16/go-last-view.svg share/icons/breeze-dark/actions/16/go-last.svg share/icons/breeze-dark/actions/16/go-next-context.svg share/icons/breeze-dark/actions/16/go-next-skip.svg share/icons/breeze-dark/actions/16/go-next-use.svg share/icons/breeze-dark/actions/16/go-next-view-page.svg share/icons/breeze-dark/actions/16/go-next-view.svg share/icons/breeze-dark/actions/16/go-next.svg share/icons/breeze-dark/actions/16/go-parent-folder.svg share/icons/breeze-dark/actions/16/go-previous-context.svg share/icons/breeze-dark/actions/16/go-previous-skip.svg share/icons/breeze-dark/actions/16/go-previous-use.svg share/icons/breeze-dark/actions/16/go-previous-view-page.svg share/icons/breeze-dark/actions/16/go-previous-view.svg share/icons/breeze-dark/actions/16/go-previous.svg share/icons/breeze-dark/actions/16/go-top.svg share/icons/breeze-dark/actions/16/go-up-search.svg share/icons/breeze-dark/actions/16/go-up-skip.svg share/icons/breeze-dark/actions/16/go-up.svg share/icons/breeze-dark/actions/16/gpg.svg share/icons/breeze-dark/actions/16/gpgsm.svg share/icons/breeze-dark/actions/16/gps.svg share/icons/breeze-dark/actions/16/gradient.svg share/icons/breeze-dark/actions/16/graphics.svg share/icons/breeze-dark/actions/16/grid-axonometric.svg share/icons/breeze-dark/actions/16/grid-rectangular.svg share/icons/breeze-dark/actions/16/group-delete.svg share/icons/breeze-dark/actions/16/group-edit.svg share/icons/breeze-dark/actions/16/group-new.svg share/icons/breeze-dark/actions/16/group.svg share/icons/breeze-dark/actions/16/gtk-add.svg share/icons/breeze-dark/actions/16/gtk-apply.svg share/icons/breeze-dark/actions/16/gtk-authentication.svg share/icons/breeze-dark/actions/16/gtk-bold.svg share/icons/breeze-dark/actions/16/gtk-cancel.svg share/icons/breeze-dark/actions/16/gtk-cdrom.svg share/icons/breeze-dark/actions/16/gtk-clear.svg share/icons/breeze-dark/actions/16/gtk-close.svg share/icons/breeze-dark/actions/16/gtk-color-picker.svg share/icons/breeze-dark/actions/16/gtk-connect.svg share/icons/breeze-dark/actions/16/gtk-convert.svg share/icons/breeze-dark/actions/16/gtk-disconnect.svg share/icons/breeze-dark/actions/16/gtk-edit.svg share/icons/breeze-dark/actions/16/gtk-execute.svg share/icons/breeze-dark/actions/16/gtk-floppy.svg share/icons/breeze-dark/actions/16/gtk-index.svg share/icons/breeze-dark/actions/16/gtk-no.svg share/icons/breeze-dark/actions/16/gtk-ok.svg share/icons/breeze-dark/actions/16/gtk-preferences.svg share/icons/breeze-dark/actions/16/gtk-properties.svg share/icons/breeze-dark/actions/16/gtk-quit.svg share/icons/breeze-dark/actions/16/gtk-select-color.svg share/icons/breeze-dark/actions/16/gtk-select-font.svg share/icons/breeze-dark/actions/16/gtk-stop.svg share/icons/breeze-dark/actions/16/gtk-undelete-ltr.svg share/icons/breeze-dark/actions/16/gtk-undelete-rtl.svg share/icons/breeze-dark/actions/16/gtk-yes.svg share/icons/breeze-dark/actions/16/guides.svg share/icons/breeze-dark/actions/16/help-about.svg share/icons/breeze-dark/actions/16/help-contents.svg share/icons/breeze-dark/actions/16/help-contextual.svg share/icons/breeze-dark/actions/16/help-donate-ars.svg share/icons/breeze-dark/actions/16/help-donate-aud.svg share/icons/breeze-dark/actions/16/help-donate-brl.svg share/icons/breeze-dark/actions/16/help-donate-cad.svg share/icons/breeze-dark/actions/16/help-donate-chf.svg share/icons/breeze-dark/actions/16/help-donate-cny.svg share/icons/breeze-dark/actions/16/help-donate-eur.svg share/icons/breeze-dark/actions/16/help-donate-gbp.svg share/icons/breeze-dark/actions/16/help-donate-inr.svg share/icons/breeze-dark/actions/16/help-donate-jpy.svg share/icons/breeze-dark/actions/16/help-donate-mxn.svg share/icons/breeze-dark/actions/16/help-donate-pln.svg share/icons/breeze-dark/actions/16/help-donate-rub.svg share/icons/breeze-dark/actions/16/help-donate-sek.svg share/icons/breeze-dark/actions/16/help-donate-try.svg share/icons/breeze-dark/actions/16/help-donate-uah.svg share/icons/breeze-dark/actions/16/help-donate-usd.svg share/icons/breeze-dark/actions/16/help-donate.svg share/icons/breeze-dark/actions/16/help-feedback.svg share/icons/breeze-dark/actions/16/help-hint.svg share/icons/breeze-dark/actions/16/help-keybord-shortcuts.svg share/icons/breeze-dark/actions/16/help-latex.svg share/icons/breeze-dark/actions/16/help-whatsthis.svg share/icons/breeze-dark/actions/16/hide_table_column.svg share/icons/breeze-dark/actions/16/hide_table_row.svg share/icons/breeze-dark/actions/16/hidemouse.svg share/icons/breeze-dark/actions/16/highlight-pointer-spot.svg share/icons/breeze-dark/actions/16/hint.svg share/icons/breeze-dark/actions/16/identity.svg share/icons/breeze-dark/actions/16/im-aim.svg share/icons/breeze-dark/actions/16/im-ban-kick-user.svg share/icons/breeze-dark/actions/16/im-ban-user.svg share/icons/breeze-dark/actions/16/im-facebook.svg share/icons/breeze-dark/actions/16/im-icq.svg share/icons/breeze-dark/actions/16/im-identi.ca.svg share/icons/breeze-dark/actions/16/im-invisible-user.svg share/icons/breeze-dark/actions/16/im-irc.svg share/icons/breeze-dark/actions/16/im-jabber.svg share/icons/breeze-dark/actions/16/im-kick-user.svg share/icons/breeze-dark/actions/16/im-msn.svg share/icons/breeze-dark/actions/16/im-qq.svg share/icons/breeze-dark/actions/16/im-skype.svg share/icons/breeze-dark/actions/16/im-twitter.svg share/icons/breeze-dark/actions/16/im-user-away.svg share/icons/breeze-dark/actions/16/im-user-busy.svg share/icons/breeze-dark/actions/16/im-user-offline.svg share/icons/breeze-dark/actions/16/im-user-online.svg share/icons/breeze-dark/actions/16/im-user.svg share/icons/breeze-dark/actions/16/im-yahoo.svg share/icons/breeze-dark/actions/16/im-youtube.svg share/icons/breeze-dark/actions/16/imagecomment.svg share/icons/breeze-dark/actions/16/initial_state.svg share/icons/breeze-dark/actions/16/inpainting.svg share/icons/breeze-dark/actions/16/input-mouse-click-left.svg share/icons/breeze-dark/actions/16/input-mouse-click-middle.svg share/icons/breeze-dark/actions/16/input-mouse-click-right.svg share/icons/breeze-dark/actions/16/insert-button.svg share/icons/breeze-dark/actions/16/insert-endnote.svg share/icons/breeze-dark/actions/16/insert-footnote.svg share/icons/breeze-dark/actions/16/insert-horizontal-rule.svg share/icons/breeze-dark/actions/16/insert-image.svg share/icons/breeze-dark/actions/16/insert-link.svg share/icons/breeze-dark/actions/16/insert-math-expression.svg share/icons/breeze-dark/actions/16/insert-more-mark.svg share/icons/breeze-dark/actions/16/insert-page-break.svg share/icons/breeze-dark/actions/16/insert-table-of-contents.svg share/icons/breeze-dark/actions/16/insert-table-row.svg share/icons/breeze-dark/actions/16/insert-table.svg share/icons/breeze-dark/actions/16/insert-tableofcontents.svg share/icons/breeze-dark/actions/16/insert-text-frame.svg share/icons/breeze-dark/actions/16/insert-text.svg share/icons/breeze-dark/actions/16/insertcell.svg share/icons/breeze-dark/actions/16/insertcellcopy.svg share/icons/breeze-dark/actions/16/interface.svg share/icons/breeze-dark/actions/16/internet-amarok.svg share/icons/breeze-dark/actions/16/internet-services.svg share/icons/breeze-dark/actions/16/invertimage.svg share/icons/breeze-dark/actions/16/irc-channel-active.svg share/icons/breeze-dark/actions/16/irc-channel-inactive.svg share/icons/breeze-dark/actions/16/irc-close-channel.svg share/icons/breeze-dark/actions/16/irc-join-channel.svg share/icons/breeze-dark/actions/16/itemize.svg share/icons/breeze-dark/actions/16/join.svg share/icons/breeze-dark/actions/16/journal-new.svg share/icons/breeze-dark/actions/16/junction.svg share/icons/breeze-dark/actions/16/kdenlive-add-slide-clip.svg share/icons/breeze-dark/actions/16/kdenlive-add-text-clip.svg share/icons/breeze-dark/actions/16/kdenlive-align-bottom.svg share/icons/breeze-dark/actions/16/kdenlive-align-hor.svg share/icons/breeze-dark/actions/16/kdenlive-align-left.svg share/icons/breeze-dark/actions/16/kdenlive-align-right.svg share/icons/breeze-dark/actions/16/kdenlive-align-top.svg share/icons/breeze-dark/actions/16/kdenlive-align-vert.svg share/icons/breeze-dark/actions/16/kdenlive-deleffect.svg share/icons/breeze-dark/actions/16/kdenlive-down.svg share/icons/breeze-dark/actions/16/kdenlive-lock.svg share/icons/breeze-dark/actions/16/kdenlive-menu.svg share/icons/breeze-dark/actions/16/kdenlive-ripple.svg share/icons/breeze-dark/actions/16/kdenlive-rolling.svg share/icons/breeze-dark/actions/16/kdenlive-select-rects.svg share/icons/breeze-dark/actions/16/kdenlive-select-tool.svg share/icons/breeze-dark/actions/16/kdenlive-show-audiothumb.svg share/icons/breeze-dark/actions/16/kdenlive-show-video.svg share/icons/breeze-dark/actions/16/kdenlive-show-videothumb.svg share/icons/breeze-dark/actions/16/kdenlive-slide.svg share/icons/breeze-dark/actions/16/kdenlive-slip.svg share/icons/breeze-dark/actions/16/kdenlive-snap.svg share/icons/breeze-dark/actions/16/kdenlive-spacer-tool.svg share/icons/breeze-dark/actions/16/kdenlive-unlock.svg share/icons/breeze-dark/actions/16/kdenlive-up.svg share/icons/breeze-dark/actions/16/kdenlive-zoom-large.svg share/icons/breeze-dark/actions/16/kdenlive-zoom-small.svg share/icons/breeze-dark/actions/16/kdocumentinfo.svg share/icons/breeze-dark/actions/16/key-enter.svg share/icons/breeze-dark/actions/16/keyframe-add.svg share/icons/breeze-dark/actions/16/keyframe-disable.svg share/icons/breeze-dark/actions/16/keyframe-duplicate.svg share/icons/breeze-dark/actions/16/keyframe-next.svg share/icons/breeze-dark/actions/16/keyframe-previous.svg share/icons/breeze-dark/actions/16/keyframe-record.svg share/icons/breeze-dark/actions/16/keyframe-remove.svg share/icons/breeze-dark/actions/16/keyframe.svg share/icons/breeze-dark/actions/16/kmousetool_off.svg share/icons/breeze-dark/actions/16/kmousetool_on.svg share/icons/breeze-dark/actions/16/kmouth-phrase.svg share/icons/breeze-dark/actions/16/kmouth-phrasebook.svg share/icons/breeze-dark/actions/16/knotes_alarm.svg share/icons/breeze-dark/actions/16/knotes_date.svg share/icons/breeze-dark/actions/16/knotes_delete.svg share/icons/breeze-dark/actions/16/kontact-import-wizard.svg share/icons/breeze-dark/actions/16/kontes_close.svg share/icons/breeze-dark/actions/16/kr_combine.svg share/icons/breeze-dark/actions/16/kr_comparedirs.svg share/icons/breeze-dark/actions/16/kr_diskusage.svg share/icons/breeze-dark/actions/16/kr_jumpback.svg share/icons/breeze-dark/actions/16/kr_mountman.svg share/icons/breeze-dark/actions/16/kr_setjumpback.svg share/icons/breeze-dark/actions/16/kr_syncbrowse_off.svg share/icons/breeze-dark/actions/16/kr_syncbrowse_on.svg share/icons/breeze-dark/actions/16/kr_unselect.svg share/icons/breeze-dark/actions/16/kruler-east.svg share/icons/breeze-dark/actions/16/kruler-north.svg share/icons/breeze-dark/actions/16/kruler-south.svg share/icons/breeze-dark/actions/16/kruler-west.svg share/icons/breeze-dark/actions/16/kstars_advanced.svg share/icons/breeze-dark/actions/16/kstars_catalog.svg share/icons/breeze-dark/actions/16/kstars_colors.svg share/icons/breeze-dark/actions/16/kstars_flag.svg share/icons/breeze-dark/actions/16/kstars_guides.svg share/icons/breeze-dark/actions/16/kt-bandwidth-scheduler.svg share/icons/breeze-dark/actions/16/kt-change-tracker.svg share/icons/breeze-dark/actions/16/kt-check-data.svg share/icons/breeze-dark/actions/16/kt-encrypted.svg share/icons/breeze-dark/actions/16/kt-info-widget.svg share/icons/breeze-dark/actions/16/kt-pause.svg share/icons/breeze-dark/actions/16/kt-plugins.svg share/icons/breeze-dark/actions/16/kt-remove.svg share/icons/breeze-dark/actions/16/kt-restore-defaults.svg share/icons/breeze-dark/actions/16/kt-set-max-download-speed.svg share/icons/breeze-dark/actions/16/kt-set-max-upload-speed.svg share/icons/breeze-dark/actions/16/kt-show-statusbar.svg share/icons/breeze-dark/actions/16/kt-speed-limits.svg share/icons/breeze-dark/actions/16/kt-start.svg share/icons/breeze-dark/actions/16/kt-stop.svg share/icons/breeze-dark/actions/16/ktnef_extract_all_to.svg share/icons/breeze-dark/actions/16/ktnef_extract_to.svg share/icons/breeze-dark/actions/16/l2h.svg share/icons/breeze-dark/actions/16/label-amarok.svg share/icons/breeze-dark/actions/16/label.svg share/icons/breeze-dark/actions/16/labplot-auto-scale-all.svg share/icons/breeze-dark/actions/16/labplot-auto-scale-x.svg share/icons/breeze-dark/actions/16/labplot-auto-scale-y.svg share/icons/breeze-dark/actions/16/labplot-cursor-arrow.svg share/icons/breeze-dark/actions/16/labplot-editbreaklayout.svg share/icons/breeze-dark/actions/16/labplot-editgrid.svg share/icons/breeze-dark/actions/16/labplot-edithlayout.svg share/icons/breeze-dark/actions/16/labplot-editvlayout.svg share/icons/breeze-dark/actions/16/labplot-format-text-symbol.svg share/icons/breeze-dark/actions/16/labplot-spreadsheet-new.svg share/icons/breeze-dark/actions/16/labplot-spreadsheet.svg share/icons/breeze-dark/actions/16/labplot-transform-move.svg share/icons/breeze-dark/actions/16/labplot-xy-curve-points.svg share/icons/breeze-dark/actions/16/labplot-zoom-select-x.svg share/icons/breeze-dark/actions/16/labplot-zoom-select-y.svg share/icons/breeze-dark/actions/16/labplot-zoom-select.svg share/icons/breeze-dark/actions/16/language-chooser.svg share/icons/breeze-dark/actions/16/languages.svg share/icons/breeze-dark/actions/16/lastfm-neighbour.svg share/icons/breeze-dark/actions/16/lastfm-personal.svg share/icons/breeze-dark/actions/16/lastfm-recommended.svg share/icons/breeze-dark/actions/16/lastfm-tag.svg share/icons/breeze-dark/actions/16/layer-bottom.svg share/icons/breeze-dark/actions/16/layer-delete.svg share/icons/breeze-dark/actions/16/layer-duplicate.svg share/icons/breeze-dark/actions/16/layer-lower.svg share/icons/breeze-dark/actions/16/layer-new.svg share/icons/breeze-dark/actions/16/layer-next.svg share/icons/breeze-dark/actions/16/layer-previous.svg share/icons/breeze-dark/actions/16/layer-raise.svg share/icons/breeze-dark/actions/16/layer-rename.svg share/icons/breeze-dark/actions/16/layer-top.svg share/icons/breeze-dark/actions/16/layer-visible-off.svg share/icons/breeze-dark/actions/16/layer-visible-on.svg share/icons/breeze-dark/actions/16/libpeas-plugin.svg share/icons/breeze-dark/actions/16/license.svg share/icons/breeze-dark/actions/16/lighttable.svg share/icons/breeze-dark/actions/16/lighttableadd.svg share/icons/breeze-dark/actions/16/lines-connector.svg share/icons/breeze-dark/actions/16/link.svg share/icons/breeze-dark/actions/16/list-add-font.svg share/icons/breeze-dark/actions/16/list-add-user.svg share/icons/breeze-dark/actions/16/list-add.svg share/icons/breeze-dark/actions/16/list-remove-user.svg share/icons/breeze-dark/actions/16/list-remove.svg share/icons/breeze-dark/actions/16/list-resource-add.svg share/icons/breeze-dark/actions/16/lock.svg share/icons/breeze-dark/actions/16/love-amarok.svg share/icons/breeze-dark/actions/16/love.svg share/icons/breeze-dark/actions/16/mail-attachment.svg share/icons/breeze-dark/actions/16/mail-deleted.svg share/icons/breeze-dark/actions/16/mail-download-later.svg share/icons/breeze-dark/actions/16/mail-download-now.svg share/icons/breeze-dark/actions/16/mail-encrypted-full.svg share/icons/breeze-dark/actions/16/mail-encrypted-part.svg share/icons/breeze-dark/actions/16/mail-encrypted.svg share/icons/breeze-dark/actions/16/mail-flag.svg share/icons/breeze-dark/actions/16/mail-forward-attachment.svg share/icons/breeze-dark/actions/16/mail-forward-custom.svg share/icons/breeze-dark/actions/16/mail-forward.svg share/icons/breeze-dark/actions/16/mail-forwarded-replied.svg share/icons/breeze-dark/actions/16/mail-forwarded.svg share/icons/breeze-dark/actions/16/mail-invitation.svg share/icons/breeze-dark/actions/16/mail-mark-important.svg share/icons/breeze-dark/actions/16/mail-mark-junk.svg share/icons/breeze-dark/actions/16/mail-mark-notjunk.svg share/icons/breeze-dark/actions/16/mail-mark-read.svg share/icons/breeze-dark/actions/16/mail-mark-task.svg share/icons/breeze-dark/actions/16/mail-mark-unread-new.svg share/icons/breeze-dark/actions/16/mail-mark-unread.svg share/icons/breeze-dark/actions/16/mail-meeting-request-reply.svg share/icons/breeze-dark/actions/16/mail-message-new-list.svg share/icons/breeze-dark/actions/16/mail-message-new.svg share/icons/breeze-dark/actions/16/mail-message.svg share/icons/breeze-dark/actions/16/mail-queue.svg share/icons/breeze-dark/actions/16/mail-queued.svg share/icons/breeze-dark/actions/16/mail-read.svg share/icons/breeze-dark/actions/16/mail-receive.svg share/icons/breeze-dark/actions/16/mail-replied.svg share/icons/breeze-dark/actions/16/mail-reply-all.svg share/icons/breeze-dark/actions/16/mail-reply-author.svg share/icons/breeze-dark/actions/16/mail-reply-custom-all.svg share/icons/breeze-dark/actions/16/mail-reply-custom.svg share/icons/breeze-dark/actions/16/mail-reply-list.svg share/icons/breeze-dark/actions/16/mail-reply-sender.svg share/icons/breeze-dark/actions/16/mail-send.svg share/icons/breeze-dark/actions/16/mail-sent.svg share/icons/breeze-dark/actions/16/mail-signature-unknown.svg share/icons/breeze-dark/actions/16/mail-signed-full.svg share/icons/breeze-dark/actions/16/mail-signed-fully.svg share/icons/breeze-dark/actions/16/mail-signed-part.svg share/icons/breeze-dark/actions/16/mail-signed-verified.svg share/icons/breeze-dark/actions/16/mail-signed.svg share/icons/breeze-dark/actions/16/mail-tagged.svg share/icons/breeze-dark/actions/16/mail-task.svg share/icons/breeze-dark/actions/16/mail-thread-ignored.svg share/icons/breeze-dark/actions/16/mail-thread-watch.svg share/icons/breeze-dark/actions/16/mail-unread-new.svg share/icons/breeze-dark/actions/16/mail-unread.svg share/icons/breeze-dark/actions/16/makeidx.svg share/icons/breeze-dark/actions/16/mark-location.svg share/icons/breeze-dark/actions/16/markasblank.svg share/icons/breeze-dark/actions/16/math0.svg share/icons/breeze-dark/actions/16/math1.svg share/icons/breeze-dark/actions/16/math2.svg share/icons/breeze-dark/actions/16/math3.svg share/icons/breeze-dark/actions/16/math7.svg share/icons/breeze-dark/actions/16/math9.svg share/icons/breeze-dark/actions/16/mathmode.svg share/icons/breeze-dark/actions/16/measure.svg share/icons/breeze-dark/actions/16/media-album-cover-manager-amarok.svg share/icons/breeze-dark/actions/16/media-album-cover.svg share/icons/breeze-dark/actions/16/media-album-repeat-amarok.svg share/icons/breeze-dark/actions/16/media-album-track.svg share/icons/breeze-dark/actions/16/media-eject.svg share/icons/breeze-dark/actions/16/media-import-audio-cd.svg share/icons/breeze-dark/actions/16/media-mount.svg share/icons/breeze-dark/actions/16/media-playback-pause.svg share/icons/breeze-dark/actions/16/media-playback-start.svg share/icons/breeze-dark/actions/16/media-playback-stop.svg share/icons/breeze-dark/actions/16/media-playlist-append.svg share/icons/breeze-dark/actions/16/media-playlist-play.svg share/icons/breeze-dark/actions/16/media-playlist-repeat-amarok.svg share/icons/breeze-dark/actions/16/media-playlist-repeat-song.svg share/icons/breeze-dark/actions/16/media-playlist-repeat.svg share/icons/breeze-dark/actions/16/media-playlist-shuffle.svg share/icons/breeze-dark/actions/16/media-random-albums-amarok.svg share/icons/breeze-dark/actions/16/media-random-tracks-amarok.svg share/icons/breeze-dark/actions/16/media-record.svg share/icons/breeze-dark/actions/16/media-repeat-album-amarok.svg share/icons/breeze-dark/actions/16/media-repeat-all.svg share/icons/breeze-dark/actions/16/media-repeat-none.svg share/icons/breeze-dark/actions/16/media-repeat-playlist-amarok.svg share/icons/breeze-dark/actions/16/media-repeat-single.svg share/icons/breeze-dark/actions/16/media-repeat-track-amarok.svg share/icons/breeze-dark/actions/16/media-seek-backward.svg share/icons/breeze-dark/actions/16/media-seek-forward.svg share/icons/breeze-dark/actions/16/media-show-active-track-amarok.svg share/icons/breeze-dark/actions/16/media-skip-backward.svg share/icons/breeze-dark/actions/16/media-skip-forward.svg share/icons/breeze-dark/actions/16/media-standard-track-progression-amarok.svg share/icons/breeze-dark/actions/16/media-track-add-amarok.svg share/icons/breeze-dark/actions/16/media-track-edit-amarok.svg share/icons/breeze-dark/actions/16/media-track-queue-amarok.svg share/icons/breeze-dark/actions/16/media-track-remove-amarok.svg share/icons/breeze-dark/actions/16/media-track-show-active.svg share/icons/breeze-dark/actions/16/medskip.svg share/icons/breeze-dark/actions/16/meeting-attending-tentative.svg share/icons/breeze-dark/actions/16/meeting-attending.svg share/icons/breeze-dark/actions/16/meeting-participant-no-response.svg share/icons/breeze-dark/actions/16/meeting-participant-request-response.svg share/icons/breeze-dark/actions/16/menu_new.svg share/icons/breeze-dark/actions/16/merge.svg share/icons/breeze-dark/actions/16/mergecell-horizontal.svg share/icons/breeze-dark/actions/16/mergecell-vertical.svg share/icons/breeze-dark/actions/16/mergecell.svg share/icons/breeze-dark/actions/16/message-new.svg share/icons/breeze-dark/actions/16/messagebox_warning.svg share/icons/breeze-dark/actions/16/milestone.svg share/icons/breeze-dark/actions/16/minuet-chords.svg share/icons/breeze-dark/actions/16/minuet-intervals.svg share/icons/breeze-dark/actions/16/minuet-rhythms.svg share/icons/breeze-dark/actions/16/minuet-scales.svg share/icons/breeze-dark/actions/16/mode1.svg share/icons/breeze-dark/actions/16/mode2.svg share/icons/breeze-dark/actions/16/mode3.svg share/icons/breeze-dark/actions/16/mode4.svg share/icons/breeze-dark/actions/16/mode5.svg share/icons/breeze-dark/actions/16/modified.svg share/icons/breeze-dark/actions/16/mpost.svg share/icons/breeze-dark/actions/16/msgid2msgstr.svg share/icons/breeze-dark/actions/16/multirow.svg share/icons/breeze-dark/actions/16/music-amarok.svg share/icons/breeze-dark/actions/16/network-connect.svg share/icons/breeze-dark/actions/16/network-disconnect.svg share/icons/breeze-dark/actions/16/new-audio-alarm.svg share/icons/breeze-dark/actions/16/new-command-alarm.svg share/icons/breeze-dark/actions/16/news-subscribe.svg share/icons/breeze-dark/actions/16/news-unsubscribe.svg share/icons/breeze-dark/actions/16/nocover.svg share/icons/breeze-dark/actions/16/node-add.svg share/icons/breeze-dark/actions/16/node-break.svg share/icons/breeze-dark/actions/16/node-delete-segment.svg share/icons/breeze-dark/actions/16/node-delete.svg share/icons/breeze-dark/actions/16/node-join-segment.svg share/icons/breeze-dark/actions/16/node-join.svg share/icons/breeze-dark/actions/16/node-segment-curve.svg share/icons/breeze-dark/actions/16/node-segment-line.svg share/icons/breeze-dark/actions/16/node-transform.svg share/icons/breeze-dark/actions/16/node-type-auto-smooth.svg share/icons/breeze-dark/actions/16/node-type-cusp.svg share/icons/breeze-dark/actions/16/node-type-smooth.svg share/icons/breeze-dark/actions/16/node-type-symmetric.svg share/icons/breeze-dark/actions/16/node.svg share/icons/breeze-dark/actions/16/note.svg share/icons/breeze-dark/actions/16/notifications-disabled.svg share/icons/breeze-dark/actions/16/notifications.svg share/icons/breeze-dark/actions/16/object-align-horizontal-center-calligra.svg share/icons/breeze-dark/actions/16/object-align-horizontal-left-calligra.svg share/icons/breeze-dark/actions/16/object-align-horizontal-right-calligra.svg share/icons/breeze-dark/actions/16/object-align-vertical-bottom-calligra.svg share/icons/breeze-dark/actions/16/object-align-vertical-bottom-top-calligra.svg share/icons/breeze-dark/actions/16/object-align-vertical-center-calligra.svg share/icons/breeze-dark/actions/16/object-align-vertical-top-calligra.svg share/icons/breeze-dark/actions/16/object-columns.svg share/icons/breeze-dark/actions/16/object-fill.svg share/icons/breeze-dark/actions/16/object-flip-horizontal.svg share/icons/breeze-dark/actions/16/object-flip-vertical.svg share/icons/breeze-dark/actions/16/object-group-calligra.svg share/icons/breeze-dark/actions/16/object-group.svg share/icons/breeze-dark/actions/16/object-hidden.svg share/icons/breeze-dark/actions/16/object-locked.svg share/icons/breeze-dark/actions/16/object-order-back-calligra.svg share/icons/breeze-dark/actions/16/object-order-back.svg share/icons/breeze-dark/actions/16/object-order-front-calligra.svg share/icons/breeze-dark/actions/16/object-order-front.svg share/icons/breeze-dark/actions/16/object-order-lower-calligra.svg share/icons/breeze-dark/actions/16/object-order-lower.svg share/icons/breeze-dark/actions/16/object-order-raise-calligra.svg share/icons/breeze-dark/actions/16/object-order-raise.svg share/icons/breeze-dark/actions/16/object-rotate-left.svg share/icons/breeze-dark/actions/16/object-rotate-right.svg share/icons/breeze-dark/actions/16/object-rows.svg share/icons/breeze-dark/actions/16/object-stroke-style.svg share/icons/breeze-dark/actions/16/object-stroke.svg share/icons/breeze-dark/actions/16/object-to-path.svg share/icons/breeze-dark/actions/16/object-ungroup-calligra.svg share/icons/breeze-dark/actions/16/object-ungroup.svg share/icons/breeze-dark/actions/16/object-unlocked.svg share/icons/breeze-dark/actions/16/object-visible.svg share/icons/breeze-dark/actions/16/object.svg share/icons/breeze-dark/actions/16/object_node.svg share/icons/breeze-dark/actions/16/office-chart-area-focus-peak-node.svg share/icons/breeze-dark/actions/16/office-chart-area-percentage.svg share/icons/breeze-dark/actions/16/office-chart-area-stacked.svg share/icons/breeze-dark/actions/16/office-chart-area.svg share/icons/breeze-dark/actions/16/office-chart-bar-percentage.svg share/icons/breeze-dark/actions/16/office-chart-bar-stacked.svg share/icons/breeze-dark/actions/16/office-chart-bar.svg share/icons/breeze-dark/actions/16/office-chart-line-forecast.svg share/icons/breeze-dark/actions/16/office-chart-line-percentage.svg share/icons/breeze-dark/actions/16/office-chart-line-stacked.svg share/icons/breeze-dark/actions/16/office-chart-line.svg share/icons/breeze-dark/actions/16/office-chart-pie.svg share/icons/breeze-dark/actions/16/office-chart-polar-stacked.svg share/icons/breeze-dark/actions/16/office-chart-polar.svg share/icons/breeze-dark/actions/16/office-chart-ring.svg share/icons/breeze-dark/actions/16/office-chart-scatter.svg share/icons/breeze-dark/actions/16/office-report.svg share/icons/breeze-dark/actions/16/offline-settings.svg share/icons/breeze-dark/actions/16/offline.svg share/icons/breeze-dark/actions/16/online.svg share/icons/breeze-dark/actions/16/open-for-editing.svg share/icons/breeze-dark/actions/16/open-menu-symbolic.svg share/icons/breeze-dark/actions/16/output_win.svg share/icons/breeze-dark/actions/16/overflow-menu.svg share/icons/breeze-dark/actions/16/package.svg share/icons/breeze-dark/actions/16/page-2sides.svg share/icons/breeze-dark/actions/16/page-3sides.svg share/icons/breeze-dark/actions/16/page-4sides.svg share/icons/breeze-dark/actions/16/page-simple.svg share/icons/breeze-dark/actions/16/page-zoom.svg share/icons/breeze-dark/actions/16/paint-gradient-linear.svg share/icons/breeze-dark/actions/16/paint-gradient-radial.svg share/icons/breeze-dark/actions/16/paint-none.svg share/icons/breeze-dark/actions/16/paint-pattern.svg share/icons/breeze-dark/actions/16/paint-solid.svg share/icons/breeze-dark/actions/16/paint-swatch.svg share/icons/breeze-dark/actions/16/paint-unknown.svg share/icons/breeze-dark/actions/16/paper-color.svg share/icons/breeze-dark/actions/16/password-copy.svg share/icons/breeze-dark/actions/16/password-generate.svg share/icons/breeze-dark/actions/16/password-show-off.svg share/icons/breeze-dark/actions/16/password-show-on.svg share/icons/breeze-dark/actions/16/path-break-apart.svg share/icons/breeze-dark/actions/16/path-clip-edit.svg share/icons/breeze-dark/actions/16/path-combine.svg share/icons/breeze-dark/actions/16/path-cut.svg share/icons/breeze-dark/actions/16/path-difference.svg share/icons/breeze-dark/actions/16/path-division.svg share/icons/breeze-dark/actions/16/path-effect-parameter-next.svg share/icons/breeze-dark/actions/16/path-exclusion.svg share/icons/breeze-dark/actions/16/path-inset.svg share/icons/breeze-dark/actions/16/path-intersection.svg share/icons/breeze-dark/actions/16/path-mask-edit.svg share/icons/breeze-dark/actions/16/path-mode-bezier.svg share/icons/breeze-dark/actions/16/path-mode-polyline-paraxial.svg share/icons/breeze-dark/actions/16/path-mode-polyline.svg share/icons/breeze-dark/actions/16/path-mode-spiro.svg share/icons/breeze-dark/actions/16/path-offset-dynamic.svg share/icons/breeze-dark/actions/16/path-offset-linked.svg share/icons/breeze-dark/actions/16/path-outset.svg share/icons/breeze-dark/actions/16/path-reverse.svg share/icons/breeze-dark/actions/16/path-simplify.svg share/icons/breeze-dark/actions/16/path-union.svg share/icons/breeze-dark/actions/16/pattern.svg share/icons/breeze-dark/actions/16/pdf-annotations.svg share/icons/breeze-dark/actions/16/pdflatex.svg share/icons/breeze-dark/actions/16/pdftex.svg share/icons/breeze-dark/actions/16/pentagon-shape.svg share/icons/breeze-dark/actions/16/photo.svg share/icons/breeze-dark/actions/16/photos-amarok.svg share/icons/breeze-dark/actions/16/pin.svg share/icons/breeze-dark/actions/16/pixelart-trace.svg share/icons/breeze-dark/actions/16/player-time.svg share/icons/breeze-dark/actions/16/player-volume-muted.svg share/icons/breeze-dark/actions/16/player-volume.svg share/icons/breeze-dark/actions/16/playlist-generator.svg share/icons/breeze-dark/actions/16/playlist-sort.svg share/icons/breeze-dark/actions/16/plugins.svg share/icons/breeze-dark/actions/16/pointer.svg share/icons/breeze-dark/actions/16/polygon-add-nodes.svg share/icons/breeze-dark/actions/16/polygon-merge-nodes.svg share/icons/breeze-dark/actions/16/port.svg share/icons/breeze-dark/actions/16/postalcode.svg share/icons/breeze-dark/actions/16/practice-setup.svg share/icons/breeze-dark/actions/16/practice-start.svg share/icons/breeze-dark/actions/16/practice-stop.svg share/icons/breeze-dark/actions/16/precondition.svg share/icons/breeze-dark/actions/16/preferences-indicator-amarok.svg share/icons/breeze-dark/actions/16/preferences-media-playback-amarok.svg share/icons/breeze-dark/actions/16/preferences-other.svg share/icons/breeze-dark/actions/16/preferences-system-symbolic.svg share/icons/breeze-dark/actions/16/presence_away.svg share/icons/breeze-dark/actions/16/presence_offline.svg share/icons/breeze-dark/actions/16/presence_online.svg share/icons/breeze-dark/actions/16/presence_unknown.svg share/icons/breeze-dark/actions/16/preview.svg share/icons/breeze-dark/actions/16/preview_math.svg share/icons/breeze-dark/actions/16/preview_sel.svg share/icons/breeze-dark/actions/16/primarykey_constraint.svg share/icons/breeze-dark/actions/16/process-stop.svg share/icons/breeze-dark/actions/16/project-development-close-all.svg share/icons/breeze-dark/actions/16/project-development-close.svg share/icons/breeze-dark/actions/16/project-development-new-template.svg share/icons/breeze-dark/actions/16/project-development.svg share/icons/breeze-dark/actions/16/project-open.svg share/icons/breeze-dark/actions/16/project_add.svg share/icons/breeze-dark/actions/16/project_archive.svg share/icons/breeze-dark/actions/16/project_rebuild.svg share/icons/breeze-dark/actions/16/project_remove.svg share/icons/breeze-dark/actions/16/project_show.svg share/icons/breeze-dark/actions/16/projectgrep.svg share/icons/breeze-dark/actions/16/ps2pdf.svg share/icons/breeze-dark/actions/16/qa.svg share/icons/breeze-dark/actions/16/quick.svg share/icons/breeze-dark/actions/16/quickopen-class.svg share/icons/breeze-dark/actions/16/quickopen-file.svg share/icons/breeze-dark/actions/16/quickopen-function.svg share/icons/breeze-dark/actions/16/quickopen.svg share/icons/breeze-dark/actions/16/quickview.svg share/icons/breeze-dark/actions/16/quickwizard.svg share/icons/breeze-dark/actions/16/randomize.svg share/icons/breeze-dark/actions/16/ratiocrop.svg share/icons/breeze-dark/actions/16/realization.svg share/icons/breeze-dark/actions/16/rectangle-make-corners-sharp.svg share/icons/breeze-dark/actions/16/rectangle-shape.svg share/icons/breeze-dark/actions/16/redeyes.svg share/icons/breeze-dark/actions/16/refactor.svg share/icons/breeze-dark/actions/16/refreshstructure.svg share/icons/breeze-dark/actions/16/region.svg share/icons/breeze-dark/actions/16/relation.svg share/icons/breeze-dark/actions/16/relationship.svg share/icons/breeze-dark/actions/16/remove-amarok.svg share/icons/breeze-dark/actions/16/remove-link.svg share/icons/breeze-dark/actions/16/remove.svg share/icons/breeze-dark/actions/16/removecell.svg share/icons/breeze-dark/actions/16/repeat.svg share/icons/breeze-dark/actions/16/resizecol.svg share/icons/breeze-dark/actions/16/resizerow.svg share/icons/breeze-dark/actions/16/resource-calendar-child-insert.svg share/icons/breeze-dark/actions/16/resource-calendar-child.svg share/icons/breeze-dark/actions/16/resource-calendar-insert.svg share/icons/breeze-dark/actions/16/resource-group-new.svg share/icons/breeze-dark/actions/16/resource-group.svg share/icons/breeze-dark/actions/16/restoration.svg share/icons/breeze-dark/actions/16/retweet.svg share/icons/breeze-dark/actions/16/reverse.svg share/icons/breeze-dark/actions/16/roll.svg share/icons/breeze-dark/actions/16/routeplanning.svg share/icons/breeze-dark/actions/16/run-build-clean.svg share/icons/breeze-dark/actions/16/run-build-configure.svg share/icons/breeze-dark/actions/16/run-build-file.svg share/icons/breeze-dark/actions/16/run-build-install-root.svg share/icons/breeze-dark/actions/16/run-build-install.svg share/icons/breeze-dark/actions/16/run-build-prune.svg share/icons/breeze-dark/actions/16/run-build.svg share/icons/breeze-dark/actions/16/run-clean.svg share/icons/breeze-dark/actions/16/run-install.svg share/icons/breeze-dark/actions/16/screen-rotate-auto-off.svg share/icons/breeze-dark/actions/16/screen-rotate-auto-on.svg share/icons/breeze-dark/actions/16/scriptnew.svg share/icons/breeze-dark/actions/16/scriptopen.svg share/icons/breeze-dark/actions/16/search.svg share/icons/breeze-dark/actions/16/select-rectangular.svg share/icons/breeze-dark/actions/16/select.svg share/icons/breeze-dark/actions/16/selection-bottom.svg share/icons/breeze-dark/actions/16/selection-lower.svg share/icons/breeze-dark/actions/16/selection-make-bitmap-copy.svg share/icons/breeze-dark/actions/16/selection-move-to-layer-above.svg share/icons/breeze-dark/actions/16/selection-move-to-layer-below.svg share/icons/breeze-dark/actions/16/selection-raise.svg share/icons/breeze-dark/actions/16/selection-top.svg share/icons/breeze-dark/actions/16/selection.svg share/icons/breeze-dark/actions/16/send_signal.svg share/icons/breeze-dark/actions/16/services.svg share/icons/breeze-dark/actions/16/set-language.svg share/icons/breeze-dark/actions/16/settings-configure.svg share/icons/breeze-dark/actions/16/shallow-history.svg share/icons/breeze-dark/actions/16/shape-choose.svg share/icons/breeze-dark/actions/16/shape-cuboid.svg share/icons/breeze-dark/actions/16/shapes.svg share/icons/breeze-dark/actions/16/shear.svg share/icons/breeze-dark/actions/16/show-dialogs.svg share/icons/breeze-dark/actions/16/show-grid.svg share/icons/breeze-dark/actions/16/show-guides.svg share/icons/breeze-dark/actions/16/show-menu.svg share/icons/breeze-dark/actions/16/show-node-handles.svg share/icons/breeze-dark/actions/16/show-offline.svg share/icons/breeze-dark/actions/16/show-path-outline.svg share/icons/breeze-dark/actions/16/show_table_column.svg share/icons/breeze-dark/actions/16/show_table_row.svg share/icons/breeze-dark/actions/16/shuffle.svg share/icons/breeze-dark/actions/16/sidebar-collapse-left.svg share/icons/breeze-dark/actions/16/sidebar-collapse-right.svg share/icons/breeze-dark/actions/16/sidebar-collapse.svg share/icons/breeze-dark/actions/16/sidebar-expand-left.svg share/icons/breeze-dark/actions/16/sidebar-expand-right.svg share/icons/breeze-dark/actions/16/sidebar-expand.svg share/icons/breeze-dark/actions/16/sidebar-show-symbolic.svg share/icons/breeze-dark/actions/16/similarartists-amarok.svg share/icons/breeze-dark/actions/16/slanted.svg share/icons/breeze-dark/actions/16/smallclock.svg share/icons/breeze-dark/actions/16/smallskip.svg share/icons/breeze-dark/actions/16/smiley-add.svg share/icons/breeze-dark/actions/16/snap-angle.svg share/icons/breeze-dark/actions/16/snap-bounding-box-center.svg share/icons/breeze-dark/actions/16/snap-bounding-box-corners.svg share/icons/breeze-dark/actions/16/snap-bounding-box-edges.svg share/icons/breeze-dark/actions/16/snap-bounding-box-midpoints.svg share/icons/breeze-dark/actions/16/snap-bounding-box.svg share/icons/breeze-dark/actions/16/snap-extension.svg share/icons/breeze-dark/actions/16/snap-grid-guide-intersections.svg share/icons/breeze-dark/actions/16/snap-guideline.svg share/icons/breeze-dark/actions/16/snap-intersection.svg share/icons/breeze-dark/actions/16/snap-node.svg share/icons/breeze-dark/actions/16/snap-nodes-center.svg share/icons/breeze-dark/actions/16/snap-nodes-cusp.svg share/icons/breeze-dark/actions/16/snap-nodes-intersection.svg share/icons/breeze-dark/actions/16/snap-nodes-midpoint.svg share/icons/breeze-dark/actions/16/snap-nodes-path.svg share/icons/breeze-dark/actions/16/snap-nodes-rotation-center.svg share/icons/breeze-dark/actions/16/snap-nodes-smooth.svg share/icons/breeze-dark/actions/16/snap-orthogonal.svg share/icons/breeze-dark/actions/16/snap-page.svg share/icons/breeze-dark/actions/16/snap-text-baseline.svg share/icons/breeze-dark/actions/16/snap.svg share/icons/breeze-dark/actions/16/social.svg share/icons/breeze-dark/actions/16/sort-name.svg share/icons/breeze-dark/actions/16/sort-presence.svg share/icons/breeze-dark/actions/16/sort_incr.svg share/icons/breeze-dark/actions/16/source-playlist.svg share/icons/breeze-dark/actions/16/source-smart-playlist.svg share/icons/breeze-dark/actions/16/speaker.svg share/icons/breeze-dark/actions/16/special_paste.svg share/icons/breeze-dark/actions/16/specific-setup.svg share/icons/breeze-dark/actions/16/speedometer.svg share/icons/breeze-dark/actions/16/spiral-shape.svg share/icons/breeze-dark/actions/16/split.svg share/icons/breeze-dark/actions/16/spreadsheetshape.svg share/icons/breeze-dark/actions/16/sqrt.svg share/icons/breeze-dark/actions/16/standard-connector.svg share/icons/breeze-dark/actions/16/star-shape.svg share/icons/breeze-dark/actions/16/start-over.svg share/icons/breeze-dark/actions/16/state-fork.svg share/icons/breeze-dark/actions/16/stateshape.svg share/icons/breeze-dark/actions/16/statetool.svg share/icons/breeze-dark/actions/16/step_object_Anchor.svg share/icons/breeze-dark/actions/16/step_object_Box.svg share/icons/breeze-dark/actions/16/step_object_Controller.svg share/icons/breeze-dark/actions/16/step_object_Disk.svg share/icons/breeze-dark/actions/16/step_object_Graph.svg share/icons/breeze-dark/actions/16/step_object_Note.svg share/icons/breeze-dark/actions/16/step_object_Particle.svg share/icons/breeze-dark/actions/16/step_object_Pin.svg share/icons/breeze-dark/actions/16/step_object_Polygon.svg share/icons/breeze-dark/actions/16/step_object_Rope.svg share/icons/breeze-dark/actions/16/step_object_Stick.svg share/icons/breeze-dark/actions/16/stickers.svg share/icons/breeze-dark/actions/16/sticky_zoom.svg share/icons/breeze-dark/actions/16/story-editor.svg share/icons/breeze-dark/actions/16/straight-connector.svg share/icons/breeze-dark/actions/16/stroke-cap-bevel.svg share/icons/breeze-dark/actions/16/stroke-cap-butt.svg share/icons/breeze-dark/actions/16/stroke-cap-miter.svg share/icons/breeze-dark/actions/16/stroke-cap-round.svg share/icons/breeze-dark/actions/16/stroke-cap-square.svg share/icons/breeze-dark/actions/16/stroke-join-bevel.svg share/icons/breeze-dark/actions/16/stroke-join-miter.svg share/icons/breeze-dark/actions/16/stroke-join-round.svg share/icons/breeze-dark/actions/16/stroke-to-path.svg share/icons/breeze-dark/actions/16/strong.svg share/icons/breeze-dark/actions/16/structure.svg share/icons/breeze-dark/actions/16/subsystem.svg share/icons/breeze-dark/actions/16/svn-commit.svg share/icons/breeze-dark/actions/16/svn-update.svg share/icons/breeze-dark/actions/16/swap-panels.svg share/icons/breeze-dark/actions/16/symbols.svg share/icons/breeze-dark/actions/16/system-lock-screen.svg share/icons/breeze-dark/actions/16/system-log-out-rtl.svg share/icons/breeze-dark/actions/16/system-log-out.svg share/icons/breeze-dark/actions/16/system-reboot.svg share/icons/breeze-dark/actions/16/system-run.svg share/icons/breeze-dark/actions/16/system-save-session.svg share/icons/breeze-dark/actions/16/system-search.svg share/icons/breeze-dark/actions/16/system-users.svg share/icons/breeze-dark/actions/16/tab-close-other.svg share/icons/breeze-dark/actions/16/tab-close.svg share/icons/breeze-dark/actions/16/tab-detach.svg share/icons/breeze-dark/actions/16/tab-duplicate.svg share/icons/breeze-dark/actions/16/tab-new-background.svg share/icons/breeze-dark/actions/16/tab-new.svg share/icons/breeze-dark/actions/16/table.svg share/icons/breeze-dark/actions/16/tag-addressbook.svg share/icons/breeze-dark/actions/16/tag-assigned.svg share/icons/breeze-dark/actions/16/tag-delete.svg share/icons/breeze-dark/actions/16/tag-edit.svg share/icons/breeze-dark/actions/16/tag-events.svg share/icons/breeze-dark/actions/16/tag-folder.svg share/icons/breeze-dark/actions/16/tag-new.svg share/icons/breeze-dark/actions/16/tag-people.svg share/icons/breeze-dark/actions/16/tag-places.svg share/icons/breeze-dark/actions/16/tag-properties.svg share/icons/breeze-dark/actions/16/tag-recents.svg share/icons/breeze-dark/actions/16/tag-reset.svg share/icons/breeze-dark/actions/16/tag.svg share/icons/breeze-dark/actions/16/task-new.svg share/icons/breeze-dark/actions/16/taxes-finances.svg share/icons/breeze-dark/actions/16/template.svg share/icons/breeze-dark/actions/16/text-convert-to-regular.svg share/icons/breeze-dark/actions/16/text-field-framed.svg share/icons/breeze-dark/actions/16/text-field-frameless.svg share/icons/breeze-dark/actions/16/text-field.svg share/icons/breeze-dark/actions/16/text-flow-into-frame.svg share/icons/breeze-dark/actions/16/text-frame-link.svg share/icons/breeze-dark/actions/16/text-frame-unlink.svg share/icons/breeze-dark/actions/16/text-put-on-path.svg share/icons/breeze-dark/actions/16/text-remove-from-path.svg share/icons/breeze-dark/actions/16/text-speak.svg share/icons/breeze-dark/actions/16/text-unflow.svg share/icons/breeze-dark/actions/16/text-unkern.svg share/icons/breeze-dark/actions/16/text-wrap.svg share/icons/breeze-dark/actions/16/text_horz_kern.svg share/icons/breeze-dark/actions/16/text_letter_spacing.svg share/icons/breeze-dark/actions/16/text_line_spacing.svg share/icons/breeze-dark/actions/16/text_rotation.svg share/icons/breeze-dark/actions/16/text_subscript.svg share/icons/breeze-dark/actions/16/text_superscript.svg share/icons/breeze-dark/actions/16/text_vert_kern.svg share/icons/breeze-dark/actions/16/text_word_spacing.svg share/icons/breeze-dark/actions/16/tool-animator.svg share/icons/breeze-dark/actions/16/tool-measure.svg share/icons/breeze-dark/actions/16/tool-node-editor.svg share/icons/breeze-dark/actions/16/tool-pointer.svg share/icons/breeze-dark/actions/16/tool-text.svg share/icons/breeze-dark/actions/16/tool-tweak.svg share/icons/breeze-dark/actions/16/tool_brush.svg share/icons/breeze-dark/actions/16/tool_cellformatting.svg share/icons/breeze-dark/actions/16/tool_color_picker.svg share/icons/breeze-dark/actions/16/tool_ellipse.svg share/icons/breeze-dark/actions/16/tool_elliptical_selection.svg share/icons/breeze-dark/actions/16/tool_eraser.svg share/icons/breeze-dark/actions/16/tool_flood_fill.svg share/icons/breeze-dark/actions/16/tool_imageeffects.svg share/icons/breeze-dark/actions/16/tool_line.svg share/icons/breeze-dark/actions/16/tool_pagelayout.svg share/icons/breeze-dark/actions/16/tool_pen.svg share/icons/breeze-dark/actions/16/tool_polyline.svg share/icons/breeze-dark/actions/16/tool_rect_selection.svg share/icons/breeze-dark/actions/16/tool_rectangle.svg share/icons/breeze-dark/actions/16/tool_references.svg share/icons/breeze-dark/actions/16/tool_review.svg share/icons/breeze-dark/actions/16/tool_rounded_rectangle.svg share/icons/breeze-dark/actions/16/tool_text.svg share/icons/breeze-dark/actions/16/tools-check-spelling.svg share/icons/breeze-dark/actions/16/tools-media-optical-burn-image.svg share/icons/breeze-dark/actions/16/tools-media-optical-burn.svg share/icons/breeze-dark/actions/16/tools-media-optical-copy.svg share/icons/breeze-dark/actions/16/tools-media-optical-erase.svg share/icons/breeze-dark/actions/16/tools-media-optical-format.svg share/icons/breeze-dark/actions/16/tools-report-bug.svg share/icons/breeze-dark/actions/16/tools-rip-audio-cd.svg share/icons/breeze-dark/actions/16/tools-rip-video-cd.svg share/icons/breeze-dark/actions/16/tools-rip-video-dvd.svg share/icons/breeze-dark/actions/16/tools-wizard.svg share/icons/breeze-dark/actions/16/tools.svg share/icons/breeze-dark/actions/16/transform-affect-gradient.svg share/icons/breeze-dark/actions/16/transform-affect-pattern.svg share/icons/breeze-dark/actions/16/transform-affect-rounded-corners.svg share/icons/breeze-dark/actions/16/transform-affect-stroke.svg share/icons/breeze-dark/actions/16/transform-crop-and-resize.svg share/icons/breeze-dark/actions/16/transform-crop.svg share/icons/breeze-dark/actions/16/transform-move-horizontal.svg share/icons/breeze-dark/actions/16/transform-move-vertical.svg share/icons/breeze-dark/actions/16/transform-move.svg share/icons/breeze-dark/actions/16/transform-rotate.svg share/icons/breeze-dark/actions/16/transform-scale-textbox-points.svg share/icons/breeze-dark/actions/16/transform-scale.svg share/icons/breeze-dark/actions/16/transform-shear-down.svg share/icons/breeze-dark/actions/16/transform-shear-left.svg share/icons/breeze-dark/actions/16/transform-shear-right.svg share/icons/breeze-dark/actions/16/transform-shear-up.svg share/icons/breeze-dark/actions/16/transform-skew-horizontal.svg share/icons/breeze-dark/actions/16/transform-skew-vertical.svg share/icons/breeze-dark/actions/16/transsearch.svg share/icons/breeze-dark/actions/16/trash-empty.svg share/icons/breeze-dark/actions/16/trim-margins.svg share/icons/breeze-dark/actions/16/trim-to-selection.svg share/icons/breeze-dark/actions/16/umbr-coll-message-asynchronous.svg share/icons/breeze-dark/actions/16/umbr-coll-message-synchronous.svg share/icons/breeze-dark/actions/16/umbr-message-asynchronous.svg share/icons/breeze-dark/actions/16/umbr-message-found.svg share/icons/breeze-dark/actions/16/umbr-message-lost.svg share/icons/breeze-dark/actions/16/umbr-message-synchronous.svg share/icons/breeze-dark/actions/16/umbrello_diagram_activity.svg share/icons/breeze-dark/actions/16/umbrello_diagram_class.svg share/icons/breeze-dark/actions/16/umbrello_diagram_collaboration.svg share/icons/breeze-dark/actions/16/umbrello_diagram_component.svg share/icons/breeze-dark/actions/16/umbrello_diagram_deployment.svg share/icons/breeze-dark/actions/16/umbrello_diagram_entityrelationship.svg share/icons/breeze-dark/actions/16/umbrello_diagram_sequence.svg share/icons/breeze-dark/actions/16/umbrello_diagram_state.svg share/icons/breeze-dark/actions/16/umbrello_diagram_usecase.svg share/icons/breeze-dark/actions/16/uniassociation.svg share/icons/breeze-dark/actions/16/unique_constraint.svg share/icons/breeze-dark/actions/16/unlock.svg share/icons/breeze-dark/actions/16/unmarkasblank.svg share/icons/breeze-dark/actions/16/upcomingevents-amarok.svg share/icons/breeze-dark/actions/16/upindicator.svg share/icons/breeze-dark/actions/16/upload-media.svg share/icons/breeze-dark/actions/16/usecase.svg share/icons/breeze-dark/actions/16/user-group-delete.svg share/icons/breeze-dark/actions/16/user-group-new.svg share/icons/breeze-dark/actions/16/user-group-properties.svg share/icons/breeze-dark/actions/16/user-identity.svg share/icons/breeze-dark/actions/16/user-others.svg share/icons/breeze-dark/actions/16/user-properties.svg share/icons/breeze-dark/actions/16/user.svg share/icons/breeze-dark/actions/16/usermenu-delete.svg share/icons/breeze-dark/actions/16/usermenu-down.svg share/icons/breeze-dark/actions/16/usermenu-up.svg share/icons/breeze-dark/actions/16/vcs-branch-delete.svg share/icons/breeze-dark/actions/16/vcs-branch.svg share/icons/breeze-dark/actions/16/vcs-commit-cvs-cervisia.svg share/icons/breeze-dark/actions/16/vcs-commit.svg share/icons/breeze-dark/actions/16/vcs-diff-cvs-cervisia.svg share/icons/breeze-dark/actions/16/vcs-diff.svg share/icons/breeze-dark/actions/16/vcs-merge-request.svg share/icons/breeze-dark/actions/16/vcs-merge.svg share/icons/breeze-dark/actions/16/vcs-pull.svg share/icons/breeze-dark/actions/16/vcs-push.svg share/icons/breeze-dark/actions/16/vcs-remove-cvs-cervisia.svg share/icons/breeze-dark/actions/16/vcs-stash-pop.svg share/icons/breeze-dark/actions/16/vcs-stash.svg share/icons/breeze-dark/actions/16/vcs-status-cvs-cervisia.svg share/icons/breeze-dark/actions/16/vcs-update-cvs-cervisia.svg share/icons/breeze-dark/actions/16/verb.svg share/icons/breeze-dark/actions/16/verbatim.svg share/icons/breeze-dark/actions/16/videoclip-amarok.svg share/icons/breeze-dark/actions/16/view-bank-add.svg share/icons/breeze-dark/actions/16/view-bank-delete.svg share/icons/breeze-dark/actions/16/view-bank-edit.svg share/icons/breeze-dark/actions/16/view-bank.svg share/icons/breeze-dark/actions/16/view-barcode-add.svg share/icons/breeze-dark/actions/16/view-barcode-qr.svg share/icons/breeze-dark/actions/16/view-barcode.svg share/icons/breeze-dark/actions/16/view-calendar-agenda.svg share/icons/breeze-dark/actions/16/view-calendar-birthday.svg share/icons/breeze-dark/actions/16/view-calendar-day.svg share/icons/breeze-dark/actions/16/view-calendar-holiday.svg share/icons/breeze-dark/actions/16/view-calendar-journal.svg share/icons/breeze-dark/actions/16/view-calendar-list.svg share/icons/breeze-dark/actions/16/view-calendar-month.svg share/icons/breeze-dark/actions/16/view-calendar-special-occasion.svg share/icons/breeze-dark/actions/16/view-calendar-tasks.svg share/icons/breeze-dark/actions/16/view-calendar-time-spent.svg share/icons/breeze-dark/actions/16/view-calendar-timeline.svg share/icons/breeze-dark/actions/16/view-calendar-upcoming-days.svg share/icons/breeze-dark/actions/16/view-calendar-upcoming-events.svg share/icons/breeze-dark/actions/16/view-calendar-wedding-anniversary.svg share/icons/breeze-dark/actions/16/view-calendar-week.svg share/icons/breeze-dark/actions/16/view-calendar-whatsnext.svg share/icons/breeze-dark/actions/16/view-calendar-workweek.svg share/icons/breeze-dark/actions/16/view-calendar.svg share/icons/breeze-dark/actions/16/view-categories-expenditures.svg share/icons/breeze-dark/actions/16/view-categories-incomes.svg share/icons/breeze-dark/actions/16/view-choose.svg share/icons/breeze-dark/actions/16/view-close.svg share/icons/breeze-dark/actions/16/view-conversation-balloon.svg share/icons/breeze-dark/actions/16/view-currency-list.svg share/icons/breeze-dark/actions/16/view-file-columns.svg share/icons/breeze-dark/actions/16/view-filter.svg share/icons/breeze-dark/actions/16/view-financial-account-add.svg share/icons/breeze-dark/actions/16/view-financial-account-asset-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-asset.svg share/icons/breeze-dark/actions/16/view-financial-account-cash-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-cash.svg share/icons/breeze-dark/actions/16/view-financial-account-checking-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-checking.svg share/icons/breeze-dark/actions/16/view-financial-account-close.svg share/icons/breeze-dark/actions/16/view-financial-account-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-delete.svg share/icons/breeze-dark/actions/16/view-financial-account-edit.svg share/icons/breeze-dark/actions/16/view-financial-account-investment-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-investment-security-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-investment-security.svg share/icons/breeze-dark/actions/16/view-financial-account-investment.svg share/icons/breeze-dark/actions/16/view-financial-account-liability-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-liability.svg share/icons/breeze-dark/actions/16/view-financial-account-loan-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-loan.svg share/icons/breeze-dark/actions/16/view-financial-account-reopen.svg share/icons/breeze-dark/actions/16/view-financial-account-savings-closed.svg share/icons/breeze-dark/actions/16/view-financial-account-savings.svg share/icons/breeze-dark/actions/16/view-financial-account.svg share/icons/breeze-dark/actions/16/view-financial-budget.svg share/icons/breeze-dark/actions/16/view-financial-category-add.svg share/icons/breeze-dark/actions/16/view-financial-category-delete.svg share/icons/breeze-dark/actions/16/view-financial-category-edit.svg share/icons/breeze-dark/actions/16/view-financial-category-expense.svg share/icons/breeze-dark/actions/16/view-financial-category-income.svg share/icons/breeze-dark/actions/16/view-financial-category.svg share/icons/breeze-dark/actions/16/view-financial-list.svg share/icons/breeze-dark/actions/16/view-financial-transfer-reconcile.svg share/icons/breeze-dark/actions/16/view-financial-transfer-reconciled.svg share/icons/breeze-dark/actions/16/view-financial-transfer-unreconciled.svg share/icons/breeze-dark/actions/16/view-form-action.svg share/icons/breeze-dark/actions/16/view-form.svg share/icons/breeze-dark/actions/16/view-fullscreen.svg share/icons/breeze-dark/actions/16/view-grid.svg share/icons/breeze-dark/actions/16/view-group.svg share/icons/breeze-dark/actions/16/view-hidden.svg share/icons/breeze-dark/actions/16/view-history.svg share/icons/breeze-dark/actions/16/view-institution-add.svg share/icons/breeze-dark/actions/16/view-institution-delete.svg share/icons/breeze-dark/actions/16/view-institution-edit.svg share/icons/breeze-dark/actions/16/view-institution.svg share/icons/breeze-dark/actions/16/view-left-close.svg share/icons/breeze-dark/actions/16/view-left-new.svg share/icons/breeze-dark/actions/16/view-list-details.svg share/icons/breeze-dark/actions/16/view-list-icons.svg share/icons/breeze-dark/actions/16/view-list-text.svg share/icons/breeze-dark/actions/16/view-list-tree.svg share/icons/breeze-dark/actions/16/view-media-album-cover.svg share/icons/breeze-dark/actions/16/view-media-artist.svg share/icons/breeze-dark/actions/16/view-media-equalizer.svg share/icons/breeze-dark/actions/16/view-media-lyrics.svg share/icons/breeze-dark/actions/16/view-media-playlist.svg share/icons/breeze-dark/actions/16/view-media-publisher.svg share/icons/breeze-dark/actions/16/view-media-visualization.svg share/icons/breeze-dark/actions/16/view-multiple-objects.svg share/icons/breeze-dark/actions/16/view-object-histogram-linear.svg share/icons/breeze-dark/actions/16/view-object-histogram-logarithmic.svg share/icons/breeze-dark/actions/16/view-pages-continuous.svg share/icons/breeze-dark/actions/16/view-pages-facing-first-centered.svg share/icons/breeze-dark/actions/16/view-pages-facing.svg share/icons/breeze-dark/actions/16/view-pages-overview.svg share/icons/breeze-dark/actions/16/view-pages-single.svg share/icons/breeze-dark/actions/16/view-pim-calendar.svg share/icons/breeze-dark/actions/16/view-pim-contacts.svg share/icons/breeze-dark/actions/16/view-pim-journal.svg share/icons/breeze-dark/actions/16/view-pim-mail.svg share/icons/breeze-dark/actions/16/view-pim-news.svg share/icons/breeze-dark/actions/16/view-pim-notes.svg share/icons/breeze-dark/actions/16/view-pim-tasks-pending.svg share/icons/breeze-dark/actions/16/view-pim-tasks.svg share/icons/breeze-dark/actions/16/view-presentation.svg share/icons/breeze-dark/actions/16/view-preview.svg share/icons/breeze-dark/actions/16/view-private.svg share/icons/breeze-dark/actions/16/view-process-all-tree.svg share/icons/breeze-dark/actions/16/view-process-all.svg share/icons/breeze-dark/actions/16/view-process-own.svg share/icons/breeze-dark/actions/16/view-process-system.svg share/icons/breeze-dark/actions/16/view-process-tree.svg share/icons/breeze-dark/actions/16/view-process-users.svg share/icons/breeze-dark/actions/16/view-readermode-active.svg share/icons/breeze-dark/actions/16/view-readermode.svg share/icons/breeze-dark/actions/16/view-refresh.svg share/icons/breeze-dark/actions/16/view-resource-calendar.svg share/icons/breeze-dark/actions/16/view-restore.svg share/icons/breeze-dark/actions/16/view-right-close.svg share/icons/breeze-dark/actions/16/view-right-new.svg share/icons/breeze-dark/actions/16/view-services-scripted-amarok.svg share/icons/breeze-dark/actions/16/view-sidetree.svg share/icons/breeze-dark/actions/16/view-sort-ascending-name.svg share/icons/breeze-dark/actions/16/view-sort-ascending.svg share/icons/breeze-dark/actions/16/view-sort-descending-name.svg share/icons/breeze-dark/actions/16/view-sort-descending.svg share/icons/breeze-dark/actions/16/view-sort.svg share/icons/breeze-dark/actions/16/view-split-left-right.svg share/icons/breeze-dark/actions/16/view-split-top-bottom.svg share/icons/breeze-dark/actions/16/view-statistics.svg share/icons/breeze-dark/actions/16/view-table-of-contents-ltr.svg share/icons/breeze-dark/actions/16/view-table-of-contents-rtl.svg share/icons/breeze-dark/actions/16/view-task-add.svg share/icons/breeze-dark/actions/16/view-task-child-add.svg share/icons/breeze-dark/actions/16/view-task-child.svg share/icons/breeze-dark/actions/16/view-task.svg share/icons/breeze-dark/actions/16/view-time-schedule-baselined-add.svg share/icons/breeze-dark/actions/16/view-time-schedule-baselined-remove.svg share/icons/breeze-dark/actions/16/view-time-schedule-baselined.svg share/icons/breeze-dark/actions/16/view-time-schedule-calculus.svg share/icons/breeze-dark/actions/16/view-time-schedule-child-insert.svg share/icons/breeze-dark/actions/16/view-time-schedule-edit.svg share/icons/breeze-dark/actions/16/view-time-schedule-insert.svg share/icons/breeze-dark/actions/16/view-time-schedule.svg share/icons/breeze-dark/actions/16/view-visible.svg share/icons/breeze-dark/actions/16/view-web-browser-dom-tree.svg share/icons/breeze-dark/actions/16/view_fit_to_page.svg share/icons/breeze-dark/actions/16/viewbib.svg share/icons/breeze-dark/actions/16/viewhtml.svg share/icons/breeze-dark/actions/16/viewimage.svg share/icons/breeze-dark/actions/16/viewlog.svg share/icons/breeze-dark/actions/16/viewpdf.svg share/icons/breeze-dark/actions/16/viewps.svg share/icons/breeze-dark/actions/16/virtual-desktops.svg share/icons/breeze-dark/actions/16/visibility.svg share/icons/breeze-dark/actions/16/widget-alternatives.svg share/icons/breeze-dark/actions/16/window-close.svg share/icons/breeze-dark/actions/16/window-duplicate.svg share/icons/breeze-dark/actions/16/window-keep-above.svg share/icons/breeze-dark/actions/16/window-keep-below.svg share/icons/breeze-dark/actions/16/window-maximize.svg share/icons/breeze-dark/actions/16/window-minimize.svg share/icons/breeze-dark/actions/16/window-new.svg share/icons/breeze-dark/actions/16/window-next.svg share/icons/breeze-dark/actions/16/window-pin.svg share/icons/breeze-dark/actions/16/window-previous.svg share/icons/breeze-dark/actions/16/window-restore.svg share/icons/breeze-dark/actions/16/window-shade.svg share/icons/breeze-dark/actions/16/window-unpin.svg share/icons/breeze-dark/actions/16/window-unshade.svg share/icons/breeze-dark/actions/16/window.svg share/icons/breeze-dark/actions/16/wizard_math.svg share/icons/breeze-dark/actions/16/wizard_pdftools.svg share/icons/breeze-dark/actions/16/wizard_pstools.svg share/icons/breeze-dark/actions/16/wizard_tabular.svg share/icons/breeze-dark/actions/16/x-clementine-album.svg share/icons/breeze-dark/actions/16/x-clementine-albums.svg share/icons/breeze-dark/actions/16/x-clementine-artist.svg share/icons/breeze-dark/actions/16/x-clementine-shuffle.svg share/icons/breeze-dark/actions/16/x-shape-connection.svg share/icons/breeze-dark/actions/16/x-shape-formula.svg share/icons/breeze-dark/actions/16/x-shape-image.svg share/icons/breeze-dark/actions/16/x-shape-text.svg share/icons/breeze-dark/actions/16/x-zoom-in.svg share/icons/breeze-dark/actions/16/x-zoom-out.svg share/icons/breeze-dark/actions/16/xml-attribute-delete.svg share/icons/breeze-dark/actions/16/xml-element-new.svg share/icons/breeze-dark/actions/16/xml-node-delete.svg share/icons/breeze-dark/actions/16/xml-node-duplicate.svg share/icons/breeze-dark/actions/16/xml-text-new.svg share/icons/breeze-dark/actions/16/y-zoom-in.svg share/icons/breeze-dark/actions/16/y-zoom-out.svg share/icons/breeze-dark/actions/16/zoom-1-to-2.svg share/icons/breeze-dark/actions/16/zoom-2-to-1.svg share/icons/breeze-dark/actions/16/zoom-all.svg share/icons/breeze-dark/actions/16/zoom-double-size.svg share/icons/breeze-dark/actions/16/zoom-draw.svg share/icons/breeze-dark/actions/16/zoom-fit-best.svg share/icons/breeze-dark/actions/16/zoom-fit-drawing.svg share/icons/breeze-dark/actions/16/zoom-fit-height.svg share/icons/breeze-dark/actions/16/zoom-fit-page.svg share/icons/breeze-dark/actions/16/zoom-fit-selection.svg share/icons/breeze-dark/actions/16/zoom-fit-width.svg share/icons/breeze-dark/actions/16/zoom-half-size.svg share/icons/breeze-dark/actions/16/zoom-in-large.svg share/icons/breeze-dark/actions/16/zoom-in-x.svg share/icons/breeze-dark/actions/16/zoom-in-y.svg share/icons/breeze-dark/actions/16/zoom-in.svg share/icons/breeze-dark/actions/16/zoom-next.svg share/icons/breeze-dark/actions/16/zoom-original.svg share/icons/breeze-dark/actions/16/zoom-out-large.svg share/icons/breeze-dark/actions/16/zoom-out-x.svg share/icons/breeze-dark/actions/16/zoom-out-y.svg share/icons/breeze-dark/actions/16/zoom-out.svg share/icons/breeze-dark/actions/16/zoom-previous.svg share/icons/breeze-dark/actions/16/zoom-select-fit.svg share/icons/breeze-dark/actions/16/zoom-select-x.svg share/icons/breeze-dark/actions/16/zoom-select-y.svg share/icons/breeze-dark/actions/16/zoom-select.svg share/icons/breeze-dark/actions/16/zoom-selection.svg share/icons/breeze-dark/actions/16/zoom.svg share/icons/breeze-dark/actions/16@2x share/icons/breeze-dark/actions/16@3x share/icons/breeze-dark/actions/22/CVnamespace.svg share/icons/breeze-dark/actions/22/Info-amarok.svg share/icons/breeze-dark/actions/22/PrePostCondition.svg share/icons/breeze-dark/actions/22/accept_signal.svg share/icons/breeze-dark/actions/22/accept_time_event.svg share/icons/breeze-dark/actions/22/acrobat.svg share/icons/breeze-dark/actions/22/action-albumfolder-importdir2.svg share/icons/breeze-dark/actions/22/action-rss_tag.svg share/icons/breeze-dark/actions/22/activities.svg share/icons/breeze-dark/actions/22/activity-fork.svg share/icons/breeze-dark/actions/22/actor.svg share/icons/breeze-dark/actions/22/add-placemark.svg share/icons/breeze-dark/actions/22/add-subtitle.svg share/icons/breeze-dark/actions/22/address-book-new.svg share/icons/breeze-dark/actions/22/addressbook-details.svg share/icons/breeze-dark/actions/22/adjustcurves.svg share/icons/breeze-dark/actions/22/adjusthsl.svg share/icons/breeze-dark/actions/22/adjustlevels.svg share/icons/breeze-dark/actions/22/adjustrgb.svg share/icons/breeze-dark/actions/22/aggregation.svg share/icons/breeze-dark/actions/22/akonadi-phone-home.svg share/icons/breeze-dark/actions/22/akonadiconsole.svg share/icons/breeze-dark/actions/22/albumfolder-importdir.svg share/icons/breeze-dark/actions/22/albumfolder-importimages.svg share/icons/breeze-dark/actions/22/albumfolder-new.svg share/icons/breeze-dark/actions/22/albumfolder-properties.svg share/icons/breeze-dark/actions/22/albumfolder-user-trash.svg share/icons/breeze-dark/actions/22/align-horizontal-baseline.svg share/icons/breeze-dark/actions/22/align-horizontal-bottom-out.svg share/icons/breeze-dark/actions/22/align-horizontal-center.svg share/icons/breeze-dark/actions/22/align-horizontal-left-out.svg share/icons/breeze-dark/actions/22/align-horizontal-left-to-anchor.svg share/icons/breeze-dark/actions/22/align-horizontal-left.svg share/icons/breeze-dark/actions/22/align-horizontal-node.svg share/icons/breeze-dark/actions/22/align-horizontal-right-out.svg share/icons/breeze-dark/actions/22/align-horizontal-right-to-anchor.svg share/icons/breeze-dark/actions/22/align-horizontal-right.svg share/icons/breeze-dark/actions/22/align-horizontal-top-out.svg share/icons/breeze-dark/actions/22/align-vertical-baseline.svg share/icons/breeze-dark/actions/22/align-vertical-bottom-out.svg share/icons/breeze-dark/actions/22/align-vertical-bottom-to-anchor.svg share/icons/breeze-dark/actions/22/align-vertical-bottom.svg share/icons/breeze-dark/actions/22/align-vertical-center.svg share/icons/breeze-dark/actions/22/align-vertical-node.svg share/icons/breeze-dark/actions/22/align-vertical-top-out.svg share/icons/breeze-dark/actions/22/align-vertical-top-to-anchor.svg share/icons/breeze-dark/actions/22/align-vertical-top.svg share/icons/breeze-dark/actions/22/amarok_artist.svg share/icons/breeze-dark/actions/22/amarok_cart_add.svg share/icons/breeze-dark/actions/22/amarok_cart_remove.svg share/icons/breeze-dark/actions/22/amarok_cart_view.svg share/icons/breeze-dark/actions/22/amarok_change_language.svg share/icons/breeze-dark/actions/22/amarok_clock.svg share/icons/breeze-dark/actions/22/amarok_lyrics.svg share/icons/breeze-dark/actions/22/amarok_playcount.svg share/icons/breeze-dark/actions/22/amarok_playlist.svg share/icons/breeze-dark/actions/22/amarok_playlist_refresh.svg share/icons/breeze-dark/actions/22/amarok_scripts.svg share/icons/breeze-dark/actions/22/anchor.svg share/icons/breeze-dark/actions/22/animal.svg share/icons/breeze-dark/actions/22/animation-stage.svg share/icons/breeze-dark/actions/22/answer-correct.svg share/icons/breeze-dark/actions/22/answer.svg share/icons/breeze-dark/actions/22/antivignetting.svg share/icons/breeze-dark/actions/22/application-exit.svg share/icons/breeze-dark/actions/22/application-menu.svg share/icons/breeze-dark/actions/22/appointment-new.svg share/icons/breeze-dark/actions/22/approved.svg share/icons/breeze-dark/actions/22/archive-extract.svg share/icons/breeze-dark/actions/22/archive-insert-directory.svg share/icons/breeze-dark/actions/22/archive-insert.svg share/icons/breeze-dark/actions/22/archive-remove.svg share/icons/breeze-dark/actions/22/arrow-down-double.svg share/icons/breeze-dark/actions/22/arrow-down.svg share/icons/breeze-dark/actions/22/arrow-left-double.svg share/icons/breeze-dark/actions/22/arrow-left.svg share/icons/breeze-dark/actions/22/arrow-right-double.svg share/icons/breeze-dark/actions/22/arrow-right.svg share/icons/breeze-dark/actions/22/arrow-up-double.svg share/icons/breeze-dark/actions/22/arrow-up.svg share/icons/breeze-dark/actions/22/arrow.svg share/icons/breeze-dark/actions/22/artifact.svg share/icons/breeze-dark/actions/22/artistictext-tool.svg share/icons/breeze-dark/actions/22/association.svg share/icons/breeze-dark/actions/22/atmosphere.svg share/icons/breeze-dark/actions/22/auto-scale-all.svg share/icons/breeze-dark/actions/22/auto-scale-x.svg share/icons/breeze-dark/actions/22/auto-scale-y.svg share/icons/breeze-dark/actions/22/auto-transition.svg share/icons/breeze-dark/actions/22/auto-type.svg share/icons/breeze-dark/actions/22/autocorrection.svg share/icons/breeze-dark/actions/22/backgroundtool.svg share/icons/breeze-dark/actions/22/backup.svg share/icons/breeze-dark/actions/22/bboxnext.svg share/icons/breeze-dark/actions/22/bboxprev.svg share/icons/breeze-dark/actions/22/beamerblock.svg share/icons/breeze-dark/actions/22/beamerframe.svg share/icons/breeze-dark/actions/22/bibtex.svg share/icons/breeze-dark/actions/22/bigskip.svg share/icons/breeze-dark/actions/22/black_sum.svg share/icons/breeze-dark/actions/22/blurfx.svg share/icons/breeze-dark/actions/22/blurimage.svg share/icons/breeze-dark/actions/22/bookmark-add-folder.svg share/icons/breeze-dark/actions/22/bookmark-edit.svg share/icons/breeze-dark/actions/22/bookmark-new-list.svg share/icons/breeze-dark/actions/22/bookmark-new.svg share/icons/breeze-dark/actions/22/bookmark-remove.svg share/icons/breeze-dark/actions/22/bookmark-toolbar.svg share/icons/breeze-dark/actions/22/bookmarks-organize.svg share/icons/breeze-dark/actions/22/bookmarks.svg share/icons/breeze-dark/actions/22/borderpainter.svg share/icons/breeze-dark/actions/22/bordertool.svg share/icons/breeze-dark/actions/22/box.svg share/icons/breeze-dark/actions/22/bqm-diff.svg share/icons/breeze-dark/actions/22/bqm-remove.svg share/icons/breeze-dark/actions/22/bqm-rmqueue.svg share/icons/breeze-dark/actions/22/branch.svg share/icons/breeze-dark/actions/22/brightness-high.svg share/icons/breeze-dark/actions/22/brightness-low.svg share/icons/breeze-dark/actions/22/bwtonal.svg share/icons/breeze-dark/actions/22/call-start.svg share/icons/breeze-dark/actions/22/call-stop.svg share/icons/breeze-dark/actions/22/call-voicemail.svg share/icons/breeze-dark/actions/22/calligraphy.svg share/icons/breeze-dark/actions/22/callout-shape.svg share/icons/breeze-dark/actions/22/cards-block.svg share/icons/breeze-dark/actions/22/category.svg share/icons/breeze-dark/actions/22/category2parent.svg share/icons/breeze-dark/actions/22/cell_edit.svg share/icons/breeze-dark/actions/22/cell_layout.svg share/icons/breeze-dark/actions/22/channelmixer.svg share/icons/breeze-dark/actions/22/character-set.svg share/icons/breeze-dark/actions/22/charcoaltool.svg share/icons/breeze-dark/actions/22/check_constraint.svg share/icons/breeze-dark/actions/22/checkbox.svg share/icons/breeze-dark/actions/22/checkmark.svg share/icons/breeze-dark/actions/22/child2category.svg share/icons/breeze-dark/actions/22/choice-rhomb.svg share/icons/breeze-dark/actions/22/choice-round.svg share/icons/breeze-dark/actions/22/chronometer-lap.svg share/icons/breeze-dark/actions/22/chronometer-pause.svg share/icons/breeze-dark/actions/22/chronometer-reset.svg share/icons/breeze-dark/actions/22/chronometer-start.svg share/icons/breeze-dark/actions/22/chronometer.svg share/icons/breeze-dark/actions/22/circular-arrow-shape.svg share/icons/breeze-dark/actions/22/class-or-package.svg share/icons/breeze-dark/actions/22/class.svg share/icons/breeze-dark/actions/22/clock-large.svg share/icons/breeze-dark/actions/22/clock.svg share/icons/breeze-dark/actions/22/cloud-download.svg share/icons/breeze-dark/actions/22/cloud-upload.svg share/icons/breeze-dark/actions/22/code-block.svg share/icons/breeze-dark/actions/22/code-class.svg share/icons/breeze-dark/actions/22/code-context.svg share/icons/breeze-dark/actions/22/code-function.svg share/icons/breeze-dark/actions/22/code-typedef.svg share/icons/breeze-dark/actions/22/code-variable.svg share/icons/breeze-dark/actions/22/collapse-all.svg share/icons/breeze-dark/actions/22/collapse.svg share/icons/breeze-dark/actions/22/collection-rescan-amarok.svg share/icons/breeze-dark/actions/22/color-fill.svg share/icons/breeze-dark/actions/22/color-gradient.svg share/icons/breeze-dark/actions/22/color-management.svg share/icons/breeze-dark/actions/22/color-mode-black-white.svg share/icons/breeze-dark/actions/22/color-mode-hue-shift-negative.svg share/icons/breeze-dark/actions/22/color-mode-hue-shift-positive.svg share/icons/breeze-dark/actions/22/color-mode-invert-image.svg share/icons/breeze-dark/actions/22/color-mode-invert-text.svg share/icons/breeze-dark/actions/22/color-picker-black.svg share/icons/breeze-dark/actions/22/color-picker-grey.svg share/icons/breeze-dark/actions/22/color-picker-white.svg share/icons/breeze-dark/actions/22/color-picker.svg share/icons/breeze-dark/actions/22/colorfx.svg share/icons/breeze-dark/actions/22/colormanagement.svg share/icons/breeze-dark/actions/22/colorneg.svg share/icons/breeze-dark/actions/22/colors-chromablue.svg share/icons/breeze-dark/actions/22/colors-chromagreen.svg share/icons/breeze-dark/actions/22/colors-chromared.svg share/icons/breeze-dark/actions/22/colors-luma.svg share/icons/breeze-dark/actions/22/combined_fragment.svg share/icons/breeze-dark/actions/22/compass.svg share/icons/breeze-dark/actions/22/component.svg share/icons/breeze-dark/actions/22/composite-track-off.svg share/icons/breeze-dark/actions/22/composite-track-on.svg share/icons/breeze-dark/actions/22/composite-track-preview.svg share/icons/breeze-dark/actions/22/composition.svg share/icons/breeze-dark/actions/22/configure-shortcuts.svg share/icons/breeze-dark/actions/22/configure-toolbars.svg share/icons/breeze-dark/actions/22/configure.svg share/icons/breeze-dark/actions/22/configure_kile.svg share/icons/breeze-dark/actions/22/configure_project.svg share/icons/breeze-dark/actions/22/contact-new.svg share/icons/breeze-dark/actions/22/containment.svg share/icons/breeze-dark/actions/22/contents.svg share/icons/breeze-dark/actions/22/contrast.svg share/icons/breeze-dark/actions/22/convert.svg share/icons/breeze-dark/actions/22/coordinate.svg share/icons/breeze-dark/actions/22/copy-coordinates.svg share/icons/breeze-dark/actions/22/createpath.svg share/icons/breeze-dark/actions/22/cross-shape.svg share/icons/breeze-dark/actions/22/crosshairs.svg share/icons/breeze-dark/actions/22/cursor-arrow.svg share/icons/breeze-dark/actions/22/curve-connector.svg share/icons/breeze-dark/actions/22/dashboard-show.svg share/icons/breeze-dark/actions/22/database-change-key.svg share/icons/breeze-dark/actions/22/database-index.svg share/icons/breeze-dark/actions/22/datatype.svg share/icons/breeze-dark/actions/22/dblatex.svg share/icons/breeze-dark/actions/22/debug-execute-from-cursor.svg share/icons/breeze-dark/actions/22/debug-execute-to-cursor.svg share/icons/breeze-dark/actions/22/debug-run-cursor.svg share/icons/breeze-dark/actions/22/debug-run.svg share/icons/breeze-dark/actions/22/debug-step-instruction.svg share/icons/breeze-dark/actions/22/debug-step-into-instruction.svg share/icons/breeze-dark/actions/22/debug-step-into.svg share/icons/breeze-dark/actions/22/debug-step-out.svg share/icons/breeze-dark/actions/22/debug-step-over.svg share/icons/breeze-dark/actions/22/deep-history.svg share/icons/breeze-dark/actions/22/delete-comment.svg share/icons/breeze-dark/actions/22/delete-table-row.svg share/icons/breeze-dark/actions/22/delete.svg share/icons/breeze-dark/actions/22/dependency.svg share/icons/breeze-dark/actions/22/depth16to8.svg share/icons/breeze-dark/actions/22/depth8to16.svg share/icons/breeze-dark/actions/22/description.svg share/icons/breeze-dark/actions/22/dfrac.svg share/icons/breeze-dark/actions/22/diag_activity.svg share/icons/breeze-dark/actions/22/diag_class.svg share/icons/breeze-dark/actions/22/diag_component.svg share/icons/breeze-dark/actions/22/dialog-cancel.svg share/icons/breeze-dark/actions/22/dialog-close.svg share/icons/breeze-dark/actions/22/dialog-input-devices.svg share/icons/breeze-dark/actions/22/dialog-messages.svg share/icons/breeze-dark/actions/22/dialog-ok-apply.svg share/icons/breeze-dark/actions/22/dialog-ok.svg share/icons/breeze-dark/actions/22/dialog-scripts.svg share/icons/breeze-dark/actions/22/dialog-xml-editor.svg share/icons/breeze-dark/actions/22/dirsync.svg share/icons/breeze-dark/actions/22/discrete.svg share/icons/breeze-dark/actions/22/displaymathmode.svg share/icons/breeze-dark/actions/22/distortionfx.svg share/icons/breeze-dark/actions/22/distribute-graph-directed.svg share/icons/breeze-dark/actions/22/distribute-graph.svg share/icons/breeze-dark/actions/22/distribute-horizontal-baseline.svg share/icons/breeze-dark/actions/22/distribute-horizontal-center.svg share/icons/breeze-dark/actions/22/distribute-horizontal-equal.svg share/icons/breeze-dark/actions/22/distribute-horizontal-gaps.svg share/icons/breeze-dark/actions/22/distribute-horizontal-left.svg share/icons/breeze-dark/actions/22/distribute-horizontal-margin.svg share/icons/breeze-dark/actions/22/distribute-horizontal-node.svg share/icons/breeze-dark/actions/22/distribute-horizontal-page.svg share/icons/breeze-dark/actions/22/distribute-horizontal-right.svg share/icons/breeze-dark/actions/22/distribute-horizontal-x.svg share/icons/breeze-dark/actions/22/distribute-horizontal.svg share/icons/breeze-dark/actions/22/distribute-randomize.svg share/icons/breeze-dark/actions/22/distribute-remove-overlaps.svg share/icons/breeze-dark/actions/22/distribute-unclump.svg share/icons/breeze-dark/actions/22/distribute-vertical-baseline.svg share/icons/breeze-dark/actions/22/distribute-vertical-bottom.svg share/icons/breeze-dark/actions/22/distribute-vertical-center.svg share/icons/breeze-dark/actions/22/distribute-vertical-equal.svg share/icons/breeze-dark/actions/22/distribute-vertical-gaps.svg share/icons/breeze-dark/actions/22/distribute-vertical-margin.svg share/icons/breeze-dark/actions/22/distribute-vertical-node.svg share/icons/breeze-dark/actions/22/distribute-vertical-page.svg share/icons/breeze-dark/actions/22/distribute-vertical-top.svg share/icons/breeze-dark/actions/22/distribute-vertical-y.svg share/icons/breeze-dark/actions/22/distribute-vertical.svg share/icons/breeze-dark/actions/22/document-close.svg share/icons/breeze-dark/actions/22/document-decrypt.svg share/icons/breeze-dark/actions/22/document-edit-decrypt-verify.svg share/icons/breeze-dark/actions/22/document-edit-decrypt.svg share/icons/breeze-dark/actions/22/document-edit-encrypt.svg share/icons/breeze-dark/actions/22/document-edit-sign-encrypt.svg share/icons/breeze-dark/actions/22/document-edit-sign.svg share/icons/breeze-dark/actions/22/document-edit-verify.svg share/icons/breeze-dark/actions/22/document-edit.svg share/icons/breeze-dark/actions/22/document-encrypt.svg share/icons/breeze-dark/actions/22/document-encrypted.svg share/icons/breeze-dark/actions/22/document-export-ocal.svg share/icons/breeze-dark/actions/22/document-export-table.svg share/icons/breeze-dark/actions/22/document-export.svg share/icons/breeze-dark/actions/22/document-import-ocal.svg share/icons/breeze-dark/actions/22/document-import.svg share/icons/breeze-dark/actions/22/document-multiple.svg share/icons/breeze-dark/actions/22/document-new-from-template.svg share/icons/breeze-dark/actions/22/document-new.svg share/icons/breeze-dark/actions/22/document-open-data.svg share/icons/breeze-dark/actions/22/document-open-folder.svg share/icons/breeze-dark/actions/22/document-open-recent.svg share/icons/breeze-dark/actions/22/document-open-remote.svg share/icons/breeze-dark/actions/22/document-open.svg share/icons/breeze-dark/actions/22/document-preview-archive.svg share/icons/breeze-dark/actions/22/document-preview.svg share/icons/breeze-dark/actions/22/document-print-direct.svg share/icons/breeze-dark/actions/22/document-print-frame.svg share/icons/breeze-dark/actions/22/document-print-preview.svg share/icons/breeze-dark/actions/22/document-print.svg share/icons/breeze-dark/actions/22/document-properties.svg share/icons/breeze-dark/actions/22/document-replace.svg share/icons/breeze-dark/actions/22/document-revert.svg share/icons/breeze-dark/actions/22/document-save-all.svg share/icons/breeze-dark/actions/22/document-save-as-template.svg share/icons/breeze-dark/actions/22/document-save-as.svg share/icons/breeze-dark/actions/22/document-save.svg share/icons/breeze-dark/actions/22/document-scan.svg share/icons/breeze-dark/actions/22/document-send.svg share/icons/breeze-dark/actions/22/document-share.svg share/icons/breeze-dark/actions/22/document-sign.svg share/icons/breeze-dark/actions/22/document-swap.svg share/icons/breeze-dark/actions/22/documentation.svg share/icons/breeze-dark/actions/22/documentinfo.svg share/icons/breeze-dark/actions/22/donate.svg share/icons/breeze-dark/actions/22/dontknow.svg share/icons/breeze-dark/actions/22/download-amarok.svg share/icons/breeze-dark/actions/22/download-later.svg share/icons/breeze-dark/actions/22/download.svg share/icons/breeze-dark/actions/22/drag-surface.svg share/icons/breeze-dark/actions/22/draw-arrow-back.svg share/icons/breeze-dark/actions/22/draw-arrow-down.svg share/icons/breeze-dark/actions/22/draw-arrow-forward.svg share/icons/breeze-dark/actions/22/draw-arrow-up.svg share/icons/breeze-dark/actions/22/draw-arrow.svg share/icons/breeze-dark/actions/22/draw-bezier-curves.svg share/icons/breeze-dark/actions/22/draw-brush.svg share/icons/breeze-dark/actions/22/draw-calligraphic.svg share/icons/breeze-dark/actions/22/draw-circle.svg share/icons/breeze-dark/actions/22/draw-connector.svg share/icons/breeze-dark/actions/22/draw-cross.svg share/icons/breeze-dark/actions/22/draw-cuboid.svg share/icons/breeze-dark/actions/22/draw-donut.svg share/icons/breeze-dark/actions/22/draw-ellipse.svg share/icons/breeze-dark/actions/22/draw-eraser.svg share/icons/breeze-dark/actions/22/draw-freehand.svg share/icons/breeze-dark/actions/22/draw-halfcircle1.svg share/icons/breeze-dark/actions/22/draw-halfcircle2.svg share/icons/breeze-dark/actions/22/draw-halfcircle3.svg share/icons/breeze-dark/actions/22/draw-halfcircle4.svg share/icons/breeze-dark/actions/22/draw-highlight.svg share/icons/breeze-dark/actions/22/draw-line.svg share/icons/breeze-dark/actions/22/draw-path.svg share/icons/breeze-dark/actions/22/draw-polygon-star.svg share/icons/breeze-dark/actions/22/draw-polygon.svg share/icons/breeze-dark/actions/22/draw-polyline.svg share/icons/breeze-dark/actions/22/draw-rectangle-rounded.svg share/icons/breeze-dark/actions/22/draw-rectangle.svg share/icons/breeze-dark/actions/22/draw-spiral.svg share/icons/breeze-dark/actions/22/draw-square-inverted-corners.svg share/icons/breeze-dark/actions/22/draw-star.svg share/icons/breeze-dark/actions/22/draw-text.svg share/icons/breeze-dark/actions/22/draw-triangle.svg share/icons/breeze-dark/actions/22/draw-triangle1.svg share/icons/breeze-dark/actions/22/draw-triangle2.svg share/icons/breeze-dark/actions/22/draw-triangle3.svg share/icons/breeze-dark/actions/22/draw-triangle4.svg share/icons/breeze-dark/actions/22/draw-watercolor.svg share/icons/breeze-dark/actions/22/dvipdf.svg share/icons/breeze-dark/actions/22/dvipng.svg share/icons/breeze-dark/actions/22/dvips.svg share/icons/breeze-dark/actions/22/dvisearch.svg share/icons/breeze-dark/actions/22/dynamic-amarok.svg share/icons/breeze-dark/actions/22/earthquake.svg share/icons/breeze-dark/actions/22/edit-bomb.svg share/icons/breeze-dark/actions/22/edit-clear-all.svg share/icons/breeze-dark/actions/22/edit-clear-history.svg share/icons/breeze-dark/actions/22/edit-clear-list.svg share/icons/breeze-dark/actions/22/edit-clear-locationbar-ltr.svg share/icons/breeze-dark/actions/22/edit-clear-locationbar-rtl.svg share/icons/breeze-dark/actions/22/edit-clear.svg share/icons/breeze-dark/actions/22/edit-clone-unlink.svg share/icons/breeze-dark/actions/22/edit-clone.svg share/icons/breeze-dark/actions/22/edit-comment.svg share/icons/breeze-dark/actions/22/edit-copy-path.svg share/icons/breeze-dark/actions/22/edit-copy.svg share/icons/breeze-dark/actions/22/edit-cut.svg share/icons/breeze-dark/actions/22/edit-delete-remove.svg share/icons/breeze-dark/actions/22/edit-delete-shred.svg share/icons/breeze-dark/actions/22/edit-delete.svg share/icons/breeze-dark/actions/22/edit-download.svg share/icons/breeze-dark/actions/22/edit-entry.svg share/icons/breeze-dark/actions/22/edit-find-mail.svg share/icons/breeze-dark/actions/22/edit-find-project.svg share/icons/breeze-dark/actions/22/edit-find-replace.svg share/icons/breeze-dark/actions/22/edit-find-user.svg share/icons/breeze-dark/actions/22/edit-find.svg share/icons/breeze-dark/actions/22/edit-group.svg share/icons/breeze-dark/actions/22/edit-guides.svg share/icons/breeze-dark/actions/22/edit-image-face-add.svg share/icons/breeze-dark/actions/22/edit-image-face-detect.svg share/icons/breeze-dark/actions/22/edit-image-face-recognize.svg share/icons/breeze-dark/actions/22/edit-image-face-show.svg share/icons/breeze-dark/actions/22/edit-image.svg share/icons/breeze-dark/actions/22/edit-line-width.svg share/icons/breeze-dark/actions/22/edit-link.svg share/icons/breeze-dark/actions/22/edit-map.svg share/icons/breeze-dark/actions/22/edit-move.svg share/icons/breeze-dark/actions/22/edit-node.svg share/icons/breeze-dark/actions/22/edit-none.svg share/icons/breeze-dark/actions/22/edit-opacity.svg share/icons/breeze-dark/actions/22/edit-paste-in-place.svg share/icons/breeze-dark/actions/22/edit-paste.svg share/icons/breeze-dark/actions/22/edit-redo.svg share/icons/breeze-dark/actions/22/edit-rename.svg share/icons/breeze-dark/actions/22/edit-reset.svg share/icons/breeze-dark/actions/22/edit-select-all.svg share/icons/breeze-dark/actions/22/edit-select-invert.svg share/icons/breeze-dark/actions/22/edit-select-lasso.svg share/icons/breeze-dark/actions/22/edit-select-none.svg share/icons/breeze-dark/actions/22/edit-select-text.svg share/icons/breeze-dark/actions/22/edit-select.svg share/icons/breeze-dark/actions/22/edit-table-cell-merge.svg share/icons/breeze-dark/actions/22/edit-table-cell-split.svg share/icons/breeze-dark/actions/22/edit-table-delete-column.svg share/icons/breeze-dark/actions/22/edit-table-delete-row.svg share/icons/breeze-dark/actions/22/edit-table-insert-column-left.svg share/icons/breeze-dark/actions/22/edit-table-insert-column-right.svg share/icons/breeze-dark/actions/22/edit-table-insert-row-above.svg share/icons/breeze-dark/actions/22/edit-table-insert-row-below.svg share/icons/breeze-dark/actions/22/edit-table-insert-row-under.svg share/icons/breeze-dark/actions/22/edit-text-frame-update.svg share/icons/breeze-dark/actions/22/edit-undo.svg share/icons/breeze-dark/actions/22/edit_animation.svg share/icons/breeze-dark/actions/22/editimage.svg share/icons/breeze-dark/actions/22/editor.svg share/icons/breeze-dark/actions/22/editpath.svg share/icons/breeze-dark/actions/22/edittext.svg share/icons/breeze-dark/actions/22/ellipse-shape.svg share/icons/breeze-dark/actions/22/embosstool.svg share/icons/breeze-dark/actions/22/emph.svg share/icons/breeze-dark/actions/22/end_of_life.svg share/icons/breeze-dark/actions/22/end_state.svg share/icons/breeze-dark/actions/22/entity.svg share/icons/breeze-dark/actions/22/entrance_animations.svg share/icons/breeze-dark/actions/22/entry-clone.svg share/icons/breeze-dark/actions/22/entry-delete.svg share/icons/breeze-dark/actions/22/entry-edit.svg share/icons/breeze-dark/actions/22/entry-new.svg share/icons/breeze-dark/actions/22/enum.svg share/icons/breeze-dark/actions/22/enumerate.svg share/icons/breeze-dark/actions/22/error.svg share/icons/breeze-dark/actions/22/errornext.svg share/icons/breeze-dark/actions/22/errorprev.svg share/icons/breeze-dark/actions/22/escape-direction-all.svg share/icons/breeze-dark/actions/22/escape-direction-down.svg share/icons/breeze-dark/actions/22/escape-direction-horizontal.svg share/icons/breeze-dark/actions/22/escape-direction-left.svg share/icons/breeze-dark/actions/22/escape-direction-right.svg share/icons/breeze-dark/actions/22/escape-direction-up.svg share/icons/breeze-dark/actions/22/escape-direction-vertical.svg share/icons/breeze-dark/actions/22/exception.svg share/icons/breeze-dark/actions/22/exchange-positions-clockwise.svg share/icons/breeze-dark/actions/22/exchange-positions-zorder.svg share/icons/breeze-dark/actions/22/exchange-positions.svg share/icons/breeze-dark/actions/22/exifinfo.svg share/icons/breeze-dark/actions/22/exit_animations.svg share/icons/breeze-dark/actions/22/expand-all.svg share/icons/breeze-dark/actions/22/expand.svg share/icons/breeze-dark/actions/22/favorite-genres-amarok.svg share/icons/breeze-dark/actions/22/favorite.svg share/icons/breeze-dark/actions/22/feed-subscribe.svg share/icons/breeze-dark/actions/22/file-zoom-in.svg share/icons/breeze-dark/actions/22/file-zoom-out.svg share/icons/breeze-dark/actions/22/filegrep.svg share/icons/breeze-dark/actions/22/filename-album-amarok.svg share/icons/breeze-dark/actions/22/filename-and-amarok.svg share/icons/breeze-dark/actions/22/filename-artist-amarok.svg share/icons/breeze-dark/actions/22/filename-bpm-amarok.svg share/icons/breeze-dark/actions/22/filename-comment-amarok.svg share/icons/breeze-dark/actions/22/filename-composer-amarok.svg share/icons/breeze-dark/actions/22/filename-dash-amarok.svg share/icons/breeze-dark/actions/22/filename-discnumber-amarok.svg share/icons/breeze-dark/actions/22/filename-divider.svg share/icons/breeze-dark/actions/22/filename-dot-amarok.svg share/icons/breeze-dark/actions/22/filename-filetype-amarok.svg share/icons/breeze-dark/actions/22/filename-genre-amarok.svg share/icons/breeze-dark/actions/22/filename-group-length.svg share/icons/breeze-dark/actions/22/filename-group-tracks.svg share/icons/breeze-dark/actions/22/filename-ignore-amarok.svg share/icons/breeze-dark/actions/22/filename-initial-amarok.svg share/icons/breeze-dark/actions/22/filename-last-played.svg share/icons/breeze-dark/actions/22/filename-moodbar.svg share/icons/breeze-dark/actions/22/filename-sample-rate.svg share/icons/breeze-dark/actions/22/filename-slash-amarok.svg share/icons/breeze-dark/actions/22/filename-space-amarok.svg share/icons/breeze-dark/actions/22/filename-title-amarok.svg share/icons/breeze-dark/actions/22/filename-track-amarok.svg share/icons/breeze-dark/actions/22/filename-underscore-amarok.svg share/icons/breeze-dark/actions/22/filename-year-amarok.svg share/icons/breeze-dark/actions/22/fileview-preview.svg share/icons/breeze-dark/actions/22/fill-color.svg share/icons/breeze-dark/actions/22/filmgrain.svg share/icons/breeze-dark/actions/22/final_activity.svg share/icons/breeze-dark/actions/22/find-location.svg share/icons/breeze-dark/actions/22/fingerprint.svg share/icons/breeze-dark/actions/22/flag-black.svg share/icons/breeze-dark/actions/22/flag-blue.svg share/icons/breeze-dark/actions/22/flag-green.svg share/icons/breeze-dark/actions/22/flag-red.svg share/icons/breeze-dark/actions/22/flag-yellow.svg share/icons/breeze-dark/actions/22/flag.svg share/icons/breeze-dark/actions/22/flash.svg share/icons/breeze-dark/actions/22/flashlight-off.svg share/icons/breeze-dark/actions/22/flashlight-on.svg share/icons/breeze-dark/actions/22/flower-shape.svg share/icons/breeze-dark/actions/22/folder-new.svg share/icons/breeze-dark/actions/22/folder-open-recent.svg share/icons/breeze-dark/actions/22/folder-stash.svg share/icons/breeze-dark/actions/22/folder-sync.svg share/icons/breeze-dark/actions/22/followmouse.svg share/icons/breeze-dark/actions/22/font-disable.svg share/icons/breeze-dark/actions/22/font-enable.svg share/icons/breeze-dark/actions/22/font.svg share/icons/breeze-dark/actions/22/food.svg share/icons/breeze-dark/actions/22/foreignkey_constraint.svg share/icons/breeze-dark/actions/22/fork.svg share/icons/breeze-dark/actions/22/format-add-node.svg share/icons/breeze-dark/actions/22/format-align-vertical-bottom.svg share/icons/breeze-dark/actions/22/format-align-vertical-center.svg share/icons/breeze-dark/actions/22/format-align-vertical-top.svg share/icons/breeze-dark/actions/22/format-border-set-all.svg share/icons/breeze-dark/actions/22/format-border-set-bottom.svg share/icons/breeze-dark/actions/22/format-border-set-diagonal-bl-tr.svg share/icons/breeze-dark/actions/22/format-border-set-diagonal-tl-br.svg share/icons/breeze-dark/actions/22/format-border-set-external.svg share/icons/breeze-dark/actions/22/format-border-set-internal-horizontal.svg share/icons/breeze-dark/actions/22/format-border-set-internal-vertical.svg share/icons/breeze-dark/actions/22/format-border-set-internal.svg share/icons/breeze-dark/actions/22/format-border-set-left.svg share/icons/breeze-dark/actions/22/format-border-set-none.svg share/icons/breeze-dark/actions/22/format-border-set-right.svg share/icons/breeze-dark/actions/22/format-border-set-top.svg share/icons/breeze-dark/actions/22/format-border-style.svg share/icons/breeze-dark/actions/22/format-break-node.svg share/icons/breeze-dark/actions/22/format-connect-node.svg share/icons/breeze-dark/actions/22/format-convert-to-path.svg share/icons/breeze-dark/actions/22/format-currency.svg share/icons/breeze-dark/actions/22/format-disconnect-node.svg share/icons/breeze-dark/actions/22/format-fill-color.svg share/icons/breeze-dark/actions/22/format-font-size-less.svg share/icons/breeze-dark/actions/22/format-font-size-more.svg share/icons/breeze-dark/actions/22/format-indent-less.svg share/icons/breeze-dark/actions/22/format-indent-more.svg share/icons/breeze-dark/actions/22/format-insert-node.svg share/icons/breeze-dark/actions/22/format-join-node.svg share/icons/breeze-dark/actions/22/format-justify-center.svg share/icons/breeze-dark/actions/22/format-justify-fill.svg share/icons/breeze-dark/actions/22/format-justify-left.svg share/icons/breeze-dark/actions/22/format-justify-right.svg share/icons/breeze-dark/actions/22/format-line-spacing-double.svg share/icons/breeze-dark/actions/22/format-line-spacing-normal.svg share/icons/breeze-dark/actions/22/format-line-spacing-triple.svg share/icons/breeze-dark/actions/22/format-list-ordered.svg share/icons/breeze-dark/actions/22/format-list-unordered.svg share/icons/breeze-dark/actions/22/format-node-corner.svg share/icons/breeze-dark/actions/22/format-node-curve.svg share/icons/breeze-dark/actions/22/format-node-line.svg share/icons/breeze-dark/actions/22/format-node-smooth.svg share/icons/breeze-dark/actions/22/format-node-symmetric.svg share/icons/breeze-dark/actions/22/format-number-percent.svg share/icons/breeze-dark/actions/22/format-precision-less.svg share/icons/breeze-dark/actions/22/format-precision-more.svg share/icons/breeze-dark/actions/22/format-remove-node.svg share/icons/breeze-dark/actions/22/format-segment-curve.svg share/icons/breeze-dark/actions/22/format-segment-line.svg share/icons/breeze-dark/actions/22/format-stroke-color.svg share/icons/breeze-dark/actions/22/format-text-blockquote.svg share/icons/breeze-dark/actions/22/format-text-bold.svg share/icons/breeze-dark/actions/22/format-text-capitalize.svg share/icons/breeze-dark/actions/22/format-text-code.svg share/icons/breeze-dark/actions/22/format-text-color.svg share/icons/breeze-dark/actions/22/format-text-direction-horizontal.svg share/icons/breeze-dark/actions/22/format-text-direction-ltr.svg share/icons/breeze-dark/actions/22/format-text-direction-rtl.svg share/icons/breeze-dark/actions/22/format-text-direction-vertical.svg share/icons/breeze-dark/actions/22/format-text-italic.svg share/icons/breeze-dark/actions/22/format-text-lowercase.svg share/icons/breeze-dark/actions/22/format-text-strikethrough.svg share/icons/breeze-dark/actions/22/format-text-subscript.svg share/icons/breeze-dark/actions/22/format-text-superscript.svg share/icons/breeze-dark/actions/22/format-text-symbol.svg share/icons/breeze-dark/actions/22/format-text-underline-squiggle.svg share/icons/breeze-dark/actions/22/format-text-underline.svg share/icons/breeze-dark/actions/22/format-text-uppercase.svg share/icons/breeze-dark/actions/22/formula.svg share/icons/breeze-dark/actions/22/freerotation.svg share/icons/breeze-dark/actions/22/games-achievements.svg share/icons/breeze-dark/actions/22/games-config-background.svg share/icons/breeze-dark/actions/22/games-config-board.svg share/icons/breeze-dark/actions/22/games-config-custom.svg share/icons/breeze-dark/actions/22/games-config-options.svg share/icons/breeze-dark/actions/22/games-config-theme.svg share/icons/breeze-dark/actions/22/games-config-tiles.svg share/icons/breeze-dark/actions/22/games-difficult.svg share/icons/breeze-dark/actions/22/games-endturn.svg share/icons/breeze-dark/actions/22/games-highscores.svg share/icons/breeze-dark/actions/22/games-hint.svg share/icons/breeze-dark/actions/22/games-solve.svg share/icons/breeze-dark/actions/22/geany-build.svg share/icons/breeze-dark/actions/22/geany-close-all.svg share/icons/breeze-dark/actions/22/geany-save-all.svg share/icons/breeze-dark/actions/22/gearhead-shape.svg share/icons/breeze-dark/actions/22/generalisation.svg share/icons/breeze-dark/actions/22/generalise.svg share/icons/breeze-dark/actions/22/get-hot-new-stuff.svg share/icons/breeze-dark/actions/22/globe.svg share/icons/breeze-dark/actions/22/gnumeric-autofilter-delete.svg share/icons/breeze-dark/actions/22/gnumeric-autofilter.svg share/icons/breeze-dark/actions/22/gnumeric-autosum.svg share/icons/breeze-dark/actions/22/gnumeric-brush.svg share/icons/breeze-dark/actions/22/gnumeric-bucket.svg share/icons/breeze-dark/actions/22/gnumeric-cells-merge.svg share/icons/breeze-dark/actions/22/gnumeric-cells-split.svg share/icons/breeze-dark/actions/22/gnumeric-column-add.svg share/icons/breeze-dark/actions/22/gnumeric-column-delete.svg share/icons/breeze-dark/actions/22/gnumeric-column-hide.svg share/icons/breeze-dark/actions/22/gnumeric-column-size.svg share/icons/breeze-dark/actions/22/gnumeric-column-unhide.svg share/icons/breeze-dark/actions/22/gnumeric-comment-add.svg share/icons/breeze-dark/actions/22/gnumeric-comment-delete.svg share/icons/breeze-dark/actions/22/gnumeric-comment-edit.svg share/icons/breeze-dark/actions/22/gnumeric-component-insert-shaped.svg share/icons/breeze-dark/actions/22/gnumeric-data-slicer.svg share/icons/breeze-dark/actions/22/gnumeric-font.svg share/icons/breeze-dark/actions/22/gnumeric-format-accounting.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-all.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-bottom.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-diag.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-double-bottom.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-inside-horiz.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-left.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-none.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-outside.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-rev-diag.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-right.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-thick-bottom.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-thick-outside.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-top-n-bottom.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-top-n-double-bottom.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-top-n-thick-bottom.svg share/icons/breeze-dark/actions/22/gnumeric-format-border-top.svg share/icons/breeze-dark/actions/22/gnumeric-format-percentage.svg share/icons/breeze-dark/actions/22/gnumeric-format-precision-decrease.svg share/icons/breeze-dark/actions/22/gnumeric-format-precision-increase.svg share/icons/breeze-dark/actions/22/gnumeric-format-thousand-separator.svg share/icons/breeze-dark/actions/22/gnumeric-formulaguru.svg share/icons/breeze-dark/actions/22/gnumeric-graphguru.svg share/icons/breeze-dark/actions/22/gnumeric-group.svg share/icons/breeze-dark/actions/22/gnumeric-link-add.svg share/icons/breeze-dark/actions/22/gnumeric-link-delete.svg share/icons/breeze-dark/actions/22/gnumeric-link-edit.svg share/icons/breeze-dark/actions/22/gnumeric-link-email.svg share/icons/breeze-dark/actions/22/gnumeric-link-external.svg share/icons/breeze-dark/actions/22/gnumeric-link-internal.svg share/icons/breeze-dark/actions/22/gnumeric-link-url.svg share/icons/breeze-dark/actions/22/gnumeric-object-arrow.svg share/icons/breeze-dark/actions/22/gnumeric-object-button.svg share/icons/breeze-dark/actions/22/gnumeric-object-checkbox.svg share/icons/breeze-dark/actions/22/gnumeric-object-combo.svg share/icons/breeze-dark/actions/22/gnumeric-object-ellipse.svg share/icons/breeze-dark/actions/22/gnumeric-object-label.svg share/icons/breeze-dark/actions/22/gnumeric-object-line.svg share/icons/breeze-dark/actions/22/gnumeric-object-list.svg share/icons/breeze-dark/actions/22/gnumeric-object-rectangle.svg share/icons/breeze-dark/actions/22/gnumeric-object-scrollbar.svg share/icons/breeze-dark/actions/22/gnumeric-object-spinbutton.svg share/icons/breeze-dark/actions/22/gnumeric-pagesetup-hf-cell.svg share/icons/breeze-dark/actions/22/gnumeric-pagesetup-hf-page.svg share/icons/breeze-dark/actions/22/gnumeric-pagesetup-hf-pages.svg share/icons/breeze-dark/actions/22/gnumeric-pagesetup-hf-time.svg share/icons/breeze-dark/actions/22/gnumeric-protection-no.svg share/icons/breeze-dark/actions/22/gnumeric-protection-yes.svg share/icons/breeze-dark/actions/22/gnumeric-row-add.svg share/icons/breeze-dark/actions/22/gnumeric-row-delete.svg share/icons/breeze-dark/actions/22/gnumeric-row-hide.svg share/icons/breeze-dark/actions/22/gnumeric-row-size.svg share/icons/breeze-dark/actions/22/gnumeric-row-unhide.svg share/icons/breeze-dark/actions/22/gnumeric-subscript.svg share/icons/breeze-dark/actions/22/gnumeric-superscript.svg share/icons/breeze-dark/actions/22/gnumeric-ungroup.svg share/icons/breeze-dark/actions/22/gnumeric-visible.svg share/icons/breeze-dark/actions/22/go-bottom.svg share/icons/breeze-dark/actions/22/go-down-search.svg share/icons/breeze-dark/actions/22/go-down-skip.svg share/icons/breeze-dark/actions/22/go-down.svg share/icons/breeze-dark/actions/22/go-first-view-page.svg share/icons/breeze-dark/actions/22/go-first-view.svg share/icons/breeze-dark/actions/22/go-first.svg share/icons/breeze-dark/actions/22/go-home-large.svg share/icons/breeze-dark/actions/22/go-home.svg share/icons/breeze-dark/actions/22/go-jump-declaration.svg share/icons/breeze-dark/actions/22/go-jump-definition.svg share/icons/breeze-dark/actions/22/go-jump-locationbar.svg share/icons/breeze-dark/actions/22/go-jump-today.svg share/icons/breeze-dark/actions/22/go-jump.svg share/icons/breeze-dark/actions/22/go-last-view-page.svg share/icons/breeze-dark/actions/22/go-last-view.svg share/icons/breeze-dark/actions/22/go-last.svg share/icons/breeze-dark/actions/22/go-next-context.svg share/icons/breeze-dark/actions/22/go-next-skip.svg share/icons/breeze-dark/actions/22/go-next-use.svg share/icons/breeze-dark/actions/22/go-next-view-page.svg share/icons/breeze-dark/actions/22/go-next-view.svg share/icons/breeze-dark/actions/22/go-next.svg share/icons/breeze-dark/actions/22/go-parent-folder.svg share/icons/breeze-dark/actions/22/go-previous-context.svg share/icons/breeze-dark/actions/22/go-previous-skip.svg share/icons/breeze-dark/actions/22/go-previous-use.svg share/icons/breeze-dark/actions/22/go-previous-view-page.svg share/icons/breeze-dark/actions/22/go-previous-view.svg share/icons/breeze-dark/actions/22/go-previous.svg share/icons/breeze-dark/actions/22/go-top.svg share/icons/breeze-dark/actions/22/go-up-search.svg share/icons/breeze-dark/actions/22/go-up-skip.svg share/icons/breeze-dark/actions/22/go-up.svg share/icons/breeze-dark/actions/22/gpg.svg share/icons/breeze-dark/actions/22/gpgsm.svg share/icons/breeze-dark/actions/22/gps.svg share/icons/breeze-dark/actions/22/gradient.svg share/icons/breeze-dark/actions/22/graphics.svg share/icons/breeze-dark/actions/22/grid-rectangular.svg share/icons/breeze-dark/actions/22/group-delete.svg share/icons/breeze-dark/actions/22/group-edit.svg share/icons/breeze-dark/actions/22/group-new.svg share/icons/breeze-dark/actions/22/group.svg share/icons/breeze-dark/actions/22/gtk-add.svg share/icons/breeze-dark/actions/22/gtk-apply.svg share/icons/breeze-dark/actions/22/gtk-authentication.svg share/icons/breeze-dark/actions/22/gtk-bold.svg share/icons/breeze-dark/actions/22/gtk-cancel.svg share/icons/breeze-dark/actions/22/gtk-cdrom.svg share/icons/breeze-dark/actions/22/gtk-clear.svg share/icons/breeze-dark/actions/22/gtk-close.svg share/icons/breeze-dark/actions/22/gtk-color-picker.svg share/icons/breeze-dark/actions/22/gtk-connect.svg share/icons/breeze-dark/actions/22/gtk-convert.svg share/icons/breeze-dark/actions/22/gtk-disconnect.svg share/icons/breeze-dark/actions/22/gtk-edit.svg share/icons/breeze-dark/actions/22/gtk-execute.svg share/icons/breeze-dark/actions/22/gtk-floppy.svg share/icons/breeze-dark/actions/22/gtk-index.svg share/icons/breeze-dark/actions/22/gtk-no.svg share/icons/breeze-dark/actions/22/gtk-ok.svg share/icons/breeze-dark/actions/22/gtk-preferences.svg share/icons/breeze-dark/actions/22/gtk-properties.svg share/icons/breeze-dark/actions/22/gtk-quit.svg share/icons/breeze-dark/actions/22/gtk-select-color.svg share/icons/breeze-dark/actions/22/gtk-select-font.svg share/icons/breeze-dark/actions/22/gtk-stop.svg share/icons/breeze-dark/actions/22/gtk-tab-duplicate.svg share/icons/breeze-dark/actions/22/gtk-tab-new.svg share/icons/breeze-dark/actions/22/gtk-undelete-ltr.svg share/icons/breeze-dark/actions/22/gtk-undelete-rtl.svg share/icons/breeze-dark/actions/22/gtk-yes.svg share/icons/breeze-dark/actions/22/guides.svg share/icons/breeze-dark/actions/22/hand.svg share/icons/breeze-dark/actions/22/handle-left.svg share/icons/breeze-dark/actions/22/handle-move.svg share/icons/breeze-dark/actions/22/handle-right.svg share/icons/breeze-dark/actions/22/handle-sort.svg share/icons/breeze-dark/actions/22/headphones.svg share/icons/breeze-dark/actions/22/help-about.svg share/icons/breeze-dark/actions/22/help-contents.svg share/icons/breeze-dark/actions/22/help-contextual.svg share/icons/breeze-dark/actions/22/help-donate.svg share/icons/breeze-dark/actions/22/help-feedback.svg share/icons/breeze-dark/actions/22/help-hint.svg share/icons/breeze-dark/actions/22/help-keybord-shortcuts.svg share/icons/breeze-dark/actions/22/help-latex.svg share/icons/breeze-dark/actions/22/help-whatsthis.svg share/icons/breeze-dark/actions/22/hexagon-shape.svg share/icons/breeze-dark/actions/22/hide_table_column.svg share/icons/breeze-dark/actions/22/hide_table_row.svg share/icons/breeze-dark/actions/22/hidemouse.svg share/icons/breeze-dark/actions/22/high-brightness.svg share/icons/breeze-dark/actions/22/hint.svg share/icons/breeze-dark/actions/22/hotpixels.svg share/icons/breeze-dark/actions/22/identity.svg share/icons/breeze-dark/actions/22/im-aim.svg share/icons/breeze-dark/actions/22/im-ban-kick-user.svg share/icons/breeze-dark/actions/22/im-ban-user.svg share/icons/breeze-dark/actions/22/im-facebook.svg share/icons/breeze-dark/actions/22/im-gadugadu.svg share/icons/breeze-dark/actions/22/im-google-talk.svg share/icons/breeze-dark/actions/22/im-google.svg share/icons/breeze-dark/actions/22/im-icq.svg share/icons/breeze-dark/actions/22/im-identi.ca.svg share/icons/breeze-dark/actions/22/im-invisible-user.svg share/icons/breeze-dark/actions/22/im-irc.svg share/icons/breeze-dark/actions/22/im-jabber.svg share/icons/breeze-dark/actions/22/im-kick-user.svg share/icons/breeze-dark/actions/22/im-msn.svg share/icons/breeze-dark/actions/22/im-qq.svg share/icons/breeze-dark/actions/22/im-skype.svg share/icons/breeze-dark/actions/22/im-twitter.svg share/icons/breeze-dark/actions/22/im-user-away.svg share/icons/breeze-dark/actions/22/im-user-busy.svg share/icons/breeze-dark/actions/22/im-user-offline.svg share/icons/breeze-dark/actions/22/im-user-online.svg share/icons/breeze-dark/actions/22/im-user.svg share/icons/breeze-dark/actions/22/im-yahoo.svg share/icons/breeze-dark/actions/22/im-youtube.svg share/icons/breeze-dark/actions/22/imagecomment.svg share/icons/breeze-dark/actions/22/initial_state.svg share/icons/breeze-dark/actions/22/inpainting.svg share/icons/breeze-dark/actions/22/input-mouse-click-left.svg share/icons/breeze-dark/actions/22/input-mouse-click-middle.svg share/icons/breeze-dark/actions/22/input-mouse-click-right.svg share/icons/breeze-dark/actions/22/insert-button.svg share/icons/breeze-dark/actions/22/insert-endnote.svg share/icons/breeze-dark/actions/22/insert-footnote.svg share/icons/breeze-dark/actions/22/insert-horizontal-rule.svg share/icons/breeze-dark/actions/22/insert-image.svg share/icons/breeze-dark/actions/22/insert-link.svg share/icons/breeze-dark/actions/22/insert-math-expression.svg share/icons/breeze-dark/actions/22/insert-more-mark.svg share/icons/breeze-dark/actions/22/insert-page-break.svg share/icons/breeze-dark/actions/22/insert-table-of-contents.svg share/icons/breeze-dark/actions/22/insert-table-row.svg share/icons/breeze-dark/actions/22/insert-table.svg share/icons/breeze-dark/actions/22/insert-tableofcontents.svg share/icons/breeze-dark/actions/22/insert-text-frame.svg share/icons/breeze-dark/actions/22/insert-text.svg share/icons/breeze-dark/actions/22/insertcell.svg share/icons/breeze-dark/actions/22/interface.svg share/icons/breeze-dark/actions/22/internet-amarok.svg share/icons/breeze-dark/actions/22/internet-services.svg share/icons/breeze-dark/actions/22/invertimage.svg share/icons/breeze-dark/actions/22/irc-channel-active.svg share/icons/breeze-dark/actions/22/irc-channel-inactive.svg share/icons/breeze-dark/actions/22/irc-close-channel.svg share/icons/breeze-dark/actions/22/irc-join-channel.svg share/icons/breeze-dark/actions/22/irc-operator.svg share/icons/breeze-dark/actions/22/irc-remove-operator.svg share/icons/breeze-dark/actions/22/irc-unvoice.svg share/icons/breeze-dark/actions/22/irc-voice.svg share/icons/breeze-dark/actions/22/item.svg share/icons/breeze-dark/actions/22/itemize.svg share/icons/breeze-dark/actions/22/join.svg share/icons/breeze-dark/actions/22/journal-new.svg share/icons/breeze-dark/actions/22/junction.svg share/icons/breeze-dark/actions/22/kdenlive-add-clip.svg share/icons/breeze-dark/actions/22/kdenlive-add-color-clip.svg share/icons/breeze-dark/actions/22/kdenlive-add-slide-clip.svg share/icons/breeze-dark/actions/22/kdenlive-add-text-clip.svg share/icons/breeze-dark/actions/22/kdenlive-align-bottom.svg share/icons/breeze-dark/actions/22/kdenlive-align-hor.svg share/icons/breeze-dark/actions/22/kdenlive-align-left.svg share/icons/breeze-dark/actions/22/kdenlive-align-none.svg share/icons/breeze-dark/actions/22/kdenlive-align-right.svg share/icons/breeze-dark/actions/22/kdenlive-align-top.svg share/icons/breeze-dark/actions/22/kdenlive-align-vert.svg share/icons/breeze-dark/actions/22/kdenlive-composite.svg share/icons/breeze-dark/actions/22/kdenlive-custom-effect.svg share/icons/breeze-dark/actions/22/kdenlive-deleffect.svg share/icons/breeze-dark/actions/22/kdenlive-down.svg share/icons/breeze-dark/actions/22/kdenlive-hide-audio.svg share/icons/breeze-dark/actions/22/kdenlive-hide-video.svg share/icons/breeze-dark/actions/22/kdenlive-insert-edit.svg share/icons/breeze-dark/actions/22/kdenlive-insert-rect.svg share/icons/breeze-dark/actions/22/kdenlive-insert-unicode.svg share/icons/breeze-dark/actions/22/kdenlive-lock.svg share/icons/breeze-dark/actions/22/kdenlive-menu.svg share/icons/breeze-dark/actions/22/kdenlive-no-composite.svg share/icons/breeze-dark/actions/22/kdenlive-normal-edit.svg share/icons/breeze-dark/actions/22/kdenlive-object-height.svg share/icons/breeze-dark/actions/22/kdenlive-object-width.svg share/icons/breeze-dark/actions/22/kdenlive-overwrite-edit.svg share/icons/breeze-dark/actions/22/kdenlive-ripple.svg share/icons/breeze-dark/actions/22/kdenlive-rolling.svg share/icons/breeze-dark/actions/22/kdenlive-select-all.svg share/icons/breeze-dark/actions/22/kdenlive-select-images.svg share/icons/breeze-dark/actions/22/kdenlive-select-rects.svg share/icons/breeze-dark/actions/22/kdenlive-select-texts.svg share/icons/breeze-dark/actions/22/kdenlive-select-tool.svg share/icons/breeze-dark/actions/22/kdenlive-show-audio.svg share/icons/breeze-dark/actions/22/kdenlive-show-audiothumb.svg share/icons/breeze-dark/actions/22/kdenlive-show-markers.svg share/icons/breeze-dark/actions/22/kdenlive-show-video.svg share/icons/breeze-dark/actions/22/kdenlive-show-videothumb.svg share/icons/breeze-dark/actions/22/kdenlive-slide.svg share/icons/breeze-dark/actions/22/kdenlive-slip.svg share/icons/breeze-dark/actions/22/kdenlive-snap.svg share/icons/breeze-dark/actions/22/kdenlive-spacer-tool.svg share/icons/breeze-dark/actions/22/kdenlive-split-audio.svg share/icons/breeze-dark/actions/22/kdenlive-track_has_effect.svg share/icons/breeze-dark/actions/22/kdenlive-unlock.svg share/icons/breeze-dark/actions/22/kdenlive-unselect-all.svg share/icons/breeze-dark/actions/22/kdenlive-up.svg share/icons/breeze-dark/actions/22/kdenlive-zindex-bottom.svg share/icons/breeze-dark/actions/22/kdenlive-zindex-down.svg share/icons/breeze-dark/actions/22/kdenlive-zindex-top.svg share/icons/breeze-dark/actions/22/kdenlive-zindex-up.svg share/icons/breeze-dark/actions/22/kdenlive-zone-end.svg share/icons/breeze-dark/actions/22/kdenlive-zone-start.svg share/icons/breeze-dark/actions/22/kdenlive-zoom-large.svg share/icons/breeze-dark/actions/22/kdenlive-zoom-small.svg share/icons/breeze-dark/actions/22/kdocumentinfo.svg share/icons/breeze-dark/actions/22/key-enter.svg share/icons/breeze-dark/actions/22/keyframe-add.svg share/icons/breeze-dark/actions/22/keyframe-disable.svg share/icons/breeze-dark/actions/22/keyframe-duplicate.svg share/icons/breeze-dark/actions/22/keyframe-next.svg share/icons/breeze-dark/actions/22/keyframe-previous.svg share/icons/breeze-dark/actions/22/keyframe-record.svg share/icons/breeze-dark/actions/22/keyframe-remove.svg share/icons/breeze-dark/actions/22/keyframe.svg share/icons/breeze-dark/actions/22/kmousetool_off.svg share/icons/breeze-dark/actions/22/kmousetool_on.svg share/icons/breeze-dark/actions/22/kmouth-phrase-new.svg share/icons/breeze-dark/actions/22/kmouth-phrase.svg share/icons/breeze-dark/actions/22/kmouth-phrasebook.svg share/icons/breeze-dark/actions/22/kmouth-phresebook-new.svg share/icons/breeze-dark/actions/22/knotes_alarm.svg share/icons/breeze-dark/actions/22/knotes_date.svg share/icons/breeze-dark/actions/22/knotes_delete.svg share/icons/breeze-dark/actions/22/know.svg share/icons/breeze-dark/actions/22/kontact-import-wizard.svg share/icons/breeze-dark/actions/22/kontes_close.svg share/icons/breeze-dark/actions/22/kr_combine.svg share/icons/breeze-dark/actions/22/kr_comparedirs.svg share/icons/breeze-dark/actions/22/kr_diskusage.svg share/icons/breeze-dark/actions/22/kr_jumpback.svg share/icons/breeze-dark/actions/22/kr_mountman.svg share/icons/breeze-dark/actions/22/kr_setjumpback.svg share/icons/breeze-dark/actions/22/kr_syncbrowse_off.svg share/icons/breeze-dark/actions/22/kr_syncbrowse_on.svg share/icons/breeze-dark/actions/22/kr_unselect.svg share/icons/breeze-dark/actions/22/kstars_advanced.svg share/icons/breeze-dark/actions/22/kstars_catalog.svg share/icons/breeze-dark/actions/22/kstars_cbound.svg share/icons/breeze-dark/actions/22/kstars_clines.svg share/icons/breeze-dark/actions/22/kstars_cnames.svg share/icons/breeze-dark/actions/22/kstars_colors.svg share/icons/breeze-dark/actions/22/kstars_constellationart.svg share/icons/breeze-dark/actions/22/kstars_deepsky.svg share/icons/breeze-dark/actions/22/kstars_ekos.svg share/icons/breeze-dark/actions/22/kstars_fitsviewer.svg share/icons/breeze-dark/actions/22/kstars_flag.svg share/icons/breeze-dark/actions/22/kstars_grid.svg share/icons/breeze-dark/actions/22/kstars_guides.svg share/icons/breeze-dark/actions/22/kstars_hgrid.svg share/icons/breeze-dark/actions/22/kstars_horizon.svg share/icons/breeze-dark/actions/22/kstars_indi.svg share/icons/breeze-dark/actions/22/kstars_mw.svg share/icons/breeze-dark/actions/22/kstars_planets.svg share/icons/breeze-dark/actions/22/kstars_satellites.svg share/icons/breeze-dark/actions/22/kstars_solarsystem.svg share/icons/breeze-dark/actions/22/kstars_stars.svg share/icons/breeze-dark/actions/22/kstars_supernovae.svg share/icons/breeze-dark/actions/22/kstars_xplanet.svg share/icons/breeze-dark/actions/22/kt-add-feeds.svg share/icons/breeze-dark/actions/22/kt-add-filters.svg share/icons/breeze-dark/actions/22/kt-bandwidth-scheduler.svg share/icons/breeze-dark/actions/22/kt-change-tracker.svg share/icons/breeze-dark/actions/22/kt-check-data.svg share/icons/breeze-dark/actions/22/kt-chunks.svg share/icons/breeze-dark/actions/22/kt-encrypted.svg share/icons/breeze-dark/actions/22/kt-info-widget.svg share/icons/breeze-dark/actions/22/kt-magnet.svg share/icons/breeze-dark/actions/22/kt-pause.svg share/icons/breeze-dark/actions/22/kt-plugins.svg share/icons/breeze-dark/actions/22/kt-queue-manager.svg share/icons/breeze-dark/actions/22/kt-remove-feeds.svg share/icons/breeze-dark/actions/22/kt-remove-filters.svg share/icons/breeze-dark/actions/22/kt-remove.svg share/icons/breeze-dark/actions/22/kt-restore-defaults.svg share/icons/breeze-dark/actions/22/kt-set-max-download-speed.svg share/icons/breeze-dark/actions/22/kt-set-max-upload-speed.svg share/icons/breeze-dark/actions/22/kt-show-statusbar.svg share/icons/breeze-dark/actions/22/kt-speed-limits.svg share/icons/breeze-dark/actions/22/kt-start-all.svg share/icons/breeze-dark/actions/22/kt-start.svg share/icons/breeze-dark/actions/22/kt-stop-all.svg share/icons/breeze-dark/actions/22/kt-stop.svg share/icons/breeze-dark/actions/22/ktnef_extract_all_to.svg share/icons/breeze-dark/actions/22/ktnef_extract_to.svg share/icons/breeze-dark/actions/22/l2h.svg share/icons/breeze-dark/actions/22/label-amarok.svg share/icons/breeze-dark/actions/22/label.svg share/icons/breeze-dark/actions/22/labplot-1x-zoom.svg share/icons/breeze-dark/actions/22/labplot-2x-zoom.svg share/icons/breeze-dark/actions/22/labplot-3x-zoom.svg share/icons/breeze-dark/actions/22/labplot-4x-zoom.svg share/icons/breeze-dark/actions/22/labplot-5x-zoom.svg share/icons/breeze-dark/actions/22/labplot-TeX-logo.svg share/icons/breeze-dark/actions/22/labplot-auto-scale-all.svg share/icons/breeze-dark/actions/22/labplot-auto-scale-x.svg share/icons/breeze-dark/actions/22/labplot-auto-scale-y.svg share/icons/breeze-dark/actions/22/labplot-axis-horizontal.svg share/icons/breeze-dark/actions/22/labplot-axis-vertical.svg share/icons/breeze-dark/actions/22/labplot-cursor-arrow.svg share/icons/breeze-dark/actions/22/labplot-editbreaklayout.svg share/icons/breeze-dark/actions/22/labplot-editgrid.svg share/icons/breeze-dark/actions/22/labplot-edithlayout.svg share/icons/breeze-dark/actions/22/labplot-editvlayout.svg share/icons/breeze-dark/actions/22/labplot-format-text-symbol.svg share/icons/breeze-dark/actions/22/labplot-matrix-new.svg share/icons/breeze-dark/actions/22/labplot-matrix.svg share/icons/breeze-dark/actions/22/labplot-plot-axis-points.svg share/icons/breeze-dark/actions/22/labplot-shift-down-y.svg share/icons/breeze-dark/actions/22/labplot-shift-left-x.svg share/icons/breeze-dark/actions/22/labplot-shift-right-x.svg share/icons/breeze-dark/actions/22/labplot-shift-up-y.svg share/icons/breeze-dark/actions/22/labplot-spreadsheet-new.svg share/icons/breeze-dark/actions/22/labplot-spreadsheet.svg share/icons/breeze-dark/actions/22/labplot-transform-move.svg share/icons/breeze-dark/actions/22/labplot-workbook-new.svg share/icons/breeze-dark/actions/22/labplot-workbook.svg share/icons/breeze-dark/actions/22/labplot-worksheet-new.svg share/icons/breeze-dark/actions/22/labplot-worksheet.svg share/icons/breeze-dark/actions/22/labplot-xy-curve-points.svg share/icons/breeze-dark/actions/22/labplot-xy-curve-segments.svg share/icons/breeze-dark/actions/22/labplot-xy-curve.svg share/icons/breeze-dark/actions/22/labplot-xy-equation-curve.svg share/icons/breeze-dark/actions/22/labplot-xy-fit-curve.svg share/icons/breeze-dark/actions/22/labplot-xy-fourier-filter-curve.svg share/icons/breeze-dark/actions/22/labplot-xy-fourier-transform-curve.svg share/icons/breeze-dark/actions/22/labplot-xy-interpolation-curve.svg share/icons/breeze-dark/actions/22/labplot-xy-plot-four-axes.svg share/icons/breeze-dark/actions/22/labplot-xy-plot-two-axes-centered-origin.svg share/icons/breeze-dark/actions/22/labplot-xy-plot-two-axes-centered.svg share/icons/breeze-dark/actions/22/labplot-xy-plot-two-axes.svg share/icons/breeze-dark/actions/22/labplot-xy-smoothing-curve.svg share/icons/breeze-dark/actions/22/labplot-zoom-in-x.svg share/icons/breeze-dark/actions/22/labplot-zoom-in-y.svg share/icons/breeze-dark/actions/22/labplot-zoom-out-x.svg share/icons/breeze-dark/actions/22/labplot-zoom-out-y.svg share/icons/breeze-dark/actions/22/labplot-zoom-select-x.svg share/icons/breeze-dark/actions/22/labplot-zoom-select-y.svg share/icons/breeze-dark/actions/22/labplot-zoom-select.svg share/icons/breeze-dark/actions/22/language-chooser.svg share/icons/breeze-dark/actions/22/languages.svg share/icons/breeze-dark/actions/22/latex-config.svg share/icons/breeze-dark/actions/22/latex.svg share/icons/breeze-dark/actions/22/layer-visible-off.svg share/icons/breeze-dark/actions/22/layer-visible-on.svg share/icons/breeze-dark/actions/22/lensautofix.svg share/icons/breeze-dark/actions/22/lensdistortion.svg share/icons/breeze-dark/actions/22/libpeas-plugin.svg share/icons/breeze-dark/actions/22/license.svg share/icons/breeze-dark/actions/22/lighttable.svg share/icons/breeze-dark/actions/22/lighttableadd.svg share/icons/breeze-dark/actions/22/lilypond.svg share/icons/breeze-dark/actions/22/linear.svg share/icons/breeze-dark/actions/22/lines-connector.svg share/icons/breeze-dark/actions/22/link.svg share/icons/breeze-dark/actions/22/list-add-font.svg share/icons/breeze-dark/actions/22/list-add-user.svg share/icons/breeze-dark/actions/22/list-add.svg share/icons/breeze-dark/actions/22/list-remove-user.svg share/icons/breeze-dark/actions/22/list-remove.svg share/icons/breeze-dark/actions/22/list-resource-add.svg share/icons/breeze-dark/actions/22/lock.svg share/icons/breeze-dark/actions/22/love-amarok.svg share/icons/breeze-dark/actions/22/love.svg share/icons/breeze-dark/actions/22/low-brightness.svg share/icons/breeze-dark/actions/22/mail-attachment.svg share/icons/breeze-dark/actions/22/mail-deleted.svg share/icons/breeze-dark/actions/22/mail-download-later.svg share/icons/breeze-dark/actions/22/mail-download-now.svg share/icons/breeze-dark/actions/22/mail-encrypted-full.svg share/icons/breeze-dark/actions/22/mail-encrypted-part.svg share/icons/breeze-dark/actions/22/mail-encrypted.svg share/icons/breeze-dark/actions/22/mail-flag.svg share/icons/breeze-dark/actions/22/mail-forward.svg share/icons/breeze-dark/actions/22/mail-forwarded-replied.svg share/icons/breeze-dark/actions/22/mail-forwarded.svg share/icons/breeze-dark/actions/22/mail-invitation.svg share/icons/breeze-dark/actions/22/mail-mark-important.svg share/icons/breeze-dark/actions/22/mail-mark-junk.svg share/icons/breeze-dark/actions/22/mail-mark-notjunk.svg share/icons/breeze-dark/actions/22/mail-mark-read.svg share/icons/breeze-dark/actions/22/mail-mark-task.svg share/icons/breeze-dark/actions/22/mail-mark-unread-new.svg share/icons/breeze-dark/actions/22/mail-mark-unread.svg share/icons/breeze-dark/actions/22/mail-meeting-request-reply.svg share/icons/breeze-dark/actions/22/mail-message-new-list.svg share/icons/breeze-dark/actions/22/mail-message-new.svg share/icons/breeze-dark/actions/22/mail-message.svg share/icons/breeze-dark/actions/22/mail-queue.svg share/icons/breeze-dark/actions/22/mail-queued.svg share/icons/breeze-dark/actions/22/mail-read.svg share/icons/breeze-dark/actions/22/mail-receive.svg share/icons/breeze-dark/actions/22/mail-replied.svg share/icons/breeze-dark/actions/22/mail-reply-all.svg share/icons/breeze-dark/actions/22/mail-reply-custom-all.svg share/icons/breeze-dark/actions/22/mail-reply-custom.svg share/icons/breeze-dark/actions/22/mail-reply-list.svg share/icons/breeze-dark/actions/22/mail-reply-sender.svg share/icons/breeze-dark/actions/22/mail-send.svg share/icons/breeze-dark/actions/22/mail-sent.svg share/icons/breeze-dark/actions/22/mail-signature-unknown.svg share/icons/breeze-dark/actions/22/mail-signed-full.svg share/icons/breeze-dark/actions/22/mail-signed-fully.svg share/icons/breeze-dark/actions/22/mail-signed-part.svg share/icons/breeze-dark/actions/22/mail-signed-verified.svg share/icons/breeze-dark/actions/22/mail-signed.svg share/icons/breeze-dark/actions/22/mail-tagged.svg share/icons/breeze-dark/actions/22/mail-task.svg share/icons/breeze-dark/actions/22/mail-thread-ignored.svg share/icons/breeze-dark/actions/22/mail-thread-watch.svg share/icons/breeze-dark/actions/22/mail-unread-new.svg share/icons/breeze-dark/actions/22/mail-unread.svg share/icons/breeze-dark/actions/22/makeidx.svg share/icons/breeze-dark/actions/22/map-flat.svg share/icons/breeze-dark/actions/22/map-globe.svg share/icons/breeze-dark/actions/22/map-gnomonic.svg share/icons/breeze-dark/actions/22/map-mercator.svg share/icons/breeze-dark/actions/22/markasblank.svg share/icons/breeze-dark/actions/22/math0.svg share/icons/breeze-dark/actions/22/mathmode.svg share/icons/breeze-dark/actions/22/measure.svg share/icons/breeze-dark/actions/22/media-album-cover-manager-amarok.svg share/icons/breeze-dark/actions/22/media-album-cover.svg share/icons/breeze-dark/actions/22/media-album-repeat-amarok.svg share/icons/breeze-dark/actions/22/media-album-track.svg share/icons/breeze-dark/actions/22/media-eject.svg share/icons/breeze-dark/actions/22/media-mount.svg share/icons/breeze-dark/actions/22/media-playback-pause.svg share/icons/breeze-dark/actions/22/media-playback-start.svg share/icons/breeze-dark/actions/22/media-playback-stop.svg share/icons/breeze-dark/actions/22/media-playlist-append.svg share/icons/breeze-dark/actions/22/media-playlist-normal.svg share/icons/breeze-dark/actions/22/media-playlist-play.svg share/icons/breeze-dark/actions/22/media-playlist-repeat-song.svg share/icons/breeze-dark/actions/22/media-playlist-repeat.svg share/icons/breeze-dark/actions/22/media-playlist-shuffle.svg share/icons/breeze-dark/actions/22/media-random-albums-amarok.svg share/icons/breeze-dark/actions/22/media-random-tracks-amarok.svg share/icons/breeze-dark/actions/22/media-record.svg share/icons/breeze-dark/actions/22/media-repeat-album-amarok.svg share/icons/breeze-dark/actions/22/media-repeat-all.svg share/icons/breeze-dark/actions/22/media-repeat-none.svg share/icons/breeze-dark/actions/22/media-repeat-playlist-amarok.svg share/icons/breeze-dark/actions/22/media-repeat-single.svg share/icons/breeze-dark/actions/22/media-repeat-track-amarok.svg share/icons/breeze-dark/actions/22/media-seek-backward.svg share/icons/breeze-dark/actions/22/media-seek-forward.svg share/icons/breeze-dark/actions/22/media-show-active-track-amarok.svg share/icons/breeze-dark/actions/22/media-skip-backward.svg share/icons/breeze-dark/actions/22/media-skip-forward.svg share/icons/breeze-dark/actions/22/media-standard-track-progression-amarok.svg share/icons/breeze-dark/actions/22/media-track-add-amarok.svg share/icons/breeze-dark/actions/22/media-track-edit-amarok.svg share/icons/breeze-dark/actions/22/media-track-queue-amarok.svg share/icons/breeze-dark/actions/22/media-track-remove-amarok.svg share/icons/breeze-dark/actions/22/media-track-show-active.svg share/icons/breeze-dark/actions/22/medskip.svg share/icons/breeze-dark/actions/22/meeting-attending-tentative.svg share/icons/breeze-dark/actions/22/meeting-attending.svg share/icons/breeze-dark/actions/22/meeting-participant-no-response.svg share/icons/breeze-dark/actions/22/meeting-participant-request-response.svg share/icons/breeze-dark/actions/22/menu_new.svg share/icons/breeze-dark/actions/22/menu_new_sep.svg share/icons/breeze-dark/actions/22/merge.svg share/icons/breeze-dark/actions/22/messagebox_warning.svg share/icons/breeze-dark/actions/22/milestone.svg share/icons/breeze-dark/actions/22/minuet-chords.svg share/icons/breeze-dark/actions/22/minuet-intervals.svg share/icons/breeze-dark/actions/22/minuet-rhythms.svg share/icons/breeze-dark/actions/22/minuet-scales.svg share/icons/breeze-dark/actions/22/mode1.svg share/icons/breeze-dark/actions/22/mode2.svg share/icons/breeze-dark/actions/22/mode3.svg share/icons/breeze-dark/actions/22/mode4.svg share/icons/breeze-dark/actions/22/mode5.svg share/icons/breeze-dark/actions/22/modified.svg share/icons/breeze-dark/actions/22/motion_path_animations.svg share/icons/breeze-dark/actions/22/mpost.svg share/icons/breeze-dark/actions/22/msgid2msgstr.svg share/icons/breeze-dark/actions/22/multirow.svg share/icons/breeze-dark/actions/22/music-amarok.svg share/icons/breeze-dark/actions/22/music-note-16th.svg share/icons/breeze-dark/actions/22/network-connect.svg share/icons/breeze-dark/actions/22/network-disconnect.svg share/icons/breeze-dark/actions/22/new-audio-alarm.svg share/icons/breeze-dark/actions/22/new-command-alarm.svg share/icons/breeze-dark/actions/22/newline.svg share/icons/breeze-dark/actions/22/news-subscribe.svg share/icons/breeze-dark/actions/22/news-unsubscribe.svg share/icons/breeze-dark/actions/22/nextfuzzy.svg share/icons/breeze-dark/actions/22/nextfuzzyuntrans.svg share/icons/breeze-dark/actions/22/nextuntranslated.svg share/icons/breeze-dark/actions/22/nocover.svg share/icons/breeze-dark/actions/22/node-add.svg share/icons/breeze-dark/actions/22/node-break.svg share/icons/breeze-dark/actions/22/node-delete-segment.svg share/icons/breeze-dark/actions/22/node-delete.svg share/icons/breeze-dark/actions/22/node-join-segment.svg share/icons/breeze-dark/actions/22/node-join.svg share/icons/breeze-dark/actions/22/node-segment-curve.svg share/icons/breeze-dark/actions/22/node-segment-line.svg share/icons/breeze-dark/actions/22/node-transform.svg share/icons/breeze-dark/actions/22/node-type-auto-smooth.svg share/icons/breeze-dark/actions/22/node-type-cusp.svg share/icons/breeze-dark/actions/22/node-type-smooth.svg share/icons/breeze-dark/actions/22/node-type-symmetric.svg share/icons/breeze-dark/actions/22/node.svg share/icons/breeze-dark/actions/22/noisereduction.svg share/icons/breeze-dark/actions/22/note.svg share/icons/breeze-dark/actions/22/notifications-disabled.svg share/icons/breeze-dark/actions/22/notifications.svg share/icons/breeze-dark/actions/22/nroot.svg share/icons/breeze-dark/actions/22/object-align-horizontal-center-calligra.svg share/icons/breeze-dark/actions/22/object-align-horizontal-left-calligra.svg share/icons/breeze-dark/actions/22/object-align-horizontal-right-calligra.svg share/icons/breeze-dark/actions/22/object-align-vertical-bottom-calligra.svg share/icons/breeze-dark/actions/22/object-align-vertical-bottom-top-calligra.svg share/icons/breeze-dark/actions/22/object-align-vertical-center-calligra.svg share/icons/breeze-dark/actions/22/object-align-vertical-top-calligra.svg share/icons/breeze-dark/actions/22/object-columns.svg share/icons/breeze-dark/actions/22/object-flip-horizontal.svg share/icons/breeze-dark/actions/22/object-flip-vertical.svg share/icons/breeze-dark/actions/22/object-group-calligra.svg share/icons/breeze-dark/actions/22/object-group.svg share/icons/breeze-dark/actions/22/object-locked.svg share/icons/breeze-dark/actions/22/object-order-back-calligra.svg share/icons/breeze-dark/actions/22/object-order-back.svg share/icons/breeze-dark/actions/22/object-order-front-calligra.svg share/icons/breeze-dark/actions/22/object-order-front.svg share/icons/breeze-dark/actions/22/object-order-lower-calligra.svg share/icons/breeze-dark/actions/22/object-order-lower.svg share/icons/breeze-dark/actions/22/object-order-raise-calligra.svg share/icons/breeze-dark/actions/22/object-order-raise.svg share/icons/breeze-dark/actions/22/object-rotate-left.svg share/icons/breeze-dark/actions/22/object-rotate-right.svg share/icons/breeze-dark/actions/22/object-rows.svg share/icons/breeze-dark/actions/22/object-to-path.svg share/icons/breeze-dark/actions/22/object-ungroup-calligra.svg share/icons/breeze-dark/actions/22/object-ungroup.svg share/icons/breeze-dark/actions/22/object-unlocked.svg share/icons/breeze-dark/actions/22/object.svg share/icons/breeze-dark/actions/22/object_node.svg share/icons/breeze-dark/actions/22/office-chart-area-focus-peak-node.svg share/icons/breeze-dark/actions/22/office-chart-area-percentage.svg share/icons/breeze-dark/actions/22/office-chart-area-stacked.svg share/icons/breeze-dark/actions/22/office-chart-area.svg share/icons/breeze-dark/actions/22/office-chart-bar-percentage.svg share/icons/breeze-dark/actions/22/office-chart-bar-stacked.svg share/icons/breeze-dark/actions/22/office-chart-bar.svg share/icons/breeze-dark/actions/22/office-chart-line-forecast.svg share/icons/breeze-dark/actions/22/office-chart-line-percentage.svg share/icons/breeze-dark/actions/22/office-chart-line-stacked.svg share/icons/breeze-dark/actions/22/office-chart-line.svg share/icons/breeze-dark/actions/22/office-chart-pie.svg share/icons/breeze-dark/actions/22/office-chart-polar-stacked.svg share/icons/breeze-dark/actions/22/office-chart-polar.svg share/icons/breeze-dark/actions/22/office-chart-ring.svg share/icons/breeze-dark/actions/22/office-chart-scatter.svg share/icons/breeze-dark/actions/22/office-report.svg share/icons/breeze-dark/actions/22/offline-settings.svg share/icons/breeze-dark/actions/22/offline.svg share/icons/breeze-dark/actions/22/oilpaint.svg share/icons/breeze-dark/actions/22/online.svg share/icons/breeze-dark/actions/22/open-for-editing.svg share/icons/breeze-dark/actions/22/open-menu-symbolic.svg share/icons/breeze-dark/actions/22/output_win.svg share/icons/breeze-dark/actions/22/overexposure.svg share/icons/breeze-dark/actions/22/overflow-menu-left.svg share/icons/breeze-dark/actions/22/overflow-menu-right.svg share/icons/breeze-dark/actions/22/overflow-menu.svg share/icons/breeze-dark/actions/22/package.svg share/icons/breeze-dark/actions/22/page-2sides.svg share/icons/breeze-dark/actions/22/page-3sides.svg share/icons/breeze-dark/actions/22/page-4sides.svg share/icons/breeze-dark/actions/22/page-simple.svg share/icons/breeze-dark/actions/22/page-zoom.svg share/icons/breeze-dark/actions/22/paint-none.svg share/icons/breeze-dark/actions/22/paper-color.svg share/icons/breeze-dark/actions/22/password-copy.svg share/icons/breeze-dark/actions/22/password-generate.svg share/icons/breeze-dark/actions/22/password-show-off.svg share/icons/breeze-dark/actions/22/password-show-on.svg share/icons/breeze-dark/actions/22/path-clip-edit.svg share/icons/breeze-dark/actions/22/path-effect-parameter-next.svg share/icons/breeze-dark/actions/22/path-mask-edit.svg share/icons/breeze-dark/actions/22/path-mode-bezier.svg share/icons/breeze-dark/actions/22/path-mode-polyline-paraxial.svg share/icons/breeze-dark/actions/22/path-mode-polyline.svg share/icons/breeze-dark/actions/22/path-mode-spiro.svg share/icons/breeze-dark/actions/22/path-reverse.svg share/icons/breeze-dark/actions/22/path-simplify.svg share/icons/breeze-dark/actions/22/pathshape.svg share/icons/breeze-dark/actions/22/pdf-annotations.svg share/icons/breeze-dark/actions/22/pdflatex.svg share/icons/breeze-dark/actions/22/pdftex.svg share/icons/breeze-dark/actions/22/pentagon-shape.svg share/icons/breeze-dark/actions/22/perspective.svg share/icons/breeze-dark/actions/22/photo.svg share/icons/breeze-dark/actions/22/photos-amarok.svg share/icons/breeze-dark/actions/22/pin.svg share/icons/breeze-dark/actions/22/player-time.svg share/icons/breeze-dark/actions/22/player-volume-muted.svg share/icons/breeze-dark/actions/22/player-volume.svg share/icons/breeze-dark/actions/22/playlist-generator.svg share/icons/breeze-dark/actions/22/playlist-sort.svg share/icons/breeze-dark/actions/22/plugins.svg share/icons/breeze-dark/actions/22/podcast-amarok.svg share/icons/breeze-dark/actions/22/pointer.svg share/icons/breeze-dark/actions/22/polygon-add-nodes.svg share/icons/breeze-dark/actions/22/polygon-merge-nodes.svg share/icons/breeze-dark/actions/22/port.svg share/icons/breeze-dark/actions/22/postalcode.svg share/icons/breeze-dark/actions/22/practice-setup.svg share/icons/breeze-dark/actions/22/practice-start.svg share/icons/breeze-dark/actions/22/practice-stop.svg share/icons/breeze-dark/actions/22/precondition.svg share/icons/breeze-dark/actions/22/preferences-indicator-amarok.svg share/icons/breeze-dark/actions/22/preferences-media-playback-amarok.svg share/icons/breeze-dark/actions/22/preferences-other.svg share/icons/breeze-dark/actions/22/preferences-system-symbolic.svg share/icons/breeze-dark/actions/22/preflight-verifier.svg share/icons/breeze-dark/actions/22/presence_away.svg share/icons/breeze-dark/actions/22/presence_offline.svg share/icons/breeze-dark/actions/22/presence_online.svg share/icons/breeze-dark/actions/22/presence_unknown.svg share/icons/breeze-dark/actions/22/prevfuzzy.svg share/icons/breeze-dark/actions/22/prevfuzzyuntrans.svg share/icons/breeze-dark/actions/22/preview-add-zone.svg share/icons/breeze-dark/actions/22/preview-remove-all.svg share/icons/breeze-dark/actions/22/preview-remove-zone.svg share/icons/breeze-dark/actions/22/preview-render-off.svg share/icons/breeze-dark/actions/22/preview-render-on.svg share/icons/breeze-dark/actions/22/preview.svg share/icons/breeze-dark/actions/22/preview_math.svg share/icons/breeze-dark/actions/22/preview_sel.svg share/icons/breeze-dark/actions/22/prevuntranslated.svg share/icons/breeze-dark/actions/22/primarykey_constraint.svg share/icons/breeze-dark/actions/22/process-stop.svg share/icons/breeze-dark/actions/22/project-defaults.svg share/icons/breeze-dark/actions/22/project-development-close-all.svg share/icons/breeze-dark/actions/22/project-development-close.svg share/icons/breeze-dark/actions/22/project-development-new-template.svg share/icons/breeze-dark/actions/22/project-development.svg share/icons/breeze-dark/actions/22/project-open.svg share/icons/breeze-dark/actions/22/project_add.svg share/icons/breeze-dark/actions/22/project_archive.svg share/icons/breeze-dark/actions/22/project_rebuild.svg share/icons/breeze-dark/actions/22/project_remove.svg share/icons/breeze-dark/actions/22/project_show.svg share/icons/breeze-dark/actions/22/projectgrep.svg share/icons/breeze-dark/actions/22/ps2pdf.svg share/icons/breeze-dark/actions/22/qa.svg share/icons/breeze-dark/actions/22/question.svg share/icons/breeze-dark/actions/22/quick.svg share/icons/breeze-dark/actions/22/quickopen-class.svg share/icons/breeze-dark/actions/22/quickopen-file.svg share/icons/breeze-dark/actions/22/quickopen-function.svg share/icons/breeze-dark/actions/22/quickopen.svg share/icons/breeze-dark/actions/22/quickview.svg share/icons/breeze-dark/actions/22/quickwizard.svg share/icons/breeze-dark/actions/22/raindrop.svg share/icons/breeze-dark/actions/22/randomize.svg share/icons/breeze-dark/actions/22/ratiocrop.svg share/icons/breeze-dark/actions/22/realization.svg share/icons/breeze-dark/actions/22/rectangle-shape.svg share/icons/breeze-dark/actions/22/redeyes.svg share/icons/breeze-dark/actions/22/refactor.svg share/icons/breeze-dark/actions/22/refreshstructure.svg share/icons/breeze-dark/actions/22/region.svg share/icons/breeze-dark/actions/22/relation.svg share/icons/breeze-dark/actions/22/relationship.svg share/icons/breeze-dark/actions/22/remove-amarok.svg share/icons/breeze-dark/actions/22/remove-link.svg share/icons/breeze-dark/actions/22/remove.svg share/icons/breeze-dark/actions/22/removecell.svg share/icons/breeze-dark/actions/22/repeat.svg share/icons/breeze-dark/actions/22/resource-calendar-child-insert.svg share/icons/breeze-dark/actions/22/resource-calendar-child.svg share/icons/breeze-dark/actions/22/resource-calendar-insert.svg share/icons/breeze-dark/actions/22/resource-group-new.svg share/icons/breeze-dark/actions/22/resource-group.svg share/icons/breeze-dark/actions/22/restoration.svg share/icons/breeze-dark/actions/22/reverse.svg share/icons/breeze-dark/actions/22/roll.svg share/icons/breeze-dark/actions/22/routeplanning.svg share/icons/breeze-dark/actions/22/rss.svg share/icons/breeze-dark/actions/22/run-build-clean.svg share/icons/breeze-dark/actions/22/run-build-configure.svg share/icons/breeze-dark/actions/22/run-build-file.svg share/icons/breeze-dark/actions/22/run-build-install-root.svg share/icons/breeze-dark/actions/22/run-build-install.svg share/icons/breeze-dark/actions/22/run-build-prune.svg share/icons/breeze-dark/actions/22/run-build.svg share/icons/breeze-dark/actions/22/run-clean.svg share/icons/breeze-dark/actions/22/run-install.svg share/icons/breeze-dark/actions/22/screen-rotate-auto-off.svg share/icons/breeze-dark/actions/22/screen-rotate-auto-on.svg share/icons/breeze-dark/actions/22/scriptnew.svg share/icons/breeze-dark/actions/22/scriptopen.svg share/icons/breeze-dark/actions/22/secure-card.svg share/icons/breeze-dark/actions/22/select-rectangular.svg share/icons/breeze-dark/actions/22/select.svg share/icons/breeze-dark/actions/22/selection.svg share/icons/breeze-dark/actions/22/send_signal.svg share/icons/breeze-dark/actions/22/services.svg share/icons/breeze-dark/actions/22/set-language.svg share/icons/breeze-dark/actions/22/settings-configure.svg share/icons/breeze-dark/actions/22/shallow-history.svg share/icons/breeze-dark/actions/22/shape-choose.svg share/icons/breeze-dark/actions/22/shape-cuboid.svg share/icons/breeze-dark/actions/22/shapes.svg share/icons/breeze-dark/actions/22/sharpenimage.svg share/icons/breeze-dark/actions/22/shear.svg share/icons/breeze-dark/actions/22/show-all-effects.svg share/icons/breeze-dark/actions/22/show-gpu-effects.svg share/icons/breeze-dark/actions/22/show-menu.svg share/icons/breeze-dark/actions/22/show-node-handles.svg share/icons/breeze-dark/actions/22/show-offline.svg share/icons/breeze-dark/actions/22/show-path-outline.svg share/icons/breeze-dark/actions/22/show_table_column.svg share/icons/breeze-dark/actions/22/show_table_row.svg share/icons/breeze-dark/actions/22/shuffle.svg share/icons/breeze-dark/actions/22/sidebar-collapse-left.svg share/icons/breeze-dark/actions/22/sidebar-collapse-right.svg share/icons/breeze-dark/actions/22/sidebar-collapse.svg share/icons/breeze-dark/actions/22/sidebar-expand-left.svg share/icons/breeze-dark/actions/22/sidebar-expand-right.svg share/icons/breeze-dark/actions/22/sidebar-expand.svg share/icons/breeze-dark/actions/22/sidebar-show-symbolic.svg share/icons/breeze-dark/actions/22/similarartists-amarok.svg share/icons/breeze-dark/actions/22/skg-chart-bubble.svg share/icons/breeze-dark/actions/22/skrooge_credit_card.svg share/icons/breeze-dark/actions/22/skrooge_less.svg share/icons/breeze-dark/actions/22/skrooge_more.svg share/icons/breeze-dark/actions/22/skrooge_much_less.svg share/icons/breeze-dark/actions/22/skrooge_much_more.svg share/icons/breeze-dark/actions/22/skrooge_type.svg share/icons/breeze-dark/actions/22/slanted.svg share/icons/breeze-dark/actions/22/smallclock.svg share/icons/breeze-dark/actions/22/smallfrac.svg share/icons/breeze-dark/actions/22/smallskip.svg share/icons/breeze-dark/actions/22/smartnewline.svg share/icons/breeze-dark/actions/22/smiley-add.svg share/icons/breeze-dark/actions/22/smiley-shape.svg share/icons/breeze-dark/actions/22/smiley.svg share/icons/breeze-dark/actions/22/smooth.svg share/icons/breeze-dark/actions/22/snap-angle.svg share/icons/breeze-dark/actions/22/snap-bounding-box-center.svg share/icons/breeze-dark/actions/22/snap-bounding-box-corners.svg share/icons/breeze-dark/actions/22/snap-bounding-box-edges.svg share/icons/breeze-dark/actions/22/snap-bounding-box-midpoints.svg share/icons/breeze-dark/actions/22/snap-bounding-box.svg share/icons/breeze-dark/actions/22/snap-extension.svg share/icons/breeze-dark/actions/22/snap-grid-guide-intersections.svg share/icons/breeze-dark/actions/22/snap-guideline.svg share/icons/breeze-dark/actions/22/snap-intersection.svg share/icons/breeze-dark/actions/22/snap-node.svg share/icons/breeze-dark/actions/22/snap-nodes-center.svg share/icons/breeze-dark/actions/22/snap-nodes-cusp.svg share/icons/breeze-dark/actions/22/snap-nodes-intersection.svg share/icons/breeze-dark/actions/22/snap-nodes-midpoint.svg share/icons/breeze-dark/actions/22/snap-nodes-path.svg share/icons/breeze-dark/actions/22/snap-nodes-rotation-center.svg share/icons/breeze-dark/actions/22/snap-nodes-smooth.svg share/icons/breeze-dark/actions/22/snap-orthogonal.svg share/icons/breeze-dark/actions/22/snap-page.svg share/icons/breeze-dark/actions/22/snap-text-baseline.svg share/icons/breeze-dark/actions/22/snap.svg share/icons/breeze-dark/actions/22/social.svg share/icons/breeze-dark/actions/22/sort-name.svg share/icons/breeze-dark/actions/22/sort-presence.svg share/icons/breeze-dark/actions/22/sort_incr.svg share/icons/breeze-dark/actions/22/speaker.svg share/icons/breeze-dark/actions/22/special_paste.svg share/icons/breeze-dark/actions/22/specific-setup.svg share/icons/breeze-dark/actions/22/speedometer.svg share/icons/breeze-dark/actions/22/spiral-shape.svg share/icons/breeze-dark/actions/22/split.svg share/icons/breeze-dark/actions/22/spreadsheetshape.svg share/icons/breeze-dark/actions/22/sqrt.svg share/icons/breeze-dark/actions/22/standard-connector.svg share/icons/breeze-dark/actions/22/star-shape.svg share/icons/breeze-dark/actions/22/start-over.svg share/icons/breeze-dark/actions/22/state-fork.svg share/icons/breeze-dark/actions/22/stateshape.svg share/icons/breeze-dark/actions/22/statetool.svg share/icons/breeze-dark/actions/22/step_object_Anchor.svg share/icons/breeze-dark/actions/22/step_object_Box.svg share/icons/breeze-dark/actions/22/step_object_ChargedParticle.svg share/icons/breeze-dark/actions/22/step_object_CircularMotor.svg share/icons/breeze-dark/actions/22/step_object_Controller.svg share/icons/breeze-dark/actions/22/step_object_CoulombForce.svg share/icons/breeze-dark/actions/22/step_object_Disk.svg share/icons/breeze-dark/actions/22/step_object_Gas.svg share/icons/breeze-dark/actions/22/step_object_GasParticle.svg share/icons/breeze-dark/actions/22/step_object_Graph.svg share/icons/breeze-dark/actions/22/step_object_GravitationForce.svg share/icons/breeze-dark/actions/22/step_object_LinearMotor.svg share/icons/breeze-dark/actions/22/step_object_Meter.svg share/icons/breeze-dark/actions/22/step_object_Note.svg share/icons/breeze-dark/actions/22/step_object_Particle.svg share/icons/breeze-dark/actions/22/step_object_Pin.svg share/icons/breeze-dark/actions/22/step_object_Polygon.svg share/icons/breeze-dark/actions/22/step_object_Rope.svg share/icons/breeze-dark/actions/22/step_object_SoftBody.svg share/icons/breeze-dark/actions/22/step_object_Spring.svg share/icons/breeze-dark/actions/22/step_object_Stick.svg share/icons/breeze-dark/actions/22/step_object_Tracer.svg share/icons/breeze-dark/actions/22/step_object_WeightForce.svg share/icons/breeze-dark/actions/22/stickers.svg share/icons/breeze-dark/actions/22/story-editor.svg share/icons/breeze-dark/actions/22/straight-connector.svg share/icons/breeze-dark/actions/22/stroke-cap-bevel.svg share/icons/breeze-dark/actions/22/stroke-cap-butt.svg share/icons/breeze-dark/actions/22/stroke-cap-miter.svg share/icons/breeze-dark/actions/22/stroke-cap-round.svg share/icons/breeze-dark/actions/22/stroke-cap-square.svg share/icons/breeze-dark/actions/22/stroke-join-bevel.svg share/icons/breeze-dark/actions/22/stroke-join-miter.svg share/icons/breeze-dark/actions/22/stroke-join-round.svg share/icons/breeze-dark/actions/22/stroke-to-path.svg share/icons/breeze-dark/actions/22/strong.svg share/icons/breeze-dark/actions/22/structure.svg share/icons/breeze-dark/actions/22/subsystem.svg share/icons/breeze-dark/actions/22/svn-commit.svg share/icons/breeze-dark/actions/22/svn-update.svg share/icons/breeze-dark/actions/22/swap-panels.svg share/icons/breeze-dark/actions/22/system-hibernate.svg share/icons/breeze-dark/actions/22/system-lock-screen.svg share/icons/breeze-dark/actions/22/system-log-out-rtl.svg share/icons/breeze-dark/actions/22/system-log-out.svg share/icons/breeze-dark/actions/22/system-reboot.svg share/icons/breeze-dark/actions/22/system-run.svg share/icons/breeze-dark/actions/22/system-save-session.svg share/icons/breeze-dark/actions/22/system-search.svg share/icons/breeze-dark/actions/22/system-shutdown.svg share/icons/breeze-dark/actions/22/system-suspend-hibernate.svg share/icons/breeze-dark/actions/22/system-suspend.svg share/icons/breeze-dark/actions/22/system-switch-user.svg share/icons/breeze-dark/actions/22/system-upgrade.svg share/icons/breeze-dark/actions/22/system-users.svg share/icons/breeze-dark/actions/22/tab-close-other.svg share/icons/breeze-dark/actions/22/tab-close.svg share/icons/breeze-dark/actions/22/tab-detach.svg share/icons/breeze-dark/actions/22/tab-duplicate.svg share/icons/breeze-dark/actions/22/tab-new-background.svg share/icons/breeze-dark/actions/22/tab-new.svg share/icons/breeze-dark/actions/22/table.svg share/icons/breeze-dark/actions/22/tag-addressbook.svg share/icons/breeze-dark/actions/22/tag-assigned.svg share/icons/breeze-dark/actions/22/tag-delete.svg share/icons/breeze-dark/actions/22/tag-edit.svg share/icons/breeze-dark/actions/22/tag-events.svg share/icons/breeze-dark/actions/22/tag-folder.svg share/icons/breeze-dark/actions/22/tag-new.svg share/icons/breeze-dark/actions/22/tag-people.svg share/icons/breeze-dark/actions/22/tag-places.svg share/icons/breeze-dark/actions/22/tag-properties.svg share/icons/breeze-dark/actions/22/tag-recents.svg share/icons/breeze-dark/actions/22/tag-reset.svg share/icons/breeze-dark/actions/22/tag.svg share/icons/breeze-dark/actions/22/task-new.svg share/icons/breeze-dark/actions/22/taxes-finances.svg share/icons/breeze-dark/actions/22/template.svg share/icons/breeze-dark/actions/22/texcompiler.svg share/icons/breeze-dark/actions/22/texlion.svg share/icons/breeze-dark/actions/22/text-field-framed.svg share/icons/breeze-dark/actions/22/text-field-frameless.svg share/icons/breeze-dark/actions/22/text-field.svg share/icons/breeze-dark/actions/22/text-flow-into-frame.svg share/icons/breeze-dark/actions/22/text-frame-link.svg share/icons/breeze-dark/actions/22/text-frame-unlink.svg share/icons/breeze-dark/actions/22/text-speak.svg share/icons/breeze-dark/actions/22/text-unflow.svg share/icons/breeze-dark/actions/22/text-wrap.svg share/icons/breeze-dark/actions/22/text_horz_kern.svg share/icons/breeze-dark/actions/22/text_letter_spacing.svg share/icons/breeze-dark/actions/22/text_line_spacing.svg share/icons/breeze-dark/actions/22/text_remove_kerns.svg share/icons/breeze-dark/actions/22/text_rotation.svg share/icons/breeze-dark/actions/22/text_subscript.svg share/icons/breeze-dark/actions/22/text_superscript.svg share/icons/breeze-dark/actions/22/text_vert_kern.svg share/icons/breeze-dark/actions/22/text_word_spacing.svg share/icons/breeze-dark/actions/22/texture.svg share/icons/breeze-dark/actions/22/timeline-extract.svg share/icons/breeze-dark/actions/22/timeline-insert.svg share/icons/breeze-dark/actions/22/timeline-lift.svg share/icons/breeze-dark/actions/22/timeline-overwrite.svg share/icons/breeze-dark/actions/22/timeline-use-zone-off.svg share/icons/breeze-dark/actions/22/timeline-use-zone-on.svg share/icons/breeze-dark/actions/22/tool-animator.svg share/icons/breeze-dark/actions/22/tool-measure.svg share/icons/breeze-dark/actions/22/tool-node-editor.svg share/icons/breeze-dark/actions/22/tool-pointer.svg share/icons/breeze-dark/actions/22/tool-spray.svg share/icons/breeze-dark/actions/22/tool-text.svg share/icons/breeze-dark/actions/22/tool-tweak.svg share/icons/breeze-dark/actions/22/tool_brush.svg share/icons/breeze-dark/actions/22/tool_cellformatting.svg share/icons/breeze-dark/actions/22/tool_color_eraser.svg share/icons/breeze-dark/actions/22/tool_color_picker.svg share/icons/breeze-dark/actions/22/tool_curve.svg share/icons/breeze-dark/actions/22/tool_ellipse.svg share/icons/breeze-dark/actions/22/tool_elliptical_selection.svg share/icons/breeze-dark/actions/22/tool_eraser.svg share/icons/breeze-dark/actions/22/tool_flood_fill.svg share/icons/breeze-dark/actions/22/tool_free_form_selection.svg share/icons/breeze-dark/actions/22/tool_imageeffects.svg share/icons/breeze-dark/actions/22/tool_line.svg share/icons/breeze-dark/actions/22/tool_pagelayout.svg share/icons/breeze-dark/actions/22/tool_pen.svg share/icons/breeze-dark/actions/22/tool_polygon.svg share/icons/breeze-dark/actions/22/tool_polyline.svg share/icons/breeze-dark/actions/22/tool_rect_selection.svg share/icons/breeze-dark/actions/22/tool_rectangle.svg share/icons/breeze-dark/actions/22/tool_references.svg share/icons/breeze-dark/actions/22/tool_review.svg share/icons/breeze-dark/actions/22/tool_rounded_rectangle.svg share/icons/breeze-dark/actions/22/tool_spraycan.svg share/icons/breeze-dark/actions/22/tool_text.svg share/icons/breeze-dark/actions/22/tools-check-spelling.svg share/icons/breeze-dark/actions/22/tools-media-optical-burn-image.svg share/icons/breeze-dark/actions/22/tools-media-optical-burn.svg share/icons/breeze-dark/actions/22/tools-media-optical-copy.svg share/icons/breeze-dark/actions/22/tools-media-optical-erase.svg share/icons/breeze-dark/actions/22/tools-media-optical-format.svg share/icons/breeze-dark/actions/22/tools-report-bug.svg share/icons/breeze-dark/actions/22/tools-rip-audio-cd.svg share/icons/breeze-dark/actions/22/tools-rip-video-cd.svg share/icons/breeze-dark/actions/22/tools-rip-video-dvd.svg share/icons/breeze-dark/actions/22/tools-wizard.svg share/icons/breeze-dark/actions/22/tools.svg share/icons/breeze-dark/actions/22/torrents.svg share/icons/breeze-dark/actions/22/transform-browse.svg share/icons/breeze-dark/actions/22/transform-crop-and-resize.svg share/icons/breeze-dark/actions/22/transform-crop.svg share/icons/breeze-dark/actions/22/transform-move-horizontal.svg share/icons/breeze-dark/actions/22/transform-move-vertical.svg share/icons/breeze-dark/actions/22/transform-move.svg share/icons/breeze-dark/actions/22/transform-rotate.svg share/icons/breeze-dark/actions/22/transform-scale-horizontal.svg share/icons/breeze-dark/actions/22/transform-scale-textbox-points.svg share/icons/breeze-dark/actions/22/transform-scale-vertical.svg share/icons/breeze-dark/actions/22/transform-scale.svg share/icons/breeze-dark/actions/22/transform-shear-down.svg share/icons/breeze-dark/actions/22/transform-shear-left.svg share/icons/breeze-dark/actions/22/transform-shear-right.svg share/icons/breeze-dark/actions/22/transform-shear-up.svg share/icons/breeze-dark/actions/22/transform-skew-horizontal.svg share/icons/breeze-dark/actions/22/transform-skew-vertical.svg share/icons/breeze-dark/actions/22/transsearch.svg share/icons/breeze-dark/actions/22/trash-empty.svg share/icons/breeze-dark/actions/22/trim-margins.svg share/icons/breeze-dark/actions/22/trim-to-selection.svg share/icons/breeze-dark/actions/22/typewriter.svg share/icons/breeze-dark/actions/22/umbr-coll-message-asynchronous.svg share/icons/breeze-dark/actions/22/umbr-coll-message-synchronous.svg share/icons/breeze-dark/actions/22/umbr-message-asynchronous.svg share/icons/breeze-dark/actions/22/umbr-message-found.svg share/icons/breeze-dark/actions/22/umbr-message-lost.svg share/icons/breeze-dark/actions/22/umbr-message-synchronous.svg share/icons/breeze-dark/actions/22/umbrello_diagram_activity.svg share/icons/breeze-dark/actions/22/umbrello_diagram_class.svg share/icons/breeze-dark/actions/22/umbrello_diagram_collaboration.svg share/icons/breeze-dark/actions/22/umbrello_diagram_component.svg share/icons/breeze-dark/actions/22/umbrello_diagram_deployment.svg share/icons/breeze-dark/actions/22/umbrello_diagram_entityrelationship.svg share/icons/breeze-dark/actions/22/umbrello_diagram_sequence.svg share/icons/breeze-dark/actions/22/umbrello_diagram_state.svg share/icons/breeze-dark/actions/22/umbrello_diagram_usecase.svg share/icons/breeze-dark/actions/22/underexposure.svg share/icons/breeze-dark/actions/22/uniassociation.svg share/icons/breeze-dark/actions/22/unique_constraint.svg share/icons/breeze-dark/actions/22/unlock.svg share/icons/breeze-dark/actions/22/unmarkasblank.svg share/icons/breeze-dark/actions/22/upcomingevents-amarok.svg share/icons/breeze-dark/actions/22/upindicator.svg share/icons/breeze-dark/actions/22/upload-media.svg share/icons/breeze-dark/actions/22/usecase.svg share/icons/breeze-dark/actions/22/user-group-delete.svg share/icons/breeze-dark/actions/22/user-group-new.svg share/icons/breeze-dark/actions/22/user-group-properties.svg share/icons/breeze-dark/actions/22/user-identity.svg share/icons/breeze-dark/actions/22/user-others.svg share/icons/breeze-dark/actions/22/user-properties.svg share/icons/breeze-dark/actions/22/user.svg share/icons/breeze-dark/actions/22/username-copy.svg share/icons/breeze-dark/actions/22/vcs-branch-delete.svg share/icons/breeze-dark/actions/22/vcs-branch.svg share/icons/breeze-dark/actions/22/vcs-commit-cvs-cervisia.svg share/icons/breeze-dark/actions/22/vcs-commit.svg share/icons/breeze-dark/actions/22/vcs-diff-cvs-cervisia.svg share/icons/breeze-dark/actions/22/vcs-diff.svg share/icons/breeze-dark/actions/22/vcs-merge-request.svg share/icons/breeze-dark/actions/22/vcs-merge.svg share/icons/breeze-dark/actions/22/vcs-pull.svg share/icons/breeze-dark/actions/22/vcs-push.svg share/icons/breeze-dark/actions/22/vcs-remove-cvs-cervisia.svg share/icons/breeze-dark/actions/22/vcs-stash-pop.svg share/icons/breeze-dark/actions/22/vcs-stash.svg share/icons/breeze-dark/actions/22/vcs-status-cvs-cervisia.svg share/icons/breeze-dark/actions/22/vcs-update-cvs-cervisia.svg share/icons/breeze-dark/actions/22/verb.svg share/icons/breeze-dark/actions/22/verbatim.svg share/icons/breeze-dark/actions/22/videoclip-amarok.svg share/icons/breeze-dark/actions/22/view-bank-add.svg share/icons/breeze-dark/actions/22/view-bank-delete.svg share/icons/breeze-dark/actions/22/view-bank-edit.svg share/icons/breeze-dark/actions/22/view-bank.svg share/icons/breeze-dark/actions/22/view-barcode-add.svg share/icons/breeze-dark/actions/22/view-barcode-qr.svg share/icons/breeze-dark/actions/22/view-barcode.svg share/icons/breeze-dark/actions/22/view-calendar-agenda.svg share/icons/breeze-dark/actions/22/view-calendar-birthday.svg share/icons/breeze-dark/actions/22/view-calendar-day.svg share/icons/breeze-dark/actions/22/view-calendar-holiday.svg share/icons/breeze-dark/actions/22/view-calendar-journal.svg share/icons/breeze-dark/actions/22/view-calendar-list.svg share/icons/breeze-dark/actions/22/view-calendar-month.svg share/icons/breeze-dark/actions/22/view-calendar-special-occasion.svg share/icons/breeze-dark/actions/22/view-calendar-tasks.svg share/icons/breeze-dark/actions/22/view-calendar-time-spent.svg share/icons/breeze-dark/actions/22/view-calendar-timeline.svg share/icons/breeze-dark/actions/22/view-calendar-upcoming-days.svg share/icons/breeze-dark/actions/22/view-calendar-upcoming-events.svg share/icons/breeze-dark/actions/22/view-calendar-wedding-anniversary.svg share/icons/breeze-dark/actions/22/view-calendar-week.svg share/icons/breeze-dark/actions/22/view-calendar-whatsnext.svg share/icons/breeze-dark/actions/22/view-calendar-workweek.svg share/icons/breeze-dark/actions/22/view-calendar.svg share/icons/breeze-dark/actions/22/view-catalog.svg share/icons/breeze-dark/actions/22/view-categories-expenditures.svg share/icons/breeze-dark/actions/22/view-categories-incomes.svg share/icons/breeze-dark/actions/22/view-certificate-add.svg share/icons/breeze-dark/actions/22/view-certificate-export-secret.svg share/icons/breeze-dark/actions/22/view-certificate-export-server.svg share/icons/breeze-dark/actions/22/view-certificate-export.svg share/icons/breeze-dark/actions/22/view-certificate-import.svg share/icons/breeze-dark/actions/22/view-certificate-server-configure.svg share/icons/breeze-dark/actions/22/view-certificate-sign.svg share/icons/breeze-dark/actions/22/view-certificate.svg share/icons/breeze-dark/actions/22/view-close.svg share/icons/breeze-dark/actions/22/view-conversation-balloon.svg share/icons/breeze-dark/actions/22/view-currency-list.svg share/icons/breeze-dark/actions/22/view-file-columns.svg share/icons/breeze-dark/actions/22/view-filter.svg share/icons/breeze-dark/actions/22/view-financial-account-add.svg share/icons/breeze-dark/actions/22/view-financial-account-asset-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-asset.svg share/icons/breeze-dark/actions/22/view-financial-account-cash-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-cash.svg share/icons/breeze-dark/actions/22/view-financial-account-checking-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-checking.svg share/icons/breeze-dark/actions/22/view-financial-account-close.svg share/icons/breeze-dark/actions/22/view-financial-account-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-credit-card-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-credit-card.svg share/icons/breeze-dark/actions/22/view-financial-account-delete.svg share/icons/breeze-dark/actions/22/view-financial-account-edit.svg share/icons/breeze-dark/actions/22/view-financial-account-investment-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-investment-security-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-investment-security.svg share/icons/breeze-dark/actions/22/view-financial-account-investment.svg share/icons/breeze-dark/actions/22/view-financial-account-liability-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-liability.svg share/icons/breeze-dark/actions/22/view-financial-account-loan-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-loan.svg share/icons/breeze-dark/actions/22/view-financial-account-reopen.svg share/icons/breeze-dark/actions/22/view-financial-account-savings-closed.svg share/icons/breeze-dark/actions/22/view-financial-account-savings.svg share/icons/breeze-dark/actions/22/view-financial-account.svg share/icons/breeze-dark/actions/22/view-financial-budget.svg share/icons/breeze-dark/actions/22/view-financial-category-add.svg share/icons/breeze-dark/actions/22/view-financial-category-delete.svg share/icons/breeze-dark/actions/22/view-financial-category-edit.svg share/icons/breeze-dark/actions/22/view-financial-category-expense.svg share/icons/breeze-dark/actions/22/view-financial-category-income.svg share/icons/breeze-dark/actions/22/view-financial-category.svg share/icons/breeze-dark/actions/22/view-financial-list.svg share/icons/breeze-dark/actions/22/view-financial-transfer-reconcile.svg share/icons/breeze-dark/actions/22/view-financial-transfer-reconciled.svg share/icons/breeze-dark/actions/22/view-financial-transfer-unreconciled.svg share/icons/breeze-dark/actions/22/view-form-action.svg share/icons/breeze-dark/actions/22/view-form.svg share/icons/breeze-dark/actions/22/view-fullscreen.svg share/icons/breeze-dark/actions/22/view-grid.svg share/icons/breeze-dark/actions/22/view-group.svg share/icons/breeze-dark/actions/22/view-hidden.svg share/icons/breeze-dark/actions/22/view-history.svg share/icons/breeze-dark/actions/22/view-institution-add.svg share/icons/breeze-dark/actions/22/view-institution-delete.svg share/icons/breeze-dark/actions/22/view-institution-edit.svg share/icons/breeze-dark/actions/22/view-institution.svg share/icons/breeze-dark/actions/22/view-left-close.svg share/icons/breeze-dark/actions/22/view-left-new.svg share/icons/breeze-dark/actions/22/view-list-details.svg share/icons/breeze-dark/actions/22/view-list-icons.svg share/icons/breeze-dark/actions/22/view-list-text.svg share/icons/breeze-dark/actions/22/view-list-tree.svg share/icons/breeze-dark/actions/22/view-media-album-cover.svg share/icons/breeze-dark/actions/22/view-media-artist.svg share/icons/breeze-dark/actions/22/view-media-chart.svg share/icons/breeze-dark/actions/22/view-media-config.svg share/icons/breeze-dark/actions/22/view-media-equalizer.svg share/icons/breeze-dark/actions/22/view-media-favorite.svg share/icons/breeze-dark/actions/22/view-media-genre.svg share/icons/breeze-dark/actions/22/view-media-lyrics.svg share/icons/breeze-dark/actions/22/view-media-playcount.svg share/icons/breeze-dark/actions/22/view-media-playlist.svg share/icons/breeze-dark/actions/22/view-media-publisher.svg share/icons/breeze-dark/actions/22/view-media-recent.svg share/icons/breeze-dark/actions/22/view-media-similarartists.svg share/icons/breeze-dark/actions/22/view-media-title.svg share/icons/breeze-dark/actions/22/view-media-track.svg share/icons/breeze-dark/actions/22/view-media-visualization.svg share/icons/breeze-dark/actions/22/view-multiple-objects.svg share/icons/breeze-dark/actions/22/view-object-histogram-linear.svg share/icons/breeze-dark/actions/22/view-object-histogram-logarithmic.svg share/icons/breeze-dark/actions/22/view-pages-continuous.svg share/icons/breeze-dark/actions/22/view-pages-facing-first-centered.svg share/icons/breeze-dark/actions/22/view-pages-facing.svg share/icons/breeze-dark/actions/22/view-pages-overview.svg share/icons/breeze-dark/actions/22/view-pages-single.svg share/icons/breeze-dark/actions/22/view-pim-calendar.svg share/icons/breeze-dark/actions/22/view-pim-contacts.svg share/icons/breeze-dark/actions/22/view-pim-journal.svg share/icons/breeze-dark/actions/22/view-pim-mail.svg share/icons/breeze-dark/actions/22/view-pim-news.svg share/icons/breeze-dark/actions/22/view-pim-notes.svg share/icons/breeze-dark/actions/22/view-pim-tasks-pending.svg share/icons/breeze-dark/actions/22/view-pim-tasks.svg share/icons/breeze-dark/actions/22/view-presentation.svg share/icons/breeze-dark/actions/22/view-preview.svg share/icons/breeze-dark/actions/22/view-process-all-tree.svg share/icons/breeze-dark/actions/22/view-process-all.svg share/icons/breeze-dark/actions/22/view-process-own.svg share/icons/breeze-dark/actions/22/view-process-system.svg share/icons/breeze-dark/actions/22/view-process-tree.svg share/icons/breeze-dark/actions/22/view-process-users.svg share/icons/breeze-dark/actions/22/view-refresh.svg share/icons/breeze-dark/actions/22/view-resource-calendar.svg share/icons/breeze-dark/actions/22/view-restore.svg share/icons/breeze-dark/actions/22/view-right-close.svg share/icons/breeze-dark/actions/22/view-right-new.svg share/icons/breeze-dark/actions/22/view-services-scripted-amarok.svg share/icons/breeze-dark/actions/22/view-sidetree.svg share/icons/breeze-dark/actions/22/view-sort-ascending-name.svg share/icons/breeze-dark/actions/22/view-sort-ascending.svg share/icons/breeze-dark/actions/22/view-sort-descending-name.svg share/icons/breeze-dark/actions/22/view-sort-descending.svg share/icons/breeze-dark/actions/22/view-sort.svg share/icons/breeze-dark/actions/22/view-split-effect.svg share/icons/breeze-dark/actions/22/view-split-left-right.svg share/icons/breeze-dark/actions/22/view-split-top-bottom.svg share/icons/breeze-dark/actions/22/view-statistics.svg share/icons/breeze-dark/actions/22/view-table-of-contents-ltr.svg share/icons/breeze-dark/actions/22/view-table-of-contents-rtl.svg share/icons/breeze-dark/actions/22/view-task-add.svg share/icons/breeze-dark/actions/22/view-task-child-add.svg share/icons/breeze-dark/actions/22/view-task-child.svg share/icons/breeze-dark/actions/22/view-task.svg share/icons/breeze-dark/actions/22/view-time-schedule-baselined-add.svg share/icons/breeze-dark/actions/22/view-time-schedule-baselined-remove.svg share/icons/breeze-dark/actions/22/view-time-schedule-baselined.svg share/icons/breeze-dark/actions/22/view-time-schedule-calculus.svg share/icons/breeze-dark/actions/22/view-time-schedule-child-insert.svg share/icons/breeze-dark/actions/22/view-time-schedule-edit.svg share/icons/breeze-dark/actions/22/view-time-schedule-insert.svg share/icons/breeze-dark/actions/22/view-time-schedule.svg share/icons/breeze-dark/actions/22/view-unsplit-effect.svg share/icons/breeze-dark/actions/22/view-visible.svg share/icons/breeze-dark/actions/22/view-web-browser-dom-tree.svg share/icons/breeze-dark/actions/22/view_fit_to_page.svg share/icons/breeze-dark/actions/22/viewbib.svg share/icons/breeze-dark/actions/22/viewdvi.svg share/icons/breeze-dark/actions/22/viewhtml.svg share/icons/breeze-dark/actions/22/viewimage.svg share/icons/breeze-dark/actions/22/viewlog.svg share/icons/breeze-dark/actions/22/viewpdf.svg share/icons/breeze-dark/actions/22/viewps.svg share/icons/breeze-dark/actions/22/virtual-desktops.svg share/icons/breeze-dark/actions/22/visibility.svg share/icons/breeze-dark/actions/22/wallet-closed.svg share/icons/breeze-dark/actions/22/wallet-open.svg share/icons/breeze-dark/actions/22/warnnext.svg share/icons/breeze-dark/actions/22/warnprev.svg share/icons/breeze-dark/actions/22/whitebalance.svg share/icons/breeze-dark/actions/22/widget-alternatives.svg share/icons/breeze-dark/actions/22/window-close.svg share/icons/breeze-dark/actions/22/window-duplicate.svg share/icons/breeze-dark/actions/22/window-keep-above.svg share/icons/breeze-dark/actions/22/window-keep-below.svg share/icons/breeze-dark/actions/22/window-maximize.svg share/icons/breeze-dark/actions/22/window-minimize.svg share/icons/breeze-dark/actions/22/window-new.svg share/icons/breeze-dark/actions/22/window-pin.svg share/icons/breeze-dark/actions/22/window-restore.svg share/icons/breeze-dark/actions/22/window-shade.svg share/icons/breeze-dark/actions/22/window-unpin.svg share/icons/breeze-dark/actions/22/window-unshade.svg share/icons/breeze-dark/actions/22/window.svg share/icons/breeze-dark/actions/22/wizard_math.svg share/icons/breeze-dark/actions/22/wizard_pdftools.svg share/icons/breeze-dark/actions/22/wizard_pstools.svg share/icons/breeze-dark/actions/22/wizard_tabular.svg share/icons/breeze-dark/actions/22/x-clementine-album.svg share/icons/breeze-dark/actions/22/x-clementine-albums.svg share/icons/breeze-dark/actions/22/x-clementine-artist.svg share/icons/breeze-dark/actions/22/x-clementine-shuffle.svg share/icons/breeze-dark/actions/22/x-shape-connection.svg share/icons/breeze-dark/actions/22/x-shape-formula.svg share/icons/breeze-dark/actions/22/x-shape-image.svg share/icons/breeze-dark/actions/22/x-shape-text.svg share/icons/breeze-dark/actions/22/xfsm-hibernate.svg share/icons/breeze-dark/actions/22/xml-attribute-delete.svg share/icons/breeze-dark/actions/22/xml-element-new.svg share/icons/breeze-dark/actions/22/xml-node-delete.svg share/icons/breeze-dark/actions/22/xml-node-duplicate.svg share/icons/breeze-dark/actions/22/xml-text-new.svg share/icons/breeze-dark/actions/22/y-zoom-in.svg share/icons/breeze-dark/actions/22/zone-in.svg share/icons/breeze-dark/actions/22/zone-out.svg share/icons/breeze-dark/actions/22/zoom-1-to-2.svg share/icons/breeze-dark/actions/22/zoom-2-to-1.svg share/icons/breeze-dark/actions/22/zoom-all.svg share/icons/breeze-dark/actions/22/zoom-draw.svg share/icons/breeze-dark/actions/22/zoom-fit-best.svg share/icons/breeze-dark/actions/22/zoom-fit-height.svg share/icons/breeze-dark/actions/22/zoom-fit-page.svg share/icons/breeze-dark/actions/22/zoom-fit-selection.svg share/icons/breeze-dark/actions/22/zoom-fit-width.svg share/icons/breeze-dark/actions/22/zoom-in-large.svg share/icons/breeze-dark/actions/22/zoom-in-x.svg share/icons/breeze-dark/actions/22/zoom-in.svg share/icons/breeze-dark/actions/22/zoom-next.svg share/icons/breeze-dark/actions/22/zoom-original.svg share/icons/breeze-dark/actions/22/zoom-out-large.svg share/icons/breeze-dark/actions/22/zoom-out-x.svg share/icons/breeze-dark/actions/22/zoom-out-y.svg share/icons/breeze-dark/actions/22/zoom-out.svg share/icons/breeze-dark/actions/22/zoom-pixels.svg share/icons/breeze-dark/actions/22/zoom-previous.svg share/icons/breeze-dark/actions/22/zoom-select-fit.svg share/icons/breeze-dark/actions/22/zoom-select-x.svg share/icons/breeze-dark/actions/22/zoom-select-y.svg share/icons/breeze-dark/actions/22/zoom-select.svg share/icons/breeze-dark/actions/22/zoom-selection.svg share/icons/breeze-dark/actions/22/zoom.svg share/icons/breeze-dark/actions/22@2x share/icons/breeze-dark/actions/22@3x share/icons/breeze-dark/actions/24/CVnamespace.svg share/icons/breeze-dark/actions/24/Info-amarok.svg share/icons/breeze-dark/actions/24/PrePostCondition.svg share/icons/breeze-dark/actions/24/accept_signal.svg share/icons/breeze-dark/actions/24/accept_time_event.svg share/icons/breeze-dark/actions/24/action-albumfolder-importdir2.svg share/icons/breeze-dark/actions/24/action-rss_tag.svg share/icons/breeze-dark/actions/24/activities.svg share/icons/breeze-dark/actions/24/activity-fork.svg share/icons/breeze-dark/actions/24/actor.svg share/icons/breeze-dark/actions/24/add-placemark.svg share/icons/breeze-dark/actions/24/add-subtitle.svg share/icons/breeze-dark/actions/24/address-book-new.svg share/icons/breeze-dark/actions/24/addressbook-details.svg share/icons/breeze-dark/actions/24/adjustcurves.svg share/icons/breeze-dark/actions/24/adjusthsl.svg share/icons/breeze-dark/actions/24/adjustlevels.svg share/icons/breeze-dark/actions/24/adjustrgb.svg share/icons/breeze-dark/actions/24/aggregation.svg share/icons/breeze-dark/actions/24/akonadi-phone-home.svg share/icons/breeze-dark/actions/24/akonadiconsole.svg share/icons/breeze-dark/actions/24/albumfolder-importdir.svg share/icons/breeze-dark/actions/24/albumfolder-importimages.svg share/icons/breeze-dark/actions/24/albumfolder-new.svg share/icons/breeze-dark/actions/24/albumfolder-properties.svg share/icons/breeze-dark/actions/24/align-horizontal-baseline.svg share/icons/breeze-dark/actions/24/align-horizontal-bottom-out.svg share/icons/breeze-dark/actions/24/align-horizontal-center.svg share/icons/breeze-dark/actions/24/align-horizontal-left-out.svg share/icons/breeze-dark/actions/24/align-horizontal-left-to-anchor.svg share/icons/breeze-dark/actions/24/align-horizontal-left.svg share/icons/breeze-dark/actions/24/align-horizontal-node.svg share/icons/breeze-dark/actions/24/align-horizontal-right-out.svg share/icons/breeze-dark/actions/24/align-horizontal-right-to-anchor.svg share/icons/breeze-dark/actions/24/align-horizontal-right.svg share/icons/breeze-dark/actions/24/align-horizontal-top-out.svg share/icons/breeze-dark/actions/24/align-vertical-baseline.svg share/icons/breeze-dark/actions/24/align-vertical-bottom-out.svg share/icons/breeze-dark/actions/24/align-vertical-bottom-to-anchor.svg share/icons/breeze-dark/actions/24/align-vertical-bottom.svg share/icons/breeze-dark/actions/24/align-vertical-center.svg share/icons/breeze-dark/actions/24/align-vertical-node.svg share/icons/breeze-dark/actions/24/align-vertical-top-out.svg share/icons/breeze-dark/actions/24/align-vertical-top-to-anchor.svg share/icons/breeze-dark/actions/24/align-vertical-top.svg share/icons/breeze-dark/actions/24/amarok_artist.svg share/icons/breeze-dark/actions/24/amarok_cart_add.svg share/icons/breeze-dark/actions/24/amarok_cart_remove.svg share/icons/breeze-dark/actions/24/amarok_cart_view.svg share/icons/breeze-dark/actions/24/amarok_change_language.svg share/icons/breeze-dark/actions/24/amarok_clock.svg share/icons/breeze-dark/actions/24/amarok_lyrics.svg share/icons/breeze-dark/actions/24/amarok_playcount.svg share/icons/breeze-dark/actions/24/amarok_playlist.svg share/icons/breeze-dark/actions/24/amarok_playlist_refresh.svg share/icons/breeze-dark/actions/24/amarok_scripts.svg share/icons/breeze-dark/actions/24/anchor.svg share/icons/breeze-dark/actions/24/animal.svg share/icons/breeze-dark/actions/24/animation-stage.svg share/icons/breeze-dark/actions/24/answer-correct.svg share/icons/breeze-dark/actions/24/answer.svg share/icons/breeze-dark/actions/24/antivignetting.svg share/icons/breeze-dark/actions/24/application-menu.svg share/icons/breeze-dark/actions/24/appointment-new.svg share/icons/breeze-dark/actions/24/approved.svg share/icons/breeze-dark/actions/24/archive-extract.svg share/icons/breeze-dark/actions/24/archive-insert-directory.svg share/icons/breeze-dark/actions/24/archive-insert.svg share/icons/breeze-dark/actions/24/archive-remove.svg share/icons/breeze-dark/actions/24/arrow-down-double.svg share/icons/breeze-dark/actions/24/arrow-down.svg share/icons/breeze-dark/actions/24/arrow-left-double.svg share/icons/breeze-dark/actions/24/arrow-left.svg share/icons/breeze-dark/actions/24/arrow-right-double.svg share/icons/breeze-dark/actions/24/arrow-right.svg share/icons/breeze-dark/actions/24/arrow-up-double.svg share/icons/breeze-dark/actions/24/arrow-up.svg share/icons/breeze-dark/actions/24/arrow.svg share/icons/breeze-dark/actions/24/artifact.svg share/icons/breeze-dark/actions/24/artistictext-tool.svg share/icons/breeze-dark/actions/24/association.svg share/icons/breeze-dark/actions/24/atmosphere.svg share/icons/breeze-dark/actions/24/auto-scale-all.svg share/icons/breeze-dark/actions/24/auto-scale-x.svg share/icons/breeze-dark/actions/24/auto-scale-y.svg share/icons/breeze-dark/actions/24/auto-transition.svg share/icons/breeze-dark/actions/24/auto-type.svg share/icons/breeze-dark/actions/24/autocorrection.svg share/icons/breeze-dark/actions/24/backgroundtool.svg share/icons/breeze-dark/actions/24/backup.svg share/icons/breeze-dark/actions/24/bboxnext.svg share/icons/breeze-dark/actions/24/bboxprev.svg share/icons/breeze-dark/actions/24/beamerblock.svg share/icons/breeze-dark/actions/24/beamerframe.svg share/icons/breeze-dark/actions/24/bibtex.svg share/icons/breeze-dark/actions/24/bigskip.svg share/icons/breeze-dark/actions/24/black_sum.svg share/icons/breeze-dark/actions/24/blurfx.svg share/icons/breeze-dark/actions/24/blurimage.svg share/icons/breeze-dark/actions/24/bookmark-add-folder.svg share/icons/breeze-dark/actions/24/bookmark-edit.svg share/icons/breeze-dark/actions/24/bookmark-new-list.svg share/icons/breeze-dark/actions/24/bookmark-new.svg share/icons/breeze-dark/actions/24/bookmark-remove.svg share/icons/breeze-dark/actions/24/bookmark-toolbar.svg share/icons/breeze-dark/actions/24/bookmarks-organize.svg share/icons/breeze-dark/actions/24/bookmarks.svg share/icons/breeze-dark/actions/24/borderpainter.svg share/icons/breeze-dark/actions/24/bordertool.svg share/icons/breeze-dark/actions/24/box.svg share/icons/breeze-dark/actions/24/bqm-diff.svg share/icons/breeze-dark/actions/24/bqm-remove.svg share/icons/breeze-dark/actions/24/branch.svg share/icons/breeze-dark/actions/24/bwtonal.svg share/icons/breeze-dark/actions/24/call-start.svg share/icons/breeze-dark/actions/24/call-voicemail.svg share/icons/breeze-dark/actions/24/calligraphy.svg share/icons/breeze-dark/actions/24/callout-shape.svg share/icons/breeze-dark/actions/24/cards-block.svg share/icons/breeze-dark/actions/24/category.svg share/icons/breeze-dark/actions/24/category2parent.svg share/icons/breeze-dark/actions/24/cell_edit.svg share/icons/breeze-dark/actions/24/cell_layout.svg share/icons/breeze-dark/actions/24/character-set.svg share/icons/breeze-dark/actions/24/charcoaltool.svg share/icons/breeze-dark/actions/24/check_constraint.svg share/icons/breeze-dark/actions/24/checkbox.svg share/icons/breeze-dark/actions/24/checkmark.svg share/icons/breeze-dark/actions/24/child2category.svg share/icons/breeze-dark/actions/24/choice-rhomb.svg share/icons/breeze-dark/actions/24/choice-round.svg share/icons/breeze-dark/actions/24/chronometer-lap.svg share/icons/breeze-dark/actions/24/chronometer-pause.svg share/icons/breeze-dark/actions/24/chronometer-reset.svg share/icons/breeze-dark/actions/24/chronometer-start.svg share/icons/breeze-dark/actions/24/chronometer.svg share/icons/breeze-dark/actions/24/circular-arrow-shape.svg share/icons/breeze-dark/actions/24/class-or-package.svg share/icons/breeze-dark/actions/24/class.svg share/icons/breeze-dark/actions/24/clock-large.svg share/icons/breeze-dark/actions/24/clock.svg share/icons/breeze-dark/actions/24/cloud-download.svg share/icons/breeze-dark/actions/24/cloud-upload.svg share/icons/breeze-dark/actions/24/code-block.svg share/icons/breeze-dark/actions/24/code-class.svg share/icons/breeze-dark/actions/24/code-context.svg share/icons/breeze-dark/actions/24/code-function.svg share/icons/breeze-dark/actions/24/code-typedef.svg share/icons/breeze-dark/actions/24/code-variable.svg share/icons/breeze-dark/actions/24/collapse-all.svg share/icons/breeze-dark/actions/24/collapse.svg share/icons/breeze-dark/actions/24/collection-rescan-amarok.svg share/icons/breeze-dark/actions/24/color-fill.svg share/icons/breeze-dark/actions/24/color-gradient.svg share/icons/breeze-dark/actions/24/color-mode-black-white.svg share/icons/breeze-dark/actions/24/color-mode-hue-shift-negative.svg share/icons/breeze-dark/actions/24/color-mode-hue-shift-positive.svg share/icons/breeze-dark/actions/24/color-mode-invert-image.svg share/icons/breeze-dark/actions/24/color-mode-invert-text.svg share/icons/breeze-dark/actions/24/color-picker-black.svg share/icons/breeze-dark/actions/24/color-picker-grey.svg share/icons/breeze-dark/actions/24/color-picker-white.svg share/icons/breeze-dark/actions/24/color-picker.svg share/icons/breeze-dark/actions/24/colorfx.svg share/icons/breeze-dark/actions/24/colorneg.svg share/icons/breeze-dark/actions/24/colors-luma.svg share/icons/breeze-dark/actions/24/combined_fragment.svg share/icons/breeze-dark/actions/24/compass.svg share/icons/breeze-dark/actions/24/component.svg share/icons/breeze-dark/actions/24/composite-track-off.svg share/icons/breeze-dark/actions/24/composite-track-on.svg share/icons/breeze-dark/actions/24/composite-track-preview.svg share/icons/breeze-dark/actions/24/composition.svg share/icons/breeze-dark/actions/24/configure-shortcuts.svg share/icons/breeze-dark/actions/24/configure-toolbars.svg share/icons/breeze-dark/actions/24/configure.svg share/icons/breeze-dark/actions/24/configure_kile.svg share/icons/breeze-dark/actions/24/configure_project.svg share/icons/breeze-dark/actions/24/contact-new.svg share/icons/breeze-dark/actions/24/containment.svg share/icons/breeze-dark/actions/24/contents.svg share/icons/breeze-dark/actions/24/contrast.svg share/icons/breeze-dark/actions/24/convert.svg share/icons/breeze-dark/actions/24/coordinate.svg share/icons/breeze-dark/actions/24/copy-coordinates.svg share/icons/breeze-dark/actions/24/createpath.svg share/icons/breeze-dark/actions/24/cross-shape.svg share/icons/breeze-dark/actions/24/crosshairs.svg share/icons/breeze-dark/actions/24/cursor-arrow.svg share/icons/breeze-dark/actions/24/curve-connector.svg share/icons/breeze-dark/actions/24/dashboard-show.svg share/icons/breeze-dark/actions/24/database-change-key.svg share/icons/breeze-dark/actions/24/database-index.svg share/icons/breeze-dark/actions/24/datatype.svg share/icons/breeze-dark/actions/24/dblatex.svg share/icons/breeze-dark/actions/24/debug-execute-from-cursor.svg share/icons/breeze-dark/actions/24/debug-execute-to-cursor.svg share/icons/breeze-dark/actions/24/debug-run-cursor.svg share/icons/breeze-dark/actions/24/debug-run.svg share/icons/breeze-dark/actions/24/debug-step-instruction.svg share/icons/breeze-dark/actions/24/debug-step-into-instruction.svg share/icons/breeze-dark/actions/24/debug-step-into.svg share/icons/breeze-dark/actions/24/debug-step-out.svg share/icons/breeze-dark/actions/24/debug-step-over.svg share/icons/breeze-dark/actions/24/deep-history.svg share/icons/breeze-dark/actions/24/delete-comment.svg share/icons/breeze-dark/actions/24/delete-table-row.svg share/icons/breeze-dark/actions/24/dependency.svg share/icons/breeze-dark/actions/24/depth16to8.svg share/icons/breeze-dark/actions/24/depth8to16.svg share/icons/breeze-dark/actions/24/description.svg share/icons/breeze-dark/actions/24/dfrac.svg share/icons/breeze-dark/actions/24/diag_activity.svg share/icons/breeze-dark/actions/24/diag_class.svg share/icons/breeze-dark/actions/24/diag_component.svg share/icons/breeze-dark/actions/24/dialog-cancel.svg share/icons/breeze-dark/actions/24/dialog-input-devices.svg share/icons/breeze-dark/actions/24/dialog-messages.svg share/icons/breeze-dark/actions/24/dialog-ok-apply.svg share/icons/breeze-dark/actions/24/dialog-ok.svg share/icons/breeze-dark/actions/24/dialog-scripts.svg share/icons/breeze-dark/actions/24/dialog-xml-editor.svg share/icons/breeze-dark/actions/24/dirsync.svg share/icons/breeze-dark/actions/24/discrete.svg share/icons/breeze-dark/actions/24/displaymathmode.svg share/icons/breeze-dark/actions/24/distortionfx.svg share/icons/breeze-dark/actions/24/distribute-graph-directed.svg share/icons/breeze-dark/actions/24/distribute-graph.svg share/icons/breeze-dark/actions/24/distribute-horizontal-baseline.svg share/icons/breeze-dark/actions/24/distribute-horizontal-center.svg share/icons/breeze-dark/actions/24/distribute-horizontal-equal.svg share/icons/breeze-dark/actions/24/distribute-horizontal-gaps.svg share/icons/breeze-dark/actions/24/distribute-horizontal-left.svg share/icons/breeze-dark/actions/24/distribute-horizontal-margin.svg share/icons/breeze-dark/actions/24/distribute-horizontal-node.svg share/icons/breeze-dark/actions/24/distribute-horizontal-page.svg share/icons/breeze-dark/actions/24/distribute-horizontal-right.svg share/icons/breeze-dark/actions/24/distribute-horizontal-x.svg share/icons/breeze-dark/actions/24/distribute-horizontal.svg share/icons/breeze-dark/actions/24/distribute-randomize.svg share/icons/breeze-dark/actions/24/distribute-remove-overlaps.svg share/icons/breeze-dark/actions/24/distribute-unclump.svg share/icons/breeze-dark/actions/24/distribute-vertical-baseline.svg share/icons/breeze-dark/actions/24/distribute-vertical-bottom.svg share/icons/breeze-dark/actions/24/distribute-vertical-center.svg share/icons/breeze-dark/actions/24/distribute-vertical-equal.svg share/icons/breeze-dark/actions/24/distribute-vertical-gaps.svg share/icons/breeze-dark/actions/24/distribute-vertical-margin.svg share/icons/breeze-dark/actions/24/distribute-vertical-node.svg share/icons/breeze-dark/actions/24/distribute-vertical-page.svg share/icons/breeze-dark/actions/24/distribute-vertical-top.svg share/icons/breeze-dark/actions/24/distribute-vertical-y.svg share/icons/breeze-dark/actions/24/distribute-vertical.svg share/icons/breeze-dark/actions/24/document-decrypt.svg share/icons/breeze-dark/actions/24/document-edit-decrypt-verify.svg share/icons/breeze-dark/actions/24/document-edit-decrypt.svg share/icons/breeze-dark/actions/24/document-edit-encrypt.svg share/icons/breeze-dark/actions/24/document-edit-sign-encrypt.svg share/icons/breeze-dark/actions/24/document-edit-sign.svg share/icons/breeze-dark/actions/24/document-edit-verify.svg share/icons/breeze-dark/actions/24/document-edit.svg share/icons/breeze-dark/actions/24/document-encrypt.svg share/icons/breeze-dark/actions/24/document-encrypted.svg share/icons/breeze-dark/actions/24/document-export-ocal.svg share/icons/breeze-dark/actions/24/document-export-table.svg share/icons/breeze-dark/actions/24/document-export.svg share/icons/breeze-dark/actions/24/document-import-ocal.svg share/icons/breeze-dark/actions/24/document-import.svg share/icons/breeze-dark/actions/24/document-multiple.svg share/icons/breeze-dark/actions/24/document-new-from-template.svg share/icons/breeze-dark/actions/24/document-new.svg share/icons/breeze-dark/actions/24/document-open-data.svg share/icons/breeze-dark/actions/24/document-open-folder.svg share/icons/breeze-dark/actions/24/document-open-recent.svg share/icons/breeze-dark/actions/24/document-open-remote.svg share/icons/breeze-dark/actions/24/document-open.svg share/icons/breeze-dark/actions/24/document-preview-archive.svg share/icons/breeze-dark/actions/24/document-preview.svg share/icons/breeze-dark/actions/24/document-print-direct.svg share/icons/breeze-dark/actions/24/document-print-frame.svg share/icons/breeze-dark/actions/24/document-print-preview.svg share/icons/breeze-dark/actions/24/document-print.svg share/icons/breeze-dark/actions/24/document-properties.svg share/icons/breeze-dark/actions/24/document-replace.svg share/icons/breeze-dark/actions/24/document-revert.svg share/icons/breeze-dark/actions/24/document-save-all.svg share/icons/breeze-dark/actions/24/document-save-as-template.svg share/icons/breeze-dark/actions/24/document-save-as.svg share/icons/breeze-dark/actions/24/document-save.svg share/icons/breeze-dark/actions/24/document-scan.svg share/icons/breeze-dark/actions/24/document-send.svg share/icons/breeze-dark/actions/24/document-share.svg share/icons/breeze-dark/actions/24/document-sign.svg share/icons/breeze-dark/actions/24/document-swap.svg share/icons/breeze-dark/actions/24/documentation.svg share/icons/breeze-dark/actions/24/documentinfo.svg share/icons/breeze-dark/actions/24/donate.svg share/icons/breeze-dark/actions/24/dontknow.svg share/icons/breeze-dark/actions/24/download-amarok.svg share/icons/breeze-dark/actions/24/download-later.svg share/icons/breeze-dark/actions/24/download.svg share/icons/breeze-dark/actions/24/drag-surface.svg share/icons/breeze-dark/actions/24/draw-arrow-back.svg share/icons/breeze-dark/actions/24/draw-arrow-down.svg share/icons/breeze-dark/actions/24/draw-arrow-forward.svg share/icons/breeze-dark/actions/24/draw-arrow-up.svg share/icons/breeze-dark/actions/24/draw-arrow.svg share/icons/breeze-dark/actions/24/draw-bezier-curves.svg share/icons/breeze-dark/actions/24/draw-brush.svg share/icons/breeze-dark/actions/24/draw-calligraphic.svg share/icons/breeze-dark/actions/24/draw-circle.svg share/icons/breeze-dark/actions/24/draw-connector.svg share/icons/breeze-dark/actions/24/draw-cross.svg share/icons/breeze-dark/actions/24/draw-cuboid.svg share/icons/breeze-dark/actions/24/draw-donut.svg share/icons/breeze-dark/actions/24/draw-ellipse.svg share/icons/breeze-dark/actions/24/draw-eraser.svg share/icons/breeze-dark/actions/24/draw-freehand.svg share/icons/breeze-dark/actions/24/draw-halfcircle1.svg share/icons/breeze-dark/actions/24/draw-halfcircle2.svg share/icons/breeze-dark/actions/24/draw-halfcircle3.svg share/icons/breeze-dark/actions/24/draw-halfcircle4.svg share/icons/breeze-dark/actions/24/draw-highlight.svg share/icons/breeze-dark/actions/24/draw-line.svg share/icons/breeze-dark/actions/24/draw-path.svg share/icons/breeze-dark/actions/24/draw-polygon-star.svg share/icons/breeze-dark/actions/24/draw-polygon.svg share/icons/breeze-dark/actions/24/draw-polyline.svg share/icons/breeze-dark/actions/24/draw-rectangle-rounded.svg share/icons/breeze-dark/actions/24/draw-rectangle.svg share/icons/breeze-dark/actions/24/draw-spiral.svg share/icons/breeze-dark/actions/24/draw-square-inverted-corners.svg share/icons/breeze-dark/actions/24/draw-star.svg share/icons/breeze-dark/actions/24/draw-text.svg share/icons/breeze-dark/actions/24/draw-triangle.svg share/icons/breeze-dark/actions/24/draw-triangle1.svg share/icons/breeze-dark/actions/24/draw-triangle2.svg share/icons/breeze-dark/actions/24/draw-triangle3.svg share/icons/breeze-dark/actions/24/draw-triangle4.svg share/icons/breeze-dark/actions/24/draw-watercolor.svg share/icons/breeze-dark/actions/24/dvipng.svg share/icons/breeze-dark/actions/24/dvips.svg share/icons/breeze-dark/actions/24/dvisearch.svg share/icons/breeze-dark/actions/24/dynamic-amarok.svg share/icons/breeze-dark/actions/24/earthquake.svg share/icons/breeze-dark/actions/24/edit-bomb.svg share/icons/breeze-dark/actions/24/edit-clear-all.svg share/icons/breeze-dark/actions/24/edit-clear-history.svg share/icons/breeze-dark/actions/24/edit-clear-list.svg share/icons/breeze-dark/actions/24/edit-clear-locationbar-ltr.svg share/icons/breeze-dark/actions/24/edit-clear-locationbar-rtl.svg share/icons/breeze-dark/actions/24/edit-clear.svg share/icons/breeze-dark/actions/24/edit-clone-unlink.svg share/icons/breeze-dark/actions/24/edit-clone.svg share/icons/breeze-dark/actions/24/edit-comment.svg share/icons/breeze-dark/actions/24/edit-copy-path.svg share/icons/breeze-dark/actions/24/edit-copy.svg share/icons/breeze-dark/actions/24/edit-cut.svg share/icons/breeze-dark/actions/24/edit-download.svg share/icons/breeze-dark/actions/24/edit-entry.svg share/icons/breeze-dark/actions/24/edit-find-mail.svg share/icons/breeze-dark/actions/24/edit-find-project.svg share/icons/breeze-dark/actions/24/edit-find-replace.svg share/icons/breeze-dark/actions/24/edit-find-user.svg share/icons/breeze-dark/actions/24/edit-find.svg share/icons/breeze-dark/actions/24/edit-group.svg share/icons/breeze-dark/actions/24/edit-guides.svg share/icons/breeze-dark/actions/24/edit-image-face-add.svg share/icons/breeze-dark/actions/24/edit-image-face-detect.svg share/icons/breeze-dark/actions/24/edit-image-face-recognize.svg share/icons/breeze-dark/actions/24/edit-image-face-show.svg share/icons/breeze-dark/actions/24/edit-image.svg share/icons/breeze-dark/actions/24/edit-line-width.svg share/icons/breeze-dark/actions/24/edit-link.svg share/icons/breeze-dark/actions/24/edit-map.svg share/icons/breeze-dark/actions/24/edit-move.svg share/icons/breeze-dark/actions/24/edit-node.svg share/icons/breeze-dark/actions/24/edit-none.svg share/icons/breeze-dark/actions/24/edit-opacity.svg share/icons/breeze-dark/actions/24/edit-paste-in-place.svg share/icons/breeze-dark/actions/24/edit-paste.svg share/icons/breeze-dark/actions/24/edit-redo.svg share/icons/breeze-dark/actions/24/edit-rename.svg share/icons/breeze-dark/actions/24/edit-reset.svg share/icons/breeze-dark/actions/24/edit-select-all.svg share/icons/breeze-dark/actions/24/edit-select-invert.svg share/icons/breeze-dark/actions/24/edit-select-lasso.svg share/icons/breeze-dark/actions/24/edit-select-none.svg share/icons/breeze-dark/actions/24/edit-select-text.svg share/icons/breeze-dark/actions/24/edit-select.svg share/icons/breeze-dark/actions/24/edit-table-cell-merge.svg share/icons/breeze-dark/actions/24/edit-table-cell-split.svg share/icons/breeze-dark/actions/24/edit-table-delete-column.svg share/icons/breeze-dark/actions/24/edit-table-delete-row.svg share/icons/breeze-dark/actions/24/edit-table-insert-column-left.svg share/icons/breeze-dark/actions/24/edit-table-insert-column-right.svg share/icons/breeze-dark/actions/24/edit-table-insert-row-above.svg share/icons/breeze-dark/actions/24/edit-table-insert-row-below.svg share/icons/breeze-dark/actions/24/edit-table-insert-row-under.svg share/icons/breeze-dark/actions/24/edit-text-frame-update.svg share/icons/breeze-dark/actions/24/edit-undo.svg share/icons/breeze-dark/actions/24/edit_animation.svg share/icons/breeze-dark/actions/24/editimage.svg share/icons/breeze-dark/actions/24/editor.svg share/icons/breeze-dark/actions/24/editpath.svg share/icons/breeze-dark/actions/24/edittext.svg share/icons/breeze-dark/actions/24/ellipse-shape.svg share/icons/breeze-dark/actions/24/embosstool.svg share/icons/breeze-dark/actions/24/emph.svg share/icons/breeze-dark/actions/24/end_of_life.svg share/icons/breeze-dark/actions/24/end_state.svg share/icons/breeze-dark/actions/24/entity.svg share/icons/breeze-dark/actions/24/entrance_animations.svg share/icons/breeze-dark/actions/24/entry-clone.svg share/icons/breeze-dark/actions/24/entry-edit.svg share/icons/breeze-dark/actions/24/entry-new.svg share/icons/breeze-dark/actions/24/enum.svg share/icons/breeze-dark/actions/24/enumerate.svg share/icons/breeze-dark/actions/24/error.svg share/icons/breeze-dark/actions/24/errornext.svg share/icons/breeze-dark/actions/24/errorprev.svg share/icons/breeze-dark/actions/24/escape-direction-all.svg share/icons/breeze-dark/actions/24/escape-direction-down.svg share/icons/breeze-dark/actions/24/escape-direction-horizontal.svg share/icons/breeze-dark/actions/24/escape-direction-left.svg share/icons/breeze-dark/actions/24/escape-direction-right.svg share/icons/breeze-dark/actions/24/escape-direction-up.svg share/icons/breeze-dark/actions/24/escape-direction-vertical.svg share/icons/breeze-dark/actions/24/exception.svg share/icons/breeze-dark/actions/24/exchange-positions-clockwise.svg share/icons/breeze-dark/actions/24/exchange-positions-zorder.svg share/icons/breeze-dark/actions/24/exchange-positions.svg share/icons/breeze-dark/actions/24/exifinfo.svg share/icons/breeze-dark/actions/24/exit_animations.svg share/icons/breeze-dark/actions/24/expand-all.svg share/icons/breeze-dark/actions/24/expand.svg share/icons/breeze-dark/actions/24/favorite-genres-amarok.svg share/icons/breeze-dark/actions/24/favorite.svg share/icons/breeze-dark/actions/24/feed-subscribe.svg share/icons/breeze-dark/actions/24/file-zoom-in.svg share/icons/breeze-dark/actions/24/file-zoom-out.svg share/icons/breeze-dark/actions/24/filegrep.svg share/icons/breeze-dark/actions/24/filename-album-amarok.svg share/icons/breeze-dark/actions/24/filename-and-amarok.svg share/icons/breeze-dark/actions/24/filename-artist-amarok.svg share/icons/breeze-dark/actions/24/filename-bpm-amarok.svg share/icons/breeze-dark/actions/24/filename-comment-amarok.svg share/icons/breeze-dark/actions/24/filename-composer-amarok.svg share/icons/breeze-dark/actions/24/filename-dash-amarok.svg share/icons/breeze-dark/actions/24/filename-discnumber-amarok.svg share/icons/breeze-dark/actions/24/filename-divider.svg share/icons/breeze-dark/actions/24/filename-dot-amarok.svg share/icons/breeze-dark/actions/24/filename-filetype-amarok.svg share/icons/breeze-dark/actions/24/filename-genre-amarok.svg share/icons/breeze-dark/actions/24/filename-group-length.svg share/icons/breeze-dark/actions/24/filename-group-tracks.svg share/icons/breeze-dark/actions/24/filename-ignore-amarok.svg share/icons/breeze-dark/actions/24/filename-initial-amarok.svg share/icons/breeze-dark/actions/24/filename-last-played.svg share/icons/breeze-dark/actions/24/filename-sample-rate.svg share/icons/breeze-dark/actions/24/filename-slash-amarok.svg share/icons/breeze-dark/actions/24/filename-space-amarok.svg share/icons/breeze-dark/actions/24/filename-title-amarok.svg share/icons/breeze-dark/actions/24/filename-track-amarok.svg share/icons/breeze-dark/actions/24/filename-underscore-amarok.svg share/icons/breeze-dark/actions/24/filename-year-amarok.svg share/icons/breeze-dark/actions/24/fileview-preview.svg share/icons/breeze-dark/actions/24/fill-color.svg share/icons/breeze-dark/actions/24/filmgrain.svg share/icons/breeze-dark/actions/24/final_activity.svg share/icons/breeze-dark/actions/24/find-location.svg share/icons/breeze-dark/actions/24/flag-black.svg share/icons/breeze-dark/actions/24/flag-blue.svg share/icons/breeze-dark/actions/24/flag-green.svg share/icons/breeze-dark/actions/24/flag-red.svg share/icons/breeze-dark/actions/24/flag-yellow.svg share/icons/breeze-dark/actions/24/flag.svg share/icons/breeze-dark/actions/24/flash.svg share/icons/breeze-dark/actions/24/flashlight-off.svg share/icons/breeze-dark/actions/24/flashlight-on.svg share/icons/breeze-dark/actions/24/flower-shape.svg share/icons/breeze-dark/actions/24/folder-new.svg share/icons/breeze-dark/actions/24/folder-open-recent.svg share/icons/breeze-dark/actions/24/folder-stash.svg share/icons/breeze-dark/actions/24/folder-sync.svg share/icons/breeze-dark/actions/24/followmouse.svg share/icons/breeze-dark/actions/24/font-disable.svg share/icons/breeze-dark/actions/24/font-enable.svg share/icons/breeze-dark/actions/24/font.svg share/icons/breeze-dark/actions/24/food.svg share/icons/breeze-dark/actions/24/foreignkey_constraint.svg share/icons/breeze-dark/actions/24/fork.svg share/icons/breeze-dark/actions/24/format-add-node.svg share/icons/breeze-dark/actions/24/format-align-vertical-bottom.svg share/icons/breeze-dark/actions/24/format-align-vertical-center.svg share/icons/breeze-dark/actions/24/format-align-vertical-top.svg share/icons/breeze-dark/actions/24/format-border-set-all.svg share/icons/breeze-dark/actions/24/format-border-set-bottom.svg share/icons/breeze-dark/actions/24/format-border-set-diagonal-bl-tr.svg share/icons/breeze-dark/actions/24/format-border-set-diagonal-tl-br.svg share/icons/breeze-dark/actions/24/format-border-set-external.svg share/icons/breeze-dark/actions/24/format-border-set-internal-horizontal.svg share/icons/breeze-dark/actions/24/format-border-set-internal-vertical.svg share/icons/breeze-dark/actions/24/format-border-set-internal.svg share/icons/breeze-dark/actions/24/format-border-set-left.svg share/icons/breeze-dark/actions/24/format-border-set-none.svg share/icons/breeze-dark/actions/24/format-border-set-right.svg share/icons/breeze-dark/actions/24/format-border-set-top.svg share/icons/breeze-dark/actions/24/format-border-style.svg share/icons/breeze-dark/actions/24/format-break-node.svg share/icons/breeze-dark/actions/24/format-connect-node.svg share/icons/breeze-dark/actions/24/format-convert-to-path.svg share/icons/breeze-dark/actions/24/format-currency.svg share/icons/breeze-dark/actions/24/format-disconnect-node.svg share/icons/breeze-dark/actions/24/format-fill-color.svg share/icons/breeze-dark/actions/24/format-font-size-less.svg share/icons/breeze-dark/actions/24/format-font-size-more.svg share/icons/breeze-dark/actions/24/format-indent-less.svg share/icons/breeze-dark/actions/24/format-indent-more.svg share/icons/breeze-dark/actions/24/format-insert-node.svg share/icons/breeze-dark/actions/24/format-join-node.svg share/icons/breeze-dark/actions/24/format-justify-center.svg share/icons/breeze-dark/actions/24/format-justify-fill.svg share/icons/breeze-dark/actions/24/format-justify-left.svg share/icons/breeze-dark/actions/24/format-justify-right.svg share/icons/breeze-dark/actions/24/format-line-spacing-double.svg share/icons/breeze-dark/actions/24/format-line-spacing-normal.svg share/icons/breeze-dark/actions/24/format-line-spacing-triple.svg share/icons/breeze-dark/actions/24/format-list-ordered.svg share/icons/breeze-dark/actions/24/format-list-unordered.svg share/icons/breeze-dark/actions/24/format-node-corner.svg share/icons/breeze-dark/actions/24/format-node-curve.svg share/icons/breeze-dark/actions/24/format-node-line.svg share/icons/breeze-dark/actions/24/format-node-smooth.svg share/icons/breeze-dark/actions/24/format-node-symmetric.svg share/icons/breeze-dark/actions/24/format-number-percent.svg share/icons/breeze-dark/actions/24/format-precision-less.svg share/icons/breeze-dark/actions/24/format-precision-more.svg share/icons/breeze-dark/actions/24/format-remove-node.svg share/icons/breeze-dark/actions/24/format-segment-curve.svg share/icons/breeze-dark/actions/24/format-segment-line.svg share/icons/breeze-dark/actions/24/format-stroke-color.svg share/icons/breeze-dark/actions/24/format-text-blockquote.svg share/icons/breeze-dark/actions/24/format-text-bold.svg share/icons/breeze-dark/actions/24/format-text-capitalize.svg share/icons/breeze-dark/actions/24/format-text-code.svg share/icons/breeze-dark/actions/24/format-text-color.svg share/icons/breeze-dark/actions/24/format-text-direction-horizontal.svg share/icons/breeze-dark/actions/24/format-text-direction-ltr.svg share/icons/breeze-dark/actions/24/format-text-direction-rtl.svg share/icons/breeze-dark/actions/24/format-text-direction-vertical.svg share/icons/breeze-dark/actions/24/format-text-italic.svg share/icons/breeze-dark/actions/24/format-text-lowercase.svg share/icons/breeze-dark/actions/24/format-text-strikethrough.svg share/icons/breeze-dark/actions/24/format-text-subscript.svg share/icons/breeze-dark/actions/24/format-text-superscript.svg share/icons/breeze-dark/actions/24/format-text-symbol.svg share/icons/breeze-dark/actions/24/format-text-underline-squiggle.svg share/icons/breeze-dark/actions/24/format-text-underline.svg share/icons/breeze-dark/actions/24/format-text-uppercase.svg share/icons/breeze-dark/actions/24/formula.svg share/icons/breeze-dark/actions/24/freerotation.svg share/icons/breeze-dark/actions/24/games-achievements.svg share/icons/breeze-dark/actions/24/games-config-background.svg share/icons/breeze-dark/actions/24/games-config-board.svg share/icons/breeze-dark/actions/24/games-config-custom.svg share/icons/breeze-dark/actions/24/games-config-options.svg share/icons/breeze-dark/actions/24/games-config-theme.svg share/icons/breeze-dark/actions/24/games-config-tiles.svg share/icons/breeze-dark/actions/24/games-difficult.svg share/icons/breeze-dark/actions/24/games-endturn.svg share/icons/breeze-dark/actions/24/games-highscores.svg share/icons/breeze-dark/actions/24/games-hint.svg share/icons/breeze-dark/actions/24/games-solve.svg share/icons/breeze-dark/actions/24/geany-build.svg share/icons/breeze-dark/actions/24/geany-save-all.svg share/icons/breeze-dark/actions/24/gearhead-shape.svg share/icons/breeze-dark/actions/24/generalisation.svg share/icons/breeze-dark/actions/24/generalise.svg share/icons/breeze-dark/actions/24/get-hot-new-stuff.svg share/icons/breeze-dark/actions/24/globe.svg share/icons/breeze-dark/actions/24/gnumeric-autofilter-delete.svg share/icons/breeze-dark/actions/24/gnumeric-autofilter.svg share/icons/breeze-dark/actions/24/gnumeric-autosum.svg share/icons/breeze-dark/actions/24/gnumeric-brush.svg share/icons/breeze-dark/actions/24/gnumeric-bucket.svg share/icons/breeze-dark/actions/24/gnumeric-cells-merge.svg share/icons/breeze-dark/actions/24/gnumeric-cells-split.svg share/icons/breeze-dark/actions/24/gnumeric-column-add.svg share/icons/breeze-dark/actions/24/gnumeric-column-delete.svg share/icons/breeze-dark/actions/24/gnumeric-column-hide.svg share/icons/breeze-dark/actions/24/gnumeric-column-size.svg share/icons/breeze-dark/actions/24/gnumeric-column-unhide.svg share/icons/breeze-dark/actions/24/gnumeric-comment-add.svg share/icons/breeze-dark/actions/24/gnumeric-comment-delete.svg share/icons/breeze-dark/actions/24/gnumeric-comment-edit.svg share/icons/breeze-dark/actions/24/gnumeric-component-insert-shaped.svg share/icons/breeze-dark/actions/24/gnumeric-data-slicer.svg share/icons/breeze-dark/actions/24/gnumeric-font.svg share/icons/breeze-dark/actions/24/gnumeric-format-accounting.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-all.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-bottom.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-diag.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-double-bottom.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-inside-horiz.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-left.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-none.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-outside.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-rev-diag.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-right.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-thick-bottom.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-thick-outside.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-top-n-bottom.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-top-n-double-bottom.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-top-n-thick-bottom.svg share/icons/breeze-dark/actions/24/gnumeric-format-border-top.svg share/icons/breeze-dark/actions/24/gnumeric-format-percentage.svg share/icons/breeze-dark/actions/24/gnumeric-format-precision-decrease.svg share/icons/breeze-dark/actions/24/gnumeric-format-precision-increase.svg share/icons/breeze-dark/actions/24/gnumeric-format-thousand-separator.svg share/icons/breeze-dark/actions/24/gnumeric-formulaguru.svg share/icons/breeze-dark/actions/24/gnumeric-graphguru.svg share/icons/breeze-dark/actions/24/gnumeric-group.svg share/icons/breeze-dark/actions/24/gnumeric-link-add.svg share/icons/breeze-dark/actions/24/gnumeric-link-delete.svg share/icons/breeze-dark/actions/24/gnumeric-link-edit.svg share/icons/breeze-dark/actions/24/gnumeric-link-email.svg share/icons/breeze-dark/actions/24/gnumeric-link-external.svg share/icons/breeze-dark/actions/24/gnumeric-link-internal.svg share/icons/breeze-dark/actions/24/gnumeric-link-url.svg share/icons/breeze-dark/actions/24/gnumeric-object-arrow.svg share/icons/breeze-dark/actions/24/gnumeric-object-button.svg share/icons/breeze-dark/actions/24/gnumeric-object-checkbox.svg share/icons/breeze-dark/actions/24/gnumeric-object-combo.svg share/icons/breeze-dark/actions/24/gnumeric-object-ellipse.svg share/icons/breeze-dark/actions/24/gnumeric-object-label.svg share/icons/breeze-dark/actions/24/gnumeric-object-line.svg share/icons/breeze-dark/actions/24/gnumeric-object-list.svg share/icons/breeze-dark/actions/24/gnumeric-object-rectangle.svg share/icons/breeze-dark/actions/24/gnumeric-object-scrollbar.svg share/icons/breeze-dark/actions/24/gnumeric-object-spinbutton.svg share/icons/breeze-dark/actions/24/gnumeric-pagesetup-hf-cell.svg share/icons/breeze-dark/actions/24/gnumeric-pagesetup-hf-page.svg share/icons/breeze-dark/actions/24/gnumeric-pagesetup-hf-pages.svg share/icons/breeze-dark/actions/24/gnumeric-pagesetup-hf-time.svg share/icons/breeze-dark/actions/24/gnumeric-protection-no.svg share/icons/breeze-dark/actions/24/gnumeric-protection-yes.svg share/icons/breeze-dark/actions/24/gnumeric-row-add.svg share/icons/breeze-dark/actions/24/gnumeric-row-delete.svg share/icons/breeze-dark/actions/24/gnumeric-row-hide.svg share/icons/breeze-dark/actions/24/gnumeric-row-size.svg share/icons/breeze-dark/actions/24/gnumeric-row-unhide.svg share/icons/breeze-dark/actions/24/gnumeric-subscript.svg share/icons/breeze-dark/actions/24/gnumeric-superscript.svg share/icons/breeze-dark/actions/24/gnumeric-ungroup.svg share/icons/breeze-dark/actions/24/gnumeric-visible.svg share/icons/breeze-dark/actions/24/go-bottom.svg share/icons/breeze-dark/actions/24/go-down-search.svg share/icons/breeze-dark/actions/24/go-down-skip.svg share/icons/breeze-dark/actions/24/go-down.svg share/icons/breeze-dark/actions/24/go-first-view-page.svg share/icons/breeze-dark/actions/24/go-first-view.svg share/icons/breeze-dark/actions/24/go-first.svg share/icons/breeze-dark/actions/24/go-home-large.svg share/icons/breeze-dark/actions/24/go-home.svg share/icons/breeze-dark/actions/24/go-jump-declaration.svg share/icons/breeze-dark/actions/24/go-jump-definition.svg share/icons/breeze-dark/actions/24/go-jump-locationbar.svg share/icons/breeze-dark/actions/24/go-jump-today.svg share/icons/breeze-dark/actions/24/go-jump.svg share/icons/breeze-dark/actions/24/go-last-view-page.svg share/icons/breeze-dark/actions/24/go-last-view.svg share/icons/breeze-dark/actions/24/go-last.svg share/icons/breeze-dark/actions/24/go-next-context.svg share/icons/breeze-dark/actions/24/go-next-skip.svg share/icons/breeze-dark/actions/24/go-next-use.svg share/icons/breeze-dark/actions/24/go-next-view-page.svg share/icons/breeze-dark/actions/24/go-next-view.svg share/icons/breeze-dark/actions/24/go-next.svg share/icons/breeze-dark/actions/24/go-parent-folder.svg share/icons/breeze-dark/actions/24/go-previous-context.svg share/icons/breeze-dark/actions/24/go-previous-skip.svg share/icons/breeze-dark/actions/24/go-previous-use.svg share/icons/breeze-dark/actions/24/go-previous-view-page.svg share/icons/breeze-dark/actions/24/go-previous-view.svg share/icons/breeze-dark/actions/24/go-previous.svg share/icons/breeze-dark/actions/24/go-top.svg share/icons/breeze-dark/actions/24/go-up-search.svg share/icons/breeze-dark/actions/24/go-up-skip.svg share/icons/breeze-dark/actions/24/go-up.svg share/icons/breeze-dark/actions/24/gpg.svg share/icons/breeze-dark/actions/24/gpgsm.svg share/icons/breeze-dark/actions/24/gps.svg share/icons/breeze-dark/actions/24/gradient.svg share/icons/breeze-dark/actions/24/graphics.svg share/icons/breeze-dark/actions/24/grid-rectangular.svg share/icons/breeze-dark/actions/24/group-edit.svg share/icons/breeze-dark/actions/24/group-new.svg share/icons/breeze-dark/actions/24/group.svg share/icons/breeze-dark/actions/24/gtk-add.svg share/icons/breeze-dark/actions/24/gtk-apply.svg share/icons/breeze-dark/actions/24/gtk-authentication.svg share/icons/breeze-dark/actions/24/gtk-bold.svg share/icons/breeze-dark/actions/24/gtk-cancel.svg share/icons/breeze-dark/actions/24/gtk-cdrom.svg share/icons/breeze-dark/actions/24/gtk-clear.svg share/icons/breeze-dark/actions/24/gtk-color-picker.svg share/icons/breeze-dark/actions/24/gtk-connect.svg share/icons/breeze-dark/actions/24/gtk-convert.svg share/icons/breeze-dark/actions/24/gtk-disconnect.svg share/icons/breeze-dark/actions/24/gtk-edit.svg share/icons/breeze-dark/actions/24/gtk-execute.svg share/icons/breeze-dark/actions/24/gtk-floppy.svg share/icons/breeze-dark/actions/24/gtk-index.svg share/icons/breeze-dark/actions/24/gtk-ok.svg share/icons/breeze-dark/actions/24/gtk-preferences.svg share/icons/breeze-dark/actions/24/gtk-properties.svg share/icons/breeze-dark/actions/24/gtk-select-color.svg share/icons/breeze-dark/actions/24/gtk-select-font.svg share/icons/breeze-dark/actions/24/gtk-stop.svg share/icons/breeze-dark/actions/24/gtk-tab-duplicate.svg share/icons/breeze-dark/actions/24/gtk-tab-new.svg share/icons/breeze-dark/actions/24/gtk-undelete-ltr.svg share/icons/breeze-dark/actions/24/gtk-undelete-rtl.svg share/icons/breeze-dark/actions/24/gtk-yes.svg share/icons/breeze-dark/actions/24/guides.svg share/icons/breeze-dark/actions/24/hand.svg share/icons/breeze-dark/actions/24/handle-left.svg share/icons/breeze-dark/actions/24/handle-move.svg share/icons/breeze-dark/actions/24/handle-right.svg share/icons/breeze-dark/actions/24/handle-sort.svg share/icons/breeze-dark/actions/24/headphones.svg share/icons/breeze-dark/actions/24/help-about.svg share/icons/breeze-dark/actions/24/help-contents.svg share/icons/breeze-dark/actions/24/help-contextual.svg share/icons/breeze-dark/actions/24/help-donate.svg share/icons/breeze-dark/actions/24/help-feedback.svg share/icons/breeze-dark/actions/24/help-hint.svg share/icons/breeze-dark/actions/24/help-keybord-shortcuts.svg share/icons/breeze-dark/actions/24/help-latex.svg share/icons/breeze-dark/actions/24/help-whatsthis.svg share/icons/breeze-dark/actions/24/hexagon-shape.svg share/icons/breeze-dark/actions/24/hide_table_column.svg share/icons/breeze-dark/actions/24/hide_table_row.svg share/icons/breeze-dark/actions/24/hidemouse.svg share/icons/breeze-dark/actions/24/high-brightness.svg share/icons/breeze-dark/actions/24/hint.svg share/icons/breeze-dark/actions/24/hotpixels.svg share/icons/breeze-dark/actions/24/identity.svg share/icons/breeze-dark/actions/24/im-aim.svg share/icons/breeze-dark/actions/24/im-ban-user.svg share/icons/breeze-dark/actions/24/im-facebook.svg share/icons/breeze-dark/actions/24/im-gadugadu.svg share/icons/breeze-dark/actions/24/im-google-talk.svg share/icons/breeze-dark/actions/24/im-google.svg share/icons/breeze-dark/actions/24/im-icq.svg share/icons/breeze-dark/actions/24/im-identi.ca.svg share/icons/breeze-dark/actions/24/im-invisible-user.svg share/icons/breeze-dark/actions/24/im-irc.svg share/icons/breeze-dark/actions/24/im-jabber.svg share/icons/breeze-dark/actions/24/im-msn.svg share/icons/breeze-dark/actions/24/im-qq.svg share/icons/breeze-dark/actions/24/im-skype.svg share/icons/breeze-dark/actions/24/im-twitter.svg share/icons/breeze-dark/actions/24/im-user-offline.svg share/icons/breeze-dark/actions/24/im-user.svg share/icons/breeze-dark/actions/24/im-yahoo.svg share/icons/breeze-dark/actions/24/im-youtube.svg share/icons/breeze-dark/actions/24/imagecomment.svg share/icons/breeze-dark/actions/24/initial_state.svg share/icons/breeze-dark/actions/24/inpainting.svg share/icons/breeze-dark/actions/24/input-mouse-click-left.svg share/icons/breeze-dark/actions/24/input-mouse-click-middle.svg share/icons/breeze-dark/actions/24/input-mouse-click-right.svg share/icons/breeze-dark/actions/24/insert-button.svg share/icons/breeze-dark/actions/24/insert-endnote.svg share/icons/breeze-dark/actions/24/insert-footnote.svg share/icons/breeze-dark/actions/24/insert-horizontal-rule.svg share/icons/breeze-dark/actions/24/insert-image.svg share/icons/breeze-dark/actions/24/insert-link.svg share/icons/breeze-dark/actions/24/insert-math-expression.svg share/icons/breeze-dark/actions/24/insert-more-mark.svg share/icons/breeze-dark/actions/24/insert-page-break.svg share/icons/breeze-dark/actions/24/insert-table-of-contents.svg share/icons/breeze-dark/actions/24/insert-table-row.svg share/icons/breeze-dark/actions/24/insert-table.svg share/icons/breeze-dark/actions/24/insert-tableofcontents.svg share/icons/breeze-dark/actions/24/insert-text-frame.svg share/icons/breeze-dark/actions/24/insert-text.svg share/icons/breeze-dark/actions/24/insertcell.svg share/icons/breeze-dark/actions/24/interface.svg share/icons/breeze-dark/actions/24/internet-amarok.svg share/icons/breeze-dark/actions/24/internet-services.svg share/icons/breeze-dark/actions/24/invertimage.svg share/icons/breeze-dark/actions/24/irc-channel-active.svg share/icons/breeze-dark/actions/24/irc-channel-inactive.svg share/icons/breeze-dark/actions/24/irc-join-channel.svg share/icons/breeze-dark/actions/24/irc-operator.svg share/icons/breeze-dark/actions/24/irc-voice.svg share/icons/breeze-dark/actions/24/item.svg share/icons/breeze-dark/actions/24/itemize.svg share/icons/breeze-dark/actions/24/join.svg share/icons/breeze-dark/actions/24/journal-new.svg share/icons/breeze-dark/actions/24/junction.svg share/icons/breeze-dark/actions/24/kdenlive-add-clip.svg share/icons/breeze-dark/actions/24/kdenlive-add-color-clip.svg share/icons/breeze-dark/actions/24/kdenlive-add-slide-clip.svg share/icons/breeze-dark/actions/24/kdenlive-add-text-clip.svg share/icons/breeze-dark/actions/24/kdenlive-align-bottom.svg share/icons/breeze-dark/actions/24/kdenlive-align-hor.svg share/icons/breeze-dark/actions/24/kdenlive-align-left.svg share/icons/breeze-dark/actions/24/kdenlive-align-none.svg share/icons/breeze-dark/actions/24/kdenlive-align-right.svg share/icons/breeze-dark/actions/24/kdenlive-align-top.svg share/icons/breeze-dark/actions/24/kdenlive-align-vert.svg share/icons/breeze-dark/actions/24/kdenlive-composite.svg share/icons/breeze-dark/actions/24/kdenlive-custom-effect.svg share/icons/breeze-dark/actions/24/kdenlive-down.svg share/icons/breeze-dark/actions/24/kdenlive-hide-audio.svg share/icons/breeze-dark/actions/24/kdenlive-hide-video.svg share/icons/breeze-dark/actions/24/kdenlive-insert-edit.svg share/icons/breeze-dark/actions/24/kdenlive-insert-rect.svg share/icons/breeze-dark/actions/24/kdenlive-insert-unicode.svg share/icons/breeze-dark/actions/24/kdenlive-lock.svg share/icons/breeze-dark/actions/24/kdenlive-menu.svg share/icons/breeze-dark/actions/24/kdenlive-no-composite.svg share/icons/breeze-dark/actions/24/kdenlive-normal-edit.svg share/icons/breeze-dark/actions/24/kdenlive-object-height.svg share/icons/breeze-dark/actions/24/kdenlive-object-width.svg share/icons/breeze-dark/actions/24/kdenlive-overwrite-edit.svg share/icons/breeze-dark/actions/24/kdenlive-ripple.svg share/icons/breeze-dark/actions/24/kdenlive-rolling.svg share/icons/breeze-dark/actions/24/kdenlive-select-all.svg share/icons/breeze-dark/actions/24/kdenlive-select-images.svg share/icons/breeze-dark/actions/24/kdenlive-select-rects.svg share/icons/breeze-dark/actions/24/kdenlive-select-texts.svg share/icons/breeze-dark/actions/24/kdenlive-select-tool.svg share/icons/breeze-dark/actions/24/kdenlive-show-audio.svg share/icons/breeze-dark/actions/24/kdenlive-show-audiothumb.svg share/icons/breeze-dark/actions/24/kdenlive-show-markers.svg share/icons/breeze-dark/actions/24/kdenlive-show-video.svg share/icons/breeze-dark/actions/24/kdenlive-show-videothumb.svg share/icons/breeze-dark/actions/24/kdenlive-slide.svg share/icons/breeze-dark/actions/24/kdenlive-slip.svg share/icons/breeze-dark/actions/24/kdenlive-snap.svg share/icons/breeze-dark/actions/24/kdenlive-spacer-tool.svg share/icons/breeze-dark/actions/24/kdenlive-split-audio.svg share/icons/breeze-dark/actions/24/kdenlive-track_has_effect.svg share/icons/breeze-dark/actions/24/kdenlive-unlock.svg share/icons/breeze-dark/actions/24/kdenlive-unselect-all.svg share/icons/breeze-dark/actions/24/kdenlive-up.svg share/icons/breeze-dark/actions/24/kdenlive-zindex-bottom.svg share/icons/breeze-dark/actions/24/kdenlive-zindex-down.svg share/icons/breeze-dark/actions/24/kdenlive-zindex-top.svg share/icons/breeze-dark/actions/24/kdenlive-zindex-up.svg share/icons/breeze-dark/actions/24/kdenlive-zone-end.svg share/icons/breeze-dark/actions/24/kdenlive-zone-start.svg share/icons/breeze-dark/actions/24/kdenlive-zoom-large.svg share/icons/breeze-dark/actions/24/kdenlive-zoom-small.svg share/icons/breeze-dark/actions/24/kdocumentinfo.svg share/icons/breeze-dark/actions/24/key-enter.svg share/icons/breeze-dark/actions/24/keyframe-add.svg share/icons/breeze-dark/actions/24/keyframe-disable.svg share/icons/breeze-dark/actions/24/keyframe-duplicate.svg share/icons/breeze-dark/actions/24/keyframe-next.svg share/icons/breeze-dark/actions/24/keyframe-previous.svg share/icons/breeze-dark/actions/24/keyframe-record.svg share/icons/breeze-dark/actions/24/keyframe-remove.svg share/icons/breeze-dark/actions/24/keyframe.svg share/icons/breeze-dark/actions/24/kmousetool_off.svg share/icons/breeze-dark/actions/24/kmousetool_on.svg share/icons/breeze-dark/actions/24/kmouth-phrase-new.svg share/icons/breeze-dark/actions/24/kmouth-phrase.svg share/icons/breeze-dark/actions/24/kmouth-phrasebook.svg share/icons/breeze-dark/actions/24/kmouth-phresebook-new.svg share/icons/breeze-dark/actions/24/knotes_alarm.svg share/icons/breeze-dark/actions/24/knotes_date.svg share/icons/breeze-dark/actions/24/know.svg share/icons/breeze-dark/actions/24/kontact-import-wizard.svg share/icons/breeze-dark/actions/24/kr_combine.svg share/icons/breeze-dark/actions/24/kr_comparedirs.svg share/icons/breeze-dark/actions/24/kr_diskusage.svg share/icons/breeze-dark/actions/24/kr_jumpback.svg share/icons/breeze-dark/actions/24/kr_mountman.svg share/icons/breeze-dark/actions/24/kr_setjumpback.svg share/icons/breeze-dark/actions/24/kr_syncbrowse_off.svg share/icons/breeze-dark/actions/24/kr_syncbrowse_on.svg share/icons/breeze-dark/actions/24/kr_unselect.svg share/icons/breeze-dark/actions/24/kstars_advanced.svg share/icons/breeze-dark/actions/24/kstars_catalog.svg share/icons/breeze-dark/actions/24/kstars_cbound.svg share/icons/breeze-dark/actions/24/kstars_clines.svg share/icons/breeze-dark/actions/24/kstars_cnames.svg share/icons/breeze-dark/actions/24/kstars_colors.svg share/icons/breeze-dark/actions/24/kstars_constellationart.svg share/icons/breeze-dark/actions/24/kstars_deepsky.svg share/icons/breeze-dark/actions/24/kstars_ekos.svg share/icons/breeze-dark/actions/24/kstars_fitsviewer.svg share/icons/breeze-dark/actions/24/kstars_flag.svg share/icons/breeze-dark/actions/24/kstars_grid.svg share/icons/breeze-dark/actions/24/kstars_guides.svg share/icons/breeze-dark/actions/24/kstars_hgrid.svg share/icons/breeze-dark/actions/24/kstars_horizon.svg share/icons/breeze-dark/actions/24/kstars_indi.svg share/icons/breeze-dark/actions/24/kstars_mw.svg share/icons/breeze-dark/actions/24/kstars_planets.svg share/icons/breeze-dark/actions/24/kstars_satellites.svg share/icons/breeze-dark/actions/24/kstars_solarsystem.svg share/icons/breeze-dark/actions/24/kstars_stars.svg share/icons/breeze-dark/actions/24/kstars_supernovae.svg share/icons/breeze-dark/actions/24/kstars_xplanet.svg share/icons/breeze-dark/actions/24/kt-add-feeds.svg share/icons/breeze-dark/actions/24/kt-add-filters.svg share/icons/breeze-dark/actions/24/kt-bandwidth-scheduler.svg share/icons/breeze-dark/actions/24/kt-change-tracker.svg share/icons/breeze-dark/actions/24/kt-check-data.svg share/icons/breeze-dark/actions/24/kt-chunks.svg share/icons/breeze-dark/actions/24/kt-encrypted.svg share/icons/breeze-dark/actions/24/kt-info-widget.svg share/icons/breeze-dark/actions/24/kt-magnet.svg share/icons/breeze-dark/actions/24/kt-pause.svg share/icons/breeze-dark/actions/24/kt-plugins.svg share/icons/breeze-dark/actions/24/kt-queue-manager.svg share/icons/breeze-dark/actions/24/kt-remove-feeds.svg share/icons/breeze-dark/actions/24/kt-remove-filters.svg share/icons/breeze-dark/actions/24/kt-remove.svg share/icons/breeze-dark/actions/24/kt-restore-defaults.svg share/icons/breeze-dark/actions/24/kt-set-max-download-speed.svg share/icons/breeze-dark/actions/24/kt-set-max-upload-speed.svg share/icons/breeze-dark/actions/24/kt-show-statusbar.svg share/icons/breeze-dark/actions/24/kt-speed-limits.svg share/icons/breeze-dark/actions/24/kt-start-all.svg share/icons/breeze-dark/actions/24/kt-start.svg share/icons/breeze-dark/actions/24/kt-stop-all.svg share/icons/breeze-dark/actions/24/kt-stop.svg share/icons/breeze-dark/actions/24/ktnef_extract_all_to.svg share/icons/breeze-dark/actions/24/ktnef_extract_to.svg share/icons/breeze-dark/actions/24/l2h.svg share/icons/breeze-dark/actions/24/label-amarok.svg share/icons/breeze-dark/actions/24/label.svg share/icons/breeze-dark/actions/24/labplot-1x-zoom.svg share/icons/breeze-dark/actions/24/labplot-2x-zoom.svg share/icons/breeze-dark/actions/24/labplot-3x-zoom.svg share/icons/breeze-dark/actions/24/labplot-4x-zoom.svg share/icons/breeze-dark/actions/24/labplot-5x-zoom.svg share/icons/breeze-dark/actions/24/labplot-TeX-logo.svg share/icons/breeze-dark/actions/24/labplot-auto-scale-all.svg share/icons/breeze-dark/actions/24/labplot-auto-scale-x.svg share/icons/breeze-dark/actions/24/labplot-auto-scale-y.svg share/icons/breeze-dark/actions/24/labplot-axis-horizontal.svg share/icons/breeze-dark/actions/24/labplot-axis-vertical.svg share/icons/breeze-dark/actions/24/labplot-cursor-arrow.svg share/icons/breeze-dark/actions/24/labplot-editbreaklayout.svg share/icons/breeze-dark/actions/24/labplot-editgrid.svg share/icons/breeze-dark/actions/24/labplot-edithlayout.svg share/icons/breeze-dark/actions/24/labplot-editvlayout.svg share/icons/breeze-dark/actions/24/labplot-format-text-symbol.svg share/icons/breeze-dark/actions/24/labplot-matrix-new.svg share/icons/breeze-dark/actions/24/labplot-matrix.svg share/icons/breeze-dark/actions/24/labplot-plot-axis-points.svg share/icons/breeze-dark/actions/24/labplot-shift-down-y.svg share/icons/breeze-dark/actions/24/labplot-shift-left-x.svg share/icons/breeze-dark/actions/24/labplot-shift-right-x.svg share/icons/breeze-dark/actions/24/labplot-shift-up-y.svg share/icons/breeze-dark/actions/24/labplot-spreadsheet-new.svg share/icons/breeze-dark/actions/24/labplot-spreadsheet.svg share/icons/breeze-dark/actions/24/labplot-transform-move.svg share/icons/breeze-dark/actions/24/labplot-workbook-new.svg share/icons/breeze-dark/actions/24/labplot-workbook.svg share/icons/breeze-dark/actions/24/labplot-worksheet-new.svg share/icons/breeze-dark/actions/24/labplot-worksheet.svg share/icons/breeze-dark/actions/24/labplot-xy-curve-points.svg share/icons/breeze-dark/actions/24/labplot-xy-curve-segments.svg share/icons/breeze-dark/actions/24/labplot-xy-curve.svg share/icons/breeze-dark/actions/24/labplot-xy-equation-curve.svg share/icons/breeze-dark/actions/24/labplot-xy-fit-curve.svg share/icons/breeze-dark/actions/24/labplot-xy-fourier-filter-curve.svg share/icons/breeze-dark/actions/24/labplot-xy-fourier-transform-curve.svg share/icons/breeze-dark/actions/24/labplot-xy-interpolation-curve.svg share/icons/breeze-dark/actions/24/labplot-xy-plot-four-axes.svg share/icons/breeze-dark/actions/24/labplot-xy-plot-two-axes-centered-origin.svg share/icons/breeze-dark/actions/24/labplot-xy-plot-two-axes-centered.svg share/icons/breeze-dark/actions/24/labplot-xy-plot-two-axes.svg share/icons/breeze-dark/actions/24/labplot-xy-smoothing-curve.svg share/icons/breeze-dark/actions/24/labplot-zoom-in-x.svg share/icons/breeze-dark/actions/24/labplot-zoom-in-y.svg share/icons/breeze-dark/actions/24/labplot-zoom-out-x.svg share/icons/breeze-dark/actions/24/labplot-zoom-out-y.svg share/icons/breeze-dark/actions/24/labplot-zoom-select-x.svg share/icons/breeze-dark/actions/24/labplot-zoom-select-y.svg share/icons/breeze-dark/actions/24/labplot-zoom-select.svg share/icons/breeze-dark/actions/24/language-chooser.svg share/icons/breeze-dark/actions/24/languages.svg share/icons/breeze-dark/actions/24/latex-config.svg share/icons/breeze-dark/actions/24/latex.svg share/icons/breeze-dark/actions/24/layer-visible-off.svg share/icons/breeze-dark/actions/24/layer-visible-on.svg share/icons/breeze-dark/actions/24/lensautofix.svg share/icons/breeze-dark/actions/24/lensdistortion.svg share/icons/breeze-dark/actions/24/libpeas-plugin.svg share/icons/breeze-dark/actions/24/license.svg share/icons/breeze-dark/actions/24/lighttable.svg share/icons/breeze-dark/actions/24/lighttableadd.svg share/icons/breeze-dark/actions/24/lilypond.svg share/icons/breeze-dark/actions/24/linear.svg share/icons/breeze-dark/actions/24/lines-connector.svg share/icons/breeze-dark/actions/24/link.svg share/icons/breeze-dark/actions/24/list-add-font.svg share/icons/breeze-dark/actions/24/list-add-user.svg share/icons/breeze-dark/actions/24/list-add.svg share/icons/breeze-dark/actions/24/list-remove-user.svg share/icons/breeze-dark/actions/24/list-remove.svg share/icons/breeze-dark/actions/24/list-resource-add.svg share/icons/breeze-dark/actions/24/lock.svg share/icons/breeze-dark/actions/24/love-amarok.svg share/icons/breeze-dark/actions/24/love.svg share/icons/breeze-dark/actions/24/low-brightness.svg share/icons/breeze-dark/actions/24/mail-attachment.svg share/icons/breeze-dark/actions/24/mail-download-later.svg share/icons/breeze-dark/actions/24/mail-download-now.svg share/icons/breeze-dark/actions/24/mail-encrypted-full.svg share/icons/breeze-dark/actions/24/mail-encrypted-part.svg share/icons/breeze-dark/actions/24/mail-encrypted.svg share/icons/breeze-dark/actions/24/mail-flag.svg share/icons/breeze-dark/actions/24/mail-forward.svg share/icons/breeze-dark/actions/24/mail-forwarded-replied.svg share/icons/breeze-dark/actions/24/mail-forwarded.svg share/icons/breeze-dark/actions/24/mail-invitation.svg share/icons/breeze-dark/actions/24/mail-mark-important.svg share/icons/breeze-dark/actions/24/mail-mark-junk.svg share/icons/breeze-dark/actions/24/mail-mark-notjunk.svg share/icons/breeze-dark/actions/24/mail-mark-read.svg share/icons/breeze-dark/actions/24/mail-mark-task.svg share/icons/breeze-dark/actions/24/mail-mark-unread-new.svg share/icons/breeze-dark/actions/24/mail-mark-unread.svg share/icons/breeze-dark/actions/24/mail-meeting-request-reply.svg share/icons/breeze-dark/actions/24/mail-message-new-list.svg share/icons/breeze-dark/actions/24/mail-message-new.svg share/icons/breeze-dark/actions/24/mail-message.svg share/icons/breeze-dark/actions/24/mail-queue.svg share/icons/breeze-dark/actions/24/mail-queued.svg share/icons/breeze-dark/actions/24/mail-read.svg share/icons/breeze-dark/actions/24/mail-receive.svg share/icons/breeze-dark/actions/24/mail-replied.svg share/icons/breeze-dark/actions/24/mail-reply-all.svg share/icons/breeze-dark/actions/24/mail-reply-custom-all.svg share/icons/breeze-dark/actions/24/mail-reply-custom.svg share/icons/breeze-dark/actions/24/mail-reply-list.svg share/icons/breeze-dark/actions/24/mail-reply-sender.svg share/icons/breeze-dark/actions/24/mail-send.svg share/icons/breeze-dark/actions/24/mail-sent.svg share/icons/breeze-dark/actions/24/mail-signature-unknown.svg share/icons/breeze-dark/actions/24/mail-signed-full.svg share/icons/breeze-dark/actions/24/mail-signed-fully.svg share/icons/breeze-dark/actions/24/mail-signed-part.svg share/icons/breeze-dark/actions/24/mail-signed-verified.svg share/icons/breeze-dark/actions/24/mail-signed.svg share/icons/breeze-dark/actions/24/mail-tagged.svg share/icons/breeze-dark/actions/24/mail-task.svg share/icons/breeze-dark/actions/24/mail-thread-ignored.svg share/icons/breeze-dark/actions/24/mail-thread-watch.svg share/icons/breeze-dark/actions/24/mail-unread-new.svg share/icons/breeze-dark/actions/24/mail-unread.svg share/icons/breeze-dark/actions/24/makeidx.svg share/icons/breeze-dark/actions/24/map-flat.svg share/icons/breeze-dark/actions/24/map-globe.svg share/icons/breeze-dark/actions/24/map-gnomonic.svg share/icons/breeze-dark/actions/24/map-mercator.svg share/icons/breeze-dark/actions/24/markasblank.svg share/icons/breeze-dark/actions/24/math0.svg share/icons/breeze-dark/actions/24/mathmode.svg share/icons/breeze-dark/actions/24/measure.svg share/icons/breeze-dark/actions/24/media-album-cover-manager-amarok.svg share/icons/breeze-dark/actions/24/media-album-cover.svg share/icons/breeze-dark/actions/24/media-album-repeat-amarok.svg share/icons/breeze-dark/actions/24/media-album-track.svg share/icons/breeze-dark/actions/24/media-eject.svg share/icons/breeze-dark/actions/24/media-mount.svg share/icons/breeze-dark/actions/24/media-playback-pause.svg share/icons/breeze-dark/actions/24/media-playback-start.svg share/icons/breeze-dark/actions/24/media-playback-stop.svg share/icons/breeze-dark/actions/24/media-playlist-append.svg share/icons/breeze-dark/actions/24/media-playlist-normal.svg share/icons/breeze-dark/actions/24/media-playlist-play.svg share/icons/breeze-dark/actions/24/media-playlist-repeat-song.svg share/icons/breeze-dark/actions/24/media-playlist-repeat.svg share/icons/breeze-dark/actions/24/media-playlist-shuffle.svg share/icons/breeze-dark/actions/24/media-random-albums-amarok.svg share/icons/breeze-dark/actions/24/media-random-tracks-amarok.svg share/icons/breeze-dark/actions/24/media-repeat-album-amarok.svg share/icons/breeze-dark/actions/24/media-repeat-all.svg share/icons/breeze-dark/actions/24/media-repeat-none.svg share/icons/breeze-dark/actions/24/media-repeat-playlist-amarok.svg share/icons/breeze-dark/actions/24/media-repeat-single.svg share/icons/breeze-dark/actions/24/media-repeat-track-amarok.svg share/icons/breeze-dark/actions/24/media-seek-backward.svg share/icons/breeze-dark/actions/24/media-seek-forward.svg share/icons/breeze-dark/actions/24/media-show-active-track-amarok.svg share/icons/breeze-dark/actions/24/media-skip-backward.svg share/icons/breeze-dark/actions/24/media-skip-forward.svg share/icons/breeze-dark/actions/24/media-standard-track-progression-amarok.svg share/icons/breeze-dark/actions/24/media-track-add-amarok.svg share/icons/breeze-dark/actions/24/media-track-edit-amarok.svg share/icons/breeze-dark/actions/24/media-track-queue-amarok.svg share/icons/breeze-dark/actions/24/media-track-remove-amarok.svg share/icons/breeze-dark/actions/24/media-track-show-active.svg share/icons/breeze-dark/actions/24/medskip.svg share/icons/breeze-dark/actions/24/meeting-attending-tentative.svg share/icons/breeze-dark/actions/24/meeting-attending.svg share/icons/breeze-dark/actions/24/meeting-participant-no-response.svg share/icons/breeze-dark/actions/24/meeting-participant-request-response.svg share/icons/breeze-dark/actions/24/menu_new.svg share/icons/breeze-dark/actions/24/menu_new_sep.svg share/icons/breeze-dark/actions/24/merge.svg share/icons/breeze-dark/actions/24/messagebox_warning.svg share/icons/breeze-dark/actions/24/milestone.svg share/icons/breeze-dark/actions/24/minuet-chords.svg share/icons/breeze-dark/actions/24/minuet-intervals.svg share/icons/breeze-dark/actions/24/minuet-rhythms.svg share/icons/breeze-dark/actions/24/minuet-scales.svg share/icons/breeze-dark/actions/24/mode1.svg share/icons/breeze-dark/actions/24/mode2.svg share/icons/breeze-dark/actions/24/mode3.svg share/icons/breeze-dark/actions/24/mode4.svg share/icons/breeze-dark/actions/24/mode5.svg share/icons/breeze-dark/actions/24/modified.svg share/icons/breeze-dark/actions/24/motion_path_animations.svg share/icons/breeze-dark/actions/24/mpost.svg share/icons/breeze-dark/actions/24/msgid2msgstr.svg share/icons/breeze-dark/actions/24/multirow.svg share/icons/breeze-dark/actions/24/music-amarok.svg share/icons/breeze-dark/actions/24/music-note-16th.svg share/icons/breeze-dark/actions/24/network-connect.svg share/icons/breeze-dark/actions/24/network-disconnect.svg share/icons/breeze-dark/actions/24/new-audio-alarm.svg share/icons/breeze-dark/actions/24/new-command-alarm.svg share/icons/breeze-dark/actions/24/newline.svg share/icons/breeze-dark/actions/24/news-subscribe.svg share/icons/breeze-dark/actions/24/nextfuzzy.svg share/icons/breeze-dark/actions/24/nextfuzzyuntrans.svg share/icons/breeze-dark/actions/24/nextuntranslated.svg share/icons/breeze-dark/actions/24/nocover.svg share/icons/breeze-dark/actions/24/node-add.svg share/icons/breeze-dark/actions/24/node-break.svg share/icons/breeze-dark/actions/24/node-delete-segment.svg share/icons/breeze-dark/actions/24/node-delete.svg share/icons/breeze-dark/actions/24/node-join-segment.svg share/icons/breeze-dark/actions/24/node-join.svg share/icons/breeze-dark/actions/24/node-segment-curve.svg share/icons/breeze-dark/actions/24/node-segment-line.svg share/icons/breeze-dark/actions/24/node-transform.svg share/icons/breeze-dark/actions/24/node-type-auto-smooth.svg share/icons/breeze-dark/actions/24/node-type-cusp.svg share/icons/breeze-dark/actions/24/node-type-smooth.svg share/icons/breeze-dark/actions/24/node-type-symmetric.svg share/icons/breeze-dark/actions/24/node.svg share/icons/breeze-dark/actions/24/noisereduction.svg share/icons/breeze-dark/actions/24/note.svg share/icons/breeze-dark/actions/24/notifications-disabled.svg share/icons/breeze-dark/actions/24/notifications.svg share/icons/breeze-dark/actions/24/nroot.svg share/icons/breeze-dark/actions/24/object-align-horizontal-center-calligra.svg share/icons/breeze-dark/actions/24/object-align-horizontal-left-calligra.svg share/icons/breeze-dark/actions/24/object-align-horizontal-right-calligra.svg share/icons/breeze-dark/actions/24/object-align-vertical-bottom-calligra.svg share/icons/breeze-dark/actions/24/object-align-vertical-bottom-top-calligra.svg share/icons/breeze-dark/actions/24/object-align-vertical-center-calligra.svg share/icons/breeze-dark/actions/24/object-align-vertical-top-calligra.svg share/icons/breeze-dark/actions/24/object-columns.svg share/icons/breeze-dark/actions/24/object-flip-horizontal.svg share/icons/breeze-dark/actions/24/object-flip-vertical.svg share/icons/breeze-dark/actions/24/object-group-calligra.svg share/icons/breeze-dark/actions/24/object-group.svg share/icons/breeze-dark/actions/24/object-locked.svg share/icons/breeze-dark/actions/24/object-order-back-calligra.svg share/icons/breeze-dark/actions/24/object-order-back.svg share/icons/breeze-dark/actions/24/object-order-front-calligra.svg share/icons/breeze-dark/actions/24/object-order-front.svg share/icons/breeze-dark/actions/24/object-order-lower-calligra.svg share/icons/breeze-dark/actions/24/object-order-lower.svg share/icons/breeze-dark/actions/24/object-order-raise-calligra.svg share/icons/breeze-dark/actions/24/object-order-raise.svg share/icons/breeze-dark/actions/24/object-rotate-left.svg share/icons/breeze-dark/actions/24/object-rotate-right.svg share/icons/breeze-dark/actions/24/object-rows.svg share/icons/breeze-dark/actions/24/object-to-path.svg share/icons/breeze-dark/actions/24/object-ungroup-calligra.svg share/icons/breeze-dark/actions/24/object-ungroup.svg share/icons/breeze-dark/actions/24/object-unlocked.svg share/icons/breeze-dark/actions/24/object.svg share/icons/breeze-dark/actions/24/object_node.svg share/icons/breeze-dark/actions/24/office-chart-area-focus-peak-node.svg share/icons/breeze-dark/actions/24/office-chart-area-percentage.svg share/icons/breeze-dark/actions/24/office-chart-area-stacked.svg share/icons/breeze-dark/actions/24/office-chart-area.svg share/icons/breeze-dark/actions/24/office-chart-bar-percentage.svg share/icons/breeze-dark/actions/24/office-chart-bar-stacked.svg share/icons/breeze-dark/actions/24/office-chart-bar.svg share/icons/breeze-dark/actions/24/office-chart-line-forecast.svg share/icons/breeze-dark/actions/24/office-chart-line-percentage.svg share/icons/breeze-dark/actions/24/office-chart-line-stacked.svg share/icons/breeze-dark/actions/24/office-chart-line.svg share/icons/breeze-dark/actions/24/office-chart-pie.svg share/icons/breeze-dark/actions/24/office-chart-polar-stacked.svg share/icons/breeze-dark/actions/24/office-chart-polar.svg share/icons/breeze-dark/actions/24/office-chart-ring.svg share/icons/breeze-dark/actions/24/office-chart-scatter.svg share/icons/breeze-dark/actions/24/office-report.svg share/icons/breeze-dark/actions/24/offline-settings.svg share/icons/breeze-dark/actions/24/offline.svg share/icons/breeze-dark/actions/24/oilpaint.svg share/icons/breeze-dark/actions/24/online.svg share/icons/breeze-dark/actions/24/open-for-editing.svg share/icons/breeze-dark/actions/24/open-menu-symbolic.svg share/icons/breeze-dark/actions/24/output_win.svg share/icons/breeze-dark/actions/24/overexposure.svg share/icons/breeze-dark/actions/24/overflow-menu-left.svg share/icons/breeze-dark/actions/24/overflow-menu-right.svg share/icons/breeze-dark/actions/24/overflow-menu.svg share/icons/breeze-dark/actions/24/package.svg share/icons/breeze-dark/actions/24/page-2sides.svg share/icons/breeze-dark/actions/24/page-3sides.svg share/icons/breeze-dark/actions/24/page-4sides.svg share/icons/breeze-dark/actions/24/page-simple.svg share/icons/breeze-dark/actions/24/page-zoom.svg share/icons/breeze-dark/actions/24/paper-color.svg share/icons/breeze-dark/actions/24/password-copy.svg share/icons/breeze-dark/actions/24/password-generate.svg share/icons/breeze-dark/actions/24/password-show-off.svg share/icons/breeze-dark/actions/24/password-show-on.svg share/icons/breeze-dark/actions/24/path-clip-edit.svg share/icons/breeze-dark/actions/24/path-effect-parameter-next.svg share/icons/breeze-dark/actions/24/path-mask-edit.svg share/icons/breeze-dark/actions/24/path-mode-bezier.svg share/icons/breeze-dark/actions/24/path-mode-polyline-paraxial.svg share/icons/breeze-dark/actions/24/path-mode-polyline.svg share/icons/breeze-dark/actions/24/path-mode-spiro.svg share/icons/breeze-dark/actions/24/path-reverse.svg share/icons/breeze-dark/actions/24/path-simplify.svg share/icons/breeze-dark/actions/24/pathshape.svg share/icons/breeze-dark/actions/24/pdf-annotations.svg share/icons/breeze-dark/actions/24/pdftex.svg share/icons/breeze-dark/actions/24/pentagon-shape.svg share/icons/breeze-dark/actions/24/perspective.svg share/icons/breeze-dark/actions/24/photo.svg share/icons/breeze-dark/actions/24/photos-amarok.svg share/icons/breeze-dark/actions/24/pin.svg share/icons/breeze-dark/actions/24/player-time.svg share/icons/breeze-dark/actions/24/player-volume-muted.svg share/icons/breeze-dark/actions/24/player-volume.svg share/icons/breeze-dark/actions/24/playlist-generator.svg share/icons/breeze-dark/actions/24/playlist-sort.svg share/icons/breeze-dark/actions/24/plugins.svg share/icons/breeze-dark/actions/24/podcast-amarok.svg share/icons/breeze-dark/actions/24/pointer.svg share/icons/breeze-dark/actions/24/polygon-add-nodes.svg share/icons/breeze-dark/actions/24/polygon-merge-nodes.svg share/icons/breeze-dark/actions/24/port.svg share/icons/breeze-dark/actions/24/postalcode.svg share/icons/breeze-dark/actions/24/practice-setup.svg share/icons/breeze-dark/actions/24/practice-start.svg share/icons/breeze-dark/actions/24/practice-stop.svg share/icons/breeze-dark/actions/24/precondition.svg share/icons/breeze-dark/actions/24/preferences-indicator-amarok.svg share/icons/breeze-dark/actions/24/preferences-media-playback-amarok.svg share/icons/breeze-dark/actions/24/preferences-other.svg share/icons/breeze-dark/actions/24/preferences-system-symbolic.svg share/icons/breeze-dark/actions/24/preflight-verifier.svg share/icons/breeze-dark/actions/24/presence_offline.svg share/icons/breeze-dark/actions/24/presence_unknown.svg share/icons/breeze-dark/actions/24/prevfuzzy.svg share/icons/breeze-dark/actions/24/prevfuzzyuntrans.svg share/icons/breeze-dark/actions/24/preview-add-zone.svg share/icons/breeze-dark/actions/24/preview-remove-all.svg share/icons/breeze-dark/actions/24/preview-remove-zone.svg share/icons/breeze-dark/actions/24/preview-render-off.svg share/icons/breeze-dark/actions/24/preview-render-on.svg share/icons/breeze-dark/actions/24/preview.svg share/icons/breeze-dark/actions/24/preview_math.svg share/icons/breeze-dark/actions/24/preview_sel.svg share/icons/breeze-dark/actions/24/prevuntranslated.svg share/icons/breeze-dark/actions/24/primarykey_constraint.svg share/icons/breeze-dark/actions/24/project-defaults.svg share/icons/breeze-dark/actions/24/project-development-close-all.svg share/icons/breeze-dark/actions/24/project-development-close.svg share/icons/breeze-dark/actions/24/project-development-new-template.svg share/icons/breeze-dark/actions/24/project-development.svg share/icons/breeze-dark/actions/24/project-open.svg share/icons/breeze-dark/actions/24/project_add.svg share/icons/breeze-dark/actions/24/project_archive.svg share/icons/breeze-dark/actions/24/project_rebuild.svg share/icons/breeze-dark/actions/24/project_remove.svg share/icons/breeze-dark/actions/24/project_show.svg share/icons/breeze-dark/actions/24/projectgrep.svg share/icons/breeze-dark/actions/24/qa.svg share/icons/breeze-dark/actions/24/question.svg share/icons/breeze-dark/actions/24/quick.svg share/icons/breeze-dark/actions/24/quickopen-class.svg share/icons/breeze-dark/actions/24/quickopen-file.svg share/icons/breeze-dark/actions/24/quickopen-function.svg share/icons/breeze-dark/actions/24/quickopen.svg share/icons/breeze-dark/actions/24/quickview.svg share/icons/breeze-dark/actions/24/quickwizard.svg share/icons/breeze-dark/actions/24/raindrop.svg share/icons/breeze-dark/actions/24/randomize.svg share/icons/breeze-dark/actions/24/ratiocrop.svg share/icons/breeze-dark/actions/24/realization.svg share/icons/breeze-dark/actions/24/rectangle-shape.svg share/icons/breeze-dark/actions/24/redeyes.svg share/icons/breeze-dark/actions/24/refactor.svg share/icons/breeze-dark/actions/24/refreshstructure.svg share/icons/breeze-dark/actions/24/region.svg share/icons/breeze-dark/actions/24/relation.svg share/icons/breeze-dark/actions/24/relationship.svg share/icons/breeze-dark/actions/24/remove-link.svg share/icons/breeze-dark/actions/24/remove.svg share/icons/breeze-dark/actions/24/removecell.svg share/icons/breeze-dark/actions/24/repeat.svg share/icons/breeze-dark/actions/24/resource-calendar-child-insert.svg share/icons/breeze-dark/actions/24/resource-calendar-child.svg share/icons/breeze-dark/actions/24/resource-calendar-insert.svg share/icons/breeze-dark/actions/24/resource-group-new.svg share/icons/breeze-dark/actions/24/resource-group.svg share/icons/breeze-dark/actions/24/restoration.svg share/icons/breeze-dark/actions/24/reverse.svg share/icons/breeze-dark/actions/24/roll.svg share/icons/breeze-dark/actions/24/routeplanning.svg share/icons/breeze-dark/actions/24/run-build-clean.svg share/icons/breeze-dark/actions/24/run-build-configure.svg share/icons/breeze-dark/actions/24/run-build-file.svg share/icons/breeze-dark/actions/24/run-build-install-root.svg share/icons/breeze-dark/actions/24/run-build-install.svg share/icons/breeze-dark/actions/24/run-build-prune.svg share/icons/breeze-dark/actions/24/run-build.svg share/icons/breeze-dark/actions/24/run-clean.svg share/icons/breeze-dark/actions/24/run-install.svg share/icons/breeze-dark/actions/24/screen-rotate-auto-off.svg share/icons/breeze-dark/actions/24/screen-rotate-auto-on.svg share/icons/breeze-dark/actions/24/scriptnew.svg share/icons/breeze-dark/actions/24/scriptopen.svg share/icons/breeze-dark/actions/24/secure-card.svg share/icons/breeze-dark/actions/24/select-rectangular.svg share/icons/breeze-dark/actions/24/select.svg share/icons/breeze-dark/actions/24/selection.svg share/icons/breeze-dark/actions/24/send_signal.svg share/icons/breeze-dark/actions/24/services.svg share/icons/breeze-dark/actions/24/set-language.svg share/icons/breeze-dark/actions/24/settings-configure.svg share/icons/breeze-dark/actions/24/shallow-history.svg share/icons/breeze-dark/actions/24/shape-choose.svg share/icons/breeze-dark/actions/24/shape-cuboid.svg share/icons/breeze-dark/actions/24/shapes.svg share/icons/breeze-dark/actions/24/sharpenimage.svg share/icons/breeze-dark/actions/24/shear.svg share/icons/breeze-dark/actions/24/show-all-effects.svg share/icons/breeze-dark/actions/24/show-gpu-effects.svg share/icons/breeze-dark/actions/24/show-menu.svg share/icons/breeze-dark/actions/24/show-node-handles.svg share/icons/breeze-dark/actions/24/show-offline.svg share/icons/breeze-dark/actions/24/show-path-outline.svg share/icons/breeze-dark/actions/24/show_table_column.svg share/icons/breeze-dark/actions/24/show_table_row.svg share/icons/breeze-dark/actions/24/shuffle.svg share/icons/breeze-dark/actions/24/sidebar-collapse-left.svg share/icons/breeze-dark/actions/24/sidebar-collapse-right.svg share/icons/breeze-dark/actions/24/sidebar-collapse.svg share/icons/breeze-dark/actions/24/sidebar-expand-left.svg share/icons/breeze-dark/actions/24/sidebar-expand-right.svg share/icons/breeze-dark/actions/24/sidebar-expand.svg share/icons/breeze-dark/actions/24/sidebar-show-symbolic.svg share/icons/breeze-dark/actions/24/similarartists-amarok.svg share/icons/breeze-dark/actions/24/skg-chart-bubble.svg share/icons/breeze-dark/actions/24/skrooge_credit_card.svg share/icons/breeze-dark/actions/24/skrooge_less.svg share/icons/breeze-dark/actions/24/skrooge_more.svg share/icons/breeze-dark/actions/24/skrooge_much_less.svg share/icons/breeze-dark/actions/24/skrooge_much_more.svg share/icons/breeze-dark/actions/24/skrooge_type.svg share/icons/breeze-dark/actions/24/slanted.svg share/icons/breeze-dark/actions/24/smallclock.svg share/icons/breeze-dark/actions/24/smallfrac.svg share/icons/breeze-dark/actions/24/smallskip.svg share/icons/breeze-dark/actions/24/smartnewline.svg share/icons/breeze-dark/actions/24/smiley-add.svg share/icons/breeze-dark/actions/24/smiley-shape.svg share/icons/breeze-dark/actions/24/smiley.svg share/icons/breeze-dark/actions/24/smooth.svg share/icons/breeze-dark/actions/24/snap-angle.svg share/icons/breeze-dark/actions/24/snap-bounding-box-center.svg share/icons/breeze-dark/actions/24/snap-bounding-box-corners.svg share/icons/breeze-dark/actions/24/snap-bounding-box-edges.svg share/icons/breeze-dark/actions/24/snap-bounding-box-midpoints.svg share/icons/breeze-dark/actions/24/snap-bounding-box.svg share/icons/breeze-dark/actions/24/snap-extension.svg share/icons/breeze-dark/actions/24/snap-grid-guide-intersections.svg share/icons/breeze-dark/actions/24/snap-guideline.svg share/icons/breeze-dark/actions/24/snap-intersection.svg share/icons/breeze-dark/actions/24/snap-node.svg share/icons/breeze-dark/actions/24/snap-nodes-center.svg share/icons/breeze-dark/actions/24/snap-nodes-cusp.svg share/icons/breeze-dark/actions/24/snap-nodes-intersection.svg share/icons/breeze-dark/actions/24/snap-nodes-midpoint.svg share/icons/breeze-dark/actions/24/snap-nodes-path.svg share/icons/breeze-dark/actions/24/snap-nodes-rotation-center.svg share/icons/breeze-dark/actions/24/snap-nodes-smooth.svg share/icons/breeze-dark/actions/24/snap-orthogonal.svg share/icons/breeze-dark/actions/24/snap-page.svg share/icons/breeze-dark/actions/24/snap-text-baseline.svg share/icons/breeze-dark/actions/24/snap.svg share/icons/breeze-dark/actions/24/social.svg share/icons/breeze-dark/actions/24/sort-name.svg share/icons/breeze-dark/actions/24/sort-presence.svg share/icons/breeze-dark/actions/24/sort_incr.svg share/icons/breeze-dark/actions/24/speaker.svg share/icons/breeze-dark/actions/24/special_paste.svg share/icons/breeze-dark/actions/24/specific-setup.svg share/icons/breeze-dark/actions/24/speedometer.svg share/icons/breeze-dark/actions/24/spiral-shape.svg share/icons/breeze-dark/actions/24/split.svg share/icons/breeze-dark/actions/24/spreadsheetshape.svg share/icons/breeze-dark/actions/24/sqrt.svg share/icons/breeze-dark/actions/24/standard-connector.svg share/icons/breeze-dark/actions/24/star-shape.svg share/icons/breeze-dark/actions/24/start-over.svg share/icons/breeze-dark/actions/24/state-fork.svg share/icons/breeze-dark/actions/24/stateshape.svg share/icons/breeze-dark/actions/24/statetool.svg share/icons/breeze-dark/actions/24/step_object_Anchor.svg share/icons/breeze-dark/actions/24/step_object_Box.svg share/icons/breeze-dark/actions/24/step_object_ChargedParticle.svg share/icons/breeze-dark/actions/24/step_object_CircularMotor.svg share/icons/breeze-dark/actions/24/step_object_Controller.svg share/icons/breeze-dark/actions/24/step_object_CoulombForce.svg share/icons/breeze-dark/actions/24/step_object_Disk.svg share/icons/breeze-dark/actions/24/step_object_Gas.svg share/icons/breeze-dark/actions/24/step_object_GasParticle.svg share/icons/breeze-dark/actions/24/step_object_Graph.svg share/icons/breeze-dark/actions/24/step_object_GravitationForce.svg share/icons/breeze-dark/actions/24/step_object_LinearMotor.svg share/icons/breeze-dark/actions/24/step_object_Meter.svg share/icons/breeze-dark/actions/24/step_object_Note.svg share/icons/breeze-dark/actions/24/step_object_Particle.svg share/icons/breeze-dark/actions/24/step_object_Pin.svg share/icons/breeze-dark/actions/24/step_object_Polygon.svg share/icons/breeze-dark/actions/24/step_object_Rope.svg share/icons/breeze-dark/actions/24/step_object_SoftBody.svg share/icons/breeze-dark/actions/24/step_object_Spring.svg share/icons/breeze-dark/actions/24/step_object_Stick.svg share/icons/breeze-dark/actions/24/step_object_Tracer.svg share/icons/breeze-dark/actions/24/step_object_WeightForce.svg share/icons/breeze-dark/actions/24/stickers.svg share/icons/breeze-dark/actions/24/story-editor.svg share/icons/breeze-dark/actions/24/straight-connector.svg share/icons/breeze-dark/actions/24/stroke-cap-bevel.svg share/icons/breeze-dark/actions/24/stroke-cap-butt.svg share/icons/breeze-dark/actions/24/stroke-cap-miter.svg share/icons/breeze-dark/actions/24/stroke-cap-round.svg share/icons/breeze-dark/actions/24/stroke-cap-square.svg share/icons/breeze-dark/actions/24/stroke-join-bevel.svg share/icons/breeze-dark/actions/24/stroke-join-miter.svg share/icons/breeze-dark/actions/24/stroke-join-round.svg share/icons/breeze-dark/actions/24/stroke-to-path.svg share/icons/breeze-dark/actions/24/strong.svg share/icons/breeze-dark/actions/24/structure.svg share/icons/breeze-dark/actions/24/subsystem.svg share/icons/breeze-dark/actions/24/svn-commit.svg share/icons/breeze-dark/actions/24/svn-update.svg share/icons/breeze-dark/actions/24/swap-panels.svg share/icons/breeze-dark/actions/24/system-hibernate.svg share/icons/breeze-dark/actions/24/system-lock-screen.svg share/icons/breeze-dark/actions/24/system-log-out-rtl.svg share/icons/breeze-dark/actions/24/system-log-out.svg share/icons/breeze-dark/actions/24/system-reboot.svg share/icons/breeze-dark/actions/24/system-run.svg share/icons/breeze-dark/actions/24/system-save-session.svg share/icons/breeze-dark/actions/24/system-search.svg share/icons/breeze-dark/actions/24/system-shutdown.svg share/icons/breeze-dark/actions/24/system-suspend-hibernate.svg share/icons/breeze-dark/actions/24/system-suspend.svg share/icons/breeze-dark/actions/24/system-switch-user.svg share/icons/breeze-dark/actions/24/system-upgrade.svg share/icons/breeze-dark/actions/24/system-users.svg share/icons/breeze-dark/actions/24/tab-detach.svg share/icons/breeze-dark/actions/24/tab-duplicate.svg share/icons/breeze-dark/actions/24/tab-new-background.svg share/icons/breeze-dark/actions/24/tab-new.svg share/icons/breeze-dark/actions/24/table.svg share/icons/breeze-dark/actions/24/tag-addressbook.svg share/icons/breeze-dark/actions/24/tag-assigned.svg share/icons/breeze-dark/actions/24/tag-delete.svg share/icons/breeze-dark/actions/24/tag-edit.svg share/icons/breeze-dark/actions/24/tag-events.svg share/icons/breeze-dark/actions/24/tag-folder.svg share/icons/breeze-dark/actions/24/tag-new.svg share/icons/breeze-dark/actions/24/tag-people.svg share/icons/breeze-dark/actions/24/tag-places.svg share/icons/breeze-dark/actions/24/tag-properties.svg share/icons/breeze-dark/actions/24/tag-recents.svg share/icons/breeze-dark/actions/24/tag-reset.svg share/icons/breeze-dark/actions/24/tag.svg share/icons/breeze-dark/actions/24/task-new.svg share/icons/breeze-dark/actions/24/taxes-finances.svg share/icons/breeze-dark/actions/24/template.svg share/icons/breeze-dark/actions/24/texcompiler.svg share/icons/breeze-dark/actions/24/texlion.svg share/icons/breeze-dark/actions/24/text-field-framed.svg share/icons/breeze-dark/actions/24/text-field-frameless.svg share/icons/breeze-dark/actions/24/text-field.svg share/icons/breeze-dark/actions/24/text-flow-into-frame.svg share/icons/breeze-dark/actions/24/text-frame-link.svg share/icons/breeze-dark/actions/24/text-frame-unlink.svg share/icons/breeze-dark/actions/24/text-speak.svg share/icons/breeze-dark/actions/24/text-unflow.svg share/icons/breeze-dark/actions/24/text-wrap.svg share/icons/breeze-dark/actions/24/text_horz_kern.svg share/icons/breeze-dark/actions/24/text_letter_spacing.svg share/icons/breeze-dark/actions/24/text_line_spacing.svg share/icons/breeze-dark/actions/24/text_remove_kerns.svg share/icons/breeze-dark/actions/24/text_rotation.svg share/icons/breeze-dark/actions/24/text_subscript.svg share/icons/breeze-dark/actions/24/text_superscript.svg share/icons/breeze-dark/actions/24/text_vert_kern.svg share/icons/breeze-dark/actions/24/text_word_spacing.svg share/icons/breeze-dark/actions/24/texture.svg share/icons/breeze-dark/actions/24/timeline-extract.svg share/icons/breeze-dark/actions/24/timeline-insert.svg share/icons/breeze-dark/actions/24/timeline-lift.svg share/icons/breeze-dark/actions/24/timeline-overwrite.svg share/icons/breeze-dark/actions/24/timeline-use-zone-off.svg share/icons/breeze-dark/actions/24/timeline-use-zone-on.svg share/icons/breeze-dark/actions/24/tool-animator.svg share/icons/breeze-dark/actions/24/tool-measure.svg share/icons/breeze-dark/actions/24/tool-node-editor.svg share/icons/breeze-dark/actions/24/tool-pointer.svg share/icons/breeze-dark/actions/24/tool-spray.svg share/icons/breeze-dark/actions/24/tool-text.svg share/icons/breeze-dark/actions/24/tool-tweak.svg share/icons/breeze-dark/actions/24/tool_brush.svg share/icons/breeze-dark/actions/24/tool_cellformatting.svg share/icons/breeze-dark/actions/24/tool_color_eraser.svg share/icons/breeze-dark/actions/24/tool_color_picker.svg share/icons/breeze-dark/actions/24/tool_curve.svg share/icons/breeze-dark/actions/24/tool_ellipse.svg share/icons/breeze-dark/actions/24/tool_elliptical_selection.svg share/icons/breeze-dark/actions/24/tool_eraser.svg share/icons/breeze-dark/actions/24/tool_flood_fill.svg share/icons/breeze-dark/actions/24/tool_free_form_selection.svg share/icons/breeze-dark/actions/24/tool_imageeffects.svg share/icons/breeze-dark/actions/24/tool_line.svg share/icons/breeze-dark/actions/24/tool_pagelayout.svg share/icons/breeze-dark/actions/24/tool_pen.svg share/icons/breeze-dark/actions/24/tool_polygon.svg share/icons/breeze-dark/actions/24/tool_polyline.svg share/icons/breeze-dark/actions/24/tool_rect_selection.svg share/icons/breeze-dark/actions/24/tool_rectangle.svg share/icons/breeze-dark/actions/24/tool_references.svg share/icons/breeze-dark/actions/24/tool_review.svg share/icons/breeze-dark/actions/24/tool_rounded_rectangle.svg share/icons/breeze-dark/actions/24/tool_spraycan.svg share/icons/breeze-dark/actions/24/tool_text.svg share/icons/breeze-dark/actions/24/tools-check-spelling.svg share/icons/breeze-dark/actions/24/tools-media-optical-burn-image.svg share/icons/breeze-dark/actions/24/tools-media-optical-burn.svg share/icons/breeze-dark/actions/24/tools-media-optical-copy.svg share/icons/breeze-dark/actions/24/tools-media-optical-erase.svg share/icons/breeze-dark/actions/24/tools-media-optical-format.svg share/icons/breeze-dark/actions/24/tools-report-bug.svg share/icons/breeze-dark/actions/24/tools-rip-audio-cd.svg share/icons/breeze-dark/actions/24/tools-rip-video-cd.svg share/icons/breeze-dark/actions/24/tools-rip-video-dvd.svg share/icons/breeze-dark/actions/24/tools-wizard.svg share/icons/breeze-dark/actions/24/tools.svg share/icons/breeze-dark/actions/24/torrents.svg share/icons/breeze-dark/actions/24/transform-browse.svg share/icons/breeze-dark/actions/24/transform-crop-and-resize.svg share/icons/breeze-dark/actions/24/transform-crop.svg share/icons/breeze-dark/actions/24/transform-move-horizontal.svg share/icons/breeze-dark/actions/24/transform-move-vertical.svg share/icons/breeze-dark/actions/24/transform-move.svg share/icons/breeze-dark/actions/24/transform-rotate.svg share/icons/breeze-dark/actions/24/transform-scale-horizontal.svg share/icons/breeze-dark/actions/24/transform-scale-textbox-points.svg share/icons/breeze-dark/actions/24/transform-scale-vertical.svg share/icons/breeze-dark/actions/24/transform-scale.svg share/icons/breeze-dark/actions/24/transform-shear-down.svg share/icons/breeze-dark/actions/24/transform-shear-left.svg share/icons/breeze-dark/actions/24/transform-shear-right.svg share/icons/breeze-dark/actions/24/transform-shear-up.svg share/icons/breeze-dark/actions/24/transform-skew-horizontal.svg share/icons/breeze-dark/actions/24/transform-skew-vertical.svg share/icons/breeze-dark/actions/24/transsearch.svg share/icons/breeze-dark/actions/24/trash-empty.svg share/icons/breeze-dark/actions/24/trim-margins.svg share/icons/breeze-dark/actions/24/trim-to-selection.svg share/icons/breeze-dark/actions/24/typewriter.svg share/icons/breeze-dark/actions/24/umbr-coll-message-asynchronous.svg share/icons/breeze-dark/actions/24/umbr-coll-message-synchronous.svg share/icons/breeze-dark/actions/24/umbr-message-asynchronous.svg share/icons/breeze-dark/actions/24/umbr-message-found.svg share/icons/breeze-dark/actions/24/umbr-message-lost.svg share/icons/breeze-dark/actions/24/umbr-message-synchronous.svg share/icons/breeze-dark/actions/24/umbrello_diagram_activity.svg share/icons/breeze-dark/actions/24/umbrello_diagram_class.svg share/icons/breeze-dark/actions/24/umbrello_diagram_collaboration.svg share/icons/breeze-dark/actions/24/umbrello_diagram_component.svg share/icons/breeze-dark/actions/24/umbrello_diagram_deployment.svg share/icons/breeze-dark/actions/24/umbrello_diagram_entityrelationship.svg share/icons/breeze-dark/actions/24/umbrello_diagram_sequence.svg share/icons/breeze-dark/actions/24/umbrello_diagram_state.svg share/icons/breeze-dark/actions/24/umbrello_diagram_usecase.svg share/icons/breeze-dark/actions/24/underexposure.svg share/icons/breeze-dark/actions/24/uniassociation.svg share/icons/breeze-dark/actions/24/unique_constraint.svg share/icons/breeze-dark/actions/24/unlock.svg share/icons/breeze-dark/actions/24/unmarkasblank.svg share/icons/breeze-dark/actions/24/upcomingevents-amarok.svg share/icons/breeze-dark/actions/24/upindicator.svg share/icons/breeze-dark/actions/24/upload-media.svg share/icons/breeze-dark/actions/24/usecase.svg share/icons/breeze-dark/actions/24/user-group-delete.svg share/icons/breeze-dark/actions/24/user-group-new.svg share/icons/breeze-dark/actions/24/user-group-properties.svg share/icons/breeze-dark/actions/24/user-identity.svg share/icons/breeze-dark/actions/24/user-others.svg share/icons/breeze-dark/actions/24/user-properties.svg share/icons/breeze-dark/actions/24/user.svg share/icons/breeze-dark/actions/24/username-copy.svg share/icons/breeze-dark/actions/24/vcs-branch-delete.svg share/icons/breeze-dark/actions/24/vcs-branch.svg share/icons/breeze-dark/actions/24/vcs-commit.svg share/icons/breeze-dark/actions/24/vcs-diff.svg share/icons/breeze-dark/actions/24/vcs-merge-request.svg share/icons/breeze-dark/actions/24/vcs-merge.svg share/icons/breeze-dark/actions/24/vcs-pull.svg share/icons/breeze-dark/actions/24/vcs-push.svg share/icons/breeze-dark/actions/24/vcs-stash-pop.svg share/icons/breeze-dark/actions/24/vcs-stash.svg share/icons/breeze-dark/actions/24/verb.svg share/icons/breeze-dark/actions/24/verbatim.svg share/icons/breeze-dark/actions/24/videoclip-amarok.svg share/icons/breeze-dark/actions/24/view-bank-add.svg share/icons/breeze-dark/actions/24/view-bank-delete.svg share/icons/breeze-dark/actions/24/view-bank-edit.svg share/icons/breeze-dark/actions/24/view-bank.svg share/icons/breeze-dark/actions/24/view-barcode-add.svg share/icons/breeze-dark/actions/24/view-barcode-qr.svg share/icons/breeze-dark/actions/24/view-barcode.svg share/icons/breeze-dark/actions/24/view-calendar-agenda.svg share/icons/breeze-dark/actions/24/view-calendar-birthday.svg share/icons/breeze-dark/actions/24/view-calendar-day.svg share/icons/breeze-dark/actions/24/view-calendar-holiday.svg share/icons/breeze-dark/actions/24/view-calendar-journal.svg share/icons/breeze-dark/actions/24/view-calendar-list.svg share/icons/breeze-dark/actions/24/view-calendar-month.svg share/icons/breeze-dark/actions/24/view-calendar-special-occasion.svg share/icons/breeze-dark/actions/24/view-calendar-tasks.svg share/icons/breeze-dark/actions/24/view-calendar-time-spent.svg share/icons/breeze-dark/actions/24/view-calendar-timeline.svg share/icons/breeze-dark/actions/24/view-calendar-upcoming-days.svg share/icons/breeze-dark/actions/24/view-calendar-upcoming-events.svg share/icons/breeze-dark/actions/24/view-calendar-wedding-anniversary.svg share/icons/breeze-dark/actions/24/view-calendar-week.svg share/icons/breeze-dark/actions/24/view-calendar-whatsnext.svg share/icons/breeze-dark/actions/24/view-calendar-workweek.svg share/icons/breeze-dark/actions/24/view-calendar.svg share/icons/breeze-dark/actions/24/view-catalog.svg share/icons/breeze-dark/actions/24/view-categories-expenditures.svg share/icons/breeze-dark/actions/24/view-categories-incomes.svg share/icons/breeze-dark/actions/24/view-certificate-add.svg share/icons/breeze-dark/actions/24/view-certificate-export-secret.svg share/icons/breeze-dark/actions/24/view-certificate-export-server.svg share/icons/breeze-dark/actions/24/view-certificate-export.svg share/icons/breeze-dark/actions/24/view-certificate-import.svg share/icons/breeze-dark/actions/24/view-certificate-server-configure.svg share/icons/breeze-dark/actions/24/view-certificate-sign.svg share/icons/breeze-dark/actions/24/view-certificate.svg share/icons/breeze-dark/actions/24/view-close.svg share/icons/breeze-dark/actions/24/view-conversation-balloon.svg share/icons/breeze-dark/actions/24/view-currency-list.svg share/icons/breeze-dark/actions/24/view-file-columns.svg share/icons/breeze-dark/actions/24/view-filter.svg share/icons/breeze-dark/actions/24/view-financial-account-add.svg share/icons/breeze-dark/actions/24/view-financial-account-asset-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-asset.svg share/icons/breeze-dark/actions/24/view-financial-account-cash-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-cash.svg share/icons/breeze-dark/actions/24/view-financial-account-checking-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-checking.svg share/icons/breeze-dark/actions/24/view-financial-account-close.svg share/icons/breeze-dark/actions/24/view-financial-account-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-credit-card-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-credit-card.svg share/icons/breeze-dark/actions/24/view-financial-account-delete.svg share/icons/breeze-dark/actions/24/view-financial-account-edit.svg share/icons/breeze-dark/actions/24/view-financial-account-investment-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-investment-security-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-investment-security.svg share/icons/breeze-dark/actions/24/view-financial-account-investment.svg share/icons/breeze-dark/actions/24/view-financial-account-liability-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-liability.svg share/icons/breeze-dark/actions/24/view-financial-account-loan-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-loan.svg share/icons/breeze-dark/actions/24/view-financial-account-reopen.svg share/icons/breeze-dark/actions/24/view-financial-account-savings-closed.svg share/icons/breeze-dark/actions/24/view-financial-account-savings.svg share/icons/breeze-dark/actions/24/view-financial-account.svg share/icons/breeze-dark/actions/24/view-financial-budget.svg share/icons/breeze-dark/actions/24/view-financial-category-add.svg share/icons/breeze-dark/actions/24/view-financial-category-delete.svg share/icons/breeze-dark/actions/24/view-financial-category-edit.svg share/icons/breeze-dark/actions/24/view-financial-category-expense.svg share/icons/breeze-dark/actions/24/view-financial-category-income.svg share/icons/breeze-dark/actions/24/view-financial-category.svg share/icons/breeze-dark/actions/24/view-financial-list.svg share/icons/breeze-dark/actions/24/view-financial-transfer-reconcile.svg share/icons/breeze-dark/actions/24/view-financial-transfer-reconciled.svg share/icons/breeze-dark/actions/24/view-financial-transfer-unreconciled.svg share/icons/breeze-dark/actions/24/view-form-action.svg share/icons/breeze-dark/actions/24/view-form.svg share/icons/breeze-dark/actions/24/view-fullscreen.svg share/icons/breeze-dark/actions/24/view-grid.svg share/icons/breeze-dark/actions/24/view-group.svg share/icons/breeze-dark/actions/24/view-hidden.svg share/icons/breeze-dark/actions/24/view-history.svg share/icons/breeze-dark/actions/24/view-institution-add.svg share/icons/breeze-dark/actions/24/view-institution-delete.svg share/icons/breeze-dark/actions/24/view-institution-edit.svg share/icons/breeze-dark/actions/24/view-institution.svg share/icons/breeze-dark/actions/24/view-left-close.svg share/icons/breeze-dark/actions/24/view-left-new.svg share/icons/breeze-dark/actions/24/view-list-details.svg share/icons/breeze-dark/actions/24/view-list-icons.svg share/icons/breeze-dark/actions/24/view-list-text.svg share/icons/breeze-dark/actions/24/view-list-tree.svg share/icons/breeze-dark/actions/24/view-media-album-cover.svg share/icons/breeze-dark/actions/24/view-media-artist.svg share/icons/breeze-dark/actions/24/view-media-chart.svg share/icons/breeze-dark/actions/24/view-media-config.svg share/icons/breeze-dark/actions/24/view-media-equalizer.svg share/icons/breeze-dark/actions/24/view-media-favorite.svg share/icons/breeze-dark/actions/24/view-media-genre.svg share/icons/breeze-dark/actions/24/view-media-lyrics.svg share/icons/breeze-dark/actions/24/view-media-playcount.svg share/icons/breeze-dark/actions/24/view-media-playlist.svg share/icons/breeze-dark/actions/24/view-media-publisher.svg share/icons/breeze-dark/actions/24/view-media-recent.svg share/icons/breeze-dark/actions/24/view-media-similarartists.svg share/icons/breeze-dark/actions/24/view-media-title.svg share/icons/breeze-dark/actions/24/view-media-track.svg share/icons/breeze-dark/actions/24/view-media-visualization.svg share/icons/breeze-dark/actions/24/view-multiple-objects.svg share/icons/breeze-dark/actions/24/view-object-histogram-linear.svg share/icons/breeze-dark/actions/24/view-object-histogram-logarithmic.svg share/icons/breeze-dark/actions/24/view-pages-continuous.svg share/icons/breeze-dark/actions/24/view-pages-facing-first-centered.svg share/icons/breeze-dark/actions/24/view-pages-facing.svg share/icons/breeze-dark/actions/24/view-pages-overview.svg share/icons/breeze-dark/actions/24/view-pages-single.svg share/icons/breeze-dark/actions/24/view-pim-calendar.svg share/icons/breeze-dark/actions/24/view-pim-contacts.svg share/icons/breeze-dark/actions/24/view-pim-journal.svg share/icons/breeze-dark/actions/24/view-pim-mail.svg share/icons/breeze-dark/actions/24/view-pim-news.svg share/icons/breeze-dark/actions/24/view-pim-notes.svg share/icons/breeze-dark/actions/24/view-pim-tasks-pending.svg share/icons/breeze-dark/actions/24/view-pim-tasks.svg share/icons/breeze-dark/actions/24/view-presentation.svg share/icons/breeze-dark/actions/24/view-preview.svg share/icons/breeze-dark/actions/24/view-process-all-tree.svg share/icons/breeze-dark/actions/24/view-process-all.svg share/icons/breeze-dark/actions/24/view-process-own.svg share/icons/breeze-dark/actions/24/view-process-system.svg share/icons/breeze-dark/actions/24/view-process-tree.svg share/icons/breeze-dark/actions/24/view-process-users.svg share/icons/breeze-dark/actions/24/view-refresh.svg share/icons/breeze-dark/actions/24/view-resource-calendar.svg share/icons/breeze-dark/actions/24/view-restore.svg share/icons/breeze-dark/actions/24/view-right-close.svg share/icons/breeze-dark/actions/24/view-right-new.svg share/icons/breeze-dark/actions/24/view-services-scripted-amarok.svg share/icons/breeze-dark/actions/24/view-sidetree.svg share/icons/breeze-dark/actions/24/view-sort-ascending-name.svg share/icons/breeze-dark/actions/24/view-sort-ascending.svg share/icons/breeze-dark/actions/24/view-sort-descending-name.svg share/icons/breeze-dark/actions/24/view-sort-descending.svg share/icons/breeze-dark/actions/24/view-sort.svg share/icons/breeze-dark/actions/24/view-split-effect.svg share/icons/breeze-dark/actions/24/view-split-left-right.svg share/icons/breeze-dark/actions/24/view-split-top-bottom.svg share/icons/breeze-dark/actions/24/view-statistics.svg share/icons/breeze-dark/actions/24/view-table-of-contents-ltr.svg share/icons/breeze-dark/actions/24/view-table-of-contents-rtl.svg share/icons/breeze-dark/actions/24/view-task-add.svg share/icons/breeze-dark/actions/24/view-task-child-add.svg share/icons/breeze-dark/actions/24/view-task-child.svg share/icons/breeze-dark/actions/24/view-task.svg share/icons/breeze-dark/actions/24/view-time-schedule-baselined-add.svg share/icons/breeze-dark/actions/24/view-time-schedule-baselined-remove.svg share/icons/breeze-dark/actions/24/view-time-schedule-baselined.svg share/icons/breeze-dark/actions/24/view-time-schedule-calculus.svg share/icons/breeze-dark/actions/24/view-time-schedule-child-insert.svg share/icons/breeze-dark/actions/24/view-time-schedule-edit.svg share/icons/breeze-dark/actions/24/view-time-schedule-insert.svg share/icons/breeze-dark/actions/24/view-time-schedule.svg share/icons/breeze-dark/actions/24/view-unsplit-effect.svg share/icons/breeze-dark/actions/24/view-visible.svg share/icons/breeze-dark/actions/24/view-web-browser-dom-tree.svg share/icons/breeze-dark/actions/24/view_fit_to_page.svg share/icons/breeze-dark/actions/24/viewbib.svg share/icons/breeze-dark/actions/24/viewdvi.svg share/icons/breeze-dark/actions/24/viewhtml.svg share/icons/breeze-dark/actions/24/viewimage.svg share/icons/breeze-dark/actions/24/viewlog.svg share/icons/breeze-dark/actions/24/viewps.svg share/icons/breeze-dark/actions/24/virtual-desktops.svg share/icons/breeze-dark/actions/24/visibility.svg share/icons/breeze-dark/actions/24/wallet-closed.svg share/icons/breeze-dark/actions/24/wallet-open.svg share/icons/breeze-dark/actions/24/warnnext.svg share/icons/breeze-dark/actions/24/warnprev.svg share/icons/breeze-dark/actions/24/whitebalance.svg share/icons/breeze-dark/actions/24/widget-alternatives.svg share/icons/breeze-dark/actions/24/window-duplicate.svg share/icons/breeze-dark/actions/24/window-keep-above.svg share/icons/breeze-dark/actions/24/window-keep-below.svg share/icons/breeze-dark/actions/24/window-maximize.svg share/icons/breeze-dark/actions/24/window-minimize.svg share/icons/breeze-dark/actions/24/window-new.svg share/icons/breeze-dark/actions/24/window-pin.svg share/icons/breeze-dark/actions/24/window-restore.svg share/icons/breeze-dark/actions/24/window-shade.svg share/icons/breeze-dark/actions/24/window-unpin.svg share/icons/breeze-dark/actions/24/window-unshade.svg share/icons/breeze-dark/actions/24/window.svg share/icons/breeze-dark/actions/24/wizard_math.svg share/icons/breeze-dark/actions/24/wizard_pdftools.svg share/icons/breeze-dark/actions/24/wizard_pstools.svg share/icons/breeze-dark/actions/24/wizard_tabular.svg share/icons/breeze-dark/actions/24/x-clementine-album.svg share/icons/breeze-dark/actions/24/x-clementine-albums.svg share/icons/breeze-dark/actions/24/x-clementine-artist.svg share/icons/breeze-dark/actions/24/x-clementine-shuffle.svg share/icons/breeze-dark/actions/24/x-shape-connection.svg share/icons/breeze-dark/actions/24/x-shape-formula.svg share/icons/breeze-dark/actions/24/x-shape-image.svg share/icons/breeze-dark/actions/24/x-shape-text.svg share/icons/breeze-dark/actions/24/xfsm-hibernate.svg share/icons/breeze-dark/actions/24/xml-attribute-delete.svg share/icons/breeze-dark/actions/24/xml-element-new.svg share/icons/breeze-dark/actions/24/xml-node-delete.svg share/icons/breeze-dark/actions/24/xml-node-duplicate.svg share/icons/breeze-dark/actions/24/xml-text-new.svg share/icons/breeze-dark/actions/24/y-zoom-in.svg share/icons/breeze-dark/actions/24/zone-in.svg share/icons/breeze-dark/actions/24/zone-out.svg share/icons/breeze-dark/actions/24/zoom-1-to-2.svg share/icons/breeze-dark/actions/24/zoom-2-to-1.svg share/icons/breeze-dark/actions/24/zoom-all.svg share/icons/breeze-dark/actions/24/zoom-draw.svg share/icons/breeze-dark/actions/24/zoom-fit-best.svg share/icons/breeze-dark/actions/24/zoom-fit-height.svg share/icons/breeze-dark/actions/24/zoom-fit-page.svg share/icons/breeze-dark/actions/24/zoom-fit-selection.svg share/icons/breeze-dark/actions/24/zoom-fit-width.svg share/icons/breeze-dark/actions/24/zoom-in-large.svg share/icons/breeze-dark/actions/24/zoom-in-x.svg share/icons/breeze-dark/actions/24/zoom-in.svg share/icons/breeze-dark/actions/24/zoom-next.svg share/icons/breeze-dark/actions/24/zoom-original.svg share/icons/breeze-dark/actions/24/zoom-out-large.svg share/icons/breeze-dark/actions/24/zoom-out-x.svg share/icons/breeze-dark/actions/24/zoom-out-y.svg share/icons/breeze-dark/actions/24/zoom-out.svg share/icons/breeze-dark/actions/24/zoom-pixels.svg share/icons/breeze-dark/actions/24/zoom-previous.svg share/icons/breeze-dark/actions/24/zoom-select-fit.svg share/icons/breeze-dark/actions/24/zoom-select-x.svg share/icons/breeze-dark/actions/24/zoom-select-y.svg share/icons/breeze-dark/actions/24/zoom-select.svg share/icons/breeze-dark/actions/24/zoom-selection.svg share/icons/breeze-dark/actions/24/zoom.svg share/icons/breeze-dark/actions/24@2x share/icons/breeze-dark/actions/24@3x share/icons/breeze-dark/actions/32/acrobat.svg share/icons/breeze-dark/actions/32/address-book-new.svg share/icons/breeze-dark/actions/32/align-horizontal-bottom-out.svg share/icons/breeze-dark/actions/32/align-horizontal-center.svg share/icons/breeze-dark/actions/32/align-horizontal-left-out.svg share/icons/breeze-dark/actions/32/align-horizontal-left-to-anchor.svg share/icons/breeze-dark/actions/32/align-horizontal-left.svg share/icons/breeze-dark/actions/32/align-horizontal-right-out.svg share/icons/breeze-dark/actions/32/align-horizontal-right-to-anchor.svg share/icons/breeze-dark/actions/32/align-horizontal-right.svg share/icons/breeze-dark/actions/32/align-horizontal-top-out.svg share/icons/breeze-dark/actions/32/align-vertical-bottom-out.svg share/icons/breeze-dark/actions/32/align-vertical-bottom-to-anchor.svg share/icons/breeze-dark/actions/32/align-vertical-bottom.svg share/icons/breeze-dark/actions/32/align-vertical-center.svg share/icons/breeze-dark/actions/32/align-vertical-top-out.svg share/icons/breeze-dark/actions/32/align-vertical-top-to-anchor.svg share/icons/breeze-dark/actions/32/align-vertical-top.svg share/icons/breeze-dark/actions/32/application-exit.svg share/icons/breeze-dark/actions/32/application-menu.svg share/icons/breeze-dark/actions/32/appointment-new.svg share/icons/breeze-dark/actions/32/archive-extract.svg share/icons/breeze-dark/actions/32/archive-insert-directory.svg share/icons/breeze-dark/actions/32/archive-insert.svg share/icons/breeze-dark/actions/32/archive-remove.svg share/icons/breeze-dark/actions/32/arrow-down-double.svg share/icons/breeze-dark/actions/32/arrow-down.svg share/icons/breeze-dark/actions/32/arrow-left-double.svg share/icons/breeze-dark/actions/32/arrow-left.svg share/icons/breeze-dark/actions/32/arrow-right-double.svg share/icons/breeze-dark/actions/32/arrow-right.svg share/icons/breeze-dark/actions/32/arrow-up-double.svg share/icons/breeze-dark/actions/32/arrow-up.svg share/icons/breeze-dark/actions/32/arrow.svg share/icons/breeze-dark/actions/32/autocorrection.svg share/icons/breeze-dark/actions/32/blurimage.svg share/icons/breeze-dark/actions/32/bookmark-new.svg share/icons/breeze-dark/actions/32/bookmark-remove.svg share/icons/breeze-dark/actions/32/bookmarks.svg share/icons/breeze-dark/actions/32/bordertool.svg share/icons/breeze-dark/actions/32/call-start.svg share/icons/breeze-dark/actions/32/call-stop.svg share/icons/breeze-dark/actions/32/collapse-all.svg share/icons/breeze-dark/actions/32/collapse.svg share/icons/breeze-dark/actions/32/color-management.svg share/icons/breeze-dark/actions/32/color-picker-black.svg share/icons/breeze-dark/actions/32/color-picker-grey.svg share/icons/breeze-dark/actions/32/color-picker-white.svg share/icons/breeze-dark/actions/32/color-picker.svg share/icons/breeze-dark/actions/32/colormanagement.svg share/icons/breeze-dark/actions/32/colors-chromablue.svg share/icons/breeze-dark/actions/32/colors-chromagreen.svg share/icons/breeze-dark/actions/32/colors-chromared.svg share/icons/breeze-dark/actions/32/colors-luma.svg share/icons/breeze-dark/actions/32/compass.svg share/icons/breeze-dark/actions/32/configure-shortcuts.svg share/icons/breeze-dark/actions/32/configure.svg share/icons/breeze-dark/actions/32/cursor-arrow.svg share/icons/breeze-dark/actions/32/cursor-cross.svg share/icons/breeze-dark/actions/32/dialog-cancel.svg share/icons/breeze-dark/actions/32/dialog-messages.svg share/icons/breeze-dark/actions/32/dialog-ok-apply.svg share/icons/breeze-dark/actions/32/dialog-ok.svg share/icons/breeze-dark/actions/32/document-close.svg share/icons/breeze-dark/actions/32/document-decrypt.svg share/icons/breeze-dark/actions/32/document-edit-decrypt-verify.svg share/icons/breeze-dark/actions/32/document-edit-decrypt.svg share/icons/breeze-dark/actions/32/document-edit-encrypt.svg share/icons/breeze-dark/actions/32/document-edit-sign-encrypt.svg share/icons/breeze-dark/actions/32/document-edit-sign.svg share/icons/breeze-dark/actions/32/document-edit.svg share/icons/breeze-dark/actions/32/document-encrypted.svg share/icons/breeze-dark/actions/32/document-export.svg share/icons/breeze-dark/actions/32/document-import.svg share/icons/breeze-dark/actions/32/document-new-from-template.svg share/icons/breeze-dark/actions/32/document-new.svg share/icons/breeze-dark/actions/32/document-open-folder.svg share/icons/breeze-dark/actions/32/document-open-remote.svg share/icons/breeze-dark/actions/32/document-open.svg share/icons/breeze-dark/actions/32/document-preview-archive.svg share/icons/breeze-dark/actions/32/document-preview.svg share/icons/breeze-dark/actions/32/document-print-direct.svg share/icons/breeze-dark/actions/32/document-print.svg share/icons/breeze-dark/actions/32/document-properties.svg share/icons/breeze-dark/actions/32/document-replace.svg share/icons/breeze-dark/actions/32/document-revert.svg share/icons/breeze-dark/actions/32/document-save-all.svg share/icons/breeze-dark/actions/32/document-save-as.svg share/icons/breeze-dark/actions/32/document-save.svg share/icons/breeze-dark/actions/32/document-share.svg share/icons/breeze-dark/actions/32/donate.svg share/icons/breeze-dark/actions/32/draw-arrow-back.svg share/icons/breeze-dark/actions/32/draw-arrow-down.svg share/icons/breeze-dark/actions/32/draw-arrow-forward.svg share/icons/breeze-dark/actions/32/draw-arrow-up.svg share/icons/breeze-dark/actions/32/edit-delete-shred.svg share/icons/breeze-dark/actions/32/edit-delete.svg share/icons/breeze-dark/actions/32/edit-redo.svg share/icons/breeze-dark/actions/32/edit-reset.svg share/icons/breeze-dark/actions/32/edit-select.svg share/icons/breeze-dark/actions/32/edit-undo.svg share/icons/breeze-dark/actions/32/editor.svg share/icons/breeze-dark/actions/32/expand-all.svg share/icons/breeze-dark/actions/32/expand.svg share/icons/breeze-dark/actions/32/file-zoom-in.svg share/icons/breeze-dark/actions/32/file-zoom-out.svg share/icons/breeze-dark/actions/32/financial-account.svg share/icons/breeze-dark/actions/32/financial-budget.svg share/icons/breeze-dark/actions/32/financial-list.svg share/icons/breeze-dark/actions/32/financial-payees.svg share/icons/breeze-dark/actions/32/flash.svg share/icons/breeze-dark/actions/32/flashlight-off.svg share/icons/breeze-dark/actions/32/flashlight-on.svg share/icons/breeze-dark/actions/32/folder-new.svg share/icons/breeze-dark/actions/32/folder-sync.svg share/icons/breeze-dark/actions/32/format-stroke-color.svg share/icons/breeze-dark/actions/32/games-config-custom.svg share/icons/breeze-dark/actions/32/games-config-options.svg share/icons/breeze-dark/actions/32/gnumeric-format-halign-distributed.svg share/icons/breeze-dark/actions/32/gnumeric-format-valign-bottom.svg share/icons/breeze-dark/actions/32/gnumeric-format-valign-center.svg share/icons/breeze-dark/actions/32/gnumeric-format-valign-distributed.svg share/icons/breeze-dark/actions/32/gnumeric-format-valign-justify.svg share/icons/breeze-dark/actions/32/gnumeric-format-valign-top.svg share/icons/breeze-dark/actions/32/go-bottom.svg share/icons/breeze-dark/actions/32/go-down-skip.svg share/icons/breeze-dark/actions/32/go-down.svg share/icons/breeze-dark/actions/32/go-first.svg share/icons/breeze-dark/actions/32/go-jump.svg share/icons/breeze-dark/actions/32/go-last.svg share/icons/breeze-dark/actions/32/go-next-skip.svg share/icons/breeze-dark/actions/32/go-next.svg share/icons/breeze-dark/actions/32/go-parent-folder.svg share/icons/breeze-dark/actions/32/go-previous-skip.svg share/icons/breeze-dark/actions/32/go-previous.svg share/icons/breeze-dark/actions/32/go-top.svg share/icons/breeze-dark/actions/32/go-up-skip.svg share/icons/breeze-dark/actions/32/go-up.svg share/icons/breeze-dark/actions/32/gtk-ok.svg share/icons/breeze-dark/actions/32/gtk-preferences.svg share/icons/breeze-dark/actions/32/help-about.svg share/icons/breeze-dark/actions/32/help-donate.svg share/icons/breeze-dark/actions/32/help-keybord-shortcuts.svg share/icons/breeze-dark/actions/32/help-whatsthis.svg share/icons/breeze-dark/actions/32/home.svg share/icons/breeze-dark/actions/32/institution.svg share/icons/breeze-dark/actions/32/kdenlive-zoom-large.svg share/icons/breeze-dark/actions/32/kdenlive-zoom-small.svg share/icons/breeze-dark/actions/32/labplot-cursor-arrow.svg share/icons/breeze-dark/actions/32/labplot-zoom-in-x.svg share/icons/breeze-dark/actions/32/labplot-zoom-in-y.svg share/icons/breeze-dark/actions/32/labplot-zoom-out-x.svg share/icons/breeze-dark/actions/32/labplot-zoom-out-y.svg share/icons/breeze-dark/actions/32/labplot-zoom-select-x.svg share/icons/breeze-dark/actions/32/labplot-zoom-select-y.svg share/icons/breeze-dark/actions/32/labplot-zoom-select.svg share/icons/breeze-dark/actions/32/mail-attachment.svg share/icons/breeze-dark/actions/32/mail-deleted.svg share/icons/breeze-dark/actions/32/mail-encrypted-full.svg share/icons/breeze-dark/actions/32/mail-encrypted-part.svg share/icons/breeze-dark/actions/32/mail-encrypted.svg share/icons/breeze-dark/actions/32/mail-flag.svg share/icons/breeze-dark/actions/32/mail-forward.svg share/icons/breeze-dark/actions/32/mail-forwarded-replied.svg share/icons/breeze-dark/actions/32/mail-forwarded.svg share/icons/breeze-dark/actions/32/mail-invitation.svg share/icons/breeze-dark/actions/32/mail-mark-important.svg share/icons/breeze-dark/actions/32/mail-mark-junk.svg share/icons/breeze-dark/actions/32/mail-mark-notjunk.svg share/icons/breeze-dark/actions/32/mail-mark-read.svg share/icons/breeze-dark/actions/32/mail-mark-unread-new.svg share/icons/breeze-dark/actions/32/mail-mark-unread.svg share/icons/breeze-dark/actions/32/mail-meeting-request-reply.svg share/icons/breeze-dark/actions/32/mail-message-new-list.svg share/icons/breeze-dark/actions/32/mail-message-new.svg share/icons/breeze-dark/actions/32/mail-message.svg share/icons/breeze-dark/actions/32/mail-queue.svg share/icons/breeze-dark/actions/32/mail-queued.svg share/icons/breeze-dark/actions/32/mail-read.svg share/icons/breeze-dark/actions/32/mail-replied.svg share/icons/breeze-dark/actions/32/mail-reply-all.svg share/icons/breeze-dark/actions/32/mail-reply-custom-all.svg share/icons/breeze-dark/actions/32/mail-reply-custom.svg share/icons/breeze-dark/actions/32/mail-reply-list.svg share/icons/breeze-dark/actions/32/mail-reply-sender.svg share/icons/breeze-dark/actions/32/mail-send.svg share/icons/breeze-dark/actions/32/mail-sent.svg share/icons/breeze-dark/actions/32/mail-signature-unknown.svg share/icons/breeze-dark/actions/32/mail-signed-full.svg share/icons/breeze-dark/actions/32/mail-signed-fully.svg share/icons/breeze-dark/actions/32/mail-signed-part.svg share/icons/breeze-dark/actions/32/mail-signed-verified.svg share/icons/breeze-dark/actions/32/mail-signed.svg share/icons/breeze-dark/actions/32/mail-tagged.svg share/icons/breeze-dark/actions/32/mail-thread-watch.svg share/icons/breeze-dark/actions/32/mail-unread-new.svg share/icons/breeze-dark/actions/32/mail-unread.svg share/icons/breeze-dark/actions/32/media-eject.svg share/icons/breeze-dark/actions/32/media-playback-pause.svg share/icons/breeze-dark/actions/32/media-playback-start.svg share/icons/breeze-dark/actions/32/media-playback-stop.svg share/icons/breeze-dark/actions/32/media-playlist-normal.svg share/icons/breeze-dark/actions/32/media-playlist-repeat-song.svg share/icons/breeze-dark/actions/32/media-playlist-repeat.svg share/icons/breeze-dark/actions/32/media-playlist-shuffle.svg share/icons/breeze-dark/actions/32/media-record.svg share/icons/breeze-dark/actions/32/media-repeat-all.svg share/icons/breeze-dark/actions/32/media-repeat-none.svg share/icons/breeze-dark/actions/32/media-repeat-single.svg share/icons/breeze-dark/actions/32/media-seek-backward.svg share/icons/breeze-dark/actions/32/media-seek-forward.svg share/icons/breeze-dark/actions/32/media-skip-backward.svg share/icons/breeze-dark/actions/32/media-skip-forward.svg share/icons/breeze-dark/actions/32/multiple.svg share/icons/breeze-dark/actions/32/object-order-back.svg share/icons/breeze-dark/actions/32/object-order-front.svg share/icons/breeze-dark/actions/32/object-order-lower.svg share/icons/breeze-dark/actions/32/object-order-raise.svg share/icons/breeze-dark/actions/32/office-chart-pie.svg share/icons/breeze-dark/actions/32/open-menu-symbolic.svg share/icons/breeze-dark/actions/32/output_win.svg share/icons/breeze-dark/actions/32/overflow-menu.svg share/icons/breeze-dark/actions/32/page-zoom.svg share/icons/breeze-dark/actions/32/percent.svg share/icons/breeze-dark/actions/32/preferences-system-symbolic.svg share/icons/breeze-dark/actions/32/preview.svg share/icons/breeze-dark/actions/32/qa.svg share/icons/breeze-dark/actions/32/screen-rotate-auto-off.svg share/icons/breeze-dark/actions/32/screen-rotate-auto-on.svg share/icons/breeze-dark/actions/32/select.svg share/icons/breeze-dark/actions/32/settings-configure.svg share/icons/breeze-dark/actions/32/step_object_Controller.svg share/icons/breeze-dark/actions/32/system-hibernate.svg share/icons/breeze-dark/actions/32/system-lock-screen.svg share/icons/breeze-dark/actions/32/system-log-out-rtl.svg share/icons/breeze-dark/actions/32/system-log-out.svg share/icons/breeze-dark/actions/32/system-reboot.svg share/icons/breeze-dark/actions/32/system-save-session.svg share/icons/breeze-dark/actions/32/system-shutdown.svg share/icons/breeze-dark/actions/32/system-suspend-hibernate.svg share/icons/breeze-dark/actions/32/system-suspend.svg share/icons/breeze-dark/actions/32/system-switch-user.svg share/icons/breeze-dark/actions/32/system-users.svg share/icons/breeze-dark/actions/32/tag.svg share/icons/breeze-dark/actions/32/taxes-finances.svg share/icons/breeze-dark/actions/32/tool-pointer.svg share/icons/breeze-dark/actions/32/tools.svg share/icons/breeze-dark/actions/32/trim-margins.svg share/icons/breeze-dark/actions/32/trim-to-selection.svg share/icons/breeze-dark/actions/32/view-barcode-qr.svg share/icons/breeze-dark/actions/32/view-calendar-holiday.svg share/icons/breeze-dark/actions/32/view-filter.svg share/icons/breeze-dark/actions/32/view-group.svg share/icons/breeze-dark/actions/32/view-left-close.svg share/icons/breeze-dark/actions/32/view-left-new.svg share/icons/breeze-dark/actions/32/view-list-details.svg share/icons/breeze-dark/actions/32/view-list-icons.svg share/icons/breeze-dark/actions/32/view-list-text.svg share/icons/breeze-dark/actions/32/view-list-tree.svg share/icons/breeze-dark/actions/32/view-preview.svg share/icons/breeze-dark/actions/32/view-refresh.svg share/icons/breeze-dark/actions/32/view-right-close.svg share/icons/breeze-dark/actions/32/view-right-new.svg share/icons/breeze-dark/actions/32/view-sort-ascending-name.svg share/icons/breeze-dark/actions/32/view-sort-ascending.svg share/icons/breeze-dark/actions/32/view-sort-descending-name.svg share/icons/breeze-dark/actions/32/view-sort-descending.svg share/icons/breeze-dark/actions/32/view-sort.svg share/icons/breeze-dark/actions/32/window-close.svg share/icons/breeze-dark/actions/32/xfsm-hibernate.svg share/icons/breeze-dark/actions/32/zoom-1-to-2.svg share/icons/breeze-dark/actions/32/zoom-2-to-1.svg share/icons/breeze-dark/actions/32/zoom-all.svg share/icons/breeze-dark/actions/32/zoom-draw.svg share/icons/breeze-dark/actions/32/zoom-fit-best.svg share/icons/breeze-dark/actions/32/zoom-fit-height.svg share/icons/breeze-dark/actions/32/zoom-fit-page.svg share/icons/breeze-dark/actions/32/zoom-fit-selection.svg share/icons/breeze-dark/actions/32/zoom-fit-width.svg share/icons/breeze-dark/actions/32/zoom-in-large.svg share/icons/breeze-dark/actions/32/zoom-in.svg share/icons/breeze-dark/actions/32/zoom-next.svg share/icons/breeze-dark/actions/32/zoom-original.svg share/icons/breeze-dark/actions/32/zoom-out-large.svg share/icons/breeze-dark/actions/32/zoom-out.svg share/icons/breeze-dark/actions/32/zoom-previous.svg share/icons/breeze-dark/actions/32/zoom-select-fit.svg share/icons/breeze-dark/actions/32/zoom-select-x.svg share/icons/breeze-dark/actions/32/zoom-select-y.svg share/icons/breeze-dark/actions/32/zoom-select.svg share/icons/breeze-dark/actions/32/zoom-selection.svg share/icons/breeze-dark/actions/32/zoom.svg share/icons/breeze-dark/actions/32@2x share/icons/breeze-dark/actions/32@3x share/icons/breeze-dark/actions/48/draw-freehand.svg share/icons/breeze-dark/actions/48/financial-account.svg share/icons/breeze-dark/actions/48/financial-categories.svg share/icons/breeze-dark/actions/48/financial-forecast.svg share/icons/breeze-dark/actions/48/financial-investments.svg share/icons/breeze-dark/actions/48/financial-list.svg share/icons/breeze-dark/actions/48/financial-report.svg share/icons/breeze-dark/actions/48/home.svg share/icons/breeze-dark/actions/48/institution.svg share/icons/breeze-dark/actions/48/view-history.svg share/icons/breeze-dark/actions/48/view-presentation.svg share/icons/breeze-dark/actions/64/go-home.svg share/icons/breeze-dark/actions/64/media-default-album.svg share/icons/breeze-dark/actions/64/media-default-track.svg share/icons/breeze-dark/actions/64/view-institution.svg share/icons/breeze-dark/actions/symbolic/action-unavailable-symbolic.svg share/icons/breeze-dark/actions/symbolic/address-book-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/application-exit-symbolic.svg share/icons/breeze-dark/actions/symbolic/appointment-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/bookmark-add-symbolic.svg share/icons/breeze-dark/actions/symbolic/bookmark-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/builder-view-left-pane-symbolic.svg share/icons/breeze-dark/actions/symbolic/call-end-symbolic.svg share/icons/breeze-dark/actions/symbolic/call-start-symbolic.svg share/icons/breeze-dark/actions/symbolic/call-stop-symbolic.svg share/icons/breeze-dark/actions/symbolic/call-voicemail-symbolic.svg share/icons/breeze-dark/actions/symbolic/change-date-symbolic.svg share/icons/breeze-dark/actions/symbolic/collapse-all-symbolic.svg share/icons/breeze-dark/actions/symbolic/color-profile.svg share/icons/breeze-dark/actions/symbolic/color-select-symbolic.svg share/icons/breeze-dark/actions/symbolic/comment-symbolic.svg share/icons/breeze-dark/actions/symbolic/contact-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/content-loading-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-edit-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-open-recent-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-open-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-page-setup-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-print-preview-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-print-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-properties-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-revert-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/document-revert-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-save-as-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-save-symbolic.svg share/icons/breeze-dark/actions/symbolic/document-send-symbolic.svg share/icons/breeze-dark/actions/symbolic/drag-handle-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-clear-all-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-clear-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-clear-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/edit-clear-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-copy-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-cut-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-delete-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-find-replace-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-find-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-move-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-paste-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-redo-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-redo-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/edit-redo-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-select-all-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-select-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-undo-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/edit-undo-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/edit-undo-symbolic.svg share/icons/breeze-dark/actions/symbolic/expand-all-symbolic.svg share/icons/breeze-dark/actions/symbolic/export-symbolic.svg share/icons/breeze-dark/actions/symbolic/extension-symbolic.svg share/icons/breeze-dark/actions/symbolic/file-catalog-symbolic.svg share/icons/breeze-dark/actions/symbolic/file-library-symbolic.svg share/icons/breeze-dark/actions/symbolic/file-search-symbolic.svg share/icons/breeze-dark/actions/symbolic/filter-symbolic.svg share/icons/breeze-dark/actions/symbolic/find-location-symbolic.svg share/icons/breeze-dark/actions/symbolic/folder-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/font-select-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-indent-less-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-indent-less-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/format-indent-less-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-indent-more-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-indent-more-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/format-indent-more-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-justify-center-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-justify-fill-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-justify-left-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-justify-right-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-text-bold-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-text-direction-ltr-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-text-direction-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-text-direction-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/format-text-direction-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-text-italic-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-text-strikethrough-symbolic.svg share/icons/breeze-dark/actions/symbolic/format-text-underline-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-bottom-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-down-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-first-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-first-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/go-first-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-home-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-jump-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-jump-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-last-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-last-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/go-last-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-next-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-next-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/go-next-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-previous-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-previous-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/go-previous-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-top-symbolic.svg share/icons/breeze-dark/actions/symbolic/go-up-symbolic.svg share/icons/breeze-dark/actions/symbolic/help-about-symbolic.svg share/icons/breeze-dark/actions/symbolic/histogram-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-crop-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-flip-horizontal-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-flip-vertical-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-invert-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-navigator-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-red-eye-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-resize-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-rotate-left-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-rotate-right-symbolic.svg share/icons/breeze-dark/actions/symbolic/image-rotate-symbolic.svg share/icons/breeze-dark/actions/symbolic/insert-image-symbolic.svg share/icons/breeze-dark/actions/symbolic/insert-link-symbolic.svg share/icons/breeze-dark/actions/symbolic/insert-text-symbolic.svg share/icons/breeze-dark/actions/symbolic/list-add-symbolic.svg share/icons/breeze-dark/actions/symbolic/list-remove-all-symbolic.svg share/icons/breeze-dark/actions/symbolic/list-remove-symbolic.svg share/icons/breeze-dark/actions/symbolic/mail-inbox-symbolic.svg share/icons/breeze-dark/actions/symbolic/mail-mark-important-symbolic.svg share/icons/breeze-dark/actions/symbolic/mail-send-receive-symbolic.svg share/icons/breeze-dark/actions/symbolic/mail-send-symbolic.svg share/icons/breeze-dark/actions/symbolic/map-symbolic.svg share/icons/breeze-dark/actions/symbolic/mark-location-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-eject-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-playback-pause-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-playback-start-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-playback-start-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/media-playback-start-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-playback-stop-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-record-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-seek-backward-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-seek-backward-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/media-seek-backward-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-seek-forward-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-seek-forward-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/media-seek-forward-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-skip-backward-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-skip-backward-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/media-skip-backward-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-skip-forward-rtl-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-skip-forward-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/media-skip-forward-symbolic.svg share/icons/breeze-dark/actions/symbolic/media-view-subtitles-symbolic.svg share/icons/breeze-dark/actions/symbolic/object-flip-horizontal-symbolic.svg share/icons/breeze-dark/actions/symbolic/object-flip-vertical-symbolic.svg share/icons/breeze-dark/actions/symbolic/object-rotate-left-symbolic.svg share/icons/breeze-dark/actions/symbolic/object-rotate-right-symbolic.svg share/icons/breeze-dark/actions/symbolic/object-select-symbolic.svg share/icons/breeze-dark/actions/symbolic/open-menu-symbolic.svg share/icons/breeze-dark/actions/symbolic/palette-symbolic.svg share/icons/breeze-dark/actions/symbolic/pan-down-symbolic.svg share/icons/breeze-dark/actions/symbolic/pan-end-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/pan-end-symbolic.svg share/icons/breeze-dark/actions/symbolic/pan-start-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/pan-start-symbolic.svg share/icons/breeze-dark/actions/symbolic/pan-up-symbolic.svg share/icons/breeze-dark/actions/symbolic/process-stop-symbolic.svg share/icons/breeze-dark/actions/symbolic/screen-rotate-auto-off-symbolic.svg share/icons/breeze-dark/actions/symbolic/screen-rotate-auto-on-symbolic.svg share/icons/breeze-dark/actions/symbolic/selection-end-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/selection-end-symbolic.svg share/icons/breeze-dark/actions/symbolic/selection-start-symbolic-rtl.svg share/icons/breeze-dark/actions/symbolic/selection-start-symbolic.svg share/icons/breeze-dark/actions/symbolic/send-to-symbolic.svg share/icons/breeze-dark/actions/symbolic/special-effects-symbolic.svg share/icons/breeze-dark/actions/symbolic/star-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/system-run-symbolic.svg share/icons/breeze-dark/actions/symbolic/system-search-symbolic.svg share/icons/breeze-dark/actions/symbolic/system-shutdown-symbolic.svg share/icons/breeze-dark/actions/symbolic/tab-new-symbolic.svg share/icons/breeze-dark/actions/symbolic/tag-symbolic.svg share/icons/breeze-dark/actions/symbolic/tools-check-spelling-symbolic.svg share/icons/breeze-dark/actions/symbolic/tools-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-app-grid-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-continuous-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-dual-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-fullscreen-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-grid-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-list-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-more-horizontal-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-more-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-presentation-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-private-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-refresh-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-restore-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-sort-ascending-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-sort-descending-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-tasks-all-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-tasks-today-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-tasks-unscheduled-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-tasks-week-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-zoom-fit-height-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-zoom-fit-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-zoom-fit-width-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-zoom-in-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-zoom-original-symbolic.svg share/icons/breeze-dark/actions/symbolic/view-zoom-out-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-close-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-keep-above-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-keep-below-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-maximize-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-minimize-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-pin-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-restore-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-shade-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-unpin-symbolic.svg share/icons/breeze-dark/actions/symbolic/window-unshade-symbolic.svg share/icons/breeze-dark/actions/symbolic/zoom-fit-best-symbolic.svg share/icons/breeze-dark/actions/symbolic/zoom-in-symbolic.svg share/icons/breeze-dark/actions/symbolic/zoom-original-symbolic.svg share/icons/breeze-dark/actions/symbolic/zoom-out-symbolic.svg share/icons/breeze-dark/animations/16/process-working.svg share/icons/breeze-dark/animations/16@2x share/icons/breeze-dark/animations/16@3x share/icons/breeze-dark/animations/22/process-working.svg share/icons/breeze-dark/animations/24@2x share/icons/breeze-dark/animations/24@3x share/icons/breeze-dark/applets/128/user-ada-lovelace.svg share/icons/breeze-dark/applets/128/user-alice-in-wonderland.svg share/icons/breeze-dark/applets/128/user-grace-hopper.svg share/icons/breeze-dark/applets/128/user-leonardo-da-vinci.svg share/icons/breeze-dark/applets/128/user-mahatma-gandhi.svg share/icons/breeze-dark/applets/128/user-man.svg share/icons/breeze-dark/applets/128/user-mowgli.svg share/icons/breeze-dark/applets/128/user-none.svg share/icons/breeze-dark/applets/16/car.svg share/icons/breeze-dark/applets/22/car.svg share/icons/breeze-dark/applets/22/hands-free.svg share/icons/breeze-dark/applets/22/handset.svg share/icons/breeze-dark/applets/22/headphone.svg share/icons/breeze-dark/applets/22/headset.svg share/icons/breeze-dark/applets/22/hifi.svg share/icons/breeze-dark/applets/22/internal.svg share/icons/breeze-dark/applets/22/microphone.svg share/icons/breeze-dark/applets/22/portable.svg share/icons/breeze-dark/applets/22/speaker.svg share/icons/breeze-dark/applets/22/tv.svg share/icons/breeze-dark/applets/22/user-identity.svg share/icons/breeze-dark/applets/22/webcam.svg share/icons/breeze-dark/applets/24/car.svg share/icons/breeze-dark/applets/24/hands-free.svg share/icons/breeze-dark/applets/24/handset.svg share/icons/breeze-dark/applets/24/headphone.svg share/icons/breeze-dark/applets/24/headset.svg share/icons/breeze-dark/applets/24/hifi.svg share/icons/breeze-dark/applets/24/internal.svg share/icons/breeze-dark/applets/24/microphone.svg share/icons/breeze-dark/applets/24/portable.svg share/icons/breeze-dark/applets/24/speaker.svg share/icons/breeze-dark/applets/24/tv.svg share/icons/breeze-dark/applets/24/user-identity.svg share/icons/breeze-dark/applets/24/webcam.svg share/icons/breeze-dark/applets/24@2x share/icons/breeze-dark/applets/24@3x share/icons/breeze-dark/applets/256/applets-template.svg share/icons/breeze-dark/applets/256/empty.svg share/icons/breeze-dark/applets/256/org.kde.ktpcontactlist.svg share/icons/breeze-dark/applets/256/org.kde.muonnotifier.svg share/icons/breeze-dark/applets/256/org.kde.plasma.activitybar.svg share/icons/breeze-dark/applets/256/org.kde.plasma.analogclock.svg share/icons/breeze-dark/applets/256/org.kde.plasma.battery.svg share/icons/breeze-dark/applets/256/org.kde.plasma.binaryclock.svg share/icons/breeze-dark/applets/256/org.kde.plasma.calculator.svg share/icons/breeze-dark/applets/256/org.kde.plasma.calendar.svg share/icons/breeze-dark/applets/256/org.kde.plasma.clipboard.svg share/icons/breeze-dark/applets/256/org.kde.plasma.colorpicker.svg share/icons/breeze-dark/applets/256/org.kde.plasma.comic.svg share/icons/breeze-dark/applets/256/org.kde.plasma.date.svg share/icons/breeze-dark/applets/256/org.kde.plasma.devicenotifier.svg share/icons/breeze-dark/applets/256/org.kde.plasma.digitalclock.svg share/icons/breeze-dark/applets/256/org.kde.plasma.diskquota.svg share/icons/breeze-dark/applets/256/org.kde.plasma.fifteenpuzzle.svg share/icons/breeze-dark/applets/256/org.kde.plasma.folder.svg share/icons/breeze-dark/applets/256/org.kde.plasma.frame.svg share/icons/breeze-dark/applets/256/org.kde.plasma.fuzzyclock.svg share/icons/breeze-dark/applets/256/org.kde.plasma.icontasks.svg share/icons/breeze-dark/applets/256/org.kde.plasma.kicker.svg share/icons/breeze-dark/applets/256/org.kde.plasma.kickerdash.svg share/icons/breeze-dark/applets/256/org.kde.plasma.kickoff.svg share/icons/breeze-dark/applets/256/org.kde.plasma.kickofflegacy.svg share/icons/breeze-dark/applets/256/org.kde.plasma.mediacontroller.svg share/icons/breeze-dark/applets/256/org.kde.plasma.networkmanagement.svg share/icons/breeze-dark/applets/256/org.kde.plasma.notes.svg share/icons/breeze-dark/applets/256/org.kde.plasma.pager.svg share/icons/breeze-dark/applets/256/org.kde.plasma.quicklaunch.svg share/icons/breeze-dark/applets/256/org.kde.plasma.showActivityManager.svg share/icons/breeze-dark/applets/256/org.kde.plasma.systemloadviewer.svg share/icons/breeze-dark/applets/256/org.kde.plasma.systemmonitor.cpu.svg share/icons/breeze-dark/applets/256/org.kde.plasma.systemmonitor.diskactivity.svg share/icons/breeze-dark/applets/256/org.kde.plasma.systemmonitor.diskusage.svg share/icons/breeze-dark/applets/256/org.kde.plasma.systemmonitor.memory.svg share/icons/breeze-dark/applets/256/org.kde.plasma.systemmonitor.net.svg share/icons/breeze-dark/applets/256/org.kde.plasma.systemtray.svg share/icons/breeze-dark/applets/256/org.kde.plasma.taskmanager.svg share/icons/breeze-dark/applets/256/org.kde.plasma.timer.svg share/icons/breeze-dark/applets/256/org.kde.plasma.userswitcher.svg share/icons/breeze-dark/applets/256/org.kde.plasma.vault.svg share/icons/breeze-dark/applets/256/org.kde.plasma.volume.svg share/icons/breeze-dark/applets/256/org.kde.plasma.windowlist.svg share/icons/breeze-dark/applets/48/weather-clear-night.svg share/icons/breeze-dark/applets/48/weather-clear-wind-night.svg share/icons/breeze-dark/applets/48/weather-clear-wind.svg share/icons/breeze-dark/applets/48/weather-clear.svg share/icons/breeze-dark/applets/48/weather-clouds-night.svg share/icons/breeze-dark/applets/48/weather-clouds-wind-night.svg share/icons/breeze-dark/applets/48/weather-clouds-wind.svg share/icons/breeze-dark/applets/48/weather-clouds.svg share/icons/breeze-dark/applets/48/weather-few-clouds-night.svg share/icons/breeze-dark/applets/48/weather-few-clouds-wind-night.svg share/icons/breeze-dark/applets/48/weather-few-clouds-wind.svg share/icons/breeze-dark/applets/48/weather-few-clouds.svg share/icons/breeze-dark/applets/48/weather-fog.svg share/icons/breeze-dark/applets/48/weather-freezing-rain.svg share/icons/breeze-dark/applets/48/weather-hail.svg share/icons/breeze-dark/applets/48/weather-many-clouds-wind.svg share/icons/breeze-dark/applets/48/weather-many-clouds.svg share/icons/breeze-dark/applets/48/weather-mist.svg share/icons/breeze-dark/applets/48/weather-none-available.svg share/icons/breeze-dark/applets/48/weather-overcast-wind.svg share/icons/breeze-dark/applets/48/weather-overcast.svg share/icons/breeze-dark/applets/48/weather-showers-day.svg share/icons/breeze-dark/applets/48/weather-showers-night.svg share/icons/breeze-dark/applets/48/weather-showers-scattered-day.svg share/icons/breeze-dark/applets/48/weather-showers-scattered-night.svg share/icons/breeze-dark/applets/48/weather-showers-scattered.svg share/icons/breeze-dark/applets/48/weather-showers.svg share/icons/breeze-dark/applets/48/weather-snow-rain.svg share/icons/breeze-dark/applets/48/weather-snow-scattered-day.svg share/icons/breeze-dark/applets/48/weather-snow-scattered-night.svg share/icons/breeze-dark/applets/48/weather-snow-scattered.svg share/icons/breeze-dark/applets/48/weather-snow.svg share/icons/breeze-dark/applets/48/weather-storm-day.svg share/icons/breeze-dark/applets/48/weather-storm-night.svg share/icons/breeze-dark/applets/48/weather-storm.svg share/icons/breeze-dark/applets/64/osd-duplicate.svg share/icons/breeze-dark/applets/64/osd-rotate-ccw.svg share/icons/breeze-dark/applets/64/osd-rotate-cw.svg share/icons/breeze-dark/applets/64/osd-rotate-flip.svg share/icons/breeze-dark/applets/64/osd-rotate-normal.svg share/icons/breeze-dark/applets/64/osd-sbs-left.svg share/icons/breeze-dark/applets/64/osd-sbs-sright.svg share/icons/breeze-dark/applets/64/osd-shutd-laptop.svg share/icons/breeze-dark/applets/64/osd-shutd-screen.svg share/icons/breeze-dark/applets/64/preferences-system-tabbox.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-blur.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-contrast.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-coverswitch.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-cubeslide.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-desktopgrid.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-dialog-parent.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-diminactive.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-dimscreen.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-fade.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-fadedesktop.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-fallapart.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-flipswitch.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-glide.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-highlightwindow.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-invert.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-kscreen.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-login.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-logout.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-magiclamp.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-magnifier.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-maximize.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-minimize.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-mouseclick.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-mousemark.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-presentwindows.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-resize.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-scale-in.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-screenedge.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-screenshot.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-showfps.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-showpaint.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-slide.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-slideback.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-slidingpopups.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-startupfeedback.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-thumbnailaside.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-trackmouse.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-translucency.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-windowaperture.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-wobblywindows.svg share/icons/breeze-dark/applets/64/preferences-system-windows-effect-zoom.svg share/icons/breeze-dark/apps/16/accessories-text-editor.svg share/icons/breeze-dark/apps/16/anydesk.svg share/icons/breeze-dark/apps/16/hotspot.svg share/icons/breeze-dark/apps/16/kdeconnect.svg share/icons/breeze-dark/apps/16/kmymoney.svg share/icons/breeze-dark/apps/16/konversation.svg share/icons/breeze-dark/apps/16/kwrite.svg share/icons/breeze-dark/apps/16/libreoffice-base.svg share/icons/breeze-dark/apps/16/libreoffice-calc.svg share/icons/breeze-dark/apps/16/libreoffice-draw.svg share/icons/breeze-dark/apps/16/libreoffice-impress.svg share/icons/breeze-dark/apps/16/libreoffice-main.svg share/icons/breeze-dark/apps/16/libreoffice-math.svg share/icons/breeze-dark/apps/16/libreoffice-startcenter.svg share/icons/breeze-dark/apps/16/libreoffice-writer.svg share/icons/breeze-dark/apps/16/plasmavault.svg share/icons/breeze-dark/apps/16/preferences-system-bluetooth.svg share/icons/breeze-dark/apps/16/preferences-system.svg share/icons/breeze-dark/apps/16/system-file-manager.svg share/icons/breeze-dark/apps/16/systemsettings.svg share/icons/breeze-dark/apps/16/umbrello.svg share/icons/breeze-dark/apps/16/utilities-terminal.svg share/icons/breeze-dark/apps/16/virt-manager.svg share/icons/breeze-dark/apps/16/vvave.svg share/icons/breeze-dark/apps/16@2x share/icons/breeze-dark/apps/16@3x share/icons/breeze-dark/apps/22/accessories-text-editor.svg share/icons/breeze-dark/apps/22/akregator.svg share/icons/breeze-dark/apps/22/anydesk.svg share/icons/breeze-dark/apps/22/elisa.svg share/icons/breeze-dark/apps/22/homerun.svg share/icons/breeze-dark/apps/22/hotspot.svg share/icons/breeze-dark/apps/22/kde.svg share/icons/breeze-dark/apps/22/kdeconnect.svg share/icons/breeze-dark/apps/22/korg-todo.svg share/icons/breeze-dark/apps/22/ktimetracker.svg share/icons/breeze-dark/apps/22/kwrite.svg share/icons/breeze-dark/apps/22/plasma-browser-integration.svg share/icons/breeze-dark/apps/22/plasma.svg share/icons/breeze-dark/apps/22/plasmavault.svg share/icons/breeze-dark/apps/22/preferences-other.svg share/icons/breeze-dark/apps/22/preferences-plugin.svg share/icons/breeze-dark/apps/22/system-file-manager.svg share/icons/breeze-dark/apps/22/umbrello.svg share/icons/breeze-dark/apps/22/utilities-terminal.svg share/icons/breeze-dark/apps/22/virt-manager.svg share/icons/breeze-dark/apps/22@2x share/icons/breeze-dark/apps/22@3x share/icons/breeze-dark/apps/24/akregator.svg share/icons/breeze-dark/apps/24/homerun.svg share/icons/breeze-dark/apps/24/kde.svg share/icons/breeze-dark/apps/24/kdeconnect.svg share/icons/breeze-dark/apps/24/korg-todo.svg share/icons/breeze-dark/apps/24/plasma-browser-integration.svg share/icons/breeze-dark/apps/24/plasma.svg share/icons/breeze-dark/apps/24/plasmavault.svg share/icons/breeze-dark/apps/24/preferences-other.svg share/icons/breeze-dark/apps/24/preferences-plugin.svg share/icons/breeze-dark/apps/24/virt-manager.svg share/icons/breeze-dark/apps/24@2x share/icons/breeze-dark/apps/24@3x share/icons/breeze-dark/apps/32/accessories-text-editor.svg share/icons/breeze-dark/apps/32/anydesk.svg share/icons/breeze-dark/apps/32/hotspot.svg share/icons/breeze-dark/apps/32/hwinfo.svg share/icons/breeze-dark/apps/32/ktimetracker.svg share/icons/breeze-dark/apps/32/kup.svg share/icons/breeze-dark/apps/32/kwrite.svg share/icons/breeze-dark/apps/32/plasmavault.svg share/icons/breeze-dark/apps/32/preferences-system.svg share/icons/breeze-dark/apps/32/system-file-manager.svg share/icons/breeze-dark/apps/32/system-help.svg share/icons/breeze-dark/apps/32/systemsettings.svg share/icons/breeze-dark/apps/32/umbrello.svg share/icons/breeze-dark/apps/32/utilities-log-viewer.svg share/icons/breeze-dark/apps/32/utilities-terminal.svg share/icons/breeze-dark/apps/32/yast-sw_single.svg share/icons/breeze-dark/apps/32/yast.svg share/icons/breeze-dark/apps/48/CMakeSetup.svg share/icons/breeze-dark/apps/48/QOwnNotes.svg share/icons/breeze-dark/apps/48/QtProject-designer.svg share/icons/breeze-dark/apps/48/VBox.svg share/icons/breeze-dark/apps/48/accessories-calculator.svg share/icons/breeze-dark/apps/48/accessories-character-map.svg share/icons/breeze-dark/apps/48/accessories-text-editor.svg share/icons/breeze-dark/apps/48/acroread.svg share/icons/breeze-dark/apps/48/akregator.svg share/icons/breeze-dark/apps/48/alienarena.svg share/icons/breeze-dark/apps/48/alligator.svg share/icons/breeze-dark/apps/48/amarok.svg share/icons/breeze-dark/apps/48/android-file-transfer.svg share/icons/breeze-dark/apps/48/android-studio.svg share/icons/breeze-dark/apps/48/anjuta.svg share/icons/breeze-dark/apps/48/anydesk.svg share/icons/breeze-dark/apps/48/apper.svg share/icons/breeze-dark/apps/48/application-x-clementine.svg share/icons/breeze-dark/apps/48/aptana.svg share/icons/breeze-dark/apps/48/ardour.svg share/icons/breeze-dark/apps/48/ark.svg share/icons/breeze-dark/apps/48/artikulate.svg share/icons/breeze-dark/apps/48/assistant.svg share/icons/breeze-dark/apps/48/atom.svg share/icons/breeze-dark/apps/48/audacity.svg share/icons/breeze-dark/apps/48/author.svg share/icons/breeze-dark/apps/48/babe.svg share/icons/breeze-dark/apps/48/baloo.svg share/icons/breeze-dark/apps/48/bitcoin128.svg share/icons/breeze-dark/apps/48/bittorrent-sync.svg share/icons/breeze-dark/apps/48/bleachbit.svg share/icons/breeze-dark/apps/48/blender.svg share/icons/breeze-dark/apps/48/blinken.svg share/icons/breeze-dark/apps/48/blogilo.svg share/icons/breeze-dark/apps/48/bluefish.svg share/icons/breeze-dark/apps/48/bluegriffon.svg share/icons/breeze-dark/apps/48/bomber.svg share/icons/breeze-dark/apps/48/bomi.svg share/icons/breeze-dark/apps/48/bovo.svg share/icons/breeze-dark/apps/48/brackets.svg share/icons/breeze-dark/apps/48/braindump.svg share/icons/breeze-dark/apps/48/breeze-settings.svg share/icons/breeze-dark/apps/48/btsync-gui.svg share/icons/breeze-dark/apps/48/buho.svg share/icons/breeze-dark/apps/48/calamares.svg share/icons/breeze-dark/apps/48/calibre-ebook-edit.svg share/icons/breeze-dark/apps/48/calibre-viewer.svg share/icons/breeze-dark/apps/48/calindori.svg share/icons/breeze-dark/apps/48/calligraauthor.svg share/icons/breeze-dark/apps/48/calligraflow.svg share/icons/breeze-dark/apps/48/calligrakarbon.svg share/icons/breeze-dark/apps/48/calligrakexi.svg share/icons/breeze-dark/apps/48/calligraplan.svg share/icons/breeze-dark/apps/48/calligraplanwork.svg share/icons/breeze-dark/apps/48/calligrasheets.svg share/icons/breeze-dark/apps/48/calligrastage.svg share/icons/breeze-dark/apps/48/calligrawords.svg share/icons/breeze-dark/apps/48/cantata.svg share/icons/breeze-dark/apps/48/cantor.svg share/icons/breeze-dark/apps/48/cervisia.svg share/icons/breeze-dark/apps/48/choqok.svg share/icons/breeze-dark/apps/48/claws-mail.svg share/icons/breeze-dark/apps/48/clementine.svg share/icons/breeze-dark/apps/48/cmake.svg share/icons/breeze-dark/apps/48/codeblocks.svg share/icons/breeze-dark/apps/48/com.github.ztefn.haguichi.svg share/icons/breeze-dark/apps/48/com.visualstudio.code.oss.svg share/icons/breeze-dark/apps/48/com.visualstudio.code.svg share/icons/breeze-dark/apps/48/converseen.svg share/icons/breeze-dark/apps/48/crow-translate.svg share/icons/breeze-dark/apps/48/cuttlefish.svg share/icons/breeze-dark/apps/48/darktable.svg share/icons/breeze-dark/apps/48/diaspora.svg share/icons/breeze-dark/apps/48/diffuse.svg share/icons/breeze-dark/apps/48/digikam.svg share/icons/breeze-dark/apps/48/dragonplayer.svg share/icons/breeze-dark/apps/48/elisa.svg share/icons/breeze-dark/apps/48/emacs.svg share/icons/breeze-dark/apps/48/falkon.svg share/icons/breeze-dark/apps/48/ffmulticonverter.svg share/icons/breeze-dark/apps/48/filelight.svg share/icons/breeze-dark/apps/48/filezilla.svg share/icons/breeze-dark/apps/48/fingerprint-gui.svg share/icons/breeze-dark/apps/48/firewall-config.svg share/icons/breeze-dark/apps/48/flow.svg share/icons/breeze-dark/apps/48/fluid.svg share/icons/breeze-dark/apps/48/fontforge.svg share/icons/breeze-dark/apps/48/freemind.svg share/icons/breeze-dark/apps/48/frostwire.svg share/icons/breeze-dark/apps/48/gcompris-qt.svg share/icons/breeze-dark/apps/48/gimp.svg share/icons/breeze-dark/apps/48/git-cola.svg share/icons/breeze-dark/apps/48/git-gui.svg share/icons/breeze-dark/apps/48/goodvibes.svg share/icons/breeze-dark/apps/48/gparted.svg share/icons/breeze-dark/apps/48/gpick.svg share/icons/breeze-dark/apps/48/gpodder.svg share/icons/breeze-dark/apps/48/granatier.svg share/icons/breeze-dark/apps/48/graphics-viewer-document.svg share/icons/breeze-dark/apps/48/grub-customizer.svg share/icons/breeze-dark/apps/48/gtkhash.svg share/icons/breeze-dark/apps/48/gwenview.svg share/icons/breeze-dark/apps/48/haguichi.svg share/icons/breeze-dark/apps/48/handbrake.svg share/icons/breeze-dark/apps/48/help-browser.svg share/icons/breeze-dark/apps/48/homebank.svg share/icons/breeze-dark/apps/48/homerun.svg share/icons/breeze-dark/apps/48/hotspot.svg share/icons/breeze-dark/apps/48/htop.svg share/icons/breeze-dark/apps/48/hwinfo.svg share/icons/breeze-dark/apps/48/im.vector.svg share/icons/breeze-dark/apps/48/imagewriter.svg share/icons/breeze-dark/apps/48/inkscape-logo.svg share/icons/breeze-dark/apps/48/inkscape.svg share/icons/breeze-dark/apps/48/internet-mail.svg share/icons/breeze-dark/apps/48/internet-telephony.svg share/icons/breeze-dark/apps/48/internet-web-browser.svg share/icons/breeze-dark/apps/48/io.gitlab.Goodvibes.svg share/icons/breeze-dark/apps/48/jdownloader.svg share/icons/breeze-dark/apps/48/joplin.svg share/icons/breeze-dark/apps/48/juk.svg share/icons/breeze-dark/apps/48/juliabackend.svg share/icons/breeze-dark/apps/48/k3b.svg share/icons/breeze-dark/apps/48/kaddressbook.svg share/icons/breeze-dark/apps/48/kaffeine.svg share/icons/breeze-dark/apps/48/kajongg.svg share/icons/breeze-dark/apps/48/kalarm.svg share/icons/breeze-dark/apps/48/kalgebra.svg share/icons/breeze-dark/apps/48/kalgebrabackend.svg share/icons/breeze-dark/apps/48/kalzium.svg share/icons/breeze-dark/apps/48/kamoso.svg share/icons/breeze-dark/apps/48/kanagram.svg share/icons/breeze-dark/apps/48/kapman.svg share/icons/breeze-dark/apps/48/kapptemplate.svg share/icons/breeze-dark/apps/48/karbon.svg share/icons/breeze-dark/apps/48/kate.svg share/icons/breeze-dark/apps/48/katomic.svg share/icons/breeze-dark/apps/48/kblackbox.svg share/icons/breeze-dark/apps/48/kblocks.svg share/icons/breeze-dark/apps/48/kblogger.svg share/icons/breeze-dark/apps/48/kbreakout.svg share/icons/breeze-dark/apps/48/kbruch.svg share/icons/breeze-dark/apps/48/kcachegrind.svg share/icons/breeze-dark/apps/48/kcalc.svg share/icons/breeze-dark/apps/48/kchart.svg share/icons/breeze-dark/apps/48/kcolorchooser.svg share/icons/breeze-dark/apps/48/kde-frameworks.svg share/icons/breeze-dark/apps/48/kde-im-log-viewer.svg share/icons/breeze-dark/apps/48/kde.svg share/icons/breeze-dark/apps/48/kdeapp.svg share/icons/breeze-dark/apps/48/kdenlive.svg share/icons/breeze-dark/apps/48/kdesvn.svg share/icons/breeze-dark/apps/48/kdevelop.svg share/icons/breeze-dark/apps/48/kdiamond.svg share/icons/breeze-dark/apps/48/kdiff3.svg share/icons/breeze-dark/apps/48/kdots.svg share/icons/breeze-dark/apps/48/keepass.svg share/icons/breeze-dark/apps/48/keepass2.svg share/icons/breeze-dark/apps/48/keepassx.svg share/icons/breeze-dark/apps/48/keepassx2.svg share/icons/breeze-dark/apps/48/kexi.svg share/icons/breeze-dark/apps/48/kfind.svg share/icons/breeze-dark/apps/48/kfloppy.svg share/icons/breeze-dark/apps/48/kfontview.svg share/icons/breeze-dark/apps/48/kfourinline.svg share/icons/breeze-dark/apps/48/kgeography.svg share/icons/breeze-dark/apps/48/kget.svg share/icons/breeze-dark/apps/48/khangman.svg share/icons/breeze-dark/apps/48/kig.svg share/icons/breeze-dark/apps/48/kile.svg share/icons/breeze-dark/apps/48/kimagemapeditor.svg share/icons/breeze-dark/apps/48/kipi-dngconverter.svg share/icons/breeze-dark/apps/48/kipi-expoblending.svg share/icons/breeze-dark/apps/48/kipi-panorama.svg share/icons/breeze-dark/apps/48/kirigami-gallery.svg share/icons/breeze-dark/apps/48/kiriki.svg share/icons/breeze-dark/apps/48/kirogi.svg share/icons/breeze-dark/apps/48/kiten.svg share/icons/breeze-dark/apps/48/kjumpingcube.svg share/icons/breeze-dark/apps/48/kleopatra.svg share/icons/breeze-dark/apps/48/klines.svg share/icons/breeze-dark/apps/48/klipper.svg share/icons/breeze-dark/apps/48/kmag.svg share/icons/breeze-dark/apps/48/kmahjongg.svg share/icons/breeze-dark/apps/48/kmail.svg share/icons/breeze-dark/apps/48/kmenuedit.svg share/icons/breeze-dark/apps/48/kmix.svg share/icons/breeze-dark/apps/48/kmousetool.svg share/icons/breeze-dark/apps/48/kmouth.svg share/icons/breeze-dark/apps/48/kmplayer.svg share/icons/breeze-dark/apps/48/kmplot.svg share/icons/breeze-dark/apps/48/kmymoney.svg share/icons/breeze-dark/apps/48/knetattach.svg share/icons/breeze-dark/apps/48/knights.svg share/icons/breeze-dark/apps/48/knotes.svg share/icons/breeze-dark/apps/48/kolf.svg share/icons/breeze-dark/apps/48/kolourpaint.svg share/icons/breeze-dark/apps/48/kompare.svg share/icons/breeze-dark/apps/48/konqueror.svg share/icons/breeze-dark/apps/48/kontact.svg share/icons/breeze-dark/apps/48/konversation.svg share/icons/breeze-dark/apps/48/kopete.svg share/icons/breeze-dark/apps/48/korg-todo.svg share/icons/breeze-dark/apps/48/korgac.svg share/icons/breeze-dark/apps/48/korganizer.svg share/icons/breeze-dark/apps/48/kpat.svg share/icons/breeze-dark/apps/48/kphotoalbum.svg share/icons/breeze-dark/apps/48/kplato.svg share/icons/breeze-dark/apps/48/kpresenter.svg share/icons/breeze-dark/apps/48/krdc.svg share/icons/breeze-dark/apps/48/krename.svg share/icons/breeze-dark/apps/48/krfb.svg share/icons/breeze-dark/apps/48/kronometer.svg share/icons/breeze-dark/apps/48/kruler.svg share/icons/breeze-dark/apps/48/krusader_root.svg share/icons/breeze-dark/apps/48/krusader_user.svg share/icons/breeze-dark/apps/48/kshisen.svg share/icons/breeze-dark/apps/48/ksirk.svg share/icons/breeze-dark/apps/48/ksnapshot.svg share/icons/breeze-dark/apps/48/kspread.svg share/icons/breeze-dark/apps/48/kstars.svg share/icons/breeze-dark/apps/48/ksysguardd.svg share/icons/breeze-dark/apps/48/kteatime.svg share/icons/breeze-dark/apps/48/ktimer.svg share/icons/breeze-dark/apps/48/ktimetracker.svg share/icons/breeze-dark/apps/48/ktip.svg share/icons/breeze-dark/apps/48/ktnef.svg share/icons/breeze-dark/apps/48/ktorrent.svg share/icons/breeze-dark/apps/48/ktouch.svg share/icons/breeze-dark/apps/48/ktrip.svg share/icons/breeze-dark/apps/48/kube-mail.svg share/icons/breeze-dark/apps/48/kuiviewer.svg share/icons/breeze-dark/apps/48/kup.svg share/icons/breeze-dark/apps/48/kuser.svg share/icons/breeze-dark/apps/48/kwalletmanager.svg share/icons/breeze-dark/apps/48/kwalletmanager2.svg share/icons/breeze-dark/apps/48/kwave.svg share/icons/breeze-dark/apps/48/kwikdisk.svg share/icons/breeze-dark/apps/48/kwin.svg share/icons/breeze-dark/apps/48/kword.svg share/icons/breeze-dark/apps/48/kwrite.svg share/icons/breeze-dark/apps/48/kxstitch.svg share/icons/breeze-dark/apps/48/labplot.svg share/icons/breeze-dark/apps/48/labplot2.svg share/icons/breeze-dark/apps/48/lastpass.svg share/icons/breeze-dark/apps/48/latte-dock.svg share/icons/breeze-dark/apps/48/leocad.svg share/icons/breeze-dark/apps/48/libreoffice-base.svg share/icons/breeze-dark/apps/48/libreoffice-calc.svg share/icons/breeze-dark/apps/48/libreoffice-draw.svg share/icons/breeze-dark/apps/48/libreoffice-impress.svg share/icons/breeze-dark/apps/48/libreoffice-main.svg share/icons/breeze-dark/apps/48/libreoffice-math.svg share/icons/breeze-dark/apps/48/libreoffice-startcenter.svg share/icons/breeze-dark/apps/48/libreoffice-writer.svg share/icons/breeze-dark/apps/48/linguist.svg share/icons/breeze-dark/apps/48/logisim.svg share/icons/breeze-dark/apps/48/lokalize.svg share/icons/breeze-dark/apps/48/luabackend.svg share/icons/breeze-dark/apps/48/mail-client.svg share/icons/breeze-dark/apps/48/massif-visualizer.svg share/icons/breeze-dark/apps/48/masterpdfeditor.svg share/icons/breeze-dark/apps/48/mathematica.svg share/icons/breeze-dark/apps/48/matlab.svg share/icons/breeze-dark/apps/48/maximabackend.svg share/icons/breeze-dark/apps/48/mendeleydesktop.svg share/icons/breeze-dark/apps/48/minitube.svg share/icons/breeze-dark/apps/48/minuet.svg share/icons/breeze-dark/apps/48/mixxx.svg share/icons/breeze-dark/apps/48/mpv.svg share/icons/breeze-dark/apps/48/multimedia-volume-control.svg share/icons/breeze-dark/apps/48/muon.svg share/icons/breeze-dark/apps/48/muondiscover.svg share/icons/breeze-dark/apps/48/network-manager.svg share/icons/breeze-dark/apps/48/nota.svg share/icons/breeze-dark/apps/48/ntfs-config.svg share/icons/breeze-dark/apps/48/nylas.svg share/icons/breeze-dark/apps/48/octave.svg share/icons/breeze-dark/apps/48/octavebackend.svg share/icons/breeze-dark/apps/48/octopi.svg share/icons/breeze-dark/apps/48/office-address-book.svg share/icons/breeze-dark/apps/48/office-calendar.svg share/icons/breeze-dark/apps/48/okteta.svg share/icons/breeze-dark/apps/48/okular.svg share/icons/breeze-dark/apps/48/openbravo-erp.svg share/icons/breeze-dark/apps/48/org.fedoraproject.AnacondaInstaller.svg share/icons/breeze-dark/apps/48/org.gajim.Gajim.svg share/icons/breeze-dark/apps/48/org.inkscape.Inkscape.svg share/icons/breeze-dark/apps/48/org.kde.Ikona.svg share/icons/breeze-dark/apps/48/org.kde.kongress.svg share/icons/breeze-dark/apps/48/org.kde.kontrast.svg share/icons/breeze-dark/apps/48/org.kde.neochat.svg share/icons/breeze-dark/apps/48/org.kde.skanlite.svg share/icons/breeze-dark/apps/48/org.telegram.desktop.svg share/icons/breeze-dark/apps/48/parley.svg share/icons/breeze-dark/apps/48/partitionmanager.svg share/icons/breeze-dark/apps/48/phonon-gstreamer.svg share/icons/breeze-dark/apps/48/photolayoutseditor.svg share/icons/breeze-dark/apps/48/picmi.svg share/icons/breeze-dark/apps/48/plan.svg share/icons/breeze-dark/apps/48/planetkde.svg share/icons/breeze-dark/apps/48/plank.svg share/icons/breeze-dark/apps/48/planner.svg share/icons/breeze-dark/apps/48/planwork.svg share/icons/breeze-dark/apps/48/plasma-browser-integration.svg share/icons/breeze-dark/apps/48/plasma-media-center.svg share/icons/breeze-dark/apps/48/plasma-mobile-phone.svg share/icons/breeze-dark/apps/48/plasma-nano.svg share/icons/breeze-dark/apps/48/plasmadiscover.svg share/icons/breeze-dark/apps/48/plasmavault.svg share/icons/breeze-dark/apps/48/preferences-desktop-font-installer.svg share/icons/breeze-dark/apps/48/preferences-system.svg share/icons/breeze-dark/apps/48/puremaps.svg share/icons/breeze-dark/apps/48/pythonbackend.svg share/icons/breeze-dark/apps/48/q4wine.svg share/icons/breeze-dark/apps/48/qalculate.svg share/icons/breeze-dark/apps/48/qbittorrent.svg share/icons/breeze-dark/apps/48/qdbusviewer.svg share/icons/breeze-dark/apps/48/qelectrotech.svg share/icons/breeze-dark/apps/48/qtcreator.svg share/icons/breeze-dark/apps/48/quassel.svg share/icons/breeze-dark/apps/48/quiterss.svg share/icons/breeze-dark/apps/48/qupzilla.svg share/icons/breeze-dark/apps/48/r.svg share/icons/breeze-dark/apps/48/rbackend.svg share/icons/breeze-dark/apps/48/rekonq.svg share/icons/breeze-dark/apps/48/ring-kde.svg share/icons/breeze-dark/apps/48/ring.svg share/icons/breeze-dark/apps/48/rocs.svg share/icons/breeze-dark/apps/48/rosegarden.svg share/icons/breeze-dark/apps/48/sage-notebook.svg share/icons/breeze-dark/apps/48/sagebackend.svg share/icons/breeze-dark/apps/48/scanner.svg share/icons/breeze-dark/apps/48/scribus.svg share/icons/breeze-dark/apps/48/sheets.svg share/icons/breeze-dark/apps/48/showfoto.svg share/icons/breeze-dark/apps/48/skanlite.svg share/icons/breeze-dark/apps/48/skanpage.svg share/icons/breeze-dark/apps/48/skrooge-black.svg share/icons/breeze-dark/apps/48/skrooge-initial.svg share/icons/breeze-dark/apps/48/skrooge.svg share/icons/breeze-dark/apps/48/smartgit.svg share/icons/breeze-dark/apps/48/smb4k.svg share/icons/breeze-dark/apps/48/smplayer.svg share/icons/breeze-dark/apps/48/smtube.svg share/icons/breeze-dark/apps/48/spectacle.svg share/icons/breeze-dark/apps/48/stage.svg share/icons/breeze-dark/apps/48/steam.svg share/icons/breeze-dark/apps/48/step.svg share/icons/breeze-dark/apps/48/sublime-merge.svg share/icons/breeze-dark/apps/48/sublime-text.svg share/icons/breeze-dark/apps/48/subtitlecomposer.svg share/icons/breeze-dark/apps/48/sweeper.svg share/icons/breeze-dark/apps/48/symboleditor.svg share/icons/breeze-dark/apps/48/synaptic.svg share/icons/breeze-dark/apps/48/syncthing.svg share/icons/breeze-dark/apps/48/synfig_icon.svg share/icons/breeze-dark/apps/48/system-file-manager.svg share/icons/breeze-dark/apps/48/system-help.svg share/icons/breeze-dark/apps/48/system-run.svg share/icons/breeze-dark/apps/48/system-software-install.svg share/icons/breeze-dark/apps/48/system-software-update.svg share/icons/breeze-dark/apps/48/systemsettings.svg share/icons/breeze-dark/apps/48/teamviewer.svg share/icons/breeze-dark/apps/48/telegram.svg share/icons/breeze-dark/apps/48/telepathy-kde.svg share/icons/breeze-dark/apps/48/texstudio.svg share/icons/breeze-dark/apps/48/truecrypt.svg share/icons/breeze-dark/apps/48/ubiquity-kde.svg share/icons/breeze-dark/apps/48/ubiquity.svg share/icons/breeze-dark/apps/48/umbrello.svg share/icons/breeze-dark/apps/48/unetbootin.svg share/icons/breeze-dark/apps/48/usb-creator-kde.svg share/icons/breeze-dark/apps/48/utilities-energy-monitor.svg share/icons/breeze-dark/apps/48/utilities-file-archiver.svg share/icons/breeze-dark/apps/48/utilities-log-viewer.svg share/icons/breeze-dark/apps/48/utilities-system-monitor.svg share/icons/breeze-dark/apps/48/utilities-terminal.svg share/icons/breeze-dark/apps/48/veracrypt.svg share/icons/breeze-dark/apps/48/viber.svg share/icons/breeze-dark/apps/48/virt-manager.svg share/icons/breeze-dark/apps/48/virtualbox.svg share/icons/breeze-dark/apps/48/vlc.svg share/icons/breeze-dark/apps/48/vokoscreen.svg share/icons/breeze-dark/apps/48/vvave.svg share/icons/breeze-dark/apps/48/wayland.svg share/icons/breeze-dark/apps/48/wine.svg share/icons/breeze-dark/apps/48/words.svg share/icons/breeze-dark/apps/48/xchat.svg share/icons/breeze-dark/apps/48/xine.svg share/icons/breeze-dark/apps/48/xmind.svg share/icons/breeze-dark/apps/48/xorg.svg share/icons/breeze-dark/apps/48/xterm-color.svg share/icons/breeze-dark/apps/48/xterm.svg share/icons/breeze-dark/apps/48/yakuake.svg share/icons/breeze-dark/apps/48/yandex-browser.svg share/icons/breeze-dark/apps/48/yast-control-center.svg share/icons/breeze-dark/apps/48/yast-installation.svg share/icons/breeze-dark/apps/48/yast-sw_single.svg share/icons/breeze-dark/apps/48/yast-upgrade.svg share/icons/breeze-dark/apps/48/yast.svg share/icons/breeze-dark/apps/48/zanshin.svg share/icons/breeze-dark/apps/64/accessories-text-editor.svg share/icons/breeze-dark/apps/64/diaspora.svg share/icons/breeze-dark/apps/64/hotspot.svg share/icons/breeze-dark/apps/64/kwrite.svg share/icons/breeze-dark/apps/64/plasma-browser-integration.svg share/icons/breeze-dark/apps/64/plasmavault.svg share/icons/breeze-dark/apps/64/sharedlib.svg share/icons/breeze-dark/apps/64/system-file-manager.svg share/icons/breeze-dark/apps/64/umbrello.svg share/icons/breeze-dark/apps/64/utilities-terminal.svg share/icons/breeze-dark/breeze-icons-dark.rcc share/icons/breeze-dark/categories/32/applications-all.svg share/icons/breeze-dark/categories/32/applications-development.svg share/icons/breeze-dark/categories/32/applications-education-language.svg share/icons/breeze-dark/categories/32/applications-education-mathematics.svg share/icons/breeze-dark/categories/32/applications-education-science.svg share/icons/breeze-dark/categories/32/applications-education.svg share/icons/breeze-dark/categories/32/applications-engineering.svg share/icons/breeze-dark/categories/32/applications-games.svg share/icons/breeze-dark/categories/32/applications-graphics.svg share/icons/breeze-dark/categories/32/applications-internet.svg share/icons/breeze-dark/categories/32/applications-multimedia.svg share/icons/breeze-dark/categories/32/applications-network.svg share/icons/breeze-dark/categories/32/applications-office.svg share/icons/breeze-dark/categories/32/applications-other.svg share/icons/breeze-dark/categories/32/applications-science.svg share/icons/breeze-dark/categories/32/applications-system.svg share/icons/breeze-dark/categories/32/applications-utilities.svg share/icons/breeze-dark/devices/16/audio-input-microphone.svg share/icons/breeze-dark/devices/16/audio-radio.svg share/icons/breeze-dark/devices/16/auth-sim.svg share/icons/breeze-dark/devices/16/battery-ups.svg share/icons/breeze-dark/devices/16/camera-photo.svg share/icons/breeze-dark/devices/16/camera-video.svg share/icons/breeze-dark/devices/16/computer-laptop.svg share/icons/breeze-dark/devices/16/computer.svg share/icons/breeze-dark/devices/16/cups.svg share/icons/breeze-dark/devices/16/cupsprinter.svg share/icons/breeze-dark/devices/16/drive-harddisk-encrypted.svg share/icons/breeze-dark/devices/16/drive-harddisk-root.svg share/icons/breeze-dark/devices/16/drive-harddisk.svg share/icons/breeze-dark/devices/16/drive-multidisk.svg share/icons/breeze-dark/devices/16/drive-multipartition.svg share/icons/breeze-dark/devices/16/drive-optical.svg share/icons/breeze-dark/devices/16/drive-partition.svg share/icons/breeze-dark/devices/16/drive-removable-media-usb-pendrive.svg share/icons/breeze-dark/devices/16/drive-removable-media-usb.svg share/icons/breeze-dark/devices/16/drive-removable-media.svg share/icons/breeze-dark/devices/16/input-dialpad.svg share/icons/breeze-dark/devices/16/input-gamepad.svg share/icons/breeze-dark/devices/16/input-keyboard-virtual.svg share/icons/breeze-dark/devices/16/input-keyboard.svg share/icons/breeze-dark/devices/16/input-mouse.svg share/icons/breeze-dark/devices/16/input-tablet.svg share/icons/breeze-dark/devices/16/input-touchpad.svg share/icons/breeze-dark/devices/16/input-tvremote.svg share/icons/breeze-dark/devices/16/keyboard-caps-disabled.svg share/icons/breeze-dark/devices/16/keyboard-caps-enabled.svg share/icons/breeze-dark/devices/16/keyboard-caps-locked.svg share/icons/breeze-dark/devices/16/keyboard-enter.svg share/icons/breeze-dark/devices/16/keyboard-spacebar.svg share/icons/breeze-dark/devices/16/media-flash-memory-stick.svg share/icons/breeze-dark/devices/16/media-flash-sd-mmc.svg share/icons/breeze-dark/devices/16/media-floppy.svg share/icons/breeze-dark/devices/16/media-optical-audio.svg share/icons/breeze-dark/devices/16/media-optical-data.svg share/icons/breeze-dark/devices/16/media-optical-mixed-cd.svg share/icons/breeze-dark/devices/16/media-optical-recordable.svg share/icons/breeze-dark/devices/16/media-optical-video.svg share/icons/breeze-dark/devices/16/media-optical.svg share/icons/breeze-dark/devices/16/media-write-cd.svg share/icons/breeze-dark/devices/16/media-write-dvd.svg share/icons/breeze-dark/devices/16/monitor.svg share/icons/breeze-dark/devices/16/multimedia-player-ipod-mini-blue.svg share/icons/breeze-dark/devices/16/multimedia-player.svg share/icons/breeze-dark/devices/16/network-bluetooth.svg share/icons/breeze-dark/devices/16/network-modem.svg share/icons/breeze-dark/devices/16/network-rj11-female.svg share/icons/breeze-dark/devices/16/network-rj45-female.svg share/icons/breeze-dark/devices/16/network-vpn.svg share/icons/breeze-dark/devices/16/network-wired-activated.svg share/icons/breeze-dark/devices/16/network-wired-unavailable.svg share/icons/breeze-dark/devices/16/network-wired.svg share/icons/breeze-dark/devices/16/network-wireless-connected-00.svg share/icons/breeze-dark/devices/16/network-wireless-connected-100.svg share/icons/breeze-dark/devices/16/network-wireless-connected-25.svg share/icons/breeze-dark/devices/16/network-wireless-connected-50.svg share/icons/breeze-dark/devices/16/network-wireless-connected-75.svg share/icons/breeze-dark/devices/16/network-wireless-disconnected.svg share/icons/breeze-dark/devices/16/network-wireless-hotspot.svg share/icons/breeze-dark/devices/16/network-wireless.svg share/icons/breeze-dark/devices/16/phone.svg share/icons/breeze-dark/devices/16/printer.svg share/icons/breeze-dark/devices/16/radio.svg share/icons/breeze-dark/devices/16/smartphone.svg share/icons/breeze-dark/devices/16/tablet.svg share/icons/breeze-dark/devices/16/uav-quadcopter.svg share/icons/breeze-dark/devices/16/uav.svg share/icons/breeze-dark/devices/16@2x share/icons/breeze-dark/devices/16@3x share/icons/breeze-dark/devices/22/audio-card.svg share/icons/breeze-dark/devices/22/audio-headphones.svg share/icons/breeze-dark/devices/22/audio-headset.svg share/icons/breeze-dark/devices/22/audio-input-microphone.svg share/icons/breeze-dark/devices/22/audio-radio.svg share/icons/breeze-dark/devices/22/auth-sim.svg share/icons/breeze-dark/devices/22/battery-ups.svg share/icons/breeze-dark/devices/22/camera-photo.svg share/icons/breeze-dark/devices/22/camera-video.svg share/icons/breeze-dark/devices/22/camera-web.svg share/icons/breeze-dark/devices/22/computer-laptop.svg share/icons/breeze-dark/devices/22/computer.svg share/icons/breeze-dark/devices/22/cups.svg share/icons/breeze-dark/devices/22/cupsprinter.svg share/icons/breeze-dark/devices/22/drive-harddisk-encrypted.svg share/icons/breeze-dark/devices/22/drive-harddisk-root.svg share/icons/breeze-dark/devices/22/drive-harddisk.svg share/icons/breeze-dark/devices/22/drive-multidisk.svg share/icons/breeze-dark/devices/22/drive-multipartition.svg share/icons/breeze-dark/devices/22/drive-optical.svg share/icons/breeze-dark/devices/22/drive-partition.svg share/icons/breeze-dark/devices/22/drive-removable-media-usb-pendrive.svg share/icons/breeze-dark/devices/22/drive-removable-media-usb.svg share/icons/breeze-dark/devices/22/drive-removable-media.svg share/icons/breeze-dark/devices/22/input-dialpad.svg share/icons/breeze-dark/devices/22/input-gamepad.svg share/icons/breeze-dark/devices/22/input-keyboard-virtual.svg share/icons/breeze-dark/devices/22/input-keyboard.svg share/icons/breeze-dark/devices/22/input-mouse.svg share/icons/breeze-dark/devices/22/input-tablet.svg share/icons/breeze-dark/devices/22/input-touchpad.svg share/icons/breeze-dark/devices/22/input-tvremote.svg share/icons/breeze-dark/devices/22/keyboard-caps-disabled.svg share/icons/breeze-dark/devices/22/keyboard-caps-enabled.svg share/icons/breeze-dark/devices/22/keyboard-caps-locked.svg share/icons/breeze-dark/devices/22/keyboard-enter.svg share/icons/breeze-dark/devices/22/keyboard-spacebar.svg share/icons/breeze-dark/devices/22/media-flash-memory-stick.svg share/icons/breeze-dark/devices/22/media-flash-sd-mmc.svg share/icons/breeze-dark/devices/22/media-floppy.svg share/icons/breeze-dark/devices/22/media-optical-audio.svg share/icons/breeze-dark/devices/22/media-optical-data.svg share/icons/breeze-dark/devices/22/media-optical-mixed-cd.svg share/icons/breeze-dark/devices/22/media-optical-recordable.svg share/icons/breeze-dark/devices/22/media-optical-video.svg share/icons/breeze-dark/devices/22/media-optical.svg share/icons/breeze-dark/devices/22/media-write-cd.svg share/icons/breeze-dark/devices/22/media-write-dvd.svg share/icons/breeze-dark/devices/22/monitor.svg share/icons/breeze-dark/devices/22/multimedia-player-ipod-mini-blue.svg share/icons/breeze-dark/devices/22/network-bluetooth.svg share/icons/breeze-dark/devices/22/network-modem.svg share/icons/breeze-dark/devices/22/network-rj11-female.svg share/icons/breeze-dark/devices/22/network-rj45-female.svg share/icons/breeze-dark/devices/22/network-vpn.svg share/icons/breeze-dark/devices/22/network-wired.svg share/icons/breeze-dark/devices/22/network-wireless-hotspot.svg share/icons/breeze-dark/devices/22/network-wireless.svg share/icons/breeze-dark/devices/22/phone.svg share/icons/breeze-dark/devices/22/printer.svg share/icons/breeze-dark/devices/22/radio.svg share/icons/breeze-dark/devices/22/smartphone.svg share/icons/breeze-dark/devices/22/tablet.svg share/icons/breeze-dark/devices/22/uav-quadcopter.svg share/icons/breeze-dark/devices/22/uav.svg share/icons/breeze-dark/devices/22/video-television.svg share/icons/breeze-dark/devices/22@2x share/icons/breeze-dark/devices/22@3x share/icons/breeze-dark/devices/24/audio-card.svg share/icons/breeze-dark/devices/24/audio-headphones.svg share/icons/breeze-dark/devices/24/audio-headset.svg share/icons/breeze-dark/devices/24/audio-input-microphone.svg share/icons/breeze-dark/devices/24/audio-radio.svg share/icons/breeze-dark/devices/24/auth-sim.svg share/icons/breeze-dark/devices/24/battery-ups.svg share/icons/breeze-dark/devices/24/camera-photo.svg share/icons/breeze-dark/devices/24/camera-video.svg share/icons/breeze-dark/devices/24/camera-web.svg share/icons/breeze-dark/devices/24/computer-laptop.svg share/icons/breeze-dark/devices/24/computer.svg share/icons/breeze-dark/devices/24/cups.svg share/icons/breeze-dark/devices/24/cupsprinter.svg share/icons/breeze-dark/devices/24/drive-harddisk-encrypted.svg share/icons/breeze-dark/devices/24/drive-harddisk-root.svg share/icons/breeze-dark/devices/24/drive-harddisk.svg share/icons/breeze-dark/devices/24/drive-multidisk.svg share/icons/breeze-dark/devices/24/drive-multipartition.svg share/icons/breeze-dark/devices/24/drive-optical.svg share/icons/breeze-dark/devices/24/drive-partition.svg share/icons/breeze-dark/devices/24/drive-removable-media-usb-pendrive.svg share/icons/breeze-dark/devices/24/drive-removable-media-usb.svg share/icons/breeze-dark/devices/24/drive-removable-media.svg share/icons/breeze-dark/devices/24/input-dialpad.svg share/icons/breeze-dark/devices/24/input-gamepad.svg share/icons/breeze-dark/devices/24/input-keyboard-virtual.svg share/icons/breeze-dark/devices/24/input-keyboard.svg share/icons/breeze-dark/devices/24/input-mouse.svg share/icons/breeze-dark/devices/24/input-tablet.svg share/icons/breeze-dark/devices/24/input-touchpad.svg share/icons/breeze-dark/devices/24/input-tvremote.svg share/icons/breeze-dark/devices/24/keyboard-caps-disabled.svg share/icons/breeze-dark/devices/24/keyboard-caps-enabled.svg share/icons/breeze-dark/devices/24/keyboard-caps-locked.svg share/icons/breeze-dark/devices/24/keyboard-enter.svg share/icons/breeze-dark/devices/24/keyboard-spacebar.svg share/icons/breeze-dark/devices/24/media-flash-memory-stick.svg share/icons/breeze-dark/devices/24/media-flash-sd-mmc.svg share/icons/breeze-dark/devices/24/media-floppy.svg share/icons/breeze-dark/devices/24/media-optical-audio.svg share/icons/breeze-dark/devices/24/media-optical-data.svg share/icons/breeze-dark/devices/24/media-optical-mixed-cd.svg share/icons/breeze-dark/devices/24/media-optical-video.svg share/icons/breeze-dark/devices/24/media-optical.svg share/icons/breeze-dark/devices/24/media-write-cd.svg share/icons/breeze-dark/devices/24/media-write-dvd.svg share/icons/breeze-dark/devices/24/monitor.svg share/icons/breeze-dark/devices/24/multimedia-player-ipod-mini-blue.svg share/icons/breeze-dark/devices/24/network-bluetooth.svg share/icons/breeze-dark/devices/24/network-modem.svg share/icons/breeze-dark/devices/24/network-rj11-female.svg share/icons/breeze-dark/devices/24/network-rj45-female.svg share/icons/breeze-dark/devices/24/network-vpn.svg share/icons/breeze-dark/devices/24/network-wired.svg share/icons/breeze-dark/devices/24/network-wireless-hotspot.svg share/icons/breeze-dark/devices/24/network-wireless.svg share/icons/breeze-dark/devices/24/phone.svg share/icons/breeze-dark/devices/24/printer.svg share/icons/breeze-dark/devices/24/radio.svg share/icons/breeze-dark/devices/24/smartphone.svg share/icons/breeze-dark/devices/24/tablet.svg share/icons/breeze-dark/devices/24/uav-quadcopter.svg share/icons/breeze-dark/devices/24/uav.svg share/icons/breeze-dark/devices/24/video-television.svg share/icons/breeze-dark/devices/24@2x share/icons/breeze-dark/devices/24@3x share/icons/breeze-dark/devices/64/audio-card.svg share/icons/breeze-dark/devices/64/audio-headphones.svg +share/icons/breeze-dark/devices/64/audio-headset.svg share/icons/breeze-dark/devices/64/auth-sim.svg share/icons/breeze-dark/devices/64/battery.svg share/icons/breeze-dark/devices/64/camera-photo.svg share/icons/breeze-dark/devices/64/camera-video.svg share/icons/breeze-dark/devices/64/camera-web.svg share/icons/breeze-dark/devices/64/computer-laptop.svg share/icons/breeze-dark/devices/64/computer.svg share/icons/breeze-dark/devices/64/cpu.svg share/icons/breeze-dark/devices/64/cups.svg share/icons/breeze-dark/devices/64/cupsprinter.svg share/icons/breeze-dark/devices/64/drive-harddisk-encrypted.svg share/icons/breeze-dark/devices/64/drive-harddisk-root.svg share/icons/breeze-dark/devices/64/drive-harddisk.svg share/icons/breeze-dark/devices/64/drive-multidisk.svg share/icons/breeze-dark/devices/64/drive-multipartition.svg share/icons/breeze-dark/devices/64/drive-optical.svg share/icons/breeze-dark/devices/64/drive-partition.svg share/icons/breeze-dark/devices/64/drive-removable-media-usb-pendrive.svg share/icons/breeze-dark/devices/64/drive-removable-media-usb.svg share/icons/breeze-dark/devices/64/drive-removable-media.svg share/icons/breeze-dark/devices/64/input-gamepad.svg share/icons/breeze-dark/devices/64/input-gaming.svg share/icons/breeze-dark/devices/64/input-keyboard.svg share/icons/breeze-dark/devices/64/input-mouse.svg share/icons/breeze-dark/devices/64/input-tablet.svg share/icons/breeze-dark/devices/64/input-touchpad.svg share/icons/breeze-dark/devices/64/input-tvremote.svg share/icons/breeze-dark/devices/64/media-flash-memory-stick.svg share/icons/breeze-dark/devices/64/media-flash-sd-mmc.svg share/icons/breeze-dark/devices/64/media-flash-smart-media.svg share/icons/breeze-dark/devices/64/media-flash.svg share/icons/breeze-dark/devices/64/media-optical-audio.svg share/icons/breeze-dark/devices/64/media-optical-blu-ray.svg share/icons/breeze-dark/devices/64/media-optical-data.svg share/icons/breeze-dark/devices/64/media-optical-dvd.svg share/icons/breeze-dark/devices/64/media-optical-recordable.svg share/icons/breeze-dark/devices/64/media-optical-video.svg share/icons/breeze-dark/devices/64/media-optical.svg share/icons/breeze-dark/devices/64/media-write-cd.svg share/icons/breeze-dark/devices/64/media-write-dvd.svg share/icons/breeze-dark/devices/64/monitor.svg share/icons/breeze-dark/devices/64/multimedia-player.svg share/icons/breeze-dark/devices/64/network-card.svg share/icons/breeze-dark/devices/64/network-rj11-female.svg share/icons/breeze-dark/devices/64/network-rj45-female.svg share/icons/breeze-dark/devices/64/phone.svg share/icons/breeze-dark/devices/64/printer.svg share/icons/breeze-dark/devices/64/scanner.svg share/icons/breeze-dark/devices/64/smartphone.svg share/icons/breeze-dark/devices/64/video-display.svg share/icons/breeze-dark/devices/64/video-television.svg share/icons/breeze-dark/devices/symbolic/audio-input-microphone-symbolic.svg share/icons/breeze-dark/devices/symbolic/audio-radio-symbolic.svg share/icons/breeze-dark/devices/symbolic/audio-speakers-symbolic.svg share/icons/breeze-dark/devices/symbolic/auth-sim-symbolic.svg share/icons/breeze-dark/devices/symbolic/camera-photo-symbolic.svg share/icons/breeze-dark/devices/symbolic/camera-video-symbolic.svg share/icons/breeze-dark/devices/symbolic/camera-web-symbolic.svg share/icons/breeze-dark/devices/symbolic/computer-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-harddisk-encrypted-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-harddisk-ieee1394-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-harddisk-root-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-harddisk-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-harddisk-system-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-harddisk-usb-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-multidisk-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-multipartition-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-partition-symbolic.svg share/icons/breeze-dark/devices/symbolic/drive-removable-media-symbolic.svg share/icons/breeze-dark/devices/symbolic/input-dialpad-symbolic.svg share/icons/breeze-dark/devices/symbolic/input-gamepad-symbolic.svg share/icons/breeze-dark/devices/symbolic/input-keyboard-symbolic.svg share/icons/breeze-dark/devices/symbolic/input-keyboard-virtual-symbolic.svg share/icons/breeze-dark/devices/symbolic/input-mouse-symbolic.svg share/icons/breeze-dark/devices/symbolic/input-tablet-symbolic.svg share/icons/breeze-dark/devices/symbolic/input-touchpad-symbolic.svg share/icons/breeze-dark/devices/symbolic/media-flash-symbolic.svg share/icons/breeze-dark/devices/symbolic/media-floppy-symbolic.svg share/icons/breeze-dark/devices/symbolic/media-optical-bd-symbolic.svg share/icons/breeze-dark/devices/symbolic/media-optical-cd-audio-symbolic.svg share/icons/breeze-dark/devices/symbolic/media-optical-dvd-symbolic.svg share/icons/breeze-dark/devices/symbolic/media-optical-symbolic.svg share/icons/breeze-dark/devices/symbolic/media-removable-symbolic.svg share/icons/breeze-dark/devices/symbolic/multimedia-player-apple-ipod-touch-symbolic.svg share/icons/breeze-dark/devices/symbolic/multimedia-player-symbolic.svg share/icons/breeze-dark/devices/symbolic/network-wired-symbolic.svg share/icons/breeze-dark/devices/symbolic/network-wireless-symbolic.svg share/icons/breeze-dark/devices/symbolic/phone-apple-iphone-symbolic.svg share/icons/breeze-dark/devices/symbolic/phone-symbolic.svg share/icons/breeze-dark/devices/symbolic/printer-network-symbolic.svg share/icons/breeze-dark/devices/symbolic/printer-symbolic.svg share/icons/breeze-dark/emblems/16/checkmark.svg share/icons/breeze-dark/emblems/16/emblem-added.svg share/icons/breeze-dark/emblems/16/emblem-checked.svg share/icons/breeze-dark/emblems/16/emblem-encrypted-locked.svg share/icons/breeze-dark/emblems/16/emblem-encrypted-unlocked.svg share/icons/breeze-dark/emblems/16/emblem-error.svg share/icons/breeze-dark/emblems/16/emblem-favorite.svg share/icons/breeze-dark/emblems/16/emblem-important.svg share/icons/breeze-dark/emblems/16/emblem-information.svg share/icons/breeze-dark/emblems/16/emblem-locked.svg share/icons/breeze-dark/emblems/16/emblem-mounted.svg share/icons/breeze-dark/emblems/16/emblem-pause.svg share/icons/breeze-dark/emblems/16/emblem-question.svg share/icons/breeze-dark/emblems/16/emblem-readonly.svg share/icons/breeze-dark/emblems/16/emblem-remove.svg share/icons/breeze-dark/emblems/16/emblem-shared.svg share/icons/breeze-dark/emblems/16/emblem-success.svg share/icons/breeze-dark/emblems/16/emblem-symbolic-link.svg share/icons/breeze-dark/emblems/16/emblem-unavailable.svg share/icons/breeze-dark/emblems/16/emblem-unlocked.svg share/icons/breeze-dark/emblems/16/emblem-unmounted.svg share/icons/breeze-dark/emblems/16/emblem-warning.svg share/icons/breeze-dark/emblems/16/installed.svg share/icons/breeze-dark/emblems/16/newer.svg share/icons/breeze-dark/emblems/16/noninstalled.svg share/icons/breeze-dark/emblems/16/outdated.svg share/icons/breeze-dark/emblems/16/package-available-locked.svg share/icons/breeze-dark/emblems/16/package-available.svg share/icons/breeze-dark/emblems/16/package-broken.svg share/icons/breeze-dark/emblems/16/package-downgrade.svg share/icons/breeze-dark/emblems/16/package-install-auto.svg share/icons/breeze-dark/emblems/16/package-install.svg share/icons/breeze-dark/emblems/16/package-installed-locked.svg share/icons/breeze-dark/emblems/16/package-installed-outdated.svg share/icons/breeze-dark/emblems/16/package-installed-updated.svg share/icons/breeze-dark/emblems/16/package-new.svg share/icons/breeze-dark/emblems/16/package-purge.svg share/icons/breeze-dark/emblems/16/package-reinstall.svg share/icons/breeze-dark/emblems/16/package-remove-auto.svg share/icons/breeze-dark/emblems/16/package-remove.svg share/icons/breeze-dark/emblems/16/package-upgrade-auto.svg share/icons/breeze-dark/emblems/16/package-upgrade.svg share/icons/breeze-dark/emblems/16/rating-half-rtl.svg share/icons/breeze-dark/emblems/16/rating-half.svg share/icons/breeze-dark/emblems/16/rating-unrated.svg share/icons/breeze-dark/emblems/16/rating.svg share/icons/breeze-dark/emblems/16/unrequired.svg share/icons/breeze-dark/emblems/16/vcs-added.svg share/icons/breeze-dark/emblems/16/vcs-conflicting.svg share/icons/breeze-dark/emblems/16/vcs-locally-modified-unstaged.svg share/icons/breeze-dark/emblems/16/vcs-locally-modified.svg share/icons/breeze-dark/emblems/16/vcs-normal.svg share/icons/breeze-dark/emblems/16/vcs-removed.svg share/icons/breeze-dark/emblems/16/vcs-update-required.svg share/icons/breeze-dark/emblems/16@2x share/icons/breeze-dark/emblems/16@3x share/icons/breeze-dark/emblems/22/checkmark.svg share/icons/breeze-dark/emblems/22/emblem-added.svg share/icons/breeze-dark/emblems/22/emblem-checked.svg share/icons/breeze-dark/emblems/22/emblem-encrypted-locked.svg share/icons/breeze-dark/emblems/22/emblem-encrypted-unlocked.svg share/icons/breeze-dark/emblems/22/emblem-error.svg share/icons/breeze-dark/emblems/22/emblem-favorite.svg share/icons/breeze-dark/emblems/22/emblem-important.svg share/icons/breeze-dark/emblems/22/emblem-information.svg share/icons/breeze-dark/emblems/22/emblem-locked.svg share/icons/breeze-dark/emblems/22/emblem-mounted.svg share/icons/breeze-dark/emblems/22/emblem-pause.svg share/icons/breeze-dark/emblems/22/emblem-question.svg share/icons/breeze-dark/emblems/22/emblem-readonly.svg share/icons/breeze-dark/emblems/22/emblem-remove.svg share/icons/breeze-dark/emblems/22/emblem-shared.svg share/icons/breeze-dark/emblems/22/emblem-success.svg share/icons/breeze-dark/emblems/22/emblem-symbolic-link.svg share/icons/breeze-dark/emblems/22/emblem-unavailable.svg share/icons/breeze-dark/emblems/22/emblem-unlocked.svg share/icons/breeze-dark/emblems/22/emblem-unmounted.svg share/icons/breeze-dark/emblems/22/emblem-warning.svg share/icons/breeze-dark/emblems/22/rating-half-rtl.svg share/icons/breeze-dark/emblems/22/rating-half.svg share/icons/breeze-dark/emblems/22/rating-unrated.svg share/icons/breeze-dark/emblems/22/rating.svg share/icons/breeze-dark/emblems/22/vcs-added.svg share/icons/breeze-dark/emblems/22/vcs-conflicting.svg share/icons/breeze-dark/emblems/22/vcs-locally-modified-unstaged.svg share/icons/breeze-dark/emblems/22/vcs-locally-modified.svg share/icons/breeze-dark/emblems/22/vcs-normal.svg share/icons/breeze-dark/emblems/22/vcs-removed.svg share/icons/breeze-dark/emblems/22/vcs-update-required.svg share/icons/breeze-dark/emblems/22@2x share/icons/breeze-dark/emblems/22@3x share/icons/breeze-dark/emblems/24/checkmark.svg share/icons/breeze-dark/emblems/24/emblem-added.svg share/icons/breeze-dark/emblems/24/emblem-checked.svg share/icons/breeze-dark/emblems/24/emblem-encrypted-locked.svg share/icons/breeze-dark/emblems/24/emblem-encrypted-unlocked.svg share/icons/breeze-dark/emblems/24/emblem-error.svg share/icons/breeze-dark/emblems/24/emblem-favorite.svg share/icons/breeze-dark/emblems/24/emblem-important.svg share/icons/breeze-dark/emblems/24/emblem-information.svg share/icons/breeze-dark/emblems/24/emblem-locked.svg share/icons/breeze-dark/emblems/24/emblem-mounted.svg share/icons/breeze-dark/emblems/24/emblem-pause.svg share/icons/breeze-dark/emblems/24/emblem-question.svg share/icons/breeze-dark/emblems/24/emblem-readonly.svg share/icons/breeze-dark/emblems/24/emblem-remove.svg share/icons/breeze-dark/emblems/24/emblem-shared.svg share/icons/breeze-dark/emblems/24/emblem-success.svg share/icons/breeze-dark/emblems/24/emblem-symbolic-link.svg share/icons/breeze-dark/emblems/24/emblem-unavailable.svg share/icons/breeze-dark/emblems/24/emblem-unlocked.svg share/icons/breeze-dark/emblems/24/emblem-unmounted.svg share/icons/breeze-dark/emblems/24/emblem-warning.svg share/icons/breeze-dark/emblems/24/rating-half-rtl.svg share/icons/breeze-dark/emblems/24/rating-half.svg share/icons/breeze-dark/emblems/24/rating-unrated.svg share/icons/breeze-dark/emblems/24/rating.svg share/icons/breeze-dark/emblems/24/vcs-added.svg share/icons/breeze-dark/emblems/24/vcs-conflicting.svg share/icons/breeze-dark/emblems/24/vcs-locally-modified-unstaged.svg share/icons/breeze-dark/emblems/24/vcs-locally-modified.svg share/icons/breeze-dark/emblems/24/vcs-normal.svg share/icons/breeze-dark/emblems/24/vcs-removed.svg share/icons/breeze-dark/emblems/24/vcs-update-required.svg share/icons/breeze-dark/emblems/24@2x share/icons/breeze-dark/emblems/24@3x share/icons/breeze-dark/emblems/8/checkmark.svg share/icons/breeze-dark/emblems/8/emblem-added.svg share/icons/breeze-dark/emblems/8/emblem-checked.svg share/icons/breeze-dark/emblems/8/emblem-encrypted-locked.svg share/icons/breeze-dark/emblems/8/emblem-encrypted-unlocked.svg share/icons/breeze-dark/emblems/8/emblem-error.svg share/icons/breeze-dark/emblems/8/emblem-favorite.svg share/icons/breeze-dark/emblems/8/emblem-important.svg share/icons/breeze-dark/emblems/8/emblem-information.svg share/icons/breeze-dark/emblems/8/emblem-locked.svg share/icons/breeze-dark/emblems/8/emblem-mounted.svg share/icons/breeze-dark/emblems/8/emblem-pause.svg share/icons/breeze-dark/emblems/8/emblem-question.svg share/icons/breeze-dark/emblems/8/emblem-readonly.svg share/icons/breeze-dark/emblems/8/emblem-remove.svg share/icons/breeze-dark/emblems/8/emblem-shared.svg share/icons/breeze-dark/emblems/8/emblem-success.svg share/icons/breeze-dark/emblems/8/emblem-symbolic-link.svg share/icons/breeze-dark/emblems/8/emblem-unavailable.svg share/icons/breeze-dark/emblems/8/emblem-unlocked.svg share/icons/breeze-dark/emblems/8/emblem-unmounted.svg share/icons/breeze-dark/emblems/8/emblem-warning.svg share/icons/breeze-dark/emblems/8/rating-unrated.svg share/icons/breeze-dark/emblems/8/rating.svg share/icons/breeze-dark/emblems/8/vcs-added.svg share/icons/breeze-dark/emblems/8/vcs-conflicting.svg share/icons/breeze-dark/emblems/8/vcs-locally-modified-unstaged.svg share/icons/breeze-dark/emblems/8/vcs-locally-modified.svg share/icons/breeze-dark/emblems/8/vcs-normal.svg share/icons/breeze-dark/emblems/8/vcs-removed.svg share/icons/breeze-dark/emblems/8/vcs-update-required.svg share/icons/breeze-dark/emblems/symbolic/emblem-default-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-documents-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-favorite-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-important-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-music-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-ok-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-photos-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-shared-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-synchronizing-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-system-symbolic.svg share/icons/breeze-dark/emblems/symbolic/emblem-videos-symbolic.svg share/icons/breeze-dark/emotes/22/drink-beer.svg share/icons/breeze-dark/emotes/22/drink-martini.svg share/icons/breeze-dark/emotes/22/face-angel.svg share/icons/breeze-dark/emotes/22/face-angry.svg share/icons/breeze-dark/emotes/22/face-clown.svg share/icons/breeze-dark/emotes/22/face-confused.svg share/icons/breeze-dark/emotes/22/face-cool.svg share/icons/breeze-dark/emotes/22/face-crying.svg share/icons/breeze-dark/emotes/22/face-devilish.svg share/icons/breeze-dark/emotes/22/face-embarrassed.svg share/icons/breeze-dark/emotes/22/face-glasses.svg share/icons/breeze-dark/emotes/22/face-hug-left.svg share/icons/breeze-dark/emotes/22/face-hug-right.svg share/icons/breeze-dark/emotes/22/face-in-love.svg share/icons/breeze-dark/emotes/22/face-kiss.svg share/icons/breeze-dark/emotes/22/face-laughing.svg share/icons/breeze-dark/emotes/22/face-ninja.svg share/icons/breeze-dark/emotes/22/face-pirate.svg share/icons/breeze-dark/emotes/22/face-plain.svg share/icons/breeze-dark/emotes/22/face-quiet.svg share/icons/breeze-dark/emotes/22/face-raspberry.svg share/icons/breeze-dark/emotes/22/face-sad.svg share/icons/breeze-dark/emotes/22/face-sick.svg share/icons/breeze-dark/emotes/22/face-sleeping.svg share/icons/breeze-dark/emotes/22/face-smile-big.svg share/icons/breeze-dark/emotes/22/face-smile-grin.svg share/icons/breeze-dark/emotes/22/face-smile.svg share/icons/breeze-dark/emotes/22/face-smirk.svg share/icons/breeze-dark/emotes/22/face-surprise.svg share/icons/breeze-dark/emotes/22/face-uncertain.svg share/icons/breeze-dark/emotes/22/face-wink.svg share/icons/breeze-dark/emotes/22/face-worried.svg share/icons/breeze-dark/emotes/22/face-yawn.svg share/icons/breeze-dark/emotes/22/food-cake.svg share/icons/breeze-dark/index.theme share/icons/breeze-dark/mimetypes/16/android-package-archive.svg share/icons/breeze-dark/mimetypes/16/application-atom+xml.svg share/icons/breeze-dark/mimetypes/16/application-certificate.svg share/icons/breeze-dark/mimetypes/16/application-dicom.svg share/icons/breeze-dark/mimetypes/16/application-epub+zip.svg share/icons/breeze-dark/mimetypes/16/application-gzip.svg share/icons/breeze-dark/mimetypes/16/application-illustrator.svg share/icons/breeze-dark/mimetypes/16/application-javascript.svg share/icons/breeze-dark/mimetypes/16/application-json.svg share/icons/breeze-dark/mimetypes/16/application-mac-binhex40.svg share/icons/breeze-dark/mimetypes/16/application-mathml+xml.svg share/icons/breeze-dark/mimetypes/16/application-msonenote.svg share/icons/breeze-dark/mimetypes/16/application-msoutlook.svg share/icons/breeze-dark/mimetypes/16/application-msword-template.svg share/icons/breeze-dark/mimetypes/16/application-msword.svg share/icons/breeze-dark/mimetypes/16/application-octet-stream.svg share/icons/breeze-dark/mimetypes/16/application-ogg.svg share/icons/breeze-dark/mimetypes/16/application-pdf.svg share/icons/breeze-dark/mimetypes/16/application-pgp-encrypted.svg share/icons/breeze-dark/mimetypes/16/application-pgp-keys.svg share/icons/breeze-dark/mimetypes/16/application-pgp-signature.svg share/icons/breeze-dark/mimetypes/16/application-pgp.svg share/icons/breeze-dark/mimetypes/16/application-pkcs12.svg share/icons/breeze-dark/mimetypes/16/application-pkcs7-mime.svg share/icons/breeze-dark/mimetypes/16/application-pkcs7-signature.svg share/icons/breeze-dark/mimetypes/16/application-pkix-cerl.svg share/icons/breeze-dark/mimetypes/16/application-pkix-cert.svg share/icons/breeze-dark/mimetypes/16/application-postscript.svg share/icons/breeze-dark/mimetypes/16/application-relaxng.svg share/icons/breeze-dark/mimetypes/16/application-rss+xml.svg share/icons/breeze-dark/mimetypes/16/application-rtf.svg share/icons/breeze-dark/mimetypes/16/application-sql.svg share/icons/breeze-dark/mimetypes/16/application-sxw.svg share/icons/breeze-dark/mimetypes/16/application-vnd.android.package-archive.svg share/icons/breeze-dark/mimetypes/16/application-vnd.appimage.svg share/icons/breeze-dark/mimetypes/16/application-vnd.apple.pkpass.svg share/icons/breeze-dark/mimetypes/16/application-vnd.debian.binary-package.svg share/icons/breeze-dark/mimetypes/16/application-vnd.flatpak.ref.svg share/icons/breeze-dark/mimetypes/16/application-vnd.google-earth.kml+xml.svg share/icons/breeze-dark/mimetypes/16/application-vnd.iccprofile.svg share/icons/breeze-dark/mimetypes/16/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-access.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-excel.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-infopath.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-powerpoint.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-word.svg share/icons/breeze-dark/mimetypes/16/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/16/application-vnd.nintendo.snes.rom.svg share/icons/breeze-dark/mimetypes/16/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.chart.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.database.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.formula.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.image.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.text.svg share/icons/breeze-dark/mimetypes/16/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze-dark/mimetypes/16/application-vnd.openofficeorg.extension.svg share/icons/breeze-dark/mimetypes/16/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze-dark/mimetypes/16/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze-dark/mimetypes/16/application-vnd.rar.svg share/icons/breeze-dark/mimetypes/16/application-vnd.rn-realmedia.svg share/icons/breeze-dark/mimetypes/16/application-vnd.scribus.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sqlite3.svg share/icons/breeze-dark/mimetypes/16/application-vnd.squashfs.svg share/icons/breeze-dark/mimetypes/16/application-vnd.stardivision.calc.svg share/icons/breeze-dark/mimetypes/16/application-vnd.stardivision.draw.svg share/icons/breeze-dark/mimetypes/16/application-vnd.stardivision.mail.svg share/icons/breeze-dark/mimetypes/16/application-vnd.stardivision.math.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.calc.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.calc.template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.draw.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.draw.template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.impress.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.impress.template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.math.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.writer.global.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.writer.svg share/icons/breeze-dark/mimetypes/16/application-vnd.sun.xml.writer.template.svg share/icons/breeze-dark/mimetypes/16/application-vnd.visio.svg share/icons/breeze-dark/mimetypes/16/application-vnd.wordperfect.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.doc.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.docx.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.dot.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.dotx.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.pot.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.potx.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.ppt.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.pptx.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.xls.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.xlsx.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.xlt.svg share/icons/breeze-dark/mimetypes/16/application-wps-office.xltx.svg share/icons/breeze-dark/mimetypes/16/application-x-7z-compressed.svg share/icons/breeze-dark/mimetypes/16/application-x-abiword.svg share/icons/breeze-dark/mimetypes/16/application-x-ace.svg share/icons/breeze-dark/mimetypes/16/application-x-apple-diskimage.svg share/icons/breeze-dark/mimetypes/16/application-x-applix-spreadsheet.svg share/icons/breeze-dark/mimetypes/16/application-x-applix-word.svg share/icons/breeze-dark/mimetypes/16/application-x-ar.svg share/icons/breeze-dark/mimetypes/16/application-x-arc.svg share/icons/breeze-dark/mimetypes/16/application-x-archive.svg share/icons/breeze-dark/mimetypes/16/application-x-arj.svg share/icons/breeze-dark/mimetypes/16/application-x-audacity-project.svg share/icons/breeze-dark/mimetypes/16/application-x-awk.svg share/icons/breeze-dark/mimetypes/16/application-x-bittorrent.svg share/icons/breeze-dark/mimetypes/16/application-x-blender.svg share/icons/breeze-dark/mimetypes/16/application-x-bzdvi.svg share/icons/breeze-dark/mimetypes/16/application-x-bzip-compressed-tar.svg share/icons/breeze-dark/mimetypes/16/application-x-bzip.svg share/icons/breeze-dark/mimetypes/16/application-x-cd-image.svg share/icons/breeze-dark/mimetypes/16/application-x-cda.svg share/icons/breeze-dark/mimetypes/16/application-x-chm.svg share/icons/breeze-dark/mimetypes/16/application-x-compress.svg share/icons/breeze-dark/mimetypes/16/application-x-compressed-tar.svg share/icons/breeze-dark/mimetypes/16/application-x-core.svg share/icons/breeze-dark/mimetypes/16/application-x-cpio.svg share/icons/breeze-dark/mimetypes/16/application-x-cue.svg share/icons/breeze-dark/mimetypes/16/application-x-deb.svg share/icons/breeze-dark/mimetypes/16/application-x-designer.svg share/icons/breeze-dark/mimetypes/16/application-x-desktop.svg share/icons/breeze-dark/mimetypes/16/application-x-egon.svg share/icons/breeze-dark/mimetypes/16/application-x-executable-script.svg share/icons/breeze-dark/mimetypes/16/application-x-executable.svg share/icons/breeze-dark/mimetypes/16/application-x-fictionbook+xml.svg share/icons/breeze-dark/mimetypes/16/application-x-flash-video.svg share/icons/breeze-dark/mimetypes/16/application-x-font-afm.svg share/icons/breeze-dark/mimetypes/16/application-x-font-bdf.svg share/icons/breeze-dark/mimetypes/16/application-x-font-otf.svg share/icons/breeze-dark/mimetypes/16/application-x-font-pcf.svg share/icons/breeze-dark/mimetypes/16/application-x-font-snf.svg share/icons/breeze-dark/mimetypes/16/application-x-font-ttf.svg share/icons/breeze-dark/mimetypes/16/application-x-font-ttx.svg share/icons/breeze-dark/mimetypes/16/application-x-font-type1.svg share/icons/breeze-dark/mimetypes/16/application-x-gameboy-rom.svg share/icons/breeze-dark/mimetypes/16/application-x-gamecube-rom.svg share/icons/breeze-dark/mimetypes/16/application-x-gba-rom.svg share/icons/breeze-dark/mimetypes/16/application-x-gdscript.svg share/icons/breeze-dark/mimetypes/16/application-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/16/application-x-gnumeric.svg share/icons/breeze-dark/mimetypes/16/application-x-godot-project.svg share/icons/breeze-dark/mimetypes/16/application-x-godot-resource.svg share/icons/breeze-dark/mimetypes/16/application-x-godot-scene.svg share/icons/breeze-dark/mimetypes/16/application-x-godot-shader.svg share/icons/breeze-dark/mimetypes/16/application-x-gzdvi.svg share/icons/breeze-dark/mimetypes/16/application-x-gzip.svg share/icons/breeze-dark/mimetypes/16/application-x-gzpostscript.svg share/icons/breeze-dark/mimetypes/16/application-x-iso.svg share/icons/breeze-dark/mimetypes/16/application-x-iso9660-appimage.svg share/icons/breeze-dark/mimetypes/16/application-x-it87.svg share/icons/breeze-dark/mimetypes/16/application-x-jar.svg share/icons/breeze-dark/mimetypes/16/application-x-java-applet.svg share/icons/breeze-dark/mimetypes/16/application-x-java-archive.svg share/icons/breeze-dark/mimetypes/16/application-x-java.svg share/icons/breeze-dark/mimetypes/16/application-x-javascript.svg share/icons/breeze-dark/mimetypes/16/application-x-k3b.svg share/icons/breeze-dark/mimetypes/16/application-x-kcsrc.svg share/icons/breeze-dark/mimetypes/16/application-x-kdenlivetitle.svg share/icons/breeze-dark/mimetypes/16/application-x-kexi-connectiondata.svg share/icons/breeze-dark/mimetypes/16/application-x-kexiproject-shortcut.svg share/icons/breeze-dark/mimetypes/16/application-x-kexiproject-sqlite.svg share/icons/breeze-dark/mimetypes/16/application-x-kexiproject-sqlite2.svg share/icons/breeze-dark/mimetypes/16/application-x-kexiproject-sqlite3.svg share/icons/breeze-dark/mimetypes/16/application-x-kformula.svg share/icons/breeze-dark/mimetypes/16/application-x-kgetlist.svg share/icons/breeze-dark/mimetypes/16/application-x-kmymoney.svg share/icons/breeze-dark/mimetypes/16/application-x-kontour.svg share/icons/breeze-dark/mimetypes/16/application-x-kplato.svg share/icons/breeze-dark/mimetypes/16/application-x-krita.svg share/icons/breeze-dark/mimetypes/16/application-x-kvtml.svg share/icons/breeze-dark/mimetypes/16/application-x-kword.svg share/icons/breeze-dark/mimetypes/16/application-x-lha.svg share/icons/breeze-dark/mimetypes/16/application-x-lyx.svg share/icons/breeze-dark/mimetypes/16/application-x-lzma-compressed-tar.svg share/icons/breeze-dark/mimetypes/16/application-x-lzop.svg share/icons/breeze-dark/mimetypes/16/application-x-m4.svg share/icons/breeze-dark/mimetypes/16/application-x-macbinary.svg share/icons/breeze-dark/mimetypes/16/application-x-marble.svg share/icons/breeze-dark/mimetypes/16/application-x-mimearchive.svg share/icons/breeze-dark/mimetypes/16/application-x-mplayer2.svg share/icons/breeze-dark/mimetypes/16/application-x-ms-dos-executable.svg share/icons/breeze-dark/mimetypes/16/application-x-ms-shortcut.svg share/icons/breeze-dark/mimetypes/16/application-x-ms-wim.svg share/icons/breeze-dark/mimetypes/16/application-x-msdownload.svg share/icons/breeze-dark/mimetypes/16/application-x-mswinurl.svg share/icons/breeze-dark/mimetypes/16/application-x-mswrite.svg share/icons/breeze-dark/mimetypes/16/application-x-n64-rom.svg share/icons/breeze-dark/mimetypes/16/application-x-nes-rom.svg share/icons/breeze-dark/mimetypes/16/application-x-nintendo-ds-rom.svg share/icons/breeze-dark/mimetypes/16/application-x-nzb.svg share/icons/breeze-dark/mimetypes/16/application-x-object.svg share/icons/breeze-dark/mimetypes/16/application-x-pak.svg share/icons/breeze-dark/mimetypes/16/application-x-partial-download.svg share/icons/breeze-dark/mimetypes/16/application-x-pem-key.svg share/icons/breeze-dark/mimetypes/16/application-x-perl.svg share/icons/breeze-dark/mimetypes/16/application-x-php.svg share/icons/breeze-dark/mimetypes/16/application-x-pkcs12.svg share/icons/breeze-dark/mimetypes/16/application-x-pkcs7-certificates.svg share/icons/breeze-dark/mimetypes/16/application-x-plasma.svg share/icons/breeze-dark/mimetypes/16/application-x-python-bytecode.svg share/icons/breeze-dark/mimetypes/16/application-x-qemu-disk.svg share/icons/breeze-dark/mimetypes/16/application-x-qet-element.svg share/icons/breeze-dark/mimetypes/16/application-x-qet-project.svg share/icons/breeze-dark/mimetypes/16/application-x-quattropro.svg share/icons/breeze-dark/mimetypes/16/application-x-rar.svg share/icons/breeze-dark/mimetypes/16/application-x-raw-disk-image.svg share/icons/breeze-dark/mimetypes/16/application-x-rdata.svg share/icons/breeze-dark/mimetypes/16/application-x-root.svg share/icons/breeze-dark/mimetypes/16/application-x-rpm.svg share/icons/breeze-dark/mimetypes/16/application-x-ruby.svg share/icons/breeze-dark/mimetypes/16/application-x-sami.svg share/icons/breeze-dark/mimetypes/16/application-x-sharedlib.svg share/icons/breeze-dark/mimetypes/16/application-x-shellscript.svg share/icons/breeze-dark/mimetypes/16/application-x-shockwave-flash.svg share/icons/breeze-dark/mimetypes/16/application-x-siag.svg share/icons/breeze-dark/mimetypes/16/application-x-sif.svg share/icons/breeze-dark/mimetypes/16/application-x-skg.svg share/icons/breeze-dark/mimetypes/16/application-x-skgc.svg share/icons/breeze-dark/mimetypes/16/application-x-smb-server.svg share/icons/breeze-dark/mimetypes/16/application-x-smb-workgroup.svg share/icons/breeze-dark/mimetypes/16/application-x-source-rpm.svg share/icons/breeze-dark/mimetypes/16/application-x-sqlite2.svg share/icons/breeze-dark/mimetypes/16/application-x-sqlite3.svg share/icons/breeze-dark/mimetypes/16/application-x-srt.svg share/icons/breeze-dark/mimetypes/16/application-x-srtrip.svg share/icons/breeze-dark/mimetypes/16/application-x-subrip.svg share/icons/breeze-dark/mimetypes/16/application-x-tar.svg share/icons/breeze-dark/mimetypes/16/application-x-tarz.svg share/icons/breeze-dark/mimetypes/16/application-x-tgif.svg share/icons/breeze-dark/mimetypes/16/application-x-theme.svg share/icons/breeze-dark/mimetypes/16/application-x-trash.svg share/icons/breeze-dark/mimetypes/16/application-x-troff-man.svg share/icons/breeze-dark/mimetypes/16/application-x-tzo.svg share/icons/breeze-dark/mimetypes/16/application-x-vdi-disk.svg share/icons/breeze-dark/mimetypes/16/application-x-wmf.svg share/icons/breeze-dark/mimetypes/16/application-x-x509-ca-cert.svg share/icons/breeze-dark/mimetypes/16/application-x-x509-user-cert.svg share/icons/breeze-dark/mimetypes/16/application-x-xliff.svg share/icons/breeze-dark/mimetypes/16/application-x-xpinstall.svg share/icons/breeze-dark/mimetypes/16/application-x-xz-compressed-tar.svg share/icons/breeze-dark/mimetypes/16/application-x-xz-pkg.svg share/icons/breeze-dark/mimetypes/16/application-x-zerosize.svg share/icons/breeze-dark/mimetypes/16/application-x-zip-compressed-fb2.svg share/icons/breeze-dark/mimetypes/16/application-x-zoo.svg share/icons/breeze-dark/mimetypes/16/application-xhtml+xml.svg share/icons/breeze-dark/mimetypes/16/application-xmind.svg share/icons/breeze-dark/mimetypes/16/application-xml.svg share/icons/breeze-dark/mimetypes/16/application-xsd.svg share/icons/breeze-dark/mimetypes/16/application-xslt+xml.svg share/icons/breeze-dark/mimetypes/16/application-zip.svg share/icons/breeze-dark/mimetypes/16/audio-ac3.svg share/icons/breeze-dark/mimetypes/16/audio-flac.svg share/icons/breeze-dark/mimetypes/16/audio-midi.svg share/icons/breeze-dark/mimetypes/16/audio-mp2.svg share/icons/breeze-dark/mimetypes/16/audio-mp3.svg share/icons/breeze-dark/mimetypes/16/audio-mp4.svg share/icons/breeze-dark/mimetypes/16/audio-mpeg.svg share/icons/breeze-dark/mimetypes/16/audio-prs.sid.svg share/icons/breeze-dark/mimetypes/16/audio-vn.rn-realmedia.svg share/icons/breeze-dark/mimetypes/16/audio-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/16/audio-x-adpcm.svg share/icons/breeze-dark/mimetypes/16/audio-x-aiff.svg share/icons/breeze-dark/mimetypes/16/audio-x-flac+ogg.svg share/icons/breeze-dark/mimetypes/16/audio-x-flac.svg share/icons/breeze-dark/mimetypes/16/audio-x-generic.svg share/icons/breeze-dark/mimetypes/16/audio-x-monkey.svg share/icons/breeze-dark/mimetypes/16/audio-x-mp2.svg share/icons/breeze-dark/mimetypes/16/audio-x-mpeg.svg share/icons/breeze-dark/mimetypes/16/audio-x-speex+ogg.svg share/icons/breeze-dark/mimetypes/16/audio-x-wav.svg share/icons/breeze-dark/mimetypes/16/audiobook.svg share/icons/breeze-dark/mimetypes/16/encrypted.svg share/icons/breeze-dark/mimetypes/16/font-otf.svg share/icons/breeze-dark/mimetypes/16/font-ttf.svg share/icons/breeze-dark/mimetypes/16/fonts-package.svg share/icons/breeze-dark/mimetypes/16/image-bmp.svg share/icons/breeze-dark/mimetypes/16/image-gif.svg share/icons/breeze-dark/mimetypes/16/image-ico.svg share/icons/breeze-dark/mimetypes/16/image-jpeg.svg share/icons/breeze-dark/mimetypes/16/image-jpeg2000.svg share/icons/breeze-dark/mimetypes/16/image-png.svg share/icons/breeze-dark/mimetypes/16/image-svg+xml-compressed.svg share/icons/breeze-dark/mimetypes/16/image-svg+xml.svg share/icons/breeze-dark/mimetypes/16/image-tiff.svg share/icons/breeze-dark/mimetypes/16/image-vnd.dgn.svg share/icons/breeze-dark/mimetypes/16/image-vnd.djvu.svg share/icons/breeze-dark/mimetypes/16/image-vnd.dwg.svg share/icons/breeze-dark/mimetypes/16/image-vnd.microsoft.icon.svg share/icons/breeze-dark/mimetypes/16/image-x-adobe-dng.svg share/icons/breeze-dark/mimetypes/16/image-x-compressed-xcf.svg share/icons/breeze-dark/mimetypes/16/image-x-emf.svg share/icons/breeze-dark/mimetypes/16/image-x-eps.svg share/icons/breeze-dark/mimetypes/16/image-x-generic.svg share/icons/breeze-dark/mimetypes/16/image-x-ico.svg share/icons/breeze-dark/mimetypes/16/image-x-icon.svg share/icons/breeze-dark/mimetypes/16/image-x-krita.svg share/icons/breeze-dark/mimetypes/16/image-x-portable-bitmap.svg share/icons/breeze-dark/mimetypes/16/image-x-psd.svg share/icons/breeze-dark/mimetypes/16/image-x-psdimage-x-psd.svg share/icons/breeze-dark/mimetypes/16/image-x-svg+xml.svg share/icons/breeze-dark/mimetypes/16/image-x-tga.svg share/icons/breeze-dark/mimetypes/16/image-x-vnd.trolltech.qpicture.svg share/icons/breeze-dark/mimetypes/16/image-x-win-bitmap.svg share/icons/breeze-dark/mimetypes/16/image-x-win-bmp.svg share/icons/breeze-dark/mimetypes/16/image-x-wmf.svg share/icons/breeze-dark/mimetypes/16/image-x-xcf.svg share/icons/breeze-dark/mimetypes/16/image-x-xfig.svg share/icons/breeze-dark/mimetypes/16/inode-directory.svg share/icons/breeze-dark/mimetypes/16/libreoffice-database.svg share/icons/breeze-dark/mimetypes/16/libreoffice-drawing-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-drawing.svg share/icons/breeze-dark/mimetypes/16/libreoffice-extension.svg share/icons/breeze-dark/mimetypes/16/libreoffice-formula.svg share/icons/breeze-dark/mimetypes/16/libreoffice-master-document.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-database.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-drawing-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-drawing.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-formula.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-master-document.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-presentation-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-presentation.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-spreadsheet.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-text-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-text.svg share/icons/breeze-dark/mimetypes/16/libreoffice-oasis-web-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-presentation-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-presentation.svg share/icons/breeze-dark/mimetypes/16/libreoffice-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-spreadsheet.svg share/icons/breeze-dark/mimetypes/16/libreoffice-text-template.svg share/icons/breeze-dark/mimetypes/16/libreoffice-text.svg share/icons/breeze-dark/mimetypes/16/message-news.svg share/icons/breeze-dark/mimetypes/16/message-partial.svg share/icons/breeze-dark/mimetypes/16/message-rfc822.svg share/icons/breeze-dark/mimetypes/16/message-x-gnu-rmail.svg share/icons/breeze-dark/mimetypes/16/message.svg share/icons/breeze-dark/mimetypes/16/none.svg share/icons/breeze-dark/mimetypes/16/odf.svg share/icons/breeze-dark/mimetypes/16/package-x-generic.svg share/icons/breeze-dark/mimetypes/16/podcast.svg share/icons/breeze-dark/mimetypes/16/text-calendar.svg share/icons/breeze-dark/mimetypes/16/text-csharp.svg share/icons/breeze-dark/mimetypes/16/text-css.svg share/icons/breeze-dark/mimetypes/16/text-csv.svg share/icons/breeze-dark/mimetypes/16/text-directory.svg share/icons/breeze-dark/mimetypes/16/text-dockerfile.svg share/icons/breeze-dark/mimetypes/16/text-enriched.svg +share/icons/breeze-dark/mimetypes/16/text-fortran.svg share/icons/breeze-dark/mimetypes/16/text-html.svg share/icons/breeze-dark/mimetypes/16/text-javascript.svg share/icons/breeze-dark/mimetypes/16/text-markdown.svg share/icons/breeze-dark/mimetypes/16/text-plain.svg share/icons/breeze-dark/mimetypes/16/text-rdf+xml.svg share/icons/breeze-dark/mimetypes/16/text-rdf.svg share/icons/breeze-dark/mimetypes/16/text-rtf.svg share/icons/breeze-dark/mimetypes/16/text-rust.svg share/icons/breeze-dark/mimetypes/16/text-sgml.svg share/icons/breeze-dark/mimetypes/16/text-troff.svg share/icons/breeze-dark/mimetypes/16/text-vcalendar.svg share/icons/breeze-dark/mimetypes/16/text-vnd.abc.svg share/icons/breeze-dark/mimetypes/16/text-vnd.kde.kcrash-report.svg share/icons/breeze-dark/mimetypes/16/text-vnd.trolltech.linguist.svg share/icons/breeze-dark/mimetypes/16/text-vnd.wap.wml.svg share/icons/breeze-dark/mimetypes/16/text-vtt.svg share/icons/breeze-dark/mimetypes/16/text-wiki.svg share/icons/breeze-dark/mimetypes/16/text-x-adasrc.svg share/icons/breeze-dark/mimetypes/16/text-x-apport.svg share/icons/breeze-dark/mimetypes/16/text-x-authors.svg share/icons/breeze-dark/mimetypes/16/text-x-bibtex.svg share/icons/breeze-dark/mimetypes/16/text-x-c++hdr.svg share/icons/breeze-dark/mimetypes/16/text-x-c++src.svg share/icons/breeze-dark/mimetypes/16/text-x-changelog.svg share/icons/breeze-dark/mimetypes/16/text-x-chdr.svg share/icons/breeze-dark/mimetypes/16/text-x-cmake.svg share/icons/breeze-dark/mimetypes/16/text-x-copying.svg share/icons/breeze-dark/mimetypes/16/text-x-credits.svg share/icons/breeze-dark/mimetypes/16/text-x-csharp.svg share/icons/breeze-dark/mimetypes/16/text-x-csrc.svg share/icons/breeze-dark/mimetypes/16/text-x-dtd.svg +share/icons/breeze-dark/mimetypes/16/text-x-fortran.svg share/icons/breeze-dark/mimetypes/16/text-x-generic.svapplication-x-awk.svg share/icons/breeze-dark/mimetypes/16/text-x-generic.svg share/icons/breeze-dark/mimetypes/16/text-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/16/text-x-go.svg share/icons/breeze-dark/mimetypes/16/text-x-haskell.svg share/icons/breeze-dark/mimetypes/16/text-x-hex.svg share/icons/breeze-dark/mimetypes/16/text-x-install.svg share/icons/breeze-dark/mimetypes/16/text-x-java-source.svg share/icons/breeze-dark/mimetypes/16/text-x-java.svg share/icons/breeze-dark/mimetypes/16/text-x-javascript.svg share/icons/breeze-dark/mimetypes/16/text-x-katefilelist.svg share/icons/breeze-dark/mimetypes/16/text-x-kotlin.svg share/icons/breeze-dark/mimetypes/16/text-x-ldif.svg share/icons/breeze-dark/mimetypes/16/text-x-lilypond.svg share/icons/breeze-dark/mimetypes/16/text-x-log.svg share/icons/breeze-dark/mimetypes/16/text-x-lua.svg share/icons/breeze-dark/mimetypes/16/text-x-makefile.svg share/icons/breeze-dark/mimetypes/16/text-x-markdown.svg share/icons/breeze-dark/mimetypes/16/text-x-microdvd.svg share/icons/breeze-dark/mimetypes/16/text-x-mpsub.svg share/icons/breeze-dark/mimetypes/16/text-x-nfo.svg share/icons/breeze-dark/mimetypes/16/text-x-objchdr.svg share/icons/breeze-dark/mimetypes/16/text-x-objcsrc.svg share/icons/breeze-dark/mimetypes/16/text-x-opml+xml.svg share/icons/breeze-dark/mimetypes/16/text-x-opml.svg share/icons/breeze-dark/mimetypes/16/text-x-pascal.svg share/icons/breeze-dark/mimetypes/16/text-x-patch.svg share/icons/breeze-dark/mimetypes/16/text-x-plain.svg share/icons/breeze-dark/mimetypes/16/text-x-po.svg share/icons/breeze-dark/mimetypes/16/text-x-python.svg share/icons/breeze-dark/mimetypes/16/text-x-python3.svg share/icons/breeze-dark/mimetypes/16/text-x-qml.svg share/icons/breeze-dark/mimetypes/16/text-x-r.svg share/icons/breeze-dark/mimetypes/16/text-x-readme.svg share/icons/breeze-dark/mimetypes/16/text-x-rpm-spec.svg share/icons/breeze-dark/mimetypes/16/text-x-rust.svg share/icons/breeze-dark/mimetypes/16/text-x-scala.svg share/icons/breeze-dark/mimetypes/16/text-x-script.svg share/icons/breeze-dark/mimetypes/16/text-x-sql.svg share/icons/breeze-dark/mimetypes/16/text-x-ssa.svg share/icons/breeze-dark/mimetypes/16/text-x-subviewer.svg share/icons/breeze-dark/mimetypes/16/text-x-tcl.svg share/icons/breeze-dark/mimetypes/16/text-x-tex.svg share/icons/breeze-dark/mimetypes/16/text-x-texinfo.svg share/icons/breeze-dark/mimetypes/16/text-x-vcard.svg share/icons/breeze-dark/mimetypes/16/text-x-xslfo.svg share/icons/breeze-dark/mimetypes/16/text-xmcd.svg share/icons/breeze-dark/mimetypes/16/text-xml.svg share/icons/breeze-dark/mimetypes/16/unknown.svg share/icons/breeze-dark/mimetypes/16/uri-mms.svg share/icons/breeze-dark/mimetypes/16/uri-mmst.svg share/icons/breeze-dark/mimetypes/16/uri-pnm.svg share/icons/breeze-dark/mimetypes/16/uri-rtspt.svg share/icons/breeze-dark/mimetypes/16/uri-rtspu.svg share/icons/breeze-dark/mimetypes/16/video-mlt-playlist.svg share/icons/breeze-dark/mimetypes/16/video-mp2t.svg share/icons/breeze-dark/mimetypes/16/video-mp4.svg share/icons/breeze-dark/mimetypes/16/video-vivo.svg share/icons/breeze-dark/mimetypes/16/video-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/16/video-wavelet.svg share/icons/breeze-dark/mimetypes/16/video-webm.svg share/icons/breeze-dark/mimetypes/16/video-x-anim.svg share/icons/breeze-dark/mimetypes/16/video-x-flic.svg share/icons/breeze-dark/mimetypes/16/video-x-flv.svg share/icons/breeze-dark/mimetypes/16/video-x-generic.svg share/icons/breeze-dark/mimetypes/16/video-x-google-vlc-plugin.svg share/icons/breeze-dark/mimetypes/16/video-x-javafx.svg share/icons/breeze-dark/mimetypes/16/video-x-matroska.svg share/icons/breeze-dark/mimetypes/16/video-x-mng.svg share/icons/breeze-dark/mimetypes/16/video-x-ms-wmp.svg share/icons/breeze-dark/mimetypes/16/video-x-ms-wmv.svg share/icons/breeze-dark/mimetypes/16/video-x-msvideo.svg share/icons/breeze-dark/mimetypes/16/video-x-ogm+ogg.svg share/icons/breeze-dark/mimetypes/16/video-x-theora+ogg.svg share/icons/breeze-dark/mimetypes/16/video-x-wmv.svg share/icons/breeze-dark/mimetypes/16/viewbib.svg share/icons/breeze-dark/mimetypes/16/viewdvi.svg share/icons/breeze-dark/mimetypes/16/viewhtml.svg share/icons/breeze-dark/mimetypes/16/viewpdf.svg share/icons/breeze-dark/mimetypes/16/viewps.svg share/icons/breeze-dark/mimetypes/16/virtualbox-hdd.svg share/icons/breeze-dark/mimetypes/16/virtualbox-ova.svg share/icons/breeze-dark/mimetypes/16/virtualbox-ovf.svg share/icons/breeze-dark/mimetypes/16/virtualbox-vbox-extpack.svg share/icons/breeze-dark/mimetypes/16/virtualbox-vbox.svg share/icons/breeze-dark/mimetypes/16/virtualbox-vdi.svg share/icons/breeze-dark/mimetypes/16/virtualbox-vhd.svg share/icons/breeze-dark/mimetypes/16/virtualbox-vmdk.svg share/icons/breeze-dark/mimetypes/16/vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/16/x-kde-nsplugin-generated.svg share/icons/breeze-dark/mimetypes/16/x-mail-distribution-list.svg share/icons/breeze-dark/mimetypes/16/x-media-podcast.svg share/icons/breeze-dark/mimetypes/16/x-office-address-book.svg share/icons/breeze-dark/mimetypes/16/x-office-calendar.svg share/icons/breeze-dark/mimetypes/16/x-office-contact.svg share/icons/breeze-dark/mimetypes/16/x-office-document.svg share/icons/breeze-dark/mimetypes/16/x-office-drawing.svg share/icons/breeze-dark/mimetypes/16/x-office-presentation.svg share/icons/breeze-dark/mimetypes/16/x-office-spreadsheet.svg share/icons/breeze-dark/mimetypes/16@2x share/icons/breeze-dark/mimetypes/16@3x share/icons/breeze-dark/mimetypes/22/android-package-archive.svg share/icons/breeze-dark/mimetypes/22/application-atom+xml.svg share/icons/breeze-dark/mimetypes/22/application-certificate.svg share/icons/breeze-dark/mimetypes/22/application-dicom.svg share/icons/breeze-dark/mimetypes/22/application-epub+zip.svg share/icons/breeze-dark/mimetypes/22/application-gzip.svg share/icons/breeze-dark/mimetypes/22/application-illustrator.svg share/icons/breeze-dark/mimetypes/22/application-javascript.svg share/icons/breeze-dark/mimetypes/22/application-json.svg share/icons/breeze-dark/mimetypes/22/application-mac-binhex40.svg share/icons/breeze-dark/mimetypes/22/application-mathml+xml.svg share/icons/breeze-dark/mimetypes/22/application-msonenote.svg share/icons/breeze-dark/mimetypes/22/application-msoutlook.svg share/icons/breeze-dark/mimetypes/22/application-msword-template.svg share/icons/breeze-dark/mimetypes/22/application-msword.svg share/icons/breeze-dark/mimetypes/22/application-octet-stream.svg share/icons/breeze-dark/mimetypes/22/application-ogg.svg share/icons/breeze-dark/mimetypes/22/application-pdf.svg share/icons/breeze-dark/mimetypes/22/application-pgp-encrypted.svg share/icons/breeze-dark/mimetypes/22/application-pgp-keys.svg share/icons/breeze-dark/mimetypes/22/application-pgp-signature.svg share/icons/breeze-dark/mimetypes/22/application-pgp.svg share/icons/breeze-dark/mimetypes/22/application-pkcs12.svg share/icons/breeze-dark/mimetypes/22/application-pkcs7-mime.svg share/icons/breeze-dark/mimetypes/22/application-pkcs7-signature.svg share/icons/breeze-dark/mimetypes/22/application-pkix-cerl.svg share/icons/breeze-dark/mimetypes/22/application-pkix-cert.svg share/icons/breeze-dark/mimetypes/22/application-postscript.svg share/icons/breeze-dark/mimetypes/22/application-relaxng.svg share/icons/breeze-dark/mimetypes/22/application-rss+xml.svg share/icons/breeze-dark/mimetypes/22/application-rtf.svg share/icons/breeze-dark/mimetypes/22/application-sql.svg share/icons/breeze-dark/mimetypes/22/application-sxw.svg share/icons/breeze-dark/mimetypes/22/application-vnd.android.package-archive.svg share/icons/breeze-dark/mimetypes/22/application-vnd.appimage.svg share/icons/breeze-dark/mimetypes/22/application-vnd.apple.pkpass.svg share/icons/breeze-dark/mimetypes/22/application-vnd.debian.binary-package.svg share/icons/breeze-dark/mimetypes/22/application-vnd.flatpak.ref.svg share/icons/breeze-dark/mimetypes/22/application-vnd.google-earth.kml+xml.svg share/icons/breeze-dark/mimetypes/22/application-vnd.iccprofile.svg share/icons/breeze-dark/mimetypes/22/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-access.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-excel.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-infopath.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-powerpoint.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-word.svg share/icons/breeze-dark/mimetypes/22/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/22/application-vnd.nintendo.snes.rom.svg share/icons/breeze-dark/mimetypes/22/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.chart.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.database.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.formula.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.image.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.text.svg share/icons/breeze-dark/mimetypes/22/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze-dark/mimetypes/22/application-vnd.openofficeorg.extension.svg share/icons/breeze-dark/mimetypes/22/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze-dark/mimetypes/22/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze-dark/mimetypes/22/application-vnd.rar.svg share/icons/breeze-dark/mimetypes/22/application-vnd.rn-realmedia.svg share/icons/breeze-dark/mimetypes/22/application-vnd.scribus.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sqlite3.svg share/icons/breeze-dark/mimetypes/22/application-vnd.squashfs.svg share/icons/breeze-dark/mimetypes/22/application-vnd.stardivision.calc.svg share/icons/breeze-dark/mimetypes/22/application-vnd.stardivision.draw.svg share/icons/breeze-dark/mimetypes/22/application-vnd.stardivision.mail.svg share/icons/breeze-dark/mimetypes/22/application-vnd.stardivision.math.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.calc.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.calc.template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.draw.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.draw.template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.impress.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.impress.template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.math.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.writer.global.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.writer.svg share/icons/breeze-dark/mimetypes/22/application-vnd.sun.xml.writer.template.svg share/icons/breeze-dark/mimetypes/22/application-vnd.visio.svg share/icons/breeze-dark/mimetypes/22/application-vnd.wordperfect.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.doc.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.docx.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.dot.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.dotx.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.pot.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.potx.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.ppt.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.pptx.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.xls.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.xlsx.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.xlt.svg share/icons/breeze-dark/mimetypes/22/application-wps-office.xltx.svg share/icons/breeze-dark/mimetypes/22/application-x-7z-compressed.svg share/icons/breeze-dark/mimetypes/22/application-x-abiword.svg share/icons/breeze-dark/mimetypes/22/application-x-ace.svg share/icons/breeze-dark/mimetypes/22/application-x-apple-diskimage.svg share/icons/breeze-dark/mimetypes/22/application-x-applix-spreadsheet.svg share/icons/breeze-dark/mimetypes/22/application-x-applix-word.svg share/icons/breeze-dark/mimetypes/22/application-x-ar.svg share/icons/breeze-dark/mimetypes/22/application-x-arc.svg share/icons/breeze-dark/mimetypes/22/application-x-archive.svg share/icons/breeze-dark/mimetypes/22/application-x-arj.svg share/icons/breeze-dark/mimetypes/22/application-x-audacity-project.svg share/icons/breeze-dark/mimetypes/22/application-x-awk.svg share/icons/breeze-dark/mimetypes/22/application-x-bittorrent.svg share/icons/breeze-dark/mimetypes/22/application-x-blender.svg share/icons/breeze-dark/mimetypes/22/application-x-bzdvi.svg share/icons/breeze-dark/mimetypes/22/application-x-bzip-compressed-tar.svg share/icons/breeze-dark/mimetypes/22/application-x-bzip.svg share/icons/breeze-dark/mimetypes/22/application-x-cd-image.svg share/icons/breeze-dark/mimetypes/22/application-x-cda.svg share/icons/breeze-dark/mimetypes/22/application-x-chm.svg share/icons/breeze-dark/mimetypes/22/application-x-compress.svg share/icons/breeze-dark/mimetypes/22/application-x-compressed-tar.svg share/icons/breeze-dark/mimetypes/22/application-x-core.svg share/icons/breeze-dark/mimetypes/22/application-x-cpio.svg share/icons/breeze-dark/mimetypes/22/application-x-cue.svg share/icons/breeze-dark/mimetypes/22/application-x-deb.svg share/icons/breeze-dark/mimetypes/22/application-x-designer.svg share/icons/breeze-dark/mimetypes/22/application-x-desktop.svg share/icons/breeze-dark/mimetypes/22/application-x-egon.svg share/icons/breeze-dark/mimetypes/22/application-x-executable-script.svg share/icons/breeze-dark/mimetypes/22/application-x-executable.svg share/icons/breeze-dark/mimetypes/22/application-x-fictionbook+xml.svg share/icons/breeze-dark/mimetypes/22/application-x-flash-video.svg share/icons/breeze-dark/mimetypes/22/application-x-font-afm.svg share/icons/breeze-dark/mimetypes/22/application-x-font-bdf.svg share/icons/breeze-dark/mimetypes/22/application-x-font-otf.svg share/icons/breeze-dark/mimetypes/22/application-x-font-pcf.svg share/icons/breeze-dark/mimetypes/22/application-x-font-snf.svg share/icons/breeze-dark/mimetypes/22/application-x-font-ttf.svg share/icons/breeze-dark/mimetypes/22/application-x-font-ttx.svg share/icons/breeze-dark/mimetypes/22/application-x-font-type1.svg share/icons/breeze-dark/mimetypes/22/application-x-gameboy-rom.svg share/icons/breeze-dark/mimetypes/22/application-x-gamecube-rom.svg share/icons/breeze-dark/mimetypes/22/application-x-gba-rom.svg share/icons/breeze-dark/mimetypes/22/application-x-gdscript.svg share/icons/breeze-dark/mimetypes/22/application-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/22/application-x-gnumeric.svg share/icons/breeze-dark/mimetypes/22/application-x-godot-project.svg share/icons/breeze-dark/mimetypes/22/application-x-godot-resource.svg share/icons/breeze-dark/mimetypes/22/application-x-godot-scene.svg share/icons/breeze-dark/mimetypes/22/application-x-godot-shader.svg share/icons/breeze-dark/mimetypes/22/application-x-gzdvi.svg share/icons/breeze-dark/mimetypes/22/application-x-gzip.svg share/icons/breeze-dark/mimetypes/22/application-x-gzpostscript.svg share/icons/breeze-dark/mimetypes/22/application-x-iso.svg share/icons/breeze-dark/mimetypes/22/application-x-iso9660-appimage.svg share/icons/breeze-dark/mimetypes/22/application-x-it87.svg share/icons/breeze-dark/mimetypes/22/application-x-jar.svg share/icons/breeze-dark/mimetypes/22/application-x-java-applet.svg share/icons/breeze-dark/mimetypes/22/application-x-java-archive.svg share/icons/breeze-dark/mimetypes/22/application-x-java.svg share/icons/breeze-dark/mimetypes/22/application-x-javascript.svg share/icons/breeze-dark/mimetypes/22/application-x-k3b.svg share/icons/breeze-dark/mimetypes/22/application-x-kcsrc.svg share/icons/breeze-dark/mimetypes/22/application-x-kdenlivetitle.svg share/icons/breeze-dark/mimetypes/22/application-x-kexi-connectiondata.svg share/icons/breeze-dark/mimetypes/22/application-x-kexiproject-shortcut.svg share/icons/breeze-dark/mimetypes/22/application-x-kexiproject-sqlite.svg share/icons/breeze-dark/mimetypes/22/application-x-kexiproject-sqlite2.svg share/icons/breeze-dark/mimetypes/22/application-x-kexiproject-sqlite3.svg share/icons/breeze-dark/mimetypes/22/application-x-kformula.svg share/icons/breeze-dark/mimetypes/22/application-x-kgetlist.svg share/icons/breeze-dark/mimetypes/22/application-x-kmymoney.svg share/icons/breeze-dark/mimetypes/22/application-x-kontour.svg share/icons/breeze-dark/mimetypes/22/application-x-kplato.svg share/icons/breeze-dark/mimetypes/22/application-x-krita.svg share/icons/breeze-dark/mimetypes/22/application-x-kvtml.svg share/icons/breeze-dark/mimetypes/22/application-x-kword.svg share/icons/breeze-dark/mimetypes/22/application-x-lha.svg share/icons/breeze-dark/mimetypes/22/application-x-lyx.svg share/icons/breeze-dark/mimetypes/22/application-x-lzma-compressed-tar.svg share/icons/breeze-dark/mimetypes/22/application-x-lzop.svg share/icons/breeze-dark/mimetypes/22/application-x-m4.svg share/icons/breeze-dark/mimetypes/22/application-x-macbinary.svg share/icons/breeze-dark/mimetypes/22/application-x-marble.svg share/icons/breeze-dark/mimetypes/22/application-x-mimearchive.svg share/icons/breeze-dark/mimetypes/22/application-x-mplayer2.svg share/icons/breeze-dark/mimetypes/22/application-x-ms-dos-executable.svg share/icons/breeze-dark/mimetypes/22/application-x-ms-shortcut.svg share/icons/breeze-dark/mimetypes/22/application-x-ms-wim.svg share/icons/breeze-dark/mimetypes/22/application-x-msdownload.svg share/icons/breeze-dark/mimetypes/22/application-x-mswinurl.svg share/icons/breeze-dark/mimetypes/22/application-x-mswrite.svg share/icons/breeze-dark/mimetypes/22/application-x-n64-rom.svg share/icons/breeze-dark/mimetypes/22/application-x-nes-rom.svg share/icons/breeze-dark/mimetypes/22/application-x-nintendo-ds-rom.svg share/icons/breeze-dark/mimetypes/22/application-x-nzb.svg share/icons/breeze-dark/mimetypes/22/application-x-object.svg share/icons/breeze-dark/mimetypes/22/application-x-pak.svg share/icons/breeze-dark/mimetypes/22/application-x-partial-download.svg share/icons/breeze-dark/mimetypes/22/application-x-pem-key.svg share/icons/breeze-dark/mimetypes/22/application-x-perl.svg share/icons/breeze-dark/mimetypes/22/application-x-php.svg share/icons/breeze-dark/mimetypes/22/application-x-pkcs12.svg share/icons/breeze-dark/mimetypes/22/application-x-pkcs7-certificates.svg share/icons/breeze-dark/mimetypes/22/application-x-plasma.svg share/icons/breeze-dark/mimetypes/22/application-x-python-bytecode.svg share/icons/breeze-dark/mimetypes/22/application-x-qemu-disk.svg share/icons/breeze-dark/mimetypes/22/application-x-qet-element.svg share/icons/breeze-dark/mimetypes/22/application-x-qet-project.svg share/icons/breeze-dark/mimetypes/22/application-x-quattropro.svg share/icons/breeze-dark/mimetypes/22/application-x-rar.svg share/icons/breeze-dark/mimetypes/22/application-x-raw-disk-image.svg share/icons/breeze-dark/mimetypes/22/application-x-rdata.svg share/icons/breeze-dark/mimetypes/22/application-x-root.svg share/icons/breeze-dark/mimetypes/22/application-x-rpm.svg share/icons/breeze-dark/mimetypes/22/application-x-ruby.svg share/icons/breeze-dark/mimetypes/22/application-x-sami.svg share/icons/breeze-dark/mimetypes/22/application-x-sharedlib.svg share/icons/breeze-dark/mimetypes/22/application-x-shellscript.svg share/icons/breeze-dark/mimetypes/22/application-x-shockwave-flash.svg share/icons/breeze-dark/mimetypes/22/application-x-siag.svg share/icons/breeze-dark/mimetypes/22/application-x-sif.svg share/icons/breeze-dark/mimetypes/22/application-x-skg.svg share/icons/breeze-dark/mimetypes/22/application-x-skgc.svg share/icons/breeze-dark/mimetypes/22/application-x-smb-server.svg share/icons/breeze-dark/mimetypes/22/application-x-smb-workgroup.svg share/icons/breeze-dark/mimetypes/22/application-x-source-rpm.svg share/icons/breeze-dark/mimetypes/22/application-x-sqlite2.svg share/icons/breeze-dark/mimetypes/22/application-x-sqlite3.svg share/icons/breeze-dark/mimetypes/22/application-x-srt.svg share/icons/breeze-dark/mimetypes/22/application-x-srtrip.svg share/icons/breeze-dark/mimetypes/22/application-x-subrip.svg share/icons/breeze-dark/mimetypes/22/application-x-tar.svg share/icons/breeze-dark/mimetypes/22/application-x-tarz.svg share/icons/breeze-dark/mimetypes/22/application-x-tgif.svg share/icons/breeze-dark/mimetypes/22/application-x-theme.svg share/icons/breeze-dark/mimetypes/22/application-x-trash.svg share/icons/breeze-dark/mimetypes/22/application-x-troff-man.svg share/icons/breeze-dark/mimetypes/22/application-x-tzo.svg share/icons/breeze-dark/mimetypes/22/application-x-vdi-disk.svg share/icons/breeze-dark/mimetypes/22/application-x-wmf.svg share/icons/breeze-dark/mimetypes/22/application-x-x509-ca-cert.svg share/icons/breeze-dark/mimetypes/22/application-x-x509-user-cert.svg share/icons/breeze-dark/mimetypes/22/application-x-xliff.svg share/icons/breeze-dark/mimetypes/22/application-x-xpinstall.svg share/icons/breeze-dark/mimetypes/22/application-x-xz-compressed-tar.svg share/icons/breeze-dark/mimetypes/22/application-x-xz-pkg.svg share/icons/breeze-dark/mimetypes/22/application-x-zerosize.svg share/icons/breeze-dark/mimetypes/22/application-x-zip-compressed-fb2.svg share/icons/breeze-dark/mimetypes/22/application-x-zoo.svg share/icons/breeze-dark/mimetypes/22/application-xhtml+xml.svg share/icons/breeze-dark/mimetypes/22/application-xmind.svg share/icons/breeze-dark/mimetypes/22/application-xml.svg share/icons/breeze-dark/mimetypes/22/application-xsd.svg share/icons/breeze-dark/mimetypes/22/application-xslt+xml.svg share/icons/breeze-dark/mimetypes/22/application-zip.svg share/icons/breeze-dark/mimetypes/22/audio-ac3.svg share/icons/breeze-dark/mimetypes/22/audio-flac.svg share/icons/breeze-dark/mimetypes/22/audio-midi.svg share/icons/breeze-dark/mimetypes/22/audio-mp2.svg share/icons/breeze-dark/mimetypes/22/audio-mp3.svg share/icons/breeze-dark/mimetypes/22/audio-mp4.svg share/icons/breeze-dark/mimetypes/22/audio-mpeg.svg share/icons/breeze-dark/mimetypes/22/audio-prs.sid.svg share/icons/breeze-dark/mimetypes/22/audio-vn.rn-realmedia.svg share/icons/breeze-dark/mimetypes/22/audio-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/22/audio-x-adpcm.svg share/icons/breeze-dark/mimetypes/22/audio-x-aiff.svg share/icons/breeze-dark/mimetypes/22/audio-x-flac+ogg.svg share/icons/breeze-dark/mimetypes/22/audio-x-flac.svg share/icons/breeze-dark/mimetypes/22/audio-x-generic.svg share/icons/breeze-dark/mimetypes/22/audio-x-monkey.svg share/icons/breeze-dark/mimetypes/22/audio-x-mp2.svg share/icons/breeze-dark/mimetypes/22/audio-x-mpeg.svg share/icons/breeze-dark/mimetypes/22/audio-x-speex+ogg.svg share/icons/breeze-dark/mimetypes/22/audio-x-wav.svg share/icons/breeze-dark/mimetypes/22/audiobook.svg share/icons/breeze-dark/mimetypes/22/encrypted.svg share/icons/breeze-dark/mimetypes/22/font-otf.svg share/icons/breeze-dark/mimetypes/22/font-ttf.svg share/icons/breeze-dark/mimetypes/22/fonts-package.svg share/icons/breeze-dark/mimetypes/22/image-bmp.svg share/icons/breeze-dark/mimetypes/22/image-gif.svg share/icons/breeze-dark/mimetypes/22/image-ico.svg share/icons/breeze-dark/mimetypes/22/image-jpeg.svg share/icons/breeze-dark/mimetypes/22/image-jpeg2000.svg share/icons/breeze-dark/mimetypes/22/image-png.svg share/icons/breeze-dark/mimetypes/22/image-svg+xml-compressed.svg share/icons/breeze-dark/mimetypes/22/image-svg+xml.svg share/icons/breeze-dark/mimetypes/22/image-tiff.svg share/icons/breeze-dark/mimetypes/22/image-vnd.dgn.svg share/icons/breeze-dark/mimetypes/22/image-vnd.djvu.svg share/icons/breeze-dark/mimetypes/22/image-vnd.dwg.svg share/icons/breeze-dark/mimetypes/22/image-vnd.microsoft.icon.svg share/icons/breeze-dark/mimetypes/22/image-x-adobe-dng.svg share/icons/breeze-dark/mimetypes/22/image-x-compressed-xcf.svg share/icons/breeze-dark/mimetypes/22/image-x-emf.svg share/icons/breeze-dark/mimetypes/22/image-x-eps.svg share/icons/breeze-dark/mimetypes/22/image-x-generic.svg share/icons/breeze-dark/mimetypes/22/image-x-ico.svg share/icons/breeze-dark/mimetypes/22/image-x-icon.svg share/icons/breeze-dark/mimetypes/22/image-x-krita.svg share/icons/breeze-dark/mimetypes/22/image-x-portable-bitmap.svg share/icons/breeze-dark/mimetypes/22/image-x-psd.svg share/icons/breeze-dark/mimetypes/22/image-x-psdimage-x-psd.svg share/icons/breeze-dark/mimetypes/22/image-x-svg+xml.svg share/icons/breeze-dark/mimetypes/22/image-x-tga.svg share/icons/breeze-dark/mimetypes/22/image-x-vnd.trolltech.qpicture.svg share/icons/breeze-dark/mimetypes/22/image-x-win-bitmap.svg share/icons/breeze-dark/mimetypes/22/image-x-win-bmp.svg share/icons/breeze-dark/mimetypes/22/image-x-wmf.svg share/icons/breeze-dark/mimetypes/22/image-x-xcf.svg share/icons/breeze-dark/mimetypes/22/image-x-xfig.svg share/icons/breeze-dark/mimetypes/22/inode-directory.svg share/icons/breeze-dark/mimetypes/22/libreoffice-database.svg share/icons/breeze-dark/mimetypes/22/libreoffice-drawing-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-drawing.svg share/icons/breeze-dark/mimetypes/22/libreoffice-extension.svg share/icons/breeze-dark/mimetypes/22/libreoffice-formula.svg share/icons/breeze-dark/mimetypes/22/libreoffice-master-document.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-database.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-drawing-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-drawing.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-formula.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-master-document.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-presentation-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-presentation.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-spreadsheet.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-text-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-text.svg share/icons/breeze-dark/mimetypes/22/libreoffice-oasis-web-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-presentation-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-presentation.svg share/icons/breeze-dark/mimetypes/22/libreoffice-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-spreadsheet.svg share/icons/breeze-dark/mimetypes/22/libreoffice-text-template.svg share/icons/breeze-dark/mimetypes/22/libreoffice-text.svg share/icons/breeze-dark/mimetypes/22/message-news.svg share/icons/breeze-dark/mimetypes/22/message-partial.svg share/icons/breeze-dark/mimetypes/22/message-rfc822.svg share/icons/breeze-dark/mimetypes/22/message-x-gnu-rmail.svg share/icons/breeze-dark/mimetypes/22/message.svg share/icons/breeze-dark/mimetypes/22/none.svg share/icons/breeze-dark/mimetypes/22/odf.svg share/icons/breeze-dark/mimetypes/22/package-x-generic.svg share/icons/breeze-dark/mimetypes/22/podcast.svg share/icons/breeze-dark/mimetypes/22/text-calendar.svg share/icons/breeze-dark/mimetypes/22/text-csharp.svg share/icons/breeze-dark/mimetypes/22/text-css.svg share/icons/breeze-dark/mimetypes/22/text-csv.svg share/icons/breeze-dark/mimetypes/22/text-directory.svg share/icons/breeze-dark/mimetypes/22/text-dockerfile.svg share/icons/breeze-dark/mimetypes/22/text-enriched.svg +share/icons/breeze-dark/mimetypes/22/text-fortran.svg share/icons/breeze-dark/mimetypes/22/text-html.svg share/icons/breeze-dark/mimetypes/22/text-javascript.svg share/icons/breeze-dark/mimetypes/22/text-markdown.svg share/icons/breeze-dark/mimetypes/22/text-plain.svg share/icons/breeze-dark/mimetypes/22/text-rdf+xml.svg share/icons/breeze-dark/mimetypes/22/text-rdf.svg share/icons/breeze-dark/mimetypes/22/text-rtf.svg share/icons/breeze-dark/mimetypes/22/text-rust.svg share/icons/breeze-dark/mimetypes/22/text-sgml.svg share/icons/breeze-dark/mimetypes/22/text-troff.svg share/icons/breeze-dark/mimetypes/22/text-vcalendar.svg share/icons/breeze-dark/mimetypes/22/text-vnd.abc.svg share/icons/breeze-dark/mimetypes/22/text-vnd.kde.kcrash-report.svg share/icons/breeze-dark/mimetypes/22/text-vnd.trolltech.linguist.svg share/icons/breeze-dark/mimetypes/22/text-vnd.wap.wml.svg share/icons/breeze-dark/mimetypes/22/text-vtt.svg share/icons/breeze-dark/mimetypes/22/text-wiki.svg share/icons/breeze-dark/mimetypes/22/text-x-adasrc.svg share/icons/breeze-dark/mimetypes/22/text-x-apport.svg share/icons/breeze-dark/mimetypes/22/text-x-authors.svg share/icons/breeze-dark/mimetypes/22/text-x-bibtex.svg share/icons/breeze-dark/mimetypes/22/text-x-c++hdr.svg share/icons/breeze-dark/mimetypes/22/text-x-c++src.svg share/icons/breeze-dark/mimetypes/22/text-x-changelog.svg share/icons/breeze-dark/mimetypes/22/text-x-chdr.svg share/icons/breeze-dark/mimetypes/22/text-x-cmake.svg share/icons/breeze-dark/mimetypes/22/text-x-copying.svg share/icons/breeze-dark/mimetypes/22/text-x-credits.svg share/icons/breeze-dark/mimetypes/22/text-x-csharp.svg share/icons/breeze-dark/mimetypes/22/text-x-csrc.svg share/icons/breeze-dark/mimetypes/22/text-x-dtd.svg +share/icons/breeze-dark/mimetypes/22/text-x-fortran.svg share/icons/breeze-dark/mimetypes/22/text-x-generic.svapplication-x-awk.svg share/icons/breeze-dark/mimetypes/22/text-x-generic.svg share/icons/breeze-dark/mimetypes/22/text-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/22/text-x-go.svg share/icons/breeze-dark/mimetypes/22/text-x-haskell.svg share/icons/breeze-dark/mimetypes/22/text-x-hex.svg share/icons/breeze-dark/mimetypes/22/text-x-install.svg share/icons/breeze-dark/mimetypes/22/text-x-java-source.svg share/icons/breeze-dark/mimetypes/22/text-x-java.svg share/icons/breeze-dark/mimetypes/22/text-x-javascript.svg share/icons/breeze-dark/mimetypes/22/text-x-katefilelist.svg share/icons/breeze-dark/mimetypes/22/text-x-kotlin.svg share/icons/breeze-dark/mimetypes/22/text-x-ldif.svg share/icons/breeze-dark/mimetypes/22/text-x-lilypond.svg share/icons/breeze-dark/mimetypes/22/text-x-log.svg share/icons/breeze-dark/mimetypes/22/text-x-lua.svg share/icons/breeze-dark/mimetypes/22/text-x-makefile.svg share/icons/breeze-dark/mimetypes/22/text-x-markdown.svg share/icons/breeze-dark/mimetypes/22/text-x-microdvd.svg share/icons/breeze-dark/mimetypes/22/text-x-mpsub.svg share/icons/breeze-dark/mimetypes/22/text-x-nfo.svg share/icons/breeze-dark/mimetypes/22/text-x-objchdr.svg share/icons/breeze-dark/mimetypes/22/text-x-objcsrc.svg share/icons/breeze-dark/mimetypes/22/text-x-opml+xml.svg share/icons/breeze-dark/mimetypes/22/text-x-opml.svg share/icons/breeze-dark/mimetypes/22/text-x-pascal.svg share/icons/breeze-dark/mimetypes/22/text-x-patch.svg share/icons/breeze-dark/mimetypes/22/text-x-plain.svg share/icons/breeze-dark/mimetypes/22/text-x-po.svg share/icons/breeze-dark/mimetypes/22/text-x-python.svg share/icons/breeze-dark/mimetypes/22/text-x-python3.svg share/icons/breeze-dark/mimetypes/22/text-x-qml.svg share/icons/breeze-dark/mimetypes/22/text-x-r.svg share/icons/breeze-dark/mimetypes/22/text-x-readme.svg share/icons/breeze-dark/mimetypes/22/text-x-rpm-spec.svg share/icons/breeze-dark/mimetypes/22/text-x-rust.svg share/icons/breeze-dark/mimetypes/22/text-x-scala.svg share/icons/breeze-dark/mimetypes/22/text-x-script.svg share/icons/breeze-dark/mimetypes/22/text-x-sql.svg share/icons/breeze-dark/mimetypes/22/text-x-ssa.svg share/icons/breeze-dark/mimetypes/22/text-x-subviewer.svg share/icons/breeze-dark/mimetypes/22/text-x-tcl.svg share/icons/breeze-dark/mimetypes/22/text-x-tex.svg share/icons/breeze-dark/mimetypes/22/text-x-texinfo.svg share/icons/breeze-dark/mimetypes/22/text-x-vcard.svg share/icons/breeze-dark/mimetypes/22/text-x-xslfo.svg share/icons/breeze-dark/mimetypes/22/text-xmcd.svg share/icons/breeze-dark/mimetypes/22/text-xml.svg share/icons/breeze-dark/mimetypes/22/unknown.svg share/icons/breeze-dark/mimetypes/22/uri-mms.svg share/icons/breeze-dark/mimetypes/22/uri-mmst.svg share/icons/breeze-dark/mimetypes/22/uri-pnm.svg share/icons/breeze-dark/mimetypes/22/uri-rtspt.svg share/icons/breeze-dark/mimetypes/22/uri-rtspu.svg share/icons/breeze-dark/mimetypes/22/video-mlt-playlist.svg share/icons/breeze-dark/mimetypes/22/video-mp2t.svg share/icons/breeze-dark/mimetypes/22/video-mp4.svg share/icons/breeze-dark/mimetypes/22/video-vivo.svg share/icons/breeze-dark/mimetypes/22/video-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/22/video-wavelet.svg share/icons/breeze-dark/mimetypes/22/video-webm.svg share/icons/breeze-dark/mimetypes/22/video-x-anim.svg share/icons/breeze-dark/mimetypes/22/video-x-flic.svg share/icons/breeze-dark/mimetypes/22/video-x-flv.svg share/icons/breeze-dark/mimetypes/22/video-x-generic.svg share/icons/breeze-dark/mimetypes/22/video-x-google-vlc-plugin.svg share/icons/breeze-dark/mimetypes/22/video-x-javafx.svg share/icons/breeze-dark/mimetypes/22/video-x-matroska.svg share/icons/breeze-dark/mimetypes/22/video-x-mng.svg share/icons/breeze-dark/mimetypes/22/video-x-ms-wmp.svg share/icons/breeze-dark/mimetypes/22/video-x-ms-wmv.svg share/icons/breeze-dark/mimetypes/22/video-x-msvideo.svg share/icons/breeze-dark/mimetypes/22/video-x-ogm+ogg.svg share/icons/breeze-dark/mimetypes/22/video-x-theora+ogg.svg share/icons/breeze-dark/mimetypes/22/video-x-wmv.svg share/icons/breeze-dark/mimetypes/22/viewbib.svg share/icons/breeze-dark/mimetypes/22/viewdvi.svg share/icons/breeze-dark/mimetypes/22/viewhtml.svg share/icons/breeze-dark/mimetypes/22/viewpdf.svg share/icons/breeze-dark/mimetypes/22/viewps.svg share/icons/breeze-dark/mimetypes/22/virtualbox-hdd.svg share/icons/breeze-dark/mimetypes/22/virtualbox-ova.svg share/icons/breeze-dark/mimetypes/22/virtualbox-ovf.svg share/icons/breeze-dark/mimetypes/22/virtualbox-vbox-extpack.svg share/icons/breeze-dark/mimetypes/22/virtualbox-vbox.svg share/icons/breeze-dark/mimetypes/22/virtualbox-vdi.svg share/icons/breeze-dark/mimetypes/22/virtualbox-vhd.svg share/icons/breeze-dark/mimetypes/22/virtualbox-vmdk.svg share/icons/breeze-dark/mimetypes/22/vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/22/x-kde-nsplugin-generated.svg share/icons/breeze-dark/mimetypes/22/x-mail-distribution-list.svg share/icons/breeze-dark/mimetypes/22/x-media-podcast.svg share/icons/breeze-dark/mimetypes/22/x-office-address-book.svg share/icons/breeze-dark/mimetypes/22/x-office-calendar.svg share/icons/breeze-dark/mimetypes/22/x-office-contact.svg share/icons/breeze-dark/mimetypes/22/x-office-document.svg share/icons/breeze-dark/mimetypes/22/x-office-drawing.svg share/icons/breeze-dark/mimetypes/22/x-office-presentation.svg share/icons/breeze-dark/mimetypes/22/x-office-spreadsheet.svg share/icons/breeze-dark/mimetypes/22@2x share/icons/breeze-dark/mimetypes/22@3x share/icons/breeze-dark/mimetypes/24/application-x-fictionbook+xml.svg share/icons/breeze-dark/mimetypes/24/application-x-ms-shortcut.svg share/icons/breeze-dark/mimetypes/24/application-x-zip-compressed-fb2.svg share/icons/breeze-dark/mimetypes/24/inode-directory.svg share/icons/breeze-dark/mimetypes/24@2x share/icons/breeze-dark/mimetypes/24@3x share/icons/breeze-dark/mimetypes/32/android-package-archive.svg share/icons/breeze-dark/mimetypes/32/application-atom+xml.svg share/icons/breeze-dark/mimetypes/32/application-certificate.svg share/icons/breeze-dark/mimetypes/32/application-dicom.svg share/icons/breeze-dark/mimetypes/32/application-epub+zip.svg share/icons/breeze-dark/mimetypes/32/application-gzip.svg share/icons/breeze-dark/mimetypes/32/application-illustrator.svg share/icons/breeze-dark/mimetypes/32/application-javascript.svg share/icons/breeze-dark/mimetypes/32/application-json.svg share/icons/breeze-dark/mimetypes/32/application-mac-binhex40.svg share/icons/breeze-dark/mimetypes/32/application-mathml+xml.svg share/icons/breeze-dark/mimetypes/32/application-msonenote.svg share/icons/breeze-dark/mimetypes/32/application-msoutlook.svg share/icons/breeze-dark/mimetypes/32/application-msword-template.svg share/icons/breeze-dark/mimetypes/32/application-msword.svg share/icons/breeze-dark/mimetypes/32/application-octet-stream.svg share/icons/breeze-dark/mimetypes/32/application-ogg.svg share/icons/breeze-dark/mimetypes/32/application-pdf.svg share/icons/breeze-dark/mimetypes/32/application-pgp-encrypted.svg share/icons/breeze-dark/mimetypes/32/application-pgp-keys.svg share/icons/breeze-dark/mimetypes/32/application-pgp-signature.svg share/icons/breeze-dark/mimetypes/32/application-pgp.svg share/icons/breeze-dark/mimetypes/32/application-pkcs12.svg share/icons/breeze-dark/mimetypes/32/application-pkcs7-mime.svg share/icons/breeze-dark/mimetypes/32/application-pkcs7-signature.svg share/icons/breeze-dark/mimetypes/32/application-pkix-cerl.svg share/icons/breeze-dark/mimetypes/32/application-pkix-cert.svg share/icons/breeze-dark/mimetypes/32/application-postscript.svg share/icons/breeze-dark/mimetypes/32/application-relaxng.svg share/icons/breeze-dark/mimetypes/32/application-rss+xml.svg share/icons/breeze-dark/mimetypes/32/application-rtf.svg share/icons/breeze-dark/mimetypes/32/application-sql.svg share/icons/breeze-dark/mimetypes/32/application-sxw.svg share/icons/breeze-dark/mimetypes/32/application-vnd.android.package-archive.svg share/icons/breeze-dark/mimetypes/32/application-vnd.appimage.svg share/icons/breeze-dark/mimetypes/32/application-vnd.apple.pkpass.svg share/icons/breeze-dark/mimetypes/32/application-vnd.debian.binary-package.svg share/icons/breeze-dark/mimetypes/32/application-vnd.flatpak.ref.svg share/icons/breeze-dark/mimetypes/32/application-vnd.google-earth.kml+xml.svg share/icons/breeze-dark/mimetypes/32/application-vnd.iccprofile.svg share/icons/breeze-dark/mimetypes/32/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-access.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-excel.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-infopath.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-powerpoint.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-word.svg share/icons/breeze-dark/mimetypes/32/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/32/application-vnd.nintendo.snes.rom.svg share/icons/breeze-dark/mimetypes/32/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.chart.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.database.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.formula.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.image.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.text.svg share/icons/breeze-dark/mimetypes/32/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze-dark/mimetypes/32/application-vnd.openofficeorg.extension.svg share/icons/breeze-dark/mimetypes/32/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze-dark/mimetypes/32/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze-dark/mimetypes/32/application-vnd.rar.svg share/icons/breeze-dark/mimetypes/32/application-vnd.rn-realmedia.svg share/icons/breeze-dark/mimetypes/32/application-vnd.scribus.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sqlite3.svg share/icons/breeze-dark/mimetypes/32/application-vnd.squashfs.svg share/icons/breeze-dark/mimetypes/32/application-vnd.stardivision.calc.svg share/icons/breeze-dark/mimetypes/32/application-vnd.stardivision.draw.svg share/icons/breeze-dark/mimetypes/32/application-vnd.stardivision.mail.svg share/icons/breeze-dark/mimetypes/32/application-vnd.stardivision.math.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.calc.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.calc.template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.draw.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.draw.template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.impress.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.impress.template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.math.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.writer.global.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.writer.svg share/icons/breeze-dark/mimetypes/32/application-vnd.sun.xml.writer.template.svg share/icons/breeze-dark/mimetypes/32/application-vnd.visio.svg share/icons/breeze-dark/mimetypes/32/application-vnd.wordperfect.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.doc.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.docx.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.dot.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.dotx.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.pot.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.potx.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.ppt.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.pptx.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.xls.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.xlsx.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.xlt.svg share/icons/breeze-dark/mimetypes/32/application-wps-office.xltx.svg share/icons/breeze-dark/mimetypes/32/application-x-7z-compressed.svg share/icons/breeze-dark/mimetypes/32/application-x-abiword.svg share/icons/breeze-dark/mimetypes/32/application-x-ace.svg share/icons/breeze-dark/mimetypes/32/application-x-apple-diskimage.svg share/icons/breeze-dark/mimetypes/32/application-x-applix-spreadsheet.svg share/icons/breeze-dark/mimetypes/32/application-x-applix-word.svg share/icons/breeze-dark/mimetypes/32/application-x-ar.svg share/icons/breeze-dark/mimetypes/32/application-x-arc.svg share/icons/breeze-dark/mimetypes/32/application-x-archive.svg share/icons/breeze-dark/mimetypes/32/application-x-arj.svg share/icons/breeze-dark/mimetypes/32/application-x-audacity-project.svg share/icons/breeze-dark/mimetypes/32/application-x-awk.svg share/icons/breeze-dark/mimetypes/32/application-x-bittorrent.svg share/icons/breeze-dark/mimetypes/32/application-x-blender.svg share/icons/breeze-dark/mimetypes/32/application-x-bzdvi.svg share/icons/breeze-dark/mimetypes/32/application-x-bzip-compressed-tar.svg share/icons/breeze-dark/mimetypes/32/application-x-bzip.svg share/icons/breeze-dark/mimetypes/32/application-x-cd-image.svg share/icons/breeze-dark/mimetypes/32/application-x-cda.svg share/icons/breeze-dark/mimetypes/32/application-x-chm.svg share/icons/breeze-dark/mimetypes/32/application-x-compress.svg share/icons/breeze-dark/mimetypes/32/application-x-compressed-tar.svg share/icons/breeze-dark/mimetypes/32/application-x-core.svg share/icons/breeze-dark/mimetypes/32/application-x-cpio.svg share/icons/breeze-dark/mimetypes/32/application-x-cue.svg share/icons/breeze-dark/mimetypes/32/application-x-deb.svg share/icons/breeze-dark/mimetypes/32/application-x-designer.svg share/icons/breeze-dark/mimetypes/32/application-x-desktop.svg share/icons/breeze-dark/mimetypes/32/application-x-egon.svg share/icons/breeze-dark/mimetypes/32/application-x-executable-script.svg share/icons/breeze-dark/mimetypes/32/application-x-executable.svg share/icons/breeze-dark/mimetypes/32/application-x-fictionbook+xml.svg share/icons/breeze-dark/mimetypes/32/application-x-flash-video.svg share/icons/breeze-dark/mimetypes/32/application-x-font-afm.svg share/icons/breeze-dark/mimetypes/32/application-x-font-bdf.svg share/icons/breeze-dark/mimetypes/32/application-x-font-otf.svg share/icons/breeze-dark/mimetypes/32/application-x-font-pcf.svg share/icons/breeze-dark/mimetypes/32/application-x-font-snf.svg share/icons/breeze-dark/mimetypes/32/application-x-font-ttf.svg share/icons/breeze-dark/mimetypes/32/application-x-font-ttx.svg share/icons/breeze-dark/mimetypes/32/application-x-font-type1.svg share/icons/breeze-dark/mimetypes/32/application-x-gameboy-rom.svg share/icons/breeze-dark/mimetypes/32/application-x-gamecube-rom.svg share/icons/breeze-dark/mimetypes/32/application-x-gba-rom.svg share/icons/breeze-dark/mimetypes/32/application-x-gdscript.svg share/icons/breeze-dark/mimetypes/32/application-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/32/application-x-gnumeric.svg share/icons/breeze-dark/mimetypes/32/application-x-godot-project.svg share/icons/breeze-dark/mimetypes/32/application-x-godot-resource.svg share/icons/breeze-dark/mimetypes/32/application-x-godot-scene.svg share/icons/breeze-dark/mimetypes/32/application-x-godot-shader.svg share/icons/breeze-dark/mimetypes/32/application-x-gzdvi.svg share/icons/breeze-dark/mimetypes/32/application-x-gzip.svg share/icons/breeze-dark/mimetypes/32/application-x-gzpostscript.svg share/icons/breeze-dark/mimetypes/32/application-x-iso.svg share/icons/breeze-dark/mimetypes/32/application-x-iso9660-appimage.svg share/icons/breeze-dark/mimetypes/32/application-x-it87.svg share/icons/breeze-dark/mimetypes/32/application-x-jar.svg share/icons/breeze-dark/mimetypes/32/application-x-java-applet.svg share/icons/breeze-dark/mimetypes/32/application-x-java-archive.svg share/icons/breeze-dark/mimetypes/32/application-x-java.svg share/icons/breeze-dark/mimetypes/32/application-x-javascript.svg share/icons/breeze-dark/mimetypes/32/application-x-k3b.svg share/icons/breeze-dark/mimetypes/32/application-x-kcsrc.svg share/icons/breeze-dark/mimetypes/32/application-x-kdenlivetitle.svg share/icons/breeze-dark/mimetypes/32/application-x-kexi-connectiondata.svg share/icons/breeze-dark/mimetypes/32/application-x-kexiproject-shortcut.svg share/icons/breeze-dark/mimetypes/32/application-x-kexiproject-sqlite.svg share/icons/breeze-dark/mimetypes/32/application-x-kexiproject-sqlite2.svg share/icons/breeze-dark/mimetypes/32/application-x-kexiproject-sqlite3.svg share/icons/breeze-dark/mimetypes/32/application-x-kformula.svg share/icons/breeze-dark/mimetypes/32/application-x-kgetlist.svg share/icons/breeze-dark/mimetypes/32/application-x-kmymoney.svg share/icons/breeze-dark/mimetypes/32/application-x-kontour.svg share/icons/breeze-dark/mimetypes/32/application-x-kplato.svg share/icons/breeze-dark/mimetypes/32/application-x-krita.svg share/icons/breeze-dark/mimetypes/32/application-x-kvtml.svg share/icons/breeze-dark/mimetypes/32/application-x-kword.svg share/icons/breeze-dark/mimetypes/32/application-x-lha.svg share/icons/breeze-dark/mimetypes/32/application-x-lyx.svg share/icons/breeze-dark/mimetypes/32/application-x-lzma-compressed-tar.svg share/icons/breeze-dark/mimetypes/32/application-x-lzop.svg share/icons/breeze-dark/mimetypes/32/application-x-m4.svg share/icons/breeze-dark/mimetypes/32/application-x-macbinary.svg share/icons/breeze-dark/mimetypes/32/application-x-marble.svg share/icons/breeze-dark/mimetypes/32/application-x-mimearchive.svg share/icons/breeze-dark/mimetypes/32/application-x-mplayer2.svg share/icons/breeze-dark/mimetypes/32/application-x-ms-dos-executable.svg share/icons/breeze-dark/mimetypes/32/application-x-ms-shortcut.svg share/icons/breeze-dark/mimetypes/32/application-x-ms-wim.svg share/icons/breeze-dark/mimetypes/32/application-x-msdownload.svg share/icons/breeze-dark/mimetypes/32/application-x-mswinurl.svg share/icons/breeze-dark/mimetypes/32/application-x-mswrite.svg share/icons/breeze-dark/mimetypes/32/application-x-n64-rom.svg share/icons/breeze-dark/mimetypes/32/application-x-nes-rom.svg share/icons/breeze-dark/mimetypes/32/application-x-nintendo-ds-rom.svg share/icons/breeze-dark/mimetypes/32/application-x-nzb.svg share/icons/breeze-dark/mimetypes/32/application-x-object.svg share/icons/breeze-dark/mimetypes/32/application-x-pak.svg share/icons/breeze-dark/mimetypes/32/application-x-partial-download.svg share/icons/breeze-dark/mimetypes/32/application-x-pem-key.svg share/icons/breeze-dark/mimetypes/32/application-x-perl.svg share/icons/breeze-dark/mimetypes/32/application-x-php.svg share/icons/breeze-dark/mimetypes/32/application-x-pkcs12.svg share/icons/breeze-dark/mimetypes/32/application-x-pkcs7-certificates.svg share/icons/breeze-dark/mimetypes/32/application-x-plasma.svg share/icons/breeze-dark/mimetypes/32/application-x-python-bytecode.svg share/icons/breeze-dark/mimetypes/32/application-x-qemu-disk.svg share/icons/breeze-dark/mimetypes/32/application-x-qet-element.svg share/icons/breeze-dark/mimetypes/32/application-x-qet-project.svg share/icons/breeze-dark/mimetypes/32/application-x-quattropro.svg share/icons/breeze-dark/mimetypes/32/application-x-rar.svg share/icons/breeze-dark/mimetypes/32/application-x-raw-disk-image.svg share/icons/breeze-dark/mimetypes/32/application-x-rdata.svg share/icons/breeze-dark/mimetypes/32/application-x-root.svg share/icons/breeze-dark/mimetypes/32/application-x-rpm.svg share/icons/breeze-dark/mimetypes/32/application-x-ruby.svg share/icons/breeze-dark/mimetypes/32/application-x-sami.svg share/icons/breeze-dark/mimetypes/32/application-x-sharedlib.svg share/icons/breeze-dark/mimetypes/32/application-x-shellscript.svg share/icons/breeze-dark/mimetypes/32/application-x-shockwave-flash.svg share/icons/breeze-dark/mimetypes/32/application-x-siag.svg share/icons/breeze-dark/mimetypes/32/application-x-sif.svg share/icons/breeze-dark/mimetypes/32/application-x-skg.svg share/icons/breeze-dark/mimetypes/32/application-x-skgc.svg share/icons/breeze-dark/mimetypes/32/application-x-smb-server.svg share/icons/breeze-dark/mimetypes/32/application-x-smb-workgroup.svg share/icons/breeze-dark/mimetypes/32/application-x-source-rpm.svg share/icons/breeze-dark/mimetypes/32/application-x-sqlite2.svg share/icons/breeze-dark/mimetypes/32/application-x-sqlite3.svg share/icons/breeze-dark/mimetypes/32/application-x-srt.svg share/icons/breeze-dark/mimetypes/32/application-x-srtrip.svg share/icons/breeze-dark/mimetypes/32/application-x-subrip.svg share/icons/breeze-dark/mimetypes/32/application-x-tar.svg share/icons/breeze-dark/mimetypes/32/application-x-tarz.svg share/icons/breeze-dark/mimetypes/32/application-x-tgif.svg share/icons/breeze-dark/mimetypes/32/application-x-theme.svg share/icons/breeze-dark/mimetypes/32/application-x-trash.svg share/icons/breeze-dark/mimetypes/32/application-x-troff-man.svg share/icons/breeze-dark/mimetypes/32/application-x-tzo.svg share/icons/breeze-dark/mimetypes/32/application-x-vdi-disk.svg share/icons/breeze-dark/mimetypes/32/application-x-wmf.svg share/icons/breeze-dark/mimetypes/32/application-x-x509-ca-cert.svg share/icons/breeze-dark/mimetypes/32/application-x-x509-user-cert.svg share/icons/breeze-dark/mimetypes/32/application-x-xliff.svg share/icons/breeze-dark/mimetypes/32/application-x-xpinstall.svg share/icons/breeze-dark/mimetypes/32/application-x-xz-compressed-tar.svg share/icons/breeze-dark/mimetypes/32/application-x-xz-pkg.svg share/icons/breeze-dark/mimetypes/32/application-x-zerosize.svg share/icons/breeze-dark/mimetypes/32/application-x-zip-compressed-fb2.svg share/icons/breeze-dark/mimetypes/32/application-x-zoo.svg share/icons/breeze-dark/mimetypes/32/application-xhtml+xml.svg share/icons/breeze-dark/mimetypes/32/application-xmind.svg share/icons/breeze-dark/mimetypes/32/application-xml.svg share/icons/breeze-dark/mimetypes/32/application-xsd.svg share/icons/breeze-dark/mimetypes/32/application-xslt+xml.svg share/icons/breeze-dark/mimetypes/32/application-zip.svg share/icons/breeze-dark/mimetypes/32/audio-ac3.svg share/icons/breeze-dark/mimetypes/32/audio-flac.svg share/icons/breeze-dark/mimetypes/32/audio-midi.svg share/icons/breeze-dark/mimetypes/32/audio-mp2.svg share/icons/breeze-dark/mimetypes/32/audio-mp3.svg share/icons/breeze-dark/mimetypes/32/audio-mp4.svg share/icons/breeze-dark/mimetypes/32/audio-mpeg.svg share/icons/breeze-dark/mimetypes/32/audio-prs.sid.svg share/icons/breeze-dark/mimetypes/32/audio-vn.rn-realmedia.svg share/icons/breeze-dark/mimetypes/32/audio-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/32/audio-x-adpcm.svg share/icons/breeze-dark/mimetypes/32/audio-x-aiff.svg share/icons/breeze-dark/mimetypes/32/audio-x-flac+ogg.svg share/icons/breeze-dark/mimetypes/32/audio-x-flac.svg share/icons/breeze-dark/mimetypes/32/audio-x-generic.svg share/icons/breeze-dark/mimetypes/32/audio-x-monkey.svg share/icons/breeze-dark/mimetypes/32/audio-x-mp2.svg share/icons/breeze-dark/mimetypes/32/audio-x-mpeg.svg share/icons/breeze-dark/mimetypes/32/audio-x-speex+ogg.svg share/icons/breeze-dark/mimetypes/32/audio-x-wav.svg share/icons/breeze-dark/mimetypes/32/audiobook.svg share/icons/breeze-dark/mimetypes/32/encrypted.svg share/icons/breeze-dark/mimetypes/32/font-otf.svg share/icons/breeze-dark/mimetypes/32/font-ttf.svg share/icons/breeze-dark/mimetypes/32/fonts-package.svg share/icons/breeze-dark/mimetypes/32/image-bmp.svg share/icons/breeze-dark/mimetypes/32/image-gif.svg share/icons/breeze-dark/mimetypes/32/image-ico.svg share/icons/breeze-dark/mimetypes/32/image-jpeg.svg share/icons/breeze-dark/mimetypes/32/image-jpeg2000.svg share/icons/breeze-dark/mimetypes/32/image-png.svg share/icons/breeze-dark/mimetypes/32/image-svg+xml-compressed.svg share/icons/breeze-dark/mimetypes/32/image-svg+xml.svg share/icons/breeze-dark/mimetypes/32/image-tiff.svg share/icons/breeze-dark/mimetypes/32/image-vnd.dgn.svg share/icons/breeze-dark/mimetypes/32/image-vnd.djvu.svg share/icons/breeze-dark/mimetypes/32/image-vnd.dwg.svg share/icons/breeze-dark/mimetypes/32/image-vnd.microsoft.icon.svg share/icons/breeze-dark/mimetypes/32/image-x-adobe-dng.svg share/icons/breeze-dark/mimetypes/32/image-x-compressed-xcf.svg share/icons/breeze-dark/mimetypes/32/image-x-emf.svg share/icons/breeze-dark/mimetypes/32/image-x-eps.svg share/icons/breeze-dark/mimetypes/32/image-x-generic.svg share/icons/breeze-dark/mimetypes/32/image-x-ico.svg share/icons/breeze-dark/mimetypes/32/image-x-icon.svg share/icons/breeze-dark/mimetypes/32/image-x-krita.svg share/icons/breeze-dark/mimetypes/32/image-x-portable-bitmap.svg share/icons/breeze-dark/mimetypes/32/image-x-psd.svg share/icons/breeze-dark/mimetypes/32/image-x-psdimage-x-psd.svg share/icons/breeze-dark/mimetypes/32/image-x-svg+xml.svg share/icons/breeze-dark/mimetypes/32/image-x-tga.svg share/icons/breeze-dark/mimetypes/32/image-x-vnd.trolltech.qpicture.svg share/icons/breeze-dark/mimetypes/32/image-x-win-bitmap.svg share/icons/breeze-dark/mimetypes/32/image-x-win-bmp.svg share/icons/breeze-dark/mimetypes/32/image-x-wmf.svg share/icons/breeze-dark/mimetypes/32/image-x-xcf.svg share/icons/breeze-dark/mimetypes/32/image-x-xfig.svg share/icons/breeze-dark/mimetypes/32/inode-directory.svg share/icons/breeze-dark/mimetypes/32/libreoffice-database.svg share/icons/breeze-dark/mimetypes/32/libreoffice-drawing-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-drawing.svg share/icons/breeze-dark/mimetypes/32/libreoffice-extension.svg share/icons/breeze-dark/mimetypes/32/libreoffice-formula.svg share/icons/breeze-dark/mimetypes/32/libreoffice-master-document.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-database.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-drawing-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-drawing.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-formula.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-master-document.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-presentation-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-presentation.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-spreadsheet.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-text-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-text.svg share/icons/breeze-dark/mimetypes/32/libreoffice-oasis-web-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-presentation-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-presentation.svg share/icons/breeze-dark/mimetypes/32/libreoffice-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-spreadsheet.svg share/icons/breeze-dark/mimetypes/32/libreoffice-text-template.svg share/icons/breeze-dark/mimetypes/32/libreoffice-text.svg share/icons/breeze-dark/mimetypes/32/message-news.svg share/icons/breeze-dark/mimetypes/32/message-partial.svg share/icons/breeze-dark/mimetypes/32/message-rfc822.svg share/icons/breeze-dark/mimetypes/32/message-x-gnu-rmail.svg share/icons/breeze-dark/mimetypes/32/message.svg share/icons/breeze-dark/mimetypes/32/none.svg share/icons/breeze-dark/mimetypes/32/odf.svg share/icons/breeze-dark/mimetypes/32/package-x-generic.svg share/icons/breeze-dark/mimetypes/32/podcast.svg share/icons/breeze-dark/mimetypes/32/preferences-desktop-cryptography.svg share/icons/breeze-dark/mimetypes/32/text-calendar.svg share/icons/breeze-dark/mimetypes/32/text-csharp.svg share/icons/breeze-dark/mimetypes/32/text-css.svg share/icons/breeze-dark/mimetypes/32/text-csv.svg share/icons/breeze-dark/mimetypes/32/text-directory.svg share/icons/breeze-dark/mimetypes/32/text-dockerfile.svg share/icons/breeze-dark/mimetypes/32/text-enriched.svg +share/icons/breeze-dark/mimetypes/32/text-fortran.svg share/icons/breeze-dark/mimetypes/32/text-html.svg share/icons/breeze-dark/mimetypes/32/text-javascript.svg share/icons/breeze-dark/mimetypes/32/text-markdown.svg share/icons/breeze-dark/mimetypes/32/text-plain.svg share/icons/breeze-dark/mimetypes/32/text-rdf+xml.svg share/icons/breeze-dark/mimetypes/32/text-rdf.svg share/icons/breeze-dark/mimetypes/32/text-rtf.svg share/icons/breeze-dark/mimetypes/32/text-rust.svg share/icons/breeze-dark/mimetypes/32/text-sgml.svg share/icons/breeze-dark/mimetypes/32/text-troff.svg share/icons/breeze-dark/mimetypes/32/text-vcalendar.svg share/icons/breeze-dark/mimetypes/32/text-vnd.abc.svg share/icons/breeze-dark/mimetypes/32/text-vnd.kde.kcrash-report.svg share/icons/breeze-dark/mimetypes/32/text-vnd.trolltech.linguist.svg share/icons/breeze-dark/mimetypes/32/text-vnd.wap.wml.svg share/icons/breeze-dark/mimetypes/32/text-vtt.svg share/icons/breeze-dark/mimetypes/32/text-wiki.svg share/icons/breeze-dark/mimetypes/32/text-x-adasrc.svg share/icons/breeze-dark/mimetypes/32/text-x-apport.svg share/icons/breeze-dark/mimetypes/32/text-x-authors.svg share/icons/breeze-dark/mimetypes/32/text-x-bibtex.svg share/icons/breeze-dark/mimetypes/32/text-x-c++hdr.svg share/icons/breeze-dark/mimetypes/32/text-x-c++src.svg share/icons/breeze-dark/mimetypes/32/text-x-changelog.svg share/icons/breeze-dark/mimetypes/32/text-x-chdr.svg share/icons/breeze-dark/mimetypes/32/text-x-cmake.svg share/icons/breeze-dark/mimetypes/32/text-x-copying.svg share/icons/breeze-dark/mimetypes/32/text-x-credits.svg share/icons/breeze-dark/mimetypes/32/text-x-csharp.svg share/icons/breeze-dark/mimetypes/32/text-x-csrc.svg share/icons/breeze-dark/mimetypes/32/text-x-dtd.svg +share/icons/breeze-dark/mimetypes/32/text-x-fortran.svg share/icons/breeze-dark/mimetypes/32/text-x-generic.svapplication-x-awk.svg share/icons/breeze-dark/mimetypes/32/text-x-generic.svg share/icons/breeze-dark/mimetypes/32/text-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/32/text-x-go.svg share/icons/breeze-dark/mimetypes/32/text-x-haskell.svg share/icons/breeze-dark/mimetypes/32/text-x-hex.svg share/icons/breeze-dark/mimetypes/32/text-x-install.svg share/icons/breeze-dark/mimetypes/32/text-x-java-source.svg share/icons/breeze-dark/mimetypes/32/text-x-java.svg share/icons/breeze-dark/mimetypes/32/text-x-javascript.svg share/icons/breeze-dark/mimetypes/32/text-x-katefilelist.svg share/icons/breeze-dark/mimetypes/32/text-x-kotlin.svg share/icons/breeze-dark/mimetypes/32/text-x-ldif.svg share/icons/breeze-dark/mimetypes/32/text-x-lilypond.svg share/icons/breeze-dark/mimetypes/32/text-x-log.svg share/icons/breeze-dark/mimetypes/32/text-x-lua.svg share/icons/breeze-dark/mimetypes/32/text-x-makefile.svg share/icons/breeze-dark/mimetypes/32/text-x-markdown.svg share/icons/breeze-dark/mimetypes/32/text-x-microdvd.svg share/icons/breeze-dark/mimetypes/32/text-x-mpsub.svg share/icons/breeze-dark/mimetypes/32/text-x-nfo.svg share/icons/breeze-dark/mimetypes/32/text-x-objchdr.svg share/icons/breeze-dark/mimetypes/32/text-x-objcsrc.svg share/icons/breeze-dark/mimetypes/32/text-x-opml+xml.svg share/icons/breeze-dark/mimetypes/32/text-x-opml.svg share/icons/breeze-dark/mimetypes/32/text-x-pascal.svg share/icons/breeze-dark/mimetypes/32/text-x-patch.svg share/icons/breeze-dark/mimetypes/32/text-x-plain.svg share/icons/breeze-dark/mimetypes/32/text-x-po.svg share/icons/breeze-dark/mimetypes/32/text-x-python.svg share/icons/breeze-dark/mimetypes/32/text-x-python3.svg share/icons/breeze-dark/mimetypes/32/text-x-qml.svg share/icons/breeze-dark/mimetypes/32/text-x-r.svg share/icons/breeze-dark/mimetypes/32/text-x-readme.svg share/icons/breeze-dark/mimetypes/32/text-x-rpm-spec.svg share/icons/breeze-dark/mimetypes/32/text-x-rust.svg share/icons/breeze-dark/mimetypes/32/text-x-scala.svg share/icons/breeze-dark/mimetypes/32/text-x-script.svg share/icons/breeze-dark/mimetypes/32/text-x-sql.svg share/icons/breeze-dark/mimetypes/32/text-x-ssa.svg share/icons/breeze-dark/mimetypes/32/text-x-subviewer.svg share/icons/breeze-dark/mimetypes/32/text-x-tcl.svg share/icons/breeze-dark/mimetypes/32/text-x-tex.svg share/icons/breeze-dark/mimetypes/32/text-x-texinfo.svg share/icons/breeze-dark/mimetypes/32/text-x-vcard.svg share/icons/breeze-dark/mimetypes/32/text-x-xslfo.svg share/icons/breeze-dark/mimetypes/32/text-xmcd.svg share/icons/breeze-dark/mimetypes/32/text-xml.svg share/icons/breeze-dark/mimetypes/32/unknown.svg share/icons/breeze-dark/mimetypes/32/uri-mms.svg share/icons/breeze-dark/mimetypes/32/uri-mmst.svg share/icons/breeze-dark/mimetypes/32/uri-pnm.svg share/icons/breeze-dark/mimetypes/32/uri-rtspt.svg share/icons/breeze-dark/mimetypes/32/uri-rtspu.svg share/icons/breeze-dark/mimetypes/32/video-mlt-playlist.svg share/icons/breeze-dark/mimetypes/32/video-mp2t.svg share/icons/breeze-dark/mimetypes/32/video-mp4.svg share/icons/breeze-dark/mimetypes/32/video-vivo.svg share/icons/breeze-dark/mimetypes/32/video-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/32/video-wavelet.svg share/icons/breeze-dark/mimetypes/32/video-webm.svg share/icons/breeze-dark/mimetypes/32/video-x-anim.svg share/icons/breeze-dark/mimetypes/32/video-x-flic.svg share/icons/breeze-dark/mimetypes/32/video-x-flv.svg share/icons/breeze-dark/mimetypes/32/video-x-generic.svg share/icons/breeze-dark/mimetypes/32/video-x-google-vlc-plugin.svg share/icons/breeze-dark/mimetypes/32/video-x-javafx.svg share/icons/breeze-dark/mimetypes/32/video-x-matroska.svg share/icons/breeze-dark/mimetypes/32/video-x-mng.svg share/icons/breeze-dark/mimetypes/32/video-x-ms-wmp.svg share/icons/breeze-dark/mimetypes/32/video-x-ms-wmv.svg share/icons/breeze-dark/mimetypes/32/video-x-msvideo.svg share/icons/breeze-dark/mimetypes/32/video-x-ogm+ogg.svg share/icons/breeze-dark/mimetypes/32/video-x-theora+ogg.svg share/icons/breeze-dark/mimetypes/32/video-x-wmv.svg share/icons/breeze-dark/mimetypes/32/viewbib.svg share/icons/breeze-dark/mimetypes/32/viewdvi.svg share/icons/breeze-dark/mimetypes/32/viewhtml.svg share/icons/breeze-dark/mimetypes/32/viewpdf.svg share/icons/breeze-dark/mimetypes/32/viewps.svg share/icons/breeze-dark/mimetypes/32/virtualbox-hdd.svg share/icons/breeze-dark/mimetypes/32/virtualbox-ova.svg share/icons/breeze-dark/mimetypes/32/virtualbox-ovf.svg share/icons/breeze-dark/mimetypes/32/virtualbox-vbox-extpack.svg share/icons/breeze-dark/mimetypes/32/virtualbox-vbox.svg share/icons/breeze-dark/mimetypes/32/virtualbox-vdi.svg share/icons/breeze-dark/mimetypes/32/virtualbox-vhd.svg share/icons/breeze-dark/mimetypes/32/virtualbox-vmdk.svg share/icons/breeze-dark/mimetypes/32/vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/32/x-kde-nsplugin-generated.svg share/icons/breeze-dark/mimetypes/32/x-mail-distribution-list.svg share/icons/breeze-dark/mimetypes/32/x-media-podcast.svg share/icons/breeze-dark/mimetypes/32/x-office-address-book.svg share/icons/breeze-dark/mimetypes/32/x-office-calendar.svg share/icons/breeze-dark/mimetypes/32/x-office-contact.svg share/icons/breeze-dark/mimetypes/32/x-office-document.svg share/icons/breeze-dark/mimetypes/32/x-office-drawing.svg share/icons/breeze-dark/mimetypes/32/x-office-presentation.svg share/icons/breeze-dark/mimetypes/32/x-office-spreadsheet.svg share/icons/breeze-dark/mimetypes/64/android-package-archive.svg share/icons/breeze-dark/mimetypes/64/application-atom+xml.svg share/icons/breeze-dark/mimetypes/64/application-certificate.svg share/icons/breeze-dark/mimetypes/64/application-dicom.svg share/icons/breeze-dark/mimetypes/64/application-epub+zip.svg share/icons/breeze-dark/mimetypes/64/application-gzip.svg share/icons/breeze-dark/mimetypes/64/application-illustrator.svg share/icons/breeze-dark/mimetypes/64/application-javascript.svg share/icons/breeze-dark/mimetypes/64/application-json.svg share/icons/breeze-dark/mimetypes/64/application-mac-binhex40.svg share/icons/breeze-dark/mimetypes/64/application-mathml+xml.svg share/icons/breeze-dark/mimetypes/64/application-msonenote.svg share/icons/breeze-dark/mimetypes/64/application-msoutlook.svg share/icons/breeze-dark/mimetypes/64/application-msword-template.svg share/icons/breeze-dark/mimetypes/64/application-msword.svg share/icons/breeze-dark/mimetypes/64/application-octet-stream.svg share/icons/breeze-dark/mimetypes/64/application-ogg.svg share/icons/breeze-dark/mimetypes/64/application-pdf.svg share/icons/breeze-dark/mimetypes/64/application-pgp-encrypted.svg share/icons/breeze-dark/mimetypes/64/application-pgp-keys.svg share/icons/breeze-dark/mimetypes/64/application-pgp-signature.svg share/icons/breeze-dark/mimetypes/64/application-pgp.svg share/icons/breeze-dark/mimetypes/64/application-pkcs12.svg share/icons/breeze-dark/mimetypes/64/application-pkcs7-mime.svg share/icons/breeze-dark/mimetypes/64/application-pkcs7-signature.svg share/icons/breeze-dark/mimetypes/64/application-pkix-cerl.svg share/icons/breeze-dark/mimetypes/64/application-pkix-cert.svg share/icons/breeze-dark/mimetypes/64/application-postscript.svg share/icons/breeze-dark/mimetypes/64/application-relaxng.svg share/icons/breeze-dark/mimetypes/64/application-rss+xml.svg share/icons/breeze-dark/mimetypes/64/application-rtf.svg share/icons/breeze-dark/mimetypes/64/application-sql.svg share/icons/breeze-dark/mimetypes/64/application-sxw.svg share/icons/breeze-dark/mimetypes/64/application-vnd.android.package-archive.svg share/icons/breeze-dark/mimetypes/64/application-vnd.appimage.svg share/icons/breeze-dark/mimetypes/64/application-vnd.apple.pkpass.svg share/icons/breeze-dark/mimetypes/64/application-vnd.debian.binary-package.svg share/icons/breeze-dark/mimetypes/64/application-vnd.flatpak.ref.svg share/icons/breeze-dark/mimetypes/64/application-vnd.google-earth.kml+xml.svg share/icons/breeze-dark/mimetypes/64/application-vnd.iccprofile.svg share/icons/breeze-dark/mimetypes/64/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-access.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-excel.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-infopath.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-powerpoint.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-word.svg share/icons/breeze-dark/mimetypes/64/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze-dark/mimetypes/64/application-vnd.nintendo.snes.rom.svg share/icons/breeze-dark/mimetypes/64/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.chart.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.database.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.formula.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.image.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.text.svg share/icons/breeze-dark/mimetypes/64/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze-dark/mimetypes/64/application-vnd.openofficeorg.extension.svg share/icons/breeze-dark/mimetypes/64/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze-dark/mimetypes/64/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze-dark/mimetypes/64/application-vnd.rar.svg share/icons/breeze-dark/mimetypes/64/application-vnd.rn-realmedia.svg share/icons/breeze-dark/mimetypes/64/application-vnd.scribus.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sqlite3.svg share/icons/breeze-dark/mimetypes/64/application-vnd.squashfs.svg share/icons/breeze-dark/mimetypes/64/application-vnd.stardivision.calc.svg share/icons/breeze-dark/mimetypes/64/application-vnd.stardivision.draw.svg share/icons/breeze-dark/mimetypes/64/application-vnd.stardivision.mail.svg share/icons/breeze-dark/mimetypes/64/application-vnd.stardivision.math.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.calc.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.calc.template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.draw.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.draw.template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.impress.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.impress.template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.math.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.writer.global.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.writer.svg share/icons/breeze-dark/mimetypes/64/application-vnd.sun.xml.writer.template.svg share/icons/breeze-dark/mimetypes/64/application-vnd.visio.svg share/icons/breeze-dark/mimetypes/64/application-vnd.wordperfect.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.doc.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.docx.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.dot.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.dotx.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.pot.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.potx.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.ppt.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.pptx.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.xls.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.xlsx.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.xlt.svg share/icons/breeze-dark/mimetypes/64/application-wps-office.xltx.svg share/icons/breeze-dark/mimetypes/64/application-x-7z-compressed.svg share/icons/breeze-dark/mimetypes/64/application-x-abiword.svg share/icons/breeze-dark/mimetypes/64/application-x-ace.svg share/icons/breeze-dark/mimetypes/64/application-x-apple-diskimage.svg share/icons/breeze-dark/mimetypes/64/application-x-applix-spreadsheet.svg share/icons/breeze-dark/mimetypes/64/application-x-applix-word.svg share/icons/breeze-dark/mimetypes/64/application-x-ar.svg share/icons/breeze-dark/mimetypes/64/application-x-arc.svg share/icons/breeze-dark/mimetypes/64/application-x-archive.svg share/icons/breeze-dark/mimetypes/64/application-x-arj.svg share/icons/breeze-dark/mimetypes/64/application-x-audacity-project.svg share/icons/breeze-dark/mimetypes/64/application-x-awk.svg share/icons/breeze-dark/mimetypes/64/application-x-bittorrent.svg share/icons/breeze-dark/mimetypes/64/application-x-blender.svg share/icons/breeze-dark/mimetypes/64/application-x-bzdvi.svg share/icons/breeze-dark/mimetypes/64/application-x-bzip-compressed-tar.svg share/icons/breeze-dark/mimetypes/64/application-x-bzip.svg share/icons/breeze-dark/mimetypes/64/application-x-cd-image.svg share/icons/breeze-dark/mimetypes/64/application-x-cda.svg share/icons/breeze-dark/mimetypes/64/application-x-chm.svg share/icons/breeze-dark/mimetypes/64/application-x-compress.svg share/icons/breeze-dark/mimetypes/64/application-x-compressed-tar.svg share/icons/breeze-dark/mimetypes/64/application-x-core.svg share/icons/breeze-dark/mimetypes/64/application-x-cpio.svg share/icons/breeze-dark/mimetypes/64/application-x-cue.svg share/icons/breeze-dark/mimetypes/64/application-x-deb.svg share/icons/breeze-dark/mimetypes/64/application-x-designer.svg share/icons/breeze-dark/mimetypes/64/application-x-desktop.svg share/icons/breeze-dark/mimetypes/64/application-x-egon.svg share/icons/breeze-dark/mimetypes/64/application-x-executable-script.svg share/icons/breeze-dark/mimetypes/64/application-x-executable.svg share/icons/breeze-dark/mimetypes/64/application-x-fictionbook+xml.svg share/icons/breeze-dark/mimetypes/64/application-x-flash-video.svg share/icons/breeze-dark/mimetypes/64/application-x-font-afm.svg share/icons/breeze-dark/mimetypes/64/application-x-font-bdf.svg share/icons/breeze-dark/mimetypes/64/application-x-font-otf.svg share/icons/breeze-dark/mimetypes/64/application-x-font-pcf.svg share/icons/breeze-dark/mimetypes/64/application-x-font-snf.svg share/icons/breeze-dark/mimetypes/64/application-x-font-ttf.svg share/icons/breeze-dark/mimetypes/64/application-x-font-ttx.svg share/icons/breeze-dark/mimetypes/64/application-x-font-type1.svg share/icons/breeze-dark/mimetypes/64/application-x-gameboy-rom.svg share/icons/breeze-dark/mimetypes/64/application-x-gamecube-rom.svg share/icons/breeze-dark/mimetypes/64/application-x-gba-rom.svg share/icons/breeze-dark/mimetypes/64/application-x-gdscript.svg share/icons/breeze-dark/mimetypes/64/application-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/64/application-x-gnumeric.svg share/icons/breeze-dark/mimetypes/64/application-x-godot-project.svg share/icons/breeze-dark/mimetypes/64/application-x-godot-resource.svg share/icons/breeze-dark/mimetypes/64/application-x-godot-scene.svg share/icons/breeze-dark/mimetypes/64/application-x-godot-shader.svg share/icons/breeze-dark/mimetypes/64/application-x-gzdvi.svg share/icons/breeze-dark/mimetypes/64/application-x-gzip.svg share/icons/breeze-dark/mimetypes/64/application-x-gzpostscript.svg share/icons/breeze-dark/mimetypes/64/application-x-iso.svg share/icons/breeze-dark/mimetypes/64/application-x-iso9660-appimage.svg share/icons/breeze-dark/mimetypes/64/application-x-it87.svg share/icons/breeze-dark/mimetypes/64/application-x-jar.svg share/icons/breeze-dark/mimetypes/64/application-x-java-applet.svg share/icons/breeze-dark/mimetypes/64/application-x-java-archive.svg share/icons/breeze-dark/mimetypes/64/application-x-java.svg share/icons/breeze-dark/mimetypes/64/application-x-javascript.svg share/icons/breeze-dark/mimetypes/64/application-x-k3b.svg share/icons/breeze-dark/mimetypes/64/application-x-kcsrc.svg share/icons/breeze-dark/mimetypes/64/application-x-kdenlivetitle.svg share/icons/breeze-dark/mimetypes/64/application-x-kexi-connectiondata.svg share/icons/breeze-dark/mimetypes/64/application-x-kexiproject-shortcut.svg share/icons/breeze-dark/mimetypes/64/application-x-kexiproject-sqlite.svg share/icons/breeze-dark/mimetypes/64/application-x-kexiproject-sqlite2.svg share/icons/breeze-dark/mimetypes/64/application-x-kexiproject-sqlite3.svg share/icons/breeze-dark/mimetypes/64/application-x-kformula.svg share/icons/breeze-dark/mimetypes/64/application-x-kgetlist.svg share/icons/breeze-dark/mimetypes/64/application-x-kmymoney.svg share/icons/breeze-dark/mimetypes/64/application-x-kontour.svg share/icons/breeze-dark/mimetypes/64/application-x-kplato.svg share/icons/breeze-dark/mimetypes/64/application-x-krita.svg share/icons/breeze-dark/mimetypes/64/application-x-kvtml.svg share/icons/breeze-dark/mimetypes/64/application-x-kword.svg share/icons/breeze-dark/mimetypes/64/application-x-labplot2.svg share/icons/breeze-dark/mimetypes/64/application-x-lha.svg share/icons/breeze-dark/mimetypes/64/application-x-lyx.svg share/icons/breeze-dark/mimetypes/64/application-x-lzma-compressed-tar.svg share/icons/breeze-dark/mimetypes/64/application-x-lzop.svg share/icons/breeze-dark/mimetypes/64/application-x-m4.svg share/icons/breeze-dark/mimetypes/64/application-x-macbinary.svg share/icons/breeze-dark/mimetypes/64/application-x-marble.svg share/icons/breeze-dark/mimetypes/64/application-x-mimearchive.svg share/icons/breeze-dark/mimetypes/64/application-x-mplayer2.svg share/icons/breeze-dark/mimetypes/64/application-x-ms-dos-executable.svg share/icons/breeze-dark/mimetypes/64/application-x-ms-shortcut.svg share/icons/breeze-dark/mimetypes/64/application-x-ms-wim.svg share/icons/breeze-dark/mimetypes/64/application-x-msdownload.svg share/icons/breeze-dark/mimetypes/64/application-x-mswinurl.svg share/icons/breeze-dark/mimetypes/64/application-x-mswrite.svg share/icons/breeze-dark/mimetypes/64/application-x-n64-rom.svg share/icons/breeze-dark/mimetypes/64/application-x-nes-rom.svg share/icons/breeze-dark/mimetypes/64/application-x-nintendo-ds-rom.svg share/icons/breeze-dark/mimetypes/64/application-x-nzb.svg share/icons/breeze-dark/mimetypes/64/application-x-object.svg share/icons/breeze-dark/mimetypes/64/application-x-pak.svg share/icons/breeze-dark/mimetypes/64/application-x-partial-download.svg share/icons/breeze-dark/mimetypes/64/application-x-pem-key.svg share/icons/breeze-dark/mimetypes/64/application-x-perl.svg share/icons/breeze-dark/mimetypes/64/application-x-php.svg share/icons/breeze-dark/mimetypes/64/application-x-pkcs12.svg share/icons/breeze-dark/mimetypes/64/application-x-pkcs7-certificates.svg share/icons/breeze-dark/mimetypes/64/application-x-plasma.svg share/icons/breeze-dark/mimetypes/64/application-x-python-bytecode.svg share/icons/breeze-dark/mimetypes/64/application-x-qemu-disk.svg share/icons/breeze-dark/mimetypes/64/application-x-qet-element.svg share/icons/breeze-dark/mimetypes/64/application-x-qet-project.svg share/icons/breeze-dark/mimetypes/64/application-x-quattropro.svg share/icons/breeze-dark/mimetypes/64/application-x-rar.svg share/icons/breeze-dark/mimetypes/64/application-x-raw-disk-image.svg share/icons/breeze-dark/mimetypes/64/application-x-rdata.svg share/icons/breeze-dark/mimetypes/64/application-x-root.svg share/icons/breeze-dark/mimetypes/64/application-x-rpm.svg share/icons/breeze-dark/mimetypes/64/application-x-ruby.svg share/icons/breeze-dark/mimetypes/64/application-x-sami.svg share/icons/breeze-dark/mimetypes/64/application-x-sharedlib.svg share/icons/breeze-dark/mimetypes/64/application-x-shellscript.svg share/icons/breeze-dark/mimetypes/64/application-x-shockwave-flash.svg share/icons/breeze-dark/mimetypes/64/application-x-siag.svg share/icons/breeze-dark/mimetypes/64/application-x-sif.svg share/icons/breeze-dark/mimetypes/64/application-x-skg.svg share/icons/breeze-dark/mimetypes/64/application-x-skgc.svg share/icons/breeze-dark/mimetypes/64/application-x-smb-server.svg share/icons/breeze-dark/mimetypes/64/application-x-smb-workgroup.svg share/icons/breeze-dark/mimetypes/64/application-x-source-rpm.svg share/icons/breeze-dark/mimetypes/64/application-x-sqlite2.svg share/icons/breeze-dark/mimetypes/64/application-x-sqlite3.svg share/icons/breeze-dark/mimetypes/64/application-x-srt.svg share/icons/breeze-dark/mimetypes/64/application-x-srtrip.svg share/icons/breeze-dark/mimetypes/64/application-x-subrip.svg share/icons/breeze-dark/mimetypes/64/application-x-tar.svg share/icons/breeze-dark/mimetypes/64/application-x-tarz.svg share/icons/breeze-dark/mimetypes/64/application-x-tgif.svg share/icons/breeze-dark/mimetypes/64/application-x-theme.svg share/icons/breeze-dark/mimetypes/64/application-x-trash.svg share/icons/breeze-dark/mimetypes/64/application-x-troff-man.svg share/icons/breeze-dark/mimetypes/64/application-x-tzo.svg share/icons/breeze-dark/mimetypes/64/application-x-vdi-disk.svg share/icons/breeze-dark/mimetypes/64/application-x-wmf.svg share/icons/breeze-dark/mimetypes/64/application-x-x509-ca-cert.svg share/icons/breeze-dark/mimetypes/64/application-x-x509-user-cert.svg share/icons/breeze-dark/mimetypes/64/application-x-xliff.svg share/icons/breeze-dark/mimetypes/64/application-x-xpinstall.svg share/icons/breeze-dark/mimetypes/64/application-x-xz-compressed-tar.svg share/icons/breeze-dark/mimetypes/64/application-x-xz-pkg.svg share/icons/breeze-dark/mimetypes/64/application-x-zerosize.svg share/icons/breeze-dark/mimetypes/64/application-x-zip-compressed-fb2.svg share/icons/breeze-dark/mimetypes/64/application-x-zoo.svg share/icons/breeze-dark/mimetypes/64/application-xhtml+xml.svg share/icons/breeze-dark/mimetypes/64/application-xmind.svg share/icons/breeze-dark/mimetypes/64/application-xml.svg share/icons/breeze-dark/mimetypes/64/application-xsd.svg share/icons/breeze-dark/mimetypes/64/application-xslt+xml.svg share/icons/breeze-dark/mimetypes/64/application-zip.svg share/icons/breeze-dark/mimetypes/64/audio-ac3.svg share/icons/breeze-dark/mimetypes/64/audio-flac.svg share/icons/breeze-dark/mimetypes/64/audio-midi.svg share/icons/breeze-dark/mimetypes/64/audio-mp2.svg share/icons/breeze-dark/mimetypes/64/audio-mp3.svg share/icons/breeze-dark/mimetypes/64/audio-mp4.svg share/icons/breeze-dark/mimetypes/64/audio-mpeg.svg share/icons/breeze-dark/mimetypes/64/audio-prs.sid.svg share/icons/breeze-dark/mimetypes/64/audio-vn.rn-realmedia.svg share/icons/breeze-dark/mimetypes/64/audio-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/64/audio-x-adpcm.svg share/icons/breeze-dark/mimetypes/64/audio-x-aiff.svg share/icons/breeze-dark/mimetypes/64/audio-x-flac+ogg.svg share/icons/breeze-dark/mimetypes/64/audio-x-flac.svg share/icons/breeze-dark/mimetypes/64/audio-x-generic.svg share/icons/breeze-dark/mimetypes/64/audio-x-monkey.svg share/icons/breeze-dark/mimetypes/64/audio-x-mp2.svg share/icons/breeze-dark/mimetypes/64/audio-x-mpeg.svg share/icons/breeze-dark/mimetypes/64/audio-x-speex+ogg.svg share/icons/breeze-dark/mimetypes/64/audio-x-wav.svg share/icons/breeze-dark/mimetypes/64/audiobook.svg share/icons/breeze-dark/mimetypes/64/encrypted.svg share/icons/breeze-dark/mimetypes/64/font-otf.svg share/icons/breeze-dark/mimetypes/64/font-ttf.svg share/icons/breeze-dark/mimetypes/64/fonts-package.svg share/icons/breeze-dark/mimetypes/64/image-bmp.svg share/icons/breeze-dark/mimetypes/64/image-gif.svg share/icons/breeze-dark/mimetypes/64/image-ico.svg share/icons/breeze-dark/mimetypes/64/image-jpeg.svg share/icons/breeze-dark/mimetypes/64/image-jpeg2000.svg share/icons/breeze-dark/mimetypes/64/image-png.svg share/icons/breeze-dark/mimetypes/64/image-svg+xml-compressed.svg share/icons/breeze-dark/mimetypes/64/image-svg+xml.svg share/icons/breeze-dark/mimetypes/64/image-tiff.svg share/icons/breeze-dark/mimetypes/64/image-vnd.dgn.svg share/icons/breeze-dark/mimetypes/64/image-vnd.djvu.svg share/icons/breeze-dark/mimetypes/64/image-vnd.dwg.svg share/icons/breeze-dark/mimetypes/64/image-vnd.microsoft.icon.svg share/icons/breeze-dark/mimetypes/64/image-x-adobe-dng.svg share/icons/breeze-dark/mimetypes/64/image-x-compressed-xcf.svg share/icons/breeze-dark/mimetypes/64/image-x-emf.svg share/icons/breeze-dark/mimetypes/64/image-x-eps.svg share/icons/breeze-dark/mimetypes/64/image-x-generic.svg share/icons/breeze-dark/mimetypes/64/image-x-ico.svg share/icons/breeze-dark/mimetypes/64/image-x-icon.svg share/icons/breeze-dark/mimetypes/64/image-x-krita.svg share/icons/breeze-dark/mimetypes/64/image-x-portable-bitmap.svg share/icons/breeze-dark/mimetypes/64/image-x-psd.svg share/icons/breeze-dark/mimetypes/64/image-x-psdimage-x-psd.svg share/icons/breeze-dark/mimetypes/64/image-x-svg+xml.svg share/icons/breeze-dark/mimetypes/64/image-x-tga.svg share/icons/breeze-dark/mimetypes/64/image-x-vnd.trolltech.qpicture.svg share/icons/breeze-dark/mimetypes/64/image-x-win-bitmap.svg share/icons/breeze-dark/mimetypes/64/image-x-win-bmp.svg share/icons/breeze-dark/mimetypes/64/image-x-wmf.svg share/icons/breeze-dark/mimetypes/64/image-x-xcf.svg share/icons/breeze-dark/mimetypes/64/image-x-xfig.svg share/icons/breeze-dark/mimetypes/64/inode-directory.svg share/icons/breeze-dark/mimetypes/64/libreoffice-database.svg share/icons/breeze-dark/mimetypes/64/libreoffice-drawing-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-drawing.svg share/icons/breeze-dark/mimetypes/64/libreoffice-extension.svg share/icons/breeze-dark/mimetypes/64/libreoffice-formula.svg share/icons/breeze-dark/mimetypes/64/libreoffice-master-document.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-database.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-drawing-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-drawing.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-formula.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-master-document.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-presentation-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-presentation.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-spreadsheet.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-text-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-text.svg share/icons/breeze-dark/mimetypes/64/libreoffice-oasis-web-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-presentation-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-presentation.svg share/icons/breeze-dark/mimetypes/64/libreoffice-spreadsheet-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-spreadsheet.svg share/icons/breeze-dark/mimetypes/64/libreoffice-text-template.svg share/icons/breeze-dark/mimetypes/64/libreoffice-text.svg share/icons/breeze-dark/mimetypes/64/message-news.svg share/icons/breeze-dark/mimetypes/64/message-partial.svg share/icons/breeze-dark/mimetypes/64/message-rfc822.svg share/icons/breeze-dark/mimetypes/64/message-x-gnu-rmail.svg share/icons/breeze-dark/mimetypes/64/message.svg share/icons/breeze-dark/mimetypes/64/none.svg share/icons/breeze-dark/mimetypes/64/odf.svg share/icons/breeze-dark/mimetypes/64/package-x-generic.svg share/icons/breeze-dark/mimetypes/64/podcast.svg share/icons/breeze-dark/mimetypes/64/text-calendar.svg share/icons/breeze-dark/mimetypes/64/text-csharp.svg share/icons/breeze-dark/mimetypes/64/text-css.svg share/icons/breeze-dark/mimetypes/64/text-csv.svg share/icons/breeze-dark/mimetypes/64/text-directory.svg share/icons/breeze-dark/mimetypes/64/text-dockerfile.svg share/icons/breeze-dark/mimetypes/64/text-enriched.svg share/icons/breeze-dark/mimetypes/64/text-html.svg share/icons/breeze-dark/mimetypes/64/text-javascript.svg share/icons/breeze-dark/mimetypes/64/text-markdown.svg share/icons/breeze-dark/mimetypes/64/text-plain.svg share/icons/breeze-dark/mimetypes/64/text-rdf+xml.svg share/icons/breeze-dark/mimetypes/64/text-rdf.svg share/icons/breeze-dark/mimetypes/64/text-rtf.svg share/icons/breeze-dark/mimetypes/64/text-rust.svg share/icons/breeze-dark/mimetypes/64/text-sgml.svg share/icons/breeze-dark/mimetypes/64/text-troff.svg share/icons/breeze-dark/mimetypes/64/text-vcalendar.svg share/icons/breeze-dark/mimetypes/64/text-vnd.abc.svg share/icons/breeze-dark/mimetypes/64/text-vnd.kde.kcrash-report.svg share/icons/breeze-dark/mimetypes/64/text-vnd.trolltech.linguist.svg share/icons/breeze-dark/mimetypes/64/text-vnd.wap.wml.svg share/icons/breeze-dark/mimetypes/64/text-vtt.svg share/icons/breeze-dark/mimetypes/64/text-wiki.svg share/icons/breeze-dark/mimetypes/64/text-x-adasrc.svg share/icons/breeze-dark/mimetypes/64/text-x-apport.svg share/icons/breeze-dark/mimetypes/64/text-x-authors.svg share/icons/breeze-dark/mimetypes/64/text-x-bibtex.svg share/icons/breeze-dark/mimetypes/64/text-x-c++hdr.svg share/icons/breeze-dark/mimetypes/64/text-x-c++src.svg share/icons/breeze-dark/mimetypes/64/text-x-changelog.svg share/icons/breeze-dark/mimetypes/64/text-x-chdr.svg share/icons/breeze-dark/mimetypes/64/text-x-cmake.svg share/icons/breeze-dark/mimetypes/64/text-x-copying.svg share/icons/breeze-dark/mimetypes/64/text-x-credits.svg share/icons/breeze-dark/mimetypes/64/text-x-csharp.svg share/icons/breeze-dark/mimetypes/64/text-x-csrc.svg share/icons/breeze-dark/mimetypes/64/text-x-dtd.svg share/icons/breeze-dark/mimetypes/64/text-x-generic.svapplication-x-awk.svg share/icons/breeze-dark/mimetypes/64/text-x-generic.svg share/icons/breeze-dark/mimetypes/64/text-x-gettext-translation.svg share/icons/breeze-dark/mimetypes/64/text-x-go.svg share/icons/breeze-dark/mimetypes/64/text-x-haskell.svg share/icons/breeze-dark/mimetypes/64/text-x-hex.svg share/icons/breeze-dark/mimetypes/64/text-x-install.svg share/icons/breeze-dark/mimetypes/64/text-x-java-source.svg share/icons/breeze-dark/mimetypes/64/text-x-java.svg share/icons/breeze-dark/mimetypes/64/text-x-javascript.svg share/icons/breeze-dark/mimetypes/64/text-x-katefilelist.svg share/icons/breeze-dark/mimetypes/64/text-x-kotlin.svg share/icons/breeze-dark/mimetypes/64/text-x-ldif.svg share/icons/breeze-dark/mimetypes/64/text-x-lilypond.svg share/icons/breeze-dark/mimetypes/64/text-x-log.svg share/icons/breeze-dark/mimetypes/64/text-x-lua.svg share/icons/breeze-dark/mimetypes/64/text-x-makefile.svg share/icons/breeze-dark/mimetypes/64/text-x-markdown.svg share/icons/breeze-dark/mimetypes/64/text-x-microdvd.svg share/icons/breeze-dark/mimetypes/64/text-x-mpsub.svg share/icons/breeze-dark/mimetypes/64/text-x-nfo.svg share/icons/breeze-dark/mimetypes/64/text-x-objchdr.svg share/icons/breeze-dark/mimetypes/64/text-x-objcsrc.svg share/icons/breeze-dark/mimetypes/64/text-x-opml+xml.svg share/icons/breeze-dark/mimetypes/64/text-x-opml.svg share/icons/breeze-dark/mimetypes/64/text-x-pascal.svg share/icons/breeze-dark/mimetypes/64/text-x-patch.svg share/icons/breeze-dark/mimetypes/64/text-x-plain.svg share/icons/breeze-dark/mimetypes/64/text-x-po.svg share/icons/breeze-dark/mimetypes/64/text-x-python.svg share/icons/breeze-dark/mimetypes/64/text-x-python3.svg share/icons/breeze-dark/mimetypes/64/text-x-qml.svg share/icons/breeze-dark/mimetypes/64/text-x-r.svg share/icons/breeze-dark/mimetypes/64/text-x-readme.svg share/icons/breeze-dark/mimetypes/64/text-x-rpm-spec.svg share/icons/breeze-dark/mimetypes/64/text-x-rust.svg share/icons/breeze-dark/mimetypes/64/text-x-sass.svg share/icons/breeze-dark/mimetypes/64/text-x-scala.svg share/icons/breeze-dark/mimetypes/64/text-x-script.svg share/icons/breeze-dark/mimetypes/64/text-x-scss.svg share/icons/breeze-dark/mimetypes/64/text-x-sql.svg share/icons/breeze-dark/mimetypes/64/text-x-ssa.svg share/icons/breeze-dark/mimetypes/64/text-x-subviewer.svg share/icons/breeze-dark/mimetypes/64/text-x-tcl.svg share/icons/breeze-dark/mimetypes/64/text-x-tex.svg share/icons/breeze-dark/mimetypes/64/text-x-texinfo.svg share/icons/breeze-dark/mimetypes/64/text-x-vcard.svg share/icons/breeze-dark/mimetypes/64/text-x-xslfo.svg share/icons/breeze-dark/mimetypes/64/text-xmcd.svg share/icons/breeze-dark/mimetypes/64/text-xml.svg share/icons/breeze-dark/mimetypes/64/unknown.svg share/icons/breeze-dark/mimetypes/64/uri-mms.svg share/icons/breeze-dark/mimetypes/64/uri-mmst.svg share/icons/breeze-dark/mimetypes/64/uri-pnm.svg share/icons/breeze-dark/mimetypes/64/uri-rtspt.svg share/icons/breeze-dark/mimetypes/64/uri-rtspu.svg share/icons/breeze-dark/mimetypes/64/video-mlt-playlist.svg share/icons/breeze-dark/mimetypes/64/video-mp2t.svg share/icons/breeze-dark/mimetypes/64/video-mp4.svg share/icons/breeze-dark/mimetypes/64/video-vivo.svg share/icons/breeze-dark/mimetypes/64/video-vnd.rn-realvideo.svg share/icons/breeze-dark/mimetypes/64/video-wavelet.svg share/icons/breeze-dark/mimetypes/64/video-webm.svg share/icons/breeze-dark/mimetypes/64/video-x-anim.svg share/icons/breeze-dark/mimetypes/64/video-x-flic.svg share/icons/breeze-dark/mimetypes/64/video-x-flv.svg share/icons/breeze-dark/mimetypes/64/video-x-generic.svg share/icons/breeze-dark/mimetypes/64/video-x-google-vlc-plugin.svg share/icons/breeze-dark/mimetypes/64/video-x-javafx.svg share/icons/breeze-dark/mimetypes/64/video-x-matroska.svg share/icons/breeze-dark/mimetypes/64/video-x-mng.svg share/icons/breeze-dark/mimetypes/64/video-x-ms-wmp.svg share/icons/breeze-dark/mimetypes/64/video-x-ms-wmv.svg share/icons/breeze-dark/mimetypes/64/video-x-msvideo.svg share/icons/breeze-dark/mimetypes/64/video-x-ogm+ogg.svg share/icons/breeze-dark/mimetypes/64/video-x-theora+ogg.svg share/icons/breeze-dark/mimetypes/64/video-x-wmv.svg share/icons/breeze-dark/mimetypes/64/viewbib.svg share/icons/breeze-dark/mimetypes/64/viewdvi.svg share/icons/breeze-dark/mimetypes/64/viewhtml.svg share/icons/breeze-dark/mimetypes/64/viewpdf.svg share/icons/breeze-dark/mimetypes/64/viewps.svg share/icons/breeze-dark/mimetypes/64/virtualbox-hdd.svg share/icons/breeze-dark/mimetypes/64/virtualbox-ova.svg share/icons/breeze-dark/mimetypes/64/virtualbox-ovf.svg share/icons/breeze-dark/mimetypes/64/virtualbox-vbox-extpack.svg share/icons/breeze-dark/mimetypes/64/virtualbox-vbox.svg share/icons/breeze-dark/mimetypes/64/virtualbox-vdi.svg share/icons/breeze-dark/mimetypes/64/virtualbox-vhd.svg share/icons/breeze-dark/mimetypes/64/virtualbox-vmdk.svg share/icons/breeze-dark/mimetypes/64/vnd.ms-publisher.svg share/icons/breeze-dark/mimetypes/64/x-kde-nsplugin-generated.svg share/icons/breeze-dark/mimetypes/64/x-mail-distribution-list.svg share/icons/breeze-dark/mimetypes/64/x-media-podcast.svg share/icons/breeze-dark/mimetypes/64/x-office-address-book.svg share/icons/breeze-dark/mimetypes/64/x-office-calendar.svg share/icons/breeze-dark/mimetypes/64/x-office-contact.svg share/icons/breeze-dark/mimetypes/64/x-office-document.svg share/icons/breeze-dark/mimetypes/64/x-office-drawing.svg share/icons/breeze-dark/mimetypes/64/x-office-presentation.svg share/icons/breeze-dark/mimetypes/64/x-office-spreadsheet.svg share/icons/breeze-dark/places/16/certificate-server.svg share/icons/breeze-dark/places/16/desktop.svg share/icons/breeze-dark/places/16/document-multiple.svg share/icons/breeze-dark/places/16/favorites.svg share/icons/breeze-dark/places/16/folder-activities.svg share/icons/breeze-dark/places/16/folder-add.svg share/icons/breeze-dark/places/16/folder-android.svg share/icons/breeze-dark/places/16/folder-appimage.svg share/icons/breeze-dark/places/16/folder-black.svg share/icons/breeze-dark/places/16/folder-blender.svg share/icons/breeze-dark/places/16/folder-blue.svg share/icons/breeze-dark/places/16/folder-book.svg share/icons/breeze-dark/places/16/folder-bookmark.svg share/icons/breeze-dark/places/16/folder-brown.svg share/icons/breeze-dark/places/16/folder-build.svg share/icons/breeze-dark/places/16/folder-calculate.svg share/icons/breeze-dark/places/16/folder-chart.svg share/icons/breeze-dark/places/16/folder-cloud.svg share/icons/breeze-dark/places/16/folder-comic.svg share/icons/breeze-dark/places/16/folder-crash.svg share/icons/breeze-dark/places/16/folder-cyan.svg share/icons/breeze-dark/places/16/folder-database.svg share/icons/breeze-dark/places/16/folder-deb.svg share/icons/breeze-dark/places/16/folder-design.svg share/icons/breeze-dark/places/16/folder-desktop.svg share/icons/breeze-dark/places/16/folder-development.svg share/icons/breeze-dark/places/16/folder-docker.svg share/icons/breeze-dark/places/16/folder-documents.svg share/icons/breeze-dark/places/16/folder-download.svg share/icons/breeze-dark/places/16/folder-downloads.svg share/icons/breeze-dark/places/16/folder-drawing.svg share/icons/breeze-dark/places/16/folder-dropbox.svg share/icons/breeze-dark/places/16/folder-extension.svg share/icons/breeze-dark/places/16/folder-favorites.svg share/icons/breeze-dark/places/16/folder-flatpak.svg share/icons/breeze-dark/places/16/folder-games.svg share/icons/breeze-dark/places/16/folder-gdrive.svg share/icons/breeze-dark/places/16/folder-git.svg share/icons/breeze-dark/places/16/folder-godot.svg share/icons/breeze-dark/places/16/folder-green.svg share/icons/breeze-dark/places/16/folder-grey.svg share/icons/breeze-dark/places/16/folder-html.svg share/icons/breeze-dark/places/16/folder-image-people.svg share/icons/breeze-dark/places/16/folder-image.svg share/icons/breeze-dark/places/16/folder-images.svg share/icons/breeze-dark/places/16/folder-important.svg share/icons/breeze-dark/places/16/folder-java.svg share/icons/breeze-dark/places/16/folder-language.svg share/icons/breeze-dark/places/16/folder-library.svg share/icons/breeze-dark/places/16/folder-locked.svg share/icons/breeze-dark/places/16/folder-log.svg share/icons/breeze-dark/places/16/folder-mac.svg share/icons/breeze-dark/places/16/folder-magenta.svg share/icons/breeze-dark/places/16/folder-mail.svg share/icons/breeze-dark/places/16/folder-music.svg share/icons/breeze-dark/places/16/folder-network.svg share/icons/breeze-dark/places/16/folder-notes.svg share/icons/breeze-dark/places/16/folder-onedrive.svg share/icons/breeze-dark/places/16/folder-open.svg share/icons/breeze-dark/places/16/folder-orange.svg share/icons/breeze-dark/places/16/folder-owncloud.svg share/icons/breeze-dark/places/16/folder-paint.svg share/icons/breeze-dark/places/16/folder-picture.svg share/icons/breeze-dark/places/16/folder-pictures.svg share/icons/breeze-dark/places/16/folder-podcast.svg share/icons/breeze-dark/places/16/folder-presentation.svg share/icons/breeze-dark/places/16/folder-print.svg share/icons/breeze-dark/places/16/folder-public.svg share/icons/breeze-dark/places/16/folder-publicshare.svg share/icons/breeze-dark/places/16/folder-recent.svg share/icons/breeze-dark/places/16/folder-red.svg share/icons/breeze-dark/places/16/folder-remote.svg share/icons/breeze-dark/places/16/folder-root.svg share/icons/breeze-dark/places/16/folder-rpm.svg share/icons/breeze-dark/places/16/folder-script.svg share/icons/breeze-dark/places/16/folder-sign.svg share/icons/breeze-dark/places/16/folder-snap.svg share/icons/breeze-dark/places/16/folder-sound.svg share/icons/breeze-dark/places/16/folder-table.svg share/icons/breeze-dark/places/16/folder-tar.svg share/icons/breeze-dark/places/16/folder-temp.svg share/icons/breeze-dark/places/16/folder-templates.svg share/icons/breeze-dark/places/16/folder-text.svg share/icons/breeze-dark/places/16/folder-trash.svg share/icons/breeze-dark/places/16/folder-txt.svg share/icons/breeze-dark/places/16/folder-unlocked.svg share/icons/breeze-dark/places/16/folder-video.svg share/icons/breeze-dark/places/16/folder-videos.svg share/icons/breeze-dark/places/16/folder-violet.svg share/icons/breeze-dark/places/16/folder-windows.svg share/icons/breeze-dark/places/16/folder-yellow.svg share/icons/breeze-dark/places/16/folder.svg share/icons/breeze-dark/places/16/folder_html.svg share/icons/breeze-dark/places/16/mail-folder-inbox.svg share/icons/breeze-dark/places/16/mail-folder-outbox.svg share/icons/breeze-dark/places/16/mail-folder-sent.svg share/icons/breeze-dark/places/16/mail-message.svg share/icons/breeze-dark/places/16/network-server-database.svg share/icons/breeze-dark/places/16/network-server.svg share/icons/breeze-dark/places/16/network-workgroup.svg share/icons/breeze-dark/places/16/org.xfce.gigolo.svg share/icons/breeze-dark/places/16/repository.svg share/icons/breeze-dark/places/16/server-database.svg share/icons/breeze-dark/places/16/start-here-kde-plasma.svg share/icons/breeze-dark/places/16/start-here-kde.svg share/icons/breeze-dark/places/16/stock_folder.svg share/icons/breeze-dark/places/16/user-desktop.svg share/icons/breeze-dark/places/16/user-home.svg share/icons/breeze-dark/places/16/user-identity.svg share/icons/breeze-dark/places/16/user-trash-full.svg share/icons/breeze-dark/places/16/user-trash.svg share/icons/breeze-dark/places/16@2x share/icons/breeze-dark/places/16@3x share/icons/breeze-dark/places/22/certificate-server.svg share/icons/breeze-dark/places/22/desktop.svg share/icons/breeze-dark/places/22/document-multiple.svg share/icons/breeze-dark/places/22/favorites.svg share/icons/breeze-dark/places/22/folder-activities.svg share/icons/breeze-dark/places/22/folder-add.svg share/icons/breeze-dark/places/22/folder-android.svg share/icons/breeze-dark/places/22/folder-appimage.svg share/icons/breeze-dark/places/22/folder-black.svg share/icons/breeze-dark/places/22/folder-blender.svg share/icons/breeze-dark/places/22/folder-blue.svg share/icons/breeze-dark/places/22/folder-book.svg share/icons/breeze-dark/places/22/folder-bookmark.svg share/icons/breeze-dark/places/22/folder-brown.svg share/icons/breeze-dark/places/22/folder-build.svg share/icons/breeze-dark/places/22/folder-calculate.svg share/icons/breeze-dark/places/22/folder-chart.svg share/icons/breeze-dark/places/22/folder-cloud.svg share/icons/breeze-dark/places/22/folder-comic.svg share/icons/breeze-dark/places/22/folder-crash.svg share/icons/breeze-dark/places/22/folder-cyan.svg share/icons/breeze-dark/places/22/folder-database.svg share/icons/breeze-dark/places/22/folder-deb.svg share/icons/breeze-dark/places/22/folder-design.svg share/icons/breeze-dark/places/22/folder-desktop.svg share/icons/breeze-dark/places/22/folder-development.svg share/icons/breeze-dark/places/22/folder-docker.svg share/icons/breeze-dark/places/22/folder-documents.svg share/icons/breeze-dark/places/22/folder-download.svg share/icons/breeze-dark/places/22/folder-downloads.svg share/icons/breeze-dark/places/22/folder-drawing.svg share/icons/breeze-dark/places/22/folder-dropbox.svg share/icons/breeze-dark/places/22/folder-extension.svg share/icons/breeze-dark/places/22/folder-favorites.svg share/icons/breeze-dark/places/22/folder-flatpak.svg share/icons/breeze-dark/places/22/folder-games.svg share/icons/breeze-dark/places/22/folder-gdrive.svg share/icons/breeze-dark/places/22/folder-git.svg share/icons/breeze-dark/places/22/folder-godot.svg share/icons/breeze-dark/places/22/folder-green.svg share/icons/breeze-dark/places/22/folder-grey.svg share/icons/breeze-dark/places/22/folder-html.svg share/icons/breeze-dark/places/22/folder-image-people.svg share/icons/breeze-dark/places/22/folder-image.svg share/icons/breeze-dark/places/22/folder-images.svg share/icons/breeze-dark/places/22/folder-important.svg share/icons/breeze-dark/places/22/folder-java.svg share/icons/breeze-dark/places/22/folder-language.svg share/icons/breeze-dark/places/22/folder-library.svg share/icons/breeze-dark/places/22/folder-locked.svg share/icons/breeze-dark/places/22/folder-log.svg share/icons/breeze-dark/places/22/folder-mac.svg share/icons/breeze-dark/places/22/folder-magenta.svg share/icons/breeze-dark/places/22/folder-mail.svg share/icons/breeze-dark/places/22/folder-music.svg share/icons/breeze-dark/places/22/folder-network.svg share/icons/breeze-dark/places/22/folder-notes.svg share/icons/breeze-dark/places/22/folder-onedrive.svg share/icons/breeze-dark/places/22/folder-open.svg share/icons/breeze-dark/places/22/folder-orange.svg share/icons/breeze-dark/places/22/folder-owncloud.svg share/icons/breeze-dark/places/22/folder-paint.svg share/icons/breeze-dark/places/22/folder-picture.svg share/icons/breeze-dark/places/22/folder-pictures.svg share/icons/breeze-dark/places/22/folder-podcast.svg share/icons/breeze-dark/places/22/folder-presentation.svg share/icons/breeze-dark/places/22/folder-print.svg share/icons/breeze-dark/places/22/folder-public.svg share/icons/breeze-dark/places/22/folder-publicshare.svg share/icons/breeze-dark/places/22/folder-recent.svg share/icons/breeze-dark/places/22/folder-red.svg share/icons/breeze-dark/places/22/folder-remote.svg share/icons/breeze-dark/places/22/folder-root.svg share/icons/breeze-dark/places/22/folder-rpm.svg share/icons/breeze-dark/places/22/folder-script.svg share/icons/breeze-dark/places/22/folder-sign.svg share/icons/breeze-dark/places/22/folder-snap.svg share/icons/breeze-dark/places/22/folder-sound.svg share/icons/breeze-dark/places/22/folder-table.svg share/icons/breeze-dark/places/22/folder-tar.svg share/icons/breeze-dark/places/22/folder-temp.svg share/icons/breeze-dark/places/22/folder-templates.svg share/icons/breeze-dark/places/22/folder-text.svg share/icons/breeze-dark/places/22/folder-trash.svg share/icons/breeze-dark/places/22/folder-txt.svg share/icons/breeze-dark/places/22/folder-unlocked.svg share/icons/breeze-dark/places/22/folder-video.svg share/icons/breeze-dark/places/22/folder-videos.svg share/icons/breeze-dark/places/22/folder-violet.svg share/icons/breeze-dark/places/22/folder-windows.svg share/icons/breeze-dark/places/22/folder-yellow.svg share/icons/breeze-dark/places/22/folder.svg share/icons/breeze-dark/places/22/folder_html.svg share/icons/breeze-dark/places/22/mail-folder-inbox.svg share/icons/breeze-dark/places/22/mail-folder-outbox.svg share/icons/breeze-dark/places/22/mail-folder-sent.svg share/icons/breeze-dark/places/22/mail-message.svg share/icons/breeze-dark/places/22/network-server-database.svg share/icons/breeze-dark/places/22/network-server.svg share/icons/breeze-dark/places/22/network-workgroup.svg share/icons/breeze-dark/places/22/org.xfce.gigolo.svg share/icons/breeze-dark/places/22/repository.svg share/icons/breeze-dark/places/22/server-database.svg share/icons/breeze-dark/places/22/start-here-kde-plasma.svg share/icons/breeze-dark/places/22/start-here-kde.svg share/icons/breeze-dark/places/22/stock_folder.svg share/icons/breeze-dark/places/22/user-desktop.svg share/icons/breeze-dark/places/22/user-home.svg share/icons/breeze-dark/places/22/user-identity.svg share/icons/breeze-dark/places/22/user-trash-full.svg share/icons/breeze-dark/places/22/user-trash.svg share/icons/breeze-dark/places/22@2x share/icons/breeze-dark/places/22@3x share/icons/breeze-dark/places/24/certificate-server.svg share/icons/breeze-dark/places/24/desktop.svg share/icons/breeze-dark/places/24/document-multiple.svg share/icons/breeze-dark/places/24/favorites.svg share/icons/breeze-dark/places/24/folder-activities.svg share/icons/breeze-dark/places/24/folder-add.svg share/icons/breeze-dark/places/24/folder-bookmark.svg share/icons/breeze-dark/places/24/folder-cloud.svg share/icons/breeze-dark/places/24/folder-development.svg share/icons/breeze-dark/places/24/folder-documents.svg share/icons/breeze-dark/places/24/folder-download.svg share/icons/breeze-dark/places/24/folder-downloads.svg share/icons/breeze-dark/places/24/folder-dropbox.svg share/icons/breeze-dark/places/24/folder-favorites.svg share/icons/breeze-dark/places/24/folder-games.svg share/icons/breeze-dark/places/24/folder-gdrive.svg share/icons/breeze-dark/places/24/folder-html.svg share/icons/breeze-dark/places/24/folder-image-people.svg share/icons/breeze-dark/places/24/folder-image.svg share/icons/breeze-dark/places/24/folder-images.svg share/icons/breeze-dark/places/24/folder-locked.svg share/icons/breeze-dark/places/24/folder-mail.svg share/icons/breeze-dark/places/24/folder-music.svg share/icons/breeze-dark/places/24/folder-network.svg share/icons/breeze-dark/places/24/folder-onedrive.svg share/icons/breeze-dark/places/24/folder-open.svg share/icons/breeze-dark/places/24/folder-owncloud.svg share/icons/breeze-dark/places/24/folder-picture.svg share/icons/breeze-dark/places/24/folder-pictures.svg share/icons/breeze-dark/places/24/folder-print.svg share/icons/breeze-dark/places/24/folder-public.svg share/icons/breeze-dark/places/24/folder-publicshare.svg share/icons/breeze-dark/places/24/folder-recent.svg share/icons/breeze-dark/places/24/folder-remote.svg share/icons/breeze-dark/places/24/folder-root.svg share/icons/breeze-dark/places/24/folder-script.svg share/icons/breeze-dark/places/24/folder-sound.svg share/icons/breeze-dark/places/24/folder-tar.svg share/icons/breeze-dark/places/24/folder-temp.svg share/icons/breeze-dark/places/24/folder-templates.svg share/icons/breeze-dark/places/24/folder-text.svg share/icons/breeze-dark/places/24/folder-txt.svg share/icons/breeze-dark/places/24/folder-unlocked.svg share/icons/breeze-dark/places/24/folder-video.svg share/icons/breeze-dark/places/24/folder-videos.svg share/icons/breeze-dark/places/24/folder.svg share/icons/breeze-dark/places/24/folder_html.svg share/icons/breeze-dark/places/24/mail-folder-inbox.svg share/icons/breeze-dark/places/24/mail-folder-outbox.svg share/icons/breeze-dark/places/24/mail-folder-sent.svg share/icons/breeze-dark/places/24/mail-message.svg share/icons/breeze-dark/places/24/network-server-database.svg share/icons/breeze-dark/places/24/network-server.svg share/icons/breeze-dark/places/24/network-workgroup.svg share/icons/breeze-dark/places/24/org.xfce.gigolo.svg share/icons/breeze-dark/places/24/repository.svg share/icons/breeze-dark/places/24/server-database.svg share/icons/breeze-dark/places/24/start-here-kde-plasma.svg share/icons/breeze-dark/places/24/start-here-kde.svg share/icons/breeze-dark/places/24/stock_folder.svg share/icons/breeze-dark/places/24/user-desktop.svg share/icons/breeze-dark/places/24/user-home.svg share/icons/breeze-dark/places/24/user-identity.svg share/icons/breeze-dark/places/24/user-trash-full.svg share/icons/breeze-dark/places/24/user-trash.svg share/icons/breeze-dark/places/24@2x share/icons/breeze-dark/places/24@3x share/icons/breeze-dark/places/32/certificate-server.svg share/icons/breeze-dark/places/32/desktop.svg share/icons/breeze-dark/places/32/favorites.svg share/icons/breeze-dark/places/32/folder-activities.svg share/icons/breeze-dark/places/32/folder-android.svg share/icons/breeze-dark/places/32/folder-appimage.svg share/icons/breeze-dark/places/32/folder-black.svg share/icons/breeze-dark/places/32/folder-blender.svg share/icons/breeze-dark/places/32/folder-blue.svg share/icons/breeze-dark/places/32/folder-book.svg share/icons/breeze-dark/places/32/folder-bookmark.svg share/icons/breeze-dark/places/32/folder-brown.svg share/icons/breeze-dark/places/32/folder-build.svg share/icons/breeze-dark/places/32/folder-calculate.svg share/icons/breeze-dark/places/32/folder-chart.svg share/icons/breeze-dark/places/32/folder-cloud.svg share/icons/breeze-dark/places/32/folder-comic.svg share/icons/breeze-dark/places/32/folder-crash.svg share/icons/breeze-dark/places/32/folder-cyan.svg share/icons/breeze-dark/places/32/folder-database.svg share/icons/breeze-dark/places/32/folder-deb.svg share/icons/breeze-dark/places/32/folder-decrypted.svg share/icons/breeze-dark/places/32/folder-design.svg share/icons/breeze-dark/places/32/folder-desktop.svg share/icons/breeze-dark/places/32/folder-development.svg share/icons/breeze-dark/places/32/folder-docker.svg share/icons/breeze-dark/places/32/folder-documents.svg share/icons/breeze-dark/places/32/folder-download.svg share/icons/breeze-dark/places/32/folder-downloads.svg share/icons/breeze-dark/places/32/folder-drawing.svg share/icons/breeze-dark/places/32/folder-dropbox.svg share/icons/breeze-dark/places/32/folder-encrypted.svg share/icons/breeze-dark/places/32/folder-extension.svg share/icons/breeze-dark/places/32/folder-favorites.svg share/icons/breeze-dark/places/32/folder-flatpak.svg share/icons/breeze-dark/places/32/folder-games.svg share/icons/breeze-dark/places/32/folder-gdrive.svg share/icons/breeze-dark/places/32/folder-git.svg share/icons/breeze-dark/places/32/folder-godot.svg share/icons/breeze-dark/places/32/folder-green.svg share/icons/breeze-dark/places/32/folder-grey.svg share/icons/breeze-dark/places/32/folder-html.svg share/icons/breeze-dark/places/32/folder-image-people.svg share/icons/breeze-dark/places/32/folder-image.svg share/icons/breeze-dark/places/32/folder-images.svg share/icons/breeze-dark/places/32/folder-important.svg share/icons/breeze-dark/places/32/folder-java.svg share/icons/breeze-dark/places/32/folder-language.svg share/icons/breeze-dark/places/32/folder-library.svg share/icons/breeze-dark/places/32/folder-locked.svg share/icons/breeze-dark/places/32/folder-log.svg share/icons/breeze-dark/places/32/folder-mac.svg share/icons/breeze-dark/places/32/folder-magenta.svg share/icons/breeze-dark/places/32/folder-mail.svg share/icons/breeze-dark/places/32/folder-music.svg share/icons/breeze-dark/places/32/folder-network.svg share/icons/breeze-dark/places/32/folder-notes.svg share/icons/breeze-dark/places/32/folder-onedrive.svg share/icons/breeze-dark/places/32/folder-open.svg share/icons/breeze-dark/places/32/folder-orange.svg share/icons/breeze-dark/places/32/folder-owncloud.svg share/icons/breeze-dark/places/32/folder-paint.svg share/icons/breeze-dark/places/32/folder-picture.svg share/icons/breeze-dark/places/32/folder-pictures.svg share/icons/breeze-dark/places/32/folder-podcast.svg share/icons/breeze-dark/places/32/folder-presentation.svg share/icons/breeze-dark/places/32/folder-print.svg share/icons/breeze-dark/places/32/folder-public.svg share/icons/breeze-dark/places/32/folder-publicshare.svg share/icons/breeze-dark/places/32/folder-recent.svg share/icons/breeze-dark/places/32/folder-red.svg share/icons/breeze-dark/places/32/folder-remote.svg share/icons/breeze-dark/places/32/folder-root.svg share/icons/breeze-dark/places/32/folder-rpm.svg share/icons/breeze-dark/places/32/folder-script.svg share/icons/breeze-dark/places/32/folder-sign.svg share/icons/breeze-dark/places/32/folder-snap.svg share/icons/breeze-dark/places/32/folder-sound.svg share/icons/breeze-dark/places/32/folder-table.svg share/icons/breeze-dark/places/32/folder-tar.svg share/icons/breeze-dark/places/32/folder-temp.svg share/icons/breeze-dark/places/32/folder-templates.svg share/icons/breeze-dark/places/32/folder-text.svg share/icons/breeze-dark/places/32/folder-trash.svg share/icons/breeze-dark/places/32/folder-txt.svg share/icons/breeze-dark/places/32/folder-unlocked.svg share/icons/breeze-dark/places/32/folder-video.svg share/icons/breeze-dark/places/32/folder-videos.svg share/icons/breeze-dark/places/32/folder-violet.svg share/icons/breeze-dark/places/32/folder-windows.svg share/icons/breeze-dark/places/32/folder-yellow.svg share/icons/breeze-dark/places/32/folder.svg share/icons/breeze-dark/places/32/folder_html.svg share/icons/breeze-dark/places/32/library-music.svg share/icons/breeze-dark/places/32/network-server.svg share/icons/breeze-dark/places/32/network-workgroup.svg share/icons/breeze-dark/places/32/stock_folder.svg share/icons/breeze-dark/places/32/user-desktop.svg share/icons/breeze-dark/places/32/user-home.svg share/icons/breeze-dark/places/32/user-trash-full.svg share/icons/breeze-dark/places/32/user-trash.svg share/icons/breeze-dark/places/48/certificate-server.svg share/icons/breeze-dark/places/48/desktop.svg share/icons/breeze-dark/places/48/favorites.svg share/icons/breeze-dark/places/48/folder-activities.svg share/icons/breeze-dark/places/48/folder-black.svg share/icons/breeze-dark/places/48/folder-blue.svg share/icons/breeze-dark/places/48/folder-book.svg share/icons/breeze-dark/places/48/folder-bookmark.svg share/icons/breeze-dark/places/48/folder-brown.svg share/icons/breeze-dark/places/48/folder-cloud.svg share/icons/breeze-dark/places/48/folder-comic.svg share/icons/breeze-dark/places/48/folder-cyan.svg share/icons/breeze-dark/places/48/folder-decrypted.svg share/icons/breeze-dark/places/48/folder-development.svg share/icons/breeze-dark/places/48/folder-documents.svg share/icons/breeze-dark/places/48/folder-download.svg share/icons/breeze-dark/places/48/folder-downloads.svg share/icons/breeze-dark/places/48/folder-dropbox.svg share/icons/breeze-dark/places/48/folder-encrypted.svg share/icons/breeze-dark/places/48/folder-favorites.svg share/icons/breeze-dark/places/48/folder-games.svg share/icons/breeze-dark/places/48/folder-gdrive.svg share/icons/breeze-dark/places/48/folder-green.svg share/icons/breeze-dark/places/48/folder-grey.svg share/icons/breeze-dark/places/48/folder-html.svg share/icons/breeze-dark/places/48/folder-image-people.svg share/icons/breeze-dark/places/48/folder-image.svg share/icons/breeze-dark/places/48/folder-images.svg share/icons/breeze-dark/places/48/folder-important.svg share/icons/breeze-dark/places/48/folder-library.svg share/icons/breeze-dark/places/48/folder-locked.svg share/icons/breeze-dark/places/48/folder-magenta.svg share/icons/breeze-dark/places/48/folder-mail.svg share/icons/breeze-dark/places/48/folder-music.svg share/icons/breeze-dark/places/48/folder-network.svg share/icons/breeze-dark/places/48/folder-onedrive.svg share/icons/breeze-dark/places/48/folder-open.svg share/icons/breeze-dark/places/48/folder-orange.svg share/icons/breeze-dark/places/48/folder-owncloud.svg share/icons/breeze-dark/places/48/folder-picture.svg share/icons/breeze-dark/places/48/folder-pictures.svg share/icons/breeze-dark/places/48/folder-print.svg share/icons/breeze-dark/places/48/folder-public.svg share/icons/breeze-dark/places/48/folder-publicshare.svg share/icons/breeze-dark/places/48/folder-recent.svg share/icons/breeze-dark/places/48/folder-red.svg share/icons/breeze-dark/places/48/folder-remote.svg share/icons/breeze-dark/places/48/folder-root.svg share/icons/breeze-dark/places/48/folder-script.svg share/icons/breeze-dark/places/48/folder-sound.svg share/icons/breeze-dark/places/48/folder-tar.svg share/icons/breeze-dark/places/48/folder-temp.svg share/icons/breeze-dark/places/48/folder-templates.svg share/icons/breeze-dark/places/48/folder-text.svg share/icons/breeze-dark/places/48/folder-txt.svg share/icons/breeze-dark/places/48/folder-unlocked.svg share/icons/breeze-dark/places/48/folder-video.svg share/icons/breeze-dark/places/48/folder-videos.svg share/icons/breeze-dark/places/48/folder-violet.svg share/icons/breeze-dark/places/48/folder-yellow.svg share/icons/breeze-dark/places/48/folder.svg share/icons/breeze-dark/places/48/folder_html.svg share/icons/breeze-dark/places/48/library-music.svg share/icons/breeze-dark/places/48/network-server.svg share/icons/breeze-dark/places/48/network-workgroup.svg share/icons/breeze-dark/places/48/stock_folder.svg share/icons/breeze-dark/places/48/user-desktop.svg share/icons/breeze-dark/places/48/user-home.svg share/icons/breeze-dark/places/48/user-trash-full.svg share/icons/breeze-dark/places/48/user-trash.svg share/icons/breeze-dark/places/64/certificate-server.svg share/icons/breeze-dark/places/64/desktop.svg share/icons/breeze-dark/places/64/favorites.svg share/icons/breeze-dark/places/64/folder-activities.svg share/icons/breeze-dark/places/64/folder-android.svg share/icons/breeze-dark/places/64/folder-appimage.svg share/icons/breeze-dark/places/64/folder-black.svg share/icons/breeze-dark/places/64/folder-blender.svg share/icons/breeze-dark/places/64/folder-blue.svg share/icons/breeze-dark/places/64/folder-book.svg share/icons/breeze-dark/places/64/folder-bookmark.svg share/icons/breeze-dark/places/64/folder-brown.svg share/icons/breeze-dark/places/64/folder-build.svg share/icons/breeze-dark/places/64/folder-calculate.svg share/icons/breeze-dark/places/64/folder-chart.svg share/icons/breeze-dark/places/64/folder-cloud.svg share/icons/breeze-dark/places/64/folder-comic.svg share/icons/breeze-dark/places/64/folder-crash.svg share/icons/breeze-dark/places/64/folder-cyan.svg share/icons/breeze-dark/places/64/folder-database.svg share/icons/breeze-dark/places/64/folder-deb.svg share/icons/breeze-dark/places/64/folder-decrypted.svg share/icons/breeze-dark/places/64/folder-design.svg share/icons/breeze-dark/places/64/folder-desktop.svg share/icons/breeze-dark/places/64/folder-development.svg share/icons/breeze-dark/places/64/folder-docker.svg share/icons/breeze-dark/places/64/folder-documents.svg share/icons/breeze-dark/places/64/folder-download.svg share/icons/breeze-dark/places/64/folder-downloads.svg share/icons/breeze-dark/places/64/folder-drawing.svg share/icons/breeze-dark/places/64/folder-dropbox.svg share/icons/breeze-dark/places/64/folder-encrypted.svg share/icons/breeze-dark/places/64/folder-extension.svg share/icons/breeze-dark/places/64/folder-favorites.svg share/icons/breeze-dark/places/64/folder-flatpak.svg share/icons/breeze-dark/places/64/folder-games.svg share/icons/breeze-dark/places/64/folder-gdrive.svg share/icons/breeze-dark/places/64/folder-git.svg share/icons/breeze-dark/places/64/folder-godot.svg share/icons/breeze-dark/places/64/folder-green.svg share/icons/breeze-dark/places/64/folder-grey.svg share/icons/breeze-dark/places/64/folder-html.svg share/icons/breeze-dark/places/64/folder-image-people.svg share/icons/breeze-dark/places/64/folder-image.svg share/icons/breeze-dark/places/64/folder-images.svg share/icons/breeze-dark/places/64/folder-important.svg share/icons/breeze-dark/places/64/folder-java.svg share/icons/breeze-dark/places/64/folder-language.svg share/icons/breeze-dark/places/64/folder-library.svg share/icons/breeze-dark/places/64/folder-locked.svg share/icons/breeze-dark/places/64/folder-log.svg share/icons/breeze-dark/places/64/folder-mac.svg share/icons/breeze-dark/places/64/folder-magenta.svg share/icons/breeze-dark/places/64/folder-mail.svg share/icons/breeze-dark/places/64/folder-music.svg share/icons/breeze-dark/places/64/folder-network.svg share/icons/breeze-dark/places/64/folder-notes.svg share/icons/breeze-dark/places/64/folder-onedrive.svg share/icons/breeze-dark/places/64/folder-open.svg share/icons/breeze-dark/places/64/folder-orange.svg share/icons/breeze-dark/places/64/folder-owncloud.svg share/icons/breeze-dark/places/64/folder-paint.svg share/icons/breeze-dark/places/64/folder-picture.svg share/icons/breeze-dark/places/64/folder-pictures.svg share/icons/breeze-dark/places/64/folder-podcast.svg share/icons/breeze-dark/places/64/folder-presentation.svg share/icons/breeze-dark/places/64/folder-print.svg share/icons/breeze-dark/places/64/folder-public.svg share/icons/breeze-dark/places/64/folder-publicshare.svg share/icons/breeze-dark/places/64/folder-recent.svg share/icons/breeze-dark/places/64/folder-red.svg share/icons/breeze-dark/places/64/folder-remote.svg share/icons/breeze-dark/places/64/folder-root.svg share/icons/breeze-dark/places/64/folder-rpm.svg share/icons/breeze-dark/places/64/folder-script.svg share/icons/breeze-dark/places/64/folder-sign.svg share/icons/breeze-dark/places/64/folder-snap.svg share/icons/breeze-dark/places/64/folder-sound.svg share/icons/breeze-dark/places/64/folder-table.svg share/icons/breeze-dark/places/64/folder-tar.svg share/icons/breeze-dark/places/64/folder-temp.svg share/icons/breeze-dark/places/64/folder-templates.svg share/icons/breeze-dark/places/64/folder-text.svg share/icons/breeze-dark/places/64/folder-trash.svg share/icons/breeze-dark/places/64/folder-txt.svg share/icons/breeze-dark/places/64/folder-unlocked.svg share/icons/breeze-dark/places/64/folder-video.svg share/icons/breeze-dark/places/64/folder-videos.svg share/icons/breeze-dark/places/64/folder-violet.svg share/icons/breeze-dark/places/64/folder-windows.svg share/icons/breeze-dark/places/64/folder-yellow.svg share/icons/breeze-dark/places/64/folder.svg share/icons/breeze-dark/places/64/folder_html.svg share/icons/breeze-dark/places/64/library-music.svg share/icons/breeze-dark/places/64/network-server.svg share/icons/breeze-dark/places/64/network-workgroup.svg share/icons/breeze-dark/places/64/start-here-kde-plasma.svg share/icons/breeze-dark/places/64/start-here-kde.svg share/icons/breeze-dark/places/64/stock_folder.svg share/icons/breeze-dark/places/64/user-desktop.svg share/icons/breeze-dark/places/64/user-home.svg share/icons/breeze-dark/places/64/user-trash-full.svg share/icons/breeze-dark/places/64/user-trash.svg share/icons/breeze-dark/places/96/certificate-server.svg share/icons/breeze-dark/places/96/desktop.svg share/icons/breeze-dark/places/96/favorites.svg share/icons/breeze-dark/places/96/folder-activities.svg share/icons/breeze-dark/places/96/folder-black.svg share/icons/breeze-dark/places/96/folder-blue.svg share/icons/breeze-dark/places/96/folder-book.svg share/icons/breeze-dark/places/96/folder-bookmark.svg share/icons/breeze-dark/places/96/folder-brown.svg share/icons/breeze-dark/places/96/folder-cloud.svg share/icons/breeze-dark/places/96/folder-comic.svg share/icons/breeze-dark/places/96/folder-cyan.svg share/icons/breeze-dark/places/96/folder-decrypted.svg share/icons/breeze-dark/places/96/folder-development.svg share/icons/breeze-dark/places/96/folder-documents.svg share/icons/breeze-dark/places/96/folder-download.svg share/icons/breeze-dark/places/96/folder-downloads.svg share/icons/breeze-dark/places/96/folder-dropbox.svg share/icons/breeze-dark/places/96/folder-encrypted.svg share/icons/breeze-dark/places/96/folder-favorites.svg share/icons/breeze-dark/places/96/folder-games.svg share/icons/breeze-dark/places/96/folder-gdrive.svg share/icons/breeze-dark/places/96/folder-green.svg share/icons/breeze-dark/places/96/folder-grey.svg share/icons/breeze-dark/places/96/folder-html.svg share/icons/breeze-dark/places/96/folder-image-people.svg share/icons/breeze-dark/places/96/folder-image.svg share/icons/breeze-dark/places/96/folder-images.svg share/icons/breeze-dark/places/96/folder-important.svg share/icons/breeze-dark/places/96/folder-library.svg share/icons/breeze-dark/places/96/folder-locked.svg share/icons/breeze-dark/places/96/folder-magenta.svg share/icons/breeze-dark/places/96/folder-mail.svg share/icons/breeze-dark/places/96/folder-music.svg share/icons/breeze-dark/places/96/folder-network.svg share/icons/breeze-dark/places/96/folder-onedrive.svg share/icons/breeze-dark/places/96/folder-open.svg share/icons/breeze-dark/places/96/folder-orange.svg share/icons/breeze-dark/places/96/folder-owncloud.svg share/icons/breeze-dark/places/96/folder-picture.svg share/icons/breeze-dark/places/96/folder-pictures.svg share/icons/breeze-dark/places/96/folder-print.svg share/icons/breeze-dark/places/96/folder-public.svg share/icons/breeze-dark/places/96/folder-publicshare.svg share/icons/breeze-dark/places/96/folder-recent.svg share/icons/breeze-dark/places/96/folder-red.svg share/icons/breeze-dark/places/96/folder-remote.svg share/icons/breeze-dark/places/96/folder-root.svg share/icons/breeze-dark/places/96/folder-script.svg share/icons/breeze-dark/places/96/folder-sound.svg share/icons/breeze-dark/places/96/folder-tar.svg share/icons/breeze-dark/places/96/folder-temp.svg share/icons/breeze-dark/places/96/folder-templates.svg share/icons/breeze-dark/places/96/folder-text.svg share/icons/breeze-dark/places/96/folder-txt.svg share/icons/breeze-dark/places/96/folder-unlocked.svg share/icons/breeze-dark/places/96/folder-video.svg share/icons/breeze-dark/places/96/folder-videos.svg share/icons/breeze-dark/places/96/folder-violet.svg share/icons/breeze-dark/places/96/folder-yellow.svg share/icons/breeze-dark/places/96/folder.svg share/icons/breeze-dark/places/96/folder_html.svg share/icons/breeze-dark/places/96/library-music.svg share/icons/breeze-dark/places/96/network-server.svg share/icons/breeze-dark/places/96/network-workgroup.svg share/icons/breeze-dark/places/96/start-here-kde-plasma.svg share/icons/breeze-dark/places/96/start-here-kde.svg share/icons/breeze-dark/places/96/stock_folder.svg share/icons/breeze-dark/places/96/user-desktop.svg share/icons/breeze-dark/places/96/user-home.svg share/icons/breeze-dark/places/96/user-trash-full.svg share/icons/breeze-dark/places/96/user-trash.svg share/icons/breeze-dark/places/symbolic/folder-documents-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-download-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-games-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-music-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-pictures-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-publicshare-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-remote-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-root-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-saved-search-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-templates-symbolic.svg share/icons/breeze-dark/places/symbolic/folder-videos-symbolic.svg share/icons/breeze-dark/places/symbolic/network-server-symbolic.svg share/icons/breeze-dark/places/symbolic/network-workgroup-symbolic.svg share/icons/breeze-dark/places/symbolic/start-here-symbolic.svg share/icons/breeze-dark/places/symbolic/user-bookmarks-symbolic.svg share/icons/breeze-dark/places/symbolic/user-desktop-symbolic.svg share/icons/breeze-dark/places/symbolic/user-home-symbolic.svg share/icons/breeze-dark/places/symbolic/user-trash-symbolic.svg share/icons/breeze-dark/preferences/22/device-notifier.svg share/icons/breeze-dark/preferences/22/drive-removable-media.svg share/icons/breeze-dark/preferences/22/plasma-search.svg share/icons/breeze-dark/preferences/22/podcast-amarok.svg share/icons/breeze-dark/preferences/22/preferences-desktop-accessibility.svg share/icons/breeze-dark/preferences/22/preferences-desktop-activities.svg share/icons/breeze-dark/preferences/22/preferences-desktop-baloo.svg share/icons/breeze-dark/preferences/22/preferences-desktop-color.svg share/icons/breeze-dark/preferences/22/preferences-desktop-cryptography.svg share/icons/breeze-dark/preferences/22/preferences-desktop-cursors.svg share/icons/breeze-dark/preferences/22/preferences-desktop-default-applications.svg share/icons/breeze-dark/preferences/22/preferences-desktop-display-color.svg share/icons/breeze-dark/preferences/22/preferences-desktop-display.svg share/icons/breeze-dark/preferences/22/preferences-desktop-effects.svg share/icons/breeze-dark/preferences/22/preferences-desktop-emoticons.svg share/icons/breeze-dark/preferences/22/preferences-desktop-filetype-association.svg share/icons/breeze-dark/preferences/22/preferences-desktop-filter.svg share/icons/breeze-dark/preferences/22/preferences-desktop-font.svg share/icons/breeze-dark/preferences/22/preferences-desktop-gestures-screenedges.svg share/icons/breeze-dark/preferences/22/preferences-desktop-gestures-touch.svg share/icons/breeze-dark/preferences/22/preferences-desktop-icons.svg share/icons/breeze-dark/preferences/22/preferences-desktop-keyboard.svg share/icons/breeze-dark/preferences/22/preferences-desktop-launch-feedback.svg share/icons/breeze-dark/preferences/22/preferences-desktop-locale.svg share/icons/breeze-dark/preferences/22/preferences-desktop-multimedia.svg share/icons/breeze-dark/preferences/22/preferences-desktop-navigation.svg share/icons/breeze-dark/preferences/22/preferences-desktop-notification-bell.svg share/icons/breeze-dark/preferences/22/preferences-desktop-plasma-theme.svg share/icons/breeze-dark/preferences/22/preferences-desktop-plasma.svg share/icons/breeze-dark/preferences/22/preferences-desktop-screensaver.svg share/icons/breeze-dark/preferences/22/preferences-desktop-search.svg share/icons/breeze-dark/preferences/22/preferences-desktop-sound.svg share/icons/breeze-dark/preferences/22/preferences-desktop-tablet.svg share/icons/breeze-dark/preferences/22/preferences-desktop-text-to-speech.svg share/icons/breeze-dark/preferences/22/preferences-desktop-theme-applications.svg share/icons/breeze-dark/preferences/22/preferences-desktop-theme-global.svg share/icons/breeze-dark/preferences/22/preferences-desktop-theme-windowdecorations.svg share/icons/breeze-dark/preferences/22/preferences-desktop-thunderbolt.svg share/icons/breeze-dark/preferences/22/preferences-desktop-touchpad.svg share/icons/breeze-dark/preferences/22/preferences-desktop-user-password.svg share/icons/breeze-dark/preferences/22/preferences-desktop-user.svg share/icons/breeze-dark/preferences/22/preferences-desktop-virtual.svg share/icons/breeze-dark/preferences/22/preferences-desktop-wallpaper.svg share/icons/breeze-dark/preferences/22/preferences-desktop.svg share/icons/breeze-dark/preferences/22/preferences-devices-cpu.svg share/icons/breeze-dark/preferences/22/preferences-devices-drive-optical-check.svg share/icons/breeze-dark/preferences/22/preferences-devices-printer.svg share/icons/breeze-dark/preferences/22/preferences-devices-scanner.svg share/icons/breeze-dark/preferences/22/preferences-devices-tree.svg share/icons/breeze-dark/preferences/22/preferences-gtk-config.svg share/icons/breeze-dark/preferences/22/preferences-kde-connect.svg share/icons/breeze-dark/preferences/22/preferences-online-accounts.svg share/icons/breeze-dark/preferences/22/preferences-other.svg share/icons/breeze-dark/preferences/22/preferences-plugin.svg share/icons/breeze-dark/preferences/22/preferences-security-kerberos.svg share/icons/breeze-dark/preferences/22/preferences-security.svg share/icons/breeze-dark/preferences/22/preferences-smart-status.svg share/icons/breeze-dark/preferences/22/preferences-system-bluetooth.svg share/icons/breeze-dark/preferences/22/preferences-system-linux.svg share/icons/breeze-dark/preferences/22/preferences-system-login.svg share/icons/breeze-dark/preferences/22/preferences-system-network-dsl.svg share/icons/breeze-dark/preferences/22/preferences-system-network-ethernet.svg share/icons/breeze-dark/preferences/22/preferences-system-network-ldap.svg share/icons/breeze-dark/preferences/22/preferences-system-network-nis.svg share/icons/breeze-dark/preferences/22/preferences-system-network-proxy.svg share/icons/breeze-dark/preferences/22/preferences-system-network-share-windows.svg share/icons/breeze-dark/preferences/22/preferences-system-network-sharing.svg share/icons/breeze-dark/preferences/22/preferences-system-network-vpn.svg share/icons/breeze-dark/preferences/22/preferences-system-network-wakeonlan.svg share/icons/breeze-dark/preferences/22/preferences-system-power-management.svg share/icons/breeze-dark/preferences/22/preferences-system-services.svg share/icons/breeze-dark/preferences/22/preferences-system-session-services.svg share/icons/breeze-dark/preferences/22/preferences-system-splash.svg share/icons/breeze-dark/preferences/22/preferences-system-startup.svg share/icons/breeze-dark/preferences/22/preferences-system-time.svg share/icons/breeze-dark/preferences/22/preferences-system-user-sudo.svg share/icons/breeze-dark/preferences/22/preferences-system-windows-actions.svg share/icons/breeze-dark/preferences/22/preferences-system-windows-behavior.svg share/icons/breeze-dark/preferences/22/preferences-system-windows-move.svg share/icons/breeze-dark/preferences/22/preferences-system-windows.svg share/icons/breeze-dark/preferences/22/preferences-virtualization-container.svg share/icons/breeze-dark/preferences/22/preferences-web-browser-cache.svg share/icons/breeze-dark/preferences/22/preferences-web-browser-cookies.svg share/icons/breeze-dark/preferences/22/preferences-web-browser-identification.svg share/icons/breeze-dark/preferences/22/preferences-web-browser-shortcuts.svg share/icons/breeze-dark/preferences/22/preferences-web-browser-ssl.svg share/icons/breeze-dark/preferences/22/preferences-web-browser-stylesheets.svg share/icons/breeze-dark/preferences/22/system-users.svg share/icons/breeze-dark/preferences/22/window-duplicate.svg share/icons/breeze-dark/preferences/22/yast-disk.svg share/icons/breeze-dark/preferences/32/amarok_change_language.svg share/icons/breeze-dark/preferences/32/device-notifier.svg share/icons/breeze-dark/preferences/32/drive-removable-media.svg share/icons/breeze-dark/preferences/32/face-smile.svg share/icons/breeze-dark/preferences/32/financial-schedule.svg share/icons/breeze-dark/preferences/32/gtkconfig.svg share/icons/breeze-dark/preferences/32/kaccess.svg share/icons/breeze-dark/preferences/32/kde-gtk-config.svg share/icons/breeze-dark/preferences/32/kdeconnect.svg share/icons/breeze-dark/preferences/32/kded5.svg share/icons/breeze-dark/preferences/32/krunner.svg share/icons/breeze-dark/preferences/32/ksmserver.svg share/icons/breeze-dark/preferences/32/mediacontrol.svg share/icons/breeze-dark/preferences/32/plasma-search.svg share/icons/breeze-dark/preferences/32/plasma.svg share/icons/breeze-dark/preferences/32/plasmagik.svg share/icons/breeze-dark/preferences/32/plasmashell.svg share/icons/breeze-dark/preferences/32/podcast-amarok.svg share/icons/breeze-dark/preferences/32/preferences-desktop-accessibility.svg share/icons/breeze-dark/preferences/32/preferences-desktop-activities.svg share/icons/breeze-dark/preferences/32/preferences-desktop-baloo.svg share/icons/breeze-dark/preferences/32/preferences-desktop-color.svg share/icons/breeze-dark/preferences/32/preferences-desktop-cryptography.svg share/icons/breeze-dark/preferences/32/preferences-desktop-cursors.svg share/icons/breeze-dark/preferences/32/preferences-desktop-default-applications.svg share/icons/breeze-dark/preferences/32/preferences-desktop-display-color.svg share/icons/breeze-dark/preferences/32/preferences-desktop-display.svg share/icons/breeze-dark/preferences/32/preferences-desktop-effects.svg share/icons/breeze-dark/preferences/32/preferences-desktop-emoticons.svg share/icons/breeze-dark/preferences/32/preferences-desktop-feedback.svg share/icons/breeze-dark/preferences/32/preferences-desktop-filetype-association.svg share/icons/breeze-dark/preferences/32/preferences-desktop-filter.svg share/icons/breeze-dark/preferences/32/preferences-desktop-font.svg share/icons/breeze-dark/preferences/32/preferences-desktop-gaming.svg share/icons/breeze-dark/preferences/32/preferences-desktop-gestures-screenedges.svg share/icons/breeze-dark/preferences/32/preferences-desktop-gestures-touch.svg share/icons/breeze-dark/preferences/32/preferences-desktop-icons.svg share/icons/breeze-dark/preferences/32/preferences-desktop-keyboard.svg share/icons/breeze-dark/preferences/32/preferences-desktop-launch-feedback.svg share/icons/breeze-dark/preferences/32/preferences-desktop-locale.svg share/icons/breeze-dark/preferences/32/preferences-desktop-menu-edit.svg share/icons/breeze-dark/preferences/32/preferences-desktop-mouse.svg share/icons/breeze-dark/preferences/32/preferences-desktop-multimedia.svg share/icons/breeze-dark/preferences/32/preferences-desktop-navigation.svg share/icons/breeze-dark/preferences/32/preferences-desktop-notification-bell.svg share/icons/breeze-dark/preferences/32/preferences-desktop-notification.svg share/icons/breeze-dark/preferences/32/preferences-desktop-peripherals.svg share/icons/breeze-dark/preferences/32/preferences-desktop-plasma-theme.svg share/icons/breeze-dark/preferences/32/preferences-desktop-plasma.svg share/icons/breeze-dark/preferences/32/preferences-desktop-screensaver.svg share/icons/breeze-dark/preferences/32/preferences-desktop-search.svg share/icons/breeze-dark/preferences/32/preferences-desktop-sound.svg share/icons/breeze-dark/preferences/32/preferences-desktop-tablet.svg share/icons/breeze-dark/preferences/32/preferences-desktop-text-to-speech.svg share/icons/breeze-dark/preferences/32/preferences-desktop-theme-applications.svg share/icons/breeze-dark/preferences/32/preferences-desktop-theme-global.svg share/icons/breeze-dark/preferences/32/preferences-desktop-theme-windowdecorations.svg share/icons/breeze-dark/preferences/32/preferences-desktop-theme.svg share/icons/breeze-dark/preferences/32/preferences-desktop-thunderbolt.svg share/icons/breeze-dark/preferences/32/preferences-desktop-touchpad.svg share/icons/breeze-dark/preferences/32/preferences-desktop-user-password.svg share/icons/breeze-dark/preferences/32/preferences-desktop-user.svg share/icons/breeze-dark/preferences/32/preferences-desktop-virtual.svg share/icons/breeze-dark/preferences/32/preferences-desktop-wallpaper.svg share/icons/breeze-dark/preferences/32/preferences-desktop.svg share/icons/breeze-dark/preferences/32/preferences-devices-cpu.svg share/icons/breeze-dark/preferences/32/preferences-devices-drive-optical-check.svg share/icons/breeze-dark/preferences/32/preferences-devices-printer.svg share/icons/breeze-dark/preferences/32/preferences-devices-scanner.svg share/icons/breeze-dark/preferences/32/preferences-devices-tree.svg share/icons/breeze-dark/preferences/32/preferences-document.svg share/icons/breeze-dark/preferences/32/preferences-git.svg share/icons/breeze-dark/preferences/32/preferences-gtk-config.svg share/icons/breeze-dark/preferences/32/preferences-kde-connect.svg share/icons/breeze-dark/preferences/32/preferences-log.svg share/icons/breeze-dark/preferences/32/preferences-online-accounts.svg share/icons/breeze-dark/preferences/32/preferences-other.svg share/icons/breeze-dark/preferences/32/preferences-plugin.svg share/icons/breeze-dark/preferences/32/preferences-%%CMAKE_BUILD_TYPE%%notes.svg share/icons/breeze-dark/preferences/32/preferences-scroll.svg share/icons/breeze-dark/preferences/32/preferences-security-apparmor.svg share/icons/breeze-dark/preferences/32/preferences-security-firewall.svg share/icons/breeze-dark/preferences/32/preferences-security-kerberos.svg share/icons/breeze-dark/preferences/32/preferences-security.svg share/icons/breeze-dark/preferences/32/preferences-smart-status.svg share/icons/breeze-dark/preferences/32/preferences-system-backup.svg share/icons/breeze-dark/preferences/32/preferences-system-bluetooth.svg share/icons/breeze-dark/preferences/32/preferences-system-linux.svg share/icons/breeze-dark/preferences/32/preferences-system-login.svg share/icons/breeze-dark/preferences/32/preferences-system-network-dsl.svg share/icons/breeze-dark/preferences/32/preferences-system-network-ethernet.svg share/icons/breeze-dark/preferences/32/preferences-system-network-iscsi.svg share/icons/breeze-dark/preferences/32/preferences-system-network-ldap.svg share/icons/breeze-dark/preferences/32/preferences-system-network-nis.svg share/icons/breeze-dark/preferences/32/preferences-system-network-ntp.svg share/icons/breeze-dark/preferences/32/preferences-system-network-proxy.svg share/icons/breeze-dark/preferences/32/preferences-system-network-remote.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-boot.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-dhcp.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-dns.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-ftp.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-installation.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-iscsi.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-kerberos.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-ldap.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-mail.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-nis.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-share-windows.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-share.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-slp.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server-web.svg share/icons/breeze-dark/preferences/32/preferences-system-network-server.svg share/icons/breeze-dark/preferences/32/preferences-system-network-share-windows.svg share/icons/breeze-dark/preferences/32/preferences-system-network-share.svg share/icons/breeze-dark/preferences/32/preferences-system-network-sharing.svg share/icons/breeze-dark/preferences/32/preferences-system-network-vpn.svg share/icons/breeze-dark/preferences/32/preferences-system-network-wakeonlan.svg share/icons/breeze-dark/preferences/32/preferences-system-network.svg share/icons/breeze-dark/preferences/32/preferences-system-performance.svg share/icons/breeze-dark/preferences/32/preferences-system-power-management.svg share/icons/breeze-dark/preferences/32/preferences-system-services.svg share/icons/breeze-dark/preferences/32/preferences-system-session-services.svg share/icons/breeze-dark/preferences/32/preferences-system-splash.svg share/icons/breeze-dark/preferences/32/preferences-system-startup.svg share/icons/breeze-dark/preferences/32/preferences-system-time.svg share/icons/breeze-dark/preferences/32/preferences-system-user-sudo.svg share/icons/breeze-dark/preferences/32/preferences-system-users.svg share/icons/breeze-dark/preferences/32/preferences-system-windows-actions.svg share/icons/breeze-dark/preferences/32/preferences-system-windows-behavior.svg share/icons/breeze-dark/preferences/32/preferences-system-windows-move.svg share/icons/breeze-dark/preferences/32/preferences-system-windows.svg share/icons/breeze-dark/preferences/32/preferences-tabs.svg share/icons/breeze-dark/preferences/32/preferences-virtualization-container.svg share/icons/breeze-dark/preferences/32/preferences-virtualization-vm-install.svg share/icons/breeze-dark/preferences/32/preferences-virtualization-vm-migrate.svg share/icons/breeze-dark/preferences/32/preferences-virtualization-vm-new.svg share/icons/breeze-dark/preferences/32/preferences-virtualization-vm.svg share/icons/breeze-dark/preferences/32/preferences-web-browser-adblock.svg share/icons/breeze-dark/preferences/32/preferences-web-browser-cache.svg share/icons/breeze-dark/preferences/32/preferences-web-browser-cookies.svg share/icons/breeze-dark/preferences/32/preferences-web-browser-identification.svg share/icons/breeze-dark/preferences/32/preferences-web-browser-shortcuts.svg share/icons/breeze-dark/preferences/32/preferences-web-browser-ssl.svg share/icons/breeze-dark/preferences/32/preferences-web-browser-stylesheets.svg share/icons/breeze-dark/preferences/32/preferences.svg share/icons/breeze-dark/preferences/32/system-lock-screen.svg share/icons/breeze-dark/preferences/32/system-users.svg share/icons/breeze-dark/preferences/32/window-duplicate.svg share/icons/breeze-dark/preferences/32/yast-addon-extension.svg share/icons/breeze-dark/preferences/32/yast-addon.svg share/icons/breeze-dark/preferences/32/yast-alternatives.svg share/icons/breeze-dark/preferences/32/yast-apparmor.svg share/icons/breeze-dark/preferences/32/yast-auth-client.svg share/icons/breeze-dark/preferences/32/yast-autoyast.svg share/icons/breeze-dark/preferences/32/yast-bootloader.svg share/icons/breeze-dark/preferences/32/yast-checkmedia.svg share/icons/breeze-dark/preferences/32/yast-create-new-vm.svg share/icons/breeze-dark/preferences/32/yast-device-tree.svg share/icons/breeze-dark/preferences/32/yast-dhcp-server.svg share/icons/breeze-dark/preferences/32/yast-disk.svg share/icons/breeze-dark/preferences/32/yast-dns-server.svg share/icons/breeze-dark/preferences/32/yast-docker.svg share/icons/breeze-dark/preferences/32/yast-dsl.svg share/icons/breeze-dark/preferences/32/yast-fcoe.svg share/icons/breeze-dark/preferences/32/yast-firewall.svg share/icons/breeze-dark/preferences/32/yast-fonts.svg share/icons/breeze-dark/preferences/32/yast-ftp-server.svg share/icons/breeze-dark/preferences/32/yast-hardware-group.svg share/icons/breeze-dark/preferences/32/yast-host.svg share/icons/breeze-dark/preferences/32/yast-http-server.svg share/icons/breeze-dark/preferences/32/yast-hwinfo.svg share/icons/breeze-dark/preferences/32/yast-instserver.svg share/icons/breeze-dark/preferences/32/yast-iscsi-client.svg share/icons/breeze-dark/preferences/32/yast-iscsi-server.svg share/icons/breeze-dark/preferences/32/yast-journal.svg share/icons/breeze-dark/preferences/32/yast-kerberos-server.svg share/icons/breeze-dark/preferences/32/yast-kernel.svg share/icons/breeze-dark/preferences/32/yast-keyboard.svg share/icons/breeze-dark/preferences/32/yast-lan.svg share/icons/breeze-dark/preferences/32/yast-language.svg share/icons/breeze-dark/preferences/32/yast-ldap-kerberos.svg share/icons/breeze-dark/preferences/32/yast-ldap-server.svg share/icons/breeze-dark/preferences/32/yast-mail.svg share/icons/breeze-dark/preferences/32/yast-messages.svg share/icons/breeze-dark/preferences/32/yast-misc-group.svg share/icons/breeze-dark/preferences/32/yast-network-group.svg share/icons/breeze-dark/preferences/32/yast-nfs-server.svg share/icons/breeze-dark/preferences/32/yast-nfs.svg share/icons/breeze-dark/preferences/32/yast-nis-server.svg share/icons/breeze-dark/preferences/32/yast-nis.svg share/icons/breeze-dark/preferences/32/yast-ntp-client.svg share/icons/breeze-dark/preferences/32/yast-printer.svg share/icons/breeze-dark/preferences/32/yast-proxy.svg share/icons/breeze-dark/preferences/32/yast-%%CMAKE_BUILD_TYPE%%-notes.svg share/icons/breeze-dark/preferences/32/yast-remote.svg share/icons/breeze-dark/preferences/32/yast-samba-client.svg share/icons/breeze-dark/preferences/32/yast-samba-server.svg share/icons/breeze-dark/preferences/32/yast-scanner.svg share/icons/breeze-dark/preferences/32/yast-security-group.svg share/icons/breeze-dark/preferences/32/yast-security.svg share/icons/breeze-dark/preferences/32/yast-services-manager.svg share/icons/breeze-dark/preferences/32/yast-slp-server.svg share/icons/breeze-dark/preferences/32/yast-snapper.svg share/icons/breeze-dark/preferences/32/yast-software-group.svg share/icons/breeze-dark/preferences/32/yast-sound.svg share/icons/breeze-dark/preferences/32/yast-sudo.svg share/icons/breeze-dark/preferences/32/yast-support-group.svg share/icons/breeze-dark/preferences/32/yast-support.svg share/icons/breeze-dark/preferences/32/yast-sw_source.svg share/icons/breeze-dark/preferences/32/yast-sysconfig.svg share/icons/breeze-dark/preferences/32/yast-system-group.svg share/icons/breeze-dark/preferences/32/yast-tftp-server.svg share/icons/breeze-dark/preferences/32/yast-timezone.svg share/icons/breeze-dark/preferences/32/yast-update-online-configuration.svg share/icons/breeze-dark/preferences/32/yast-update-online.svg share/icons/breeze-dark/preferences/32/yast-update.svg share/icons/breeze-dark/preferences/32/yast-users.svg share/icons/breeze-dark/preferences/32/yast-vm-group.svg share/icons/breeze-dark/preferences/32/yast-vm-install.svg share/icons/breeze-dark/preferences/32/yast-vm-migrate.svg share/icons/breeze-dark/preferences/32/yast-vpn.svg share/icons/breeze-dark/preferences/32/yast-wol.svg share/icons/breeze-dark/status/16/appointment-recurring.svg share/icons/breeze-dark/status/16/appointment-reminder.svg share/icons/breeze-dark/status/16/audio-off.svg share/icons/breeze-dark/status/16/audio-on.svg share/icons/breeze-dark/status/16/audio-ready.svg share/icons/breeze-dark/status/16/audio-volume-high.svg share/icons/breeze-dark/status/16/audio-volume-low.svg share/icons/breeze-dark/status/16/audio-volume-medium.svg share/icons/breeze-dark/status/16/audio-volume-muted.svg share/icons/breeze-dark/status/16/auth-sim-locked.svg share/icons/breeze-dark/status/16/auth-sim-missing.svg share/icons/breeze-dark/status/16/battery-000-charging.svg share/icons/breeze-dark/status/16/battery-000.svg share/icons/breeze-dark/status/16/battery-010-charging.svg share/icons/breeze-dark/status/16/battery-010.svg share/icons/breeze-dark/status/16/battery-020-charging.svg share/icons/breeze-dark/status/16/battery-020.svg share/icons/breeze-dark/status/16/battery-030-charging.svg share/icons/breeze-dark/status/16/battery-030.svg share/icons/breeze-dark/status/16/battery-040-charging.svg share/icons/breeze-dark/status/16/battery-040.svg share/icons/breeze-dark/status/16/battery-050-charging.svg share/icons/breeze-dark/status/16/battery-050.svg share/icons/breeze-dark/status/16/battery-060-charging.svg share/icons/breeze-dark/status/16/battery-060.svg share/icons/breeze-dark/status/16/battery-070-charging.svg share/icons/breeze-dark/status/16/battery-070.svg share/icons/breeze-dark/status/16/battery-080-charging.svg share/icons/breeze-dark/status/16/battery-080.svg share/icons/breeze-dark/status/16/battery-090-charging.svg share/icons/breeze-dark/status/16/battery-090.svg share/icons/breeze-dark/status/16/battery-100-charging.svg share/icons/breeze-dark/status/16/battery-100.svg share/icons/breeze-dark/status/16/battery-caution-charging.svg share/icons/breeze-dark/status/16/battery-caution.svg share/icons/breeze-dark/status/16/battery-empty-charging.svg share/icons/breeze-dark/status/16/battery-empty.svg share/icons/breeze-dark/status/16/battery-full-charging.svg share/icons/breeze-dark/status/16/battery-full.svg share/icons/breeze-dark/status/16/battery-good-charging.svg share/icons/breeze-dark/status/16/battery-good.svg share/icons/breeze-dark/status/16/battery-low-charging.svg share/icons/breeze-dark/status/16/battery-low.svg share/icons/breeze-dark/status/16/battery-missing.svg share/icons/breeze-dark/status/16/call-incoming.svg share/icons/breeze-dark/status/16/call-missed.svg share/icons/breeze-dark/status/16/call-outgoing.svg share/icons/breeze-dark/status/16/camera-off.svg share/icons/breeze-dark/status/16/camera-on.svg share/icons/breeze-dark/status/16/camera-ready.svg share/icons/breeze-dark/status/16/cloudstatus.svg share/icons/breeze-dark/status/16/crow-translate-tray.svg share/icons/breeze-dark/status/16/data-error.svg share/icons/breeze-dark/status/16/data-information.svg share/icons/breeze-dark/status/16/data-warning.svg share/icons/breeze-dark/status/16/dialog-information.svg share/icons/breeze-dark/status/16/dialog-warning.svg share/icons/breeze-dark/status/16/firewall-applet-error.svg share/icons/breeze-dark/status/16/firewall-applet-panic.svg share/icons/breeze-dark/status/16/firewall-applet-shields_up.svg share/icons/breeze-dark/status/16/firewall-applet.svg share/icons/breeze-dark/status/16/image-missing.svg share/icons/breeze-dark/status/16/input-caps-on.svg share/icons/breeze-dark/status/16/irc-channel-joined.svg share/icons/breeze-dark/status/16/irc-channel-parted.svg share/icons/breeze-dark/status/16/kdeconnect-tray.svg share/icons/breeze-dark/status/16/media-playback-paused.svg share/icons/breeze-dark/status/16/media-playback-playing.svg share/icons/breeze-dark/status/16/media-playback-stopped.svg share/icons/breeze-dark/status/16/meeting-organizer.svg share/icons/breeze-dark/status/16/mic-off.svg share/icons/breeze-dark/status/16/mic-on.svg share/icons/breeze-dark/status/16/mic-ready.svg share/icons/breeze-dark/status/16/microphone-sensitivity-high.svg share/icons/breeze-dark/status/16/microphone-sensitivity-low.svg share/icons/breeze-dark/status/16/microphone-sensitivity-medium.svg share/icons/breeze-dark/status/16/microphone-sensitivity-muted.svg share/icons/breeze-dark/status/16/pidgin-tray-available.svg share/icons/breeze-dark/status/16/pidgin-tray-away.svg share/icons/breeze-dark/status/16/pidgin-tray-busy.svg share/icons/breeze-dark/status/16/pidgin-tray-email.svg share/icons/breeze-dark/status/16/pidgin-tray-invisible.svg share/icons/breeze-dark/status/16/pidgin-tray-offline.svg share/icons/breeze-dark/status/16/pidgin-tray-pending.svg share/icons/breeze-dark/status/16/pidgin-tray-xa.svg share/icons/breeze-dark/status/16/rotation-allowed.svg share/icons/breeze-dark/status/16/rotation-locked-landscape.svg share/icons/breeze-dark/status/16/rotation-locked-portrait.svg share/icons/breeze-dark/status/16/security-high.svg share/icons/breeze-dark/status/16/security-low.svg share/icons/breeze-dark/status/16/security-medium.svg share/icons/breeze-dark/status/16/state-download.svg share/icons/breeze-dark/status/16/state-error.svg share/icons/breeze-dark/status/16/state-information.svg share/icons/breeze-dark/status/16/state-offline.svg share/icons/breeze-dark/status/16/state-ok.svg share/icons/breeze-dark/status/16/state-pause.svg share/icons/breeze-dark/status/16/state-sync.svg share/icons/breeze-dark/status/16/state-warning.svg share/icons/breeze-dark/status/16/task-complete.svg share/icons/breeze-dark/status/16/task-process-0.svg share/icons/breeze-dark/status/16/task-process-1.svg share/icons/breeze-dark/status/16/task-process-2.svg share/icons/breeze-dark/status/16/task-process-3.svg share/icons/breeze-dark/status/16/task-process-4.svg share/icons/breeze-dark/status/16/task-recurring.svg share/icons/breeze-dark/status/16/task-reminder.svg share/icons/breeze-dark/status/16/temperature-cold.svg share/icons/breeze-dark/status/16/temperature-normal.svg share/icons/breeze-dark/status/16/temperature-warm.svg share/icons/breeze-dark/status/16/user-available.svg share/icons/breeze-dark/status/16/user-away-extended.svg share/icons/breeze-dark/status/16/user-away.svg share/icons/breeze-dark/status/16/user-busy.svg share/icons/breeze-dark/status/16/user-idle.svg share/icons/breeze-dark/status/16/user-invisible.svg share/icons/breeze-dark/status/16/user-offline.svg share/icons/breeze-dark/status/16/user-online.svg share/icons/breeze-dark/status/16@2x share/icons/breeze-dark/status/16@3x share/icons/breeze-dark/status/22/TeamViewer.svg share/icons/breeze-dark/status/22/appointment-recurring.svg share/icons/breeze-dark/status/22/appointment-reminder.svg share/icons/breeze-dark/status/22/audio-off.svg share/icons/breeze-dark/status/22/audio-on.svg share/icons/breeze-dark/status/22/audio-ready.svg share/icons/breeze-dark/status/22/audio-volume-high.svg share/icons/breeze-dark/status/22/audio-volume-low.svg share/icons/breeze-dark/status/22/audio-volume-medium.svg share/icons/breeze-dark/status/22/audio-volume-muted.svg share/icons/breeze-dark/status/22/auth-sim-locked.svg share/icons/breeze-dark/status/22/auth-sim-missing.svg share/icons/breeze-dark/status/22/battery-000-charging.svg share/icons/breeze-dark/status/22/battery-000.svg share/icons/breeze-dark/status/22/battery-010-charging.svg share/icons/breeze-dark/status/22/battery-010.svg share/icons/breeze-dark/status/22/battery-020-charging.svg share/icons/breeze-dark/status/22/battery-020.svg share/icons/breeze-dark/status/22/battery-030-charging.svg share/icons/breeze-dark/status/22/battery-030.svg share/icons/breeze-dark/status/22/battery-040-charging.svg share/icons/breeze-dark/status/22/battery-040.svg share/icons/breeze-dark/status/22/battery-050-charging.svg share/icons/breeze-dark/status/22/battery-050.svg share/icons/breeze-dark/status/22/battery-060-charging.svg share/icons/breeze-dark/status/22/battery-060.svg share/icons/breeze-dark/status/22/battery-070-charging.svg share/icons/breeze-dark/status/22/battery-070.svg share/icons/breeze-dark/status/22/battery-080-charging.svg share/icons/breeze-dark/status/22/battery-080.svg share/icons/breeze-dark/status/22/battery-090-charging.svg share/icons/breeze-dark/status/22/battery-090.svg share/icons/breeze-dark/status/22/battery-100-charging.svg share/icons/breeze-dark/status/22/battery-100.svg share/icons/breeze-dark/status/22/battery-caution-charging.svg share/icons/breeze-dark/status/22/battery-caution.svg share/icons/breeze-dark/status/22/battery-empty-charging.svg share/icons/breeze-dark/status/22/battery-empty.svg share/icons/breeze-dark/status/22/battery-full-charging.svg share/icons/breeze-dark/status/22/battery-full.svg share/icons/breeze-dark/status/22/battery-good-charging.svg share/icons/breeze-dark/status/22/battery-good.svg share/icons/breeze-dark/status/22/battery-low-charging.svg share/icons/breeze-dark/status/22/battery-low.svg share/icons/breeze-dark/status/22/battery-missing.svg share/icons/breeze-dark/status/22/call-incoming.svg share/icons/breeze-dark/status/22/call-missed.svg share/icons/breeze-dark/status/22/call-outgoing.svg share/icons/breeze-dark/status/22/camera-off.svg share/icons/breeze-dark/status/22/camera-on.svg share/icons/breeze-dark/status/22/camera-ready.svg share/icons/breeze-dark/status/22/cloudstatus.svg share/icons/breeze-dark/status/22/com.github.ztefn.haguichi-connected.svg share/icons/breeze-dark/status/22/com.github.ztefn.haguichi-connecting-1.svg share/icons/breeze-dark/status/22/com.github.ztefn.haguichi-connecting-2.svg share/icons/breeze-dark/status/22/com.github.ztefn.haguichi-connecting-3.svg share/icons/breeze-dark/status/22/com.github.ztefn.haguichi-disconnected.svg share/icons/breeze-dark/status/22/data-error.svg share/icons/breeze-dark/status/22/data-information.svg +share/icons/breeze-dark/status/22/data-success.svg share/icons/breeze-dark/status/22/data-warning.svg share/icons/breeze-dark/status/22/dialog-error.svg share/icons/breeze-dark/status/22/dialog-information.svg share/icons/breeze-dark/status/22/dialog-password.svg share/icons/breeze-dark/status/22/dialog-positive.svg share/icons/breeze-dark/status/22/dialog-question.svg share/icons/breeze-dark/status/22/dialog-warning.svg share/icons/breeze-dark/status/22/disk-quota-critical.svg share/icons/breeze-dark/status/22/disk-quota-high.svg share/icons/breeze-dark/status/22/disk-quota-low.svg share/icons/breeze-dark/status/22/disk-quota.svg share/icons/breeze-dark/status/22/dropboxstatus-busy.svg share/icons/breeze-dark/status/22/dropboxstatus-busy2.svg share/icons/breeze-dark/status/22/dropboxstatus-idle.svg share/icons/breeze-dark/status/22/dropboxstatus-logo.svg share/icons/breeze-dark/status/22/dropboxstatus-x.svg share/icons/breeze-dark/status/22/fcitx-googlepinyin.svg share/icons/breeze-dark/status/22/fcitx-pinyin-libpinyin.svg share/icons/breeze-dark/status/22/fcitx-pinyin.svg share/icons/breeze-dark/status/22/fcitx-shuangpin-libpinyin.svg share/icons/breeze-dark/status/22/fcitx-shuangpin.svg share/icons/breeze-dark/status/22/fcitx-sunpinyin.svg share/icons/breeze-dark/status/22/fcitx-wubi.svg share/icons/breeze-dark/status/22/firewall-applet-error.svg share/icons/breeze-dark/status/22/firewall-applet-panic.svg share/icons/breeze-dark/status/22/firewall-applet-shields_up.svg share/icons/breeze-dark/status/22/firewall-applet.svg share/icons/breeze-dark/status/22/flameshot-tray.svg share/icons/breeze-dark/status/22/haguichi-connected.svg share/icons/breeze-dark/status/22/haguichi-connecting-1.svg share/icons/breeze-dark/status/22/haguichi-connecting-2.svg share/icons/breeze-dark/status/22/haguichi-connecting-3.svg share/icons/breeze-dark/status/22/haguichi-disconnected.svg share/icons/breeze-dark/status/22/image-missing.svg share/icons/breeze-dark/status/22/input-caps-on.svg share/icons/breeze-dark/status/22/input-keyboard-virtual-off.svg share/icons/breeze-dark/status/22/input-keyboard-virtual-on.svg share/icons/breeze-dark/status/22/input-touchpad-off.svg share/icons/breeze-dark/status/22/input-touchpad-on.svg share/icons/breeze-dark/status/22/install.svg share/icons/breeze-dark/status/22/irc-channel-joined.svg share/icons/breeze-dark/status/22/irc-channel-parted.svg share/icons/breeze-dark/status/22/kdeconnect-tray.svg share/icons/breeze-dark/status/22/media-playback-paused.svg share/icons/breeze-dark/status/22/media-playback-playing.svg share/icons/breeze-dark/status/22/media-playback-stopped.svg share/icons/breeze-dark/status/22/meeting-organizer.svg share/icons/breeze-dark/status/22/mic-off.svg share/icons/breeze-dark/status/22/mic-on.svg share/icons/breeze-dark/status/22/mic-ready.svg share/icons/breeze-dark/status/22/microphone-sensitivity-high.svg share/icons/breeze-dark/status/22/microphone-sensitivity-low.svg share/icons/breeze-dark/status/22/microphone-sensitivity-medium.svg share/icons/breeze-dark/status/22/microphone-sensitivity-muted.svg share/icons/breeze-dark/status/22/network-bluetooth-activated-locked.svg share/icons/breeze-dark/status/22/network-bluetooth-activated.svg share/icons/breeze-dark/status/22/network-bluetooth.svg share/icons/breeze-dark/status/22/network-flightmode-off.svg share/icons/breeze-dark/status/22/network-flightmode-on.svg share/icons/breeze-dark/status/22/network-limited.svg share/icons/breeze-dark/status/22/network-mobile-0-edge-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-edge.svg share/icons/breeze-dark/status/22/network-mobile-0-gprs-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-gprs.svg share/icons/breeze-dark/status/22/network-mobile-0-hsdpa-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-hsdpa.svg share/icons/breeze-dark/status/22/network-mobile-0-hspa-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-hspa.svg share/icons/breeze-dark/status/22/network-mobile-0-hsupa-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-hsupa.svg share/icons/breeze-dark/status/22/network-mobile-0-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-lte-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-lte.svg share/icons/breeze-dark/status/22/network-mobile-0-umts-locked.svg share/icons/breeze-dark/status/22/network-mobile-0-umts.svg share/icons/breeze-dark/status/22/network-mobile-0.svg share/icons/breeze-dark/status/22/network-mobile-100-edge-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-edge.svg share/icons/breeze-dark/status/22/network-mobile-100-gprs-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-gprs.svg share/icons/breeze-dark/status/22/network-mobile-100-hsdpa-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-hsdpa.svg share/icons/breeze-dark/status/22/network-mobile-100-hspa-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-hspa.svg share/icons/breeze-dark/status/22/network-mobile-100-hsupa-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-hsupa.svg share/icons/breeze-dark/status/22/network-mobile-100-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-lte-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-lte.svg share/icons/breeze-dark/status/22/network-mobile-100-umts-locked.svg share/icons/breeze-dark/status/22/network-mobile-100-umts.svg share/icons/breeze-dark/status/22/network-mobile-100.svg share/icons/breeze-dark/status/22/network-mobile-20-edge-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-edge.svg share/icons/breeze-dark/status/22/network-mobile-20-gprs-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-gprs.svg share/icons/breeze-dark/status/22/network-mobile-20-hsdpa-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-hsdpa.svg share/icons/breeze-dark/status/22/network-mobile-20-hspa-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-hspa.svg share/icons/breeze-dark/status/22/network-mobile-20-hsupa-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-hsupa.svg share/icons/breeze-dark/status/22/network-mobile-20-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-lte-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-lte.svg share/icons/breeze-dark/status/22/network-mobile-20-umts-locked.svg share/icons/breeze-dark/status/22/network-mobile-20-umts.svg share/icons/breeze-dark/status/22/network-mobile-20.svg share/icons/breeze-dark/status/22/network-mobile-40-edge-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-edge.svg share/icons/breeze-dark/status/22/network-mobile-40-gprs-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-gprs.svg share/icons/breeze-dark/status/22/network-mobile-40-hsdpa-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-hsdpa.svg share/icons/breeze-dark/status/22/network-mobile-40-hspa-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-hspa.svg share/icons/breeze-dark/status/22/network-mobile-40-hsupa-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-hsupa.svg share/icons/breeze-dark/status/22/network-mobile-40-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-lte-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-lte.svg share/icons/breeze-dark/status/22/network-mobile-40-umts-locked.svg share/icons/breeze-dark/status/22/network-mobile-40-umts.svg share/icons/breeze-dark/status/22/network-mobile-40.svg share/icons/breeze-dark/status/22/network-mobile-60-edge-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-edge.svg share/icons/breeze-dark/status/22/network-mobile-60-gprs-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-gprs.svg share/icons/breeze-dark/status/22/network-mobile-60-hsdpa-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-hsdpa.svg share/icons/breeze-dark/status/22/network-mobile-60-hspa-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-hspa.svg share/icons/breeze-dark/status/22/network-mobile-60-hsupa-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-hsupa.svg share/icons/breeze-dark/status/22/network-mobile-60-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-lte-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-lte.svg share/icons/breeze-dark/status/22/network-mobile-60-umts-locked.svg share/icons/breeze-dark/status/22/network-mobile-60-umts.svg share/icons/breeze-dark/status/22/network-mobile-60.svg share/icons/breeze-dark/status/22/network-mobile-80-edge-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-edge.svg share/icons/breeze-dark/status/22/network-mobile-80-gprs-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-gprs.svg share/icons/breeze-dark/status/22/network-mobile-80-hsdpa-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-hsdpa.svg share/icons/breeze-dark/status/22/network-mobile-80-hspa-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-hspa.svg share/icons/breeze-dark/status/22/network-mobile-80-hsupa-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-hsupa.svg share/icons/breeze-dark/status/22/network-mobile-80-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-lte-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-lte.svg share/icons/breeze-dark/status/22/network-mobile-80-umts-locked.svg share/icons/breeze-dark/status/22/network-mobile-80-umts.svg share/icons/breeze-dark/status/22/network-mobile-80.svg share/icons/breeze-dark/status/22/network-mobile-available.svg share/icons/breeze-dark/status/22/network-mobile-off.svg share/icons/breeze-dark/status/22/network-mobile-on.svg share/icons/breeze-dark/status/22/network-offline.svg share/icons/breeze-dark/status/22/network-wired-activated.svg share/icons/breeze-dark/status/22/network-wired-disconnected.svg share/icons/breeze-dark/status/22/network-wired-unavailable.svg share/icons/breeze-dark/status/22/network-wireless-acquiring.svg share/icons/breeze-dark/status/22/network-wireless-connected-00.svg share/icons/breeze-dark/status/22/network-wireless-connected-100.svg share/icons/breeze-dark/status/22/network-wireless-connected-25.svg share/icons/breeze-dark/status/22/network-wireless-connected-50.svg share/icons/breeze-dark/status/22/network-wireless-connected-75.svg share/icons/breeze-dark/status/22/network-wireless-disconnected.svg share/icons/breeze-dark/status/22/network-wireless-signal-excellent.svg share/icons/breeze-dark/status/22/network-wireless-signal-good.svg share/icons/breeze-dark/status/22/network-wireless-signal-none.svg share/icons/breeze-dark/status/22/network-wireless-signal-ok.svg share/icons/breeze-dark/status/22/network-wireless-signal-weak.svg share/icons/breeze-dark/status/22/nm-device-wired.svg share/icons/breeze-dark/status/22/nm-nm-signal-00.svg share/icons/breeze-dark/status/22/nm-nm-signal-100.svg share/icons/breeze-dark/status/22/nm-nm-signal-25.svg share/icons/breeze-dark/status/22/nm-nm-signal-50.svg share/icons/breeze-dark/status/22/nm-nm-signal-75.svg share/icons/breeze-dark/status/22/nm-no-connection.svg share/icons/breeze-dark/status/22/redshift-status-off.svg share/icons/breeze-dark/status/22/redshift-status-on.svg share/icons/breeze-dark/status/22/rotation-allowed.svg share/icons/breeze-dark/status/22/rotation-locked-landscape.svg share/icons/breeze-dark/status/22/rotation-locked-portrait.svg share/icons/breeze-dark/status/22/script-error.svg share/icons/breeze-dark/status/22/security-high.svg share/icons/breeze-dark/status/22/security-low.svg share/icons/breeze-dark/status/22/security-medium.svg share/icons/breeze-dark/status/22/state-download.svg share/icons/breeze-dark/status/22/state-error.svg share/icons/breeze-dark/status/22/state-information.svg share/icons/breeze-dark/status/22/state-offline.svg share/icons/breeze-dark/status/22/state-ok.svg share/icons/breeze-dark/status/22/state-pause.svg share/icons/breeze-dark/status/22/state-sync.svg share/icons/breeze-dark/status/22/state-warning.svg share/icons/breeze-dark/status/22/task-complete.svg share/icons/breeze-dark/status/22/task-process-0.svg share/icons/breeze-dark/status/22/task-process-1.svg share/icons/breeze-dark/status/22/task-process-2.svg share/icons/breeze-dark/status/22/task-process-3.svg share/icons/breeze-dark/status/22/task-process-4.svg share/icons/breeze-dark/status/22/task-recurring.svg share/icons/breeze-dark/status/22/task-reminder.svg share/icons/breeze-dark/status/22/telegram-attention-panel.svg share/icons/breeze-dark/status/22/telegram-mute-panel.svg share/icons/breeze-dark/status/22/telegram-panel.svg share/icons/breeze-dark/status/22/temperature-cold.svg share/icons/breeze-dark/status/22/temperature-normal.svg share/icons/breeze-dark/status/22/temperature-warm.svg share/icons/breeze-dark/status/22/transmission-tray-icon.svg share/icons/breeze-dark/status/22/uninstall.svg share/icons/breeze-dark/status/22/update-high.svg share/icons/breeze-dark/status/22/update-low.svg share/icons/breeze-dark/status/22/update-medium.svg share/icons/breeze-dark/status/22/update-none.svg share/icons/breeze-dark/status/22/user-available.svg share/icons/breeze-dark/status/22/user-away-extended.svg share/icons/breeze-dark/status/22/user-away.svg share/icons/breeze-dark/status/22/user-busy.svg share/icons/breeze-dark/status/22/user-idle.svg share/icons/breeze-dark/status/22/user-invisible.svg share/icons/breeze-dark/status/22/user-offline.svg share/icons/breeze-dark/status/22/user-online.svg share/icons/breeze-dark/status/22/video-card-inactive.svg share/icons/breeze-dark/status/22@2x share/icons/breeze-dark/status/22@3x share/icons/breeze-dark/status/24/TeamViewer.svg share/icons/breeze-dark/status/24/appointment-recurring.svg share/icons/breeze-dark/status/24/appointment-reminder.svg share/icons/breeze-dark/status/24/audio-off.svg share/icons/breeze-dark/status/24/audio-on.svg share/icons/breeze-dark/status/24/audio-ready.svg share/icons/breeze-dark/status/24/audio-volume-high.svg share/icons/breeze-dark/status/24/audio-volume-low.svg share/icons/breeze-dark/status/24/audio-volume-medium.svg share/icons/breeze-dark/status/24/audio-volume-muted.svg share/icons/breeze-dark/status/24/auth-sim-locked.svg share/icons/breeze-dark/status/24/auth-sim-missing.svg share/icons/breeze-dark/status/24/battery-020-charging.svg share/icons/breeze-dark/status/24/battery-020.svg share/icons/breeze-dark/status/24/battery-030-charging.svg share/icons/breeze-dark/status/24/battery-030.svg share/icons/breeze-dark/status/24/battery-040-charging.svg share/icons/breeze-dark/status/24/battery-040.svg share/icons/breeze-dark/status/24/battery-050-charging.svg share/icons/breeze-dark/status/24/battery-050.svg share/icons/breeze-dark/status/24/battery-060-charging.svg share/icons/breeze-dark/status/24/battery-060.svg share/icons/breeze-dark/status/24/battery-070-charging.svg share/icons/breeze-dark/status/24/battery-070.svg share/icons/breeze-dark/status/24/battery-080-charging.svg share/icons/breeze-dark/status/24/battery-080.svg share/icons/breeze-dark/status/24/battery-090-charging.svg share/icons/breeze-dark/status/24/battery-090.svg share/icons/breeze-dark/status/24/battery-100-charging.svg share/icons/breeze-dark/status/24/battery-100.svg share/icons/breeze-dark/status/24/battery-full-charging.svg share/icons/breeze-dark/status/24/battery-full.svg share/icons/breeze-dark/status/24/battery-good-charging.svg share/icons/breeze-dark/status/24/battery-good.svg share/icons/breeze-dark/status/24/battery-low-charging.svg share/icons/breeze-dark/status/24/battery-low.svg share/icons/breeze-dark/status/24/battery-missing.svg share/icons/breeze-dark/status/24/call-incoming.svg share/icons/breeze-dark/status/24/call-missed.svg share/icons/breeze-dark/status/24/call-outgoing.svg share/icons/breeze-dark/status/24/camera-off.svg share/icons/breeze-dark/status/24/camera-on.svg share/icons/breeze-dark/status/24/camera-ready.svg share/icons/breeze-dark/status/24/cloudstatus.svg share/icons/breeze-dark/status/24/com.github.ztefn.haguichi-connected.svg share/icons/breeze-dark/status/24/com.github.ztefn.haguichi-connecting-1.svg share/icons/breeze-dark/status/24/com.github.ztefn.haguichi-connecting-2.svg share/icons/breeze-dark/status/24/com.github.ztefn.haguichi-connecting-3.svg share/icons/breeze-dark/status/24/com.github.ztefn.haguichi-disconnected.svg +share/icons/breeze-dark/status/24/data-success.svg share/icons/breeze-dark/status/24/data-warning.svg share/icons/breeze-dark/status/24/dialog-error.svg share/icons/breeze-dark/status/24/dialog-information.svg share/icons/breeze-dark/status/24/dialog-password.svg share/icons/breeze-dark/status/24/dialog-positive.svg share/icons/breeze-dark/status/24/dialog-question.svg share/icons/breeze-dark/status/24/dialog-warning.svg share/icons/breeze-dark/status/24/disk-quota-critical.svg share/icons/breeze-dark/status/24/disk-quota-high.svg share/icons/breeze-dark/status/24/disk-quota-low.svg share/icons/breeze-dark/status/24/disk-quota.svg share/icons/breeze-dark/status/24/dropboxstatus-busy.svg share/icons/breeze-dark/status/24/dropboxstatus-busy2.svg share/icons/breeze-dark/status/24/dropboxstatus-idle.svg share/icons/breeze-dark/status/24/dropboxstatus-logo.svg share/icons/breeze-dark/status/24/dropboxstatus-x.svg share/icons/breeze-dark/status/24/fcitx-googlepinyin.svg share/icons/breeze-dark/status/24/fcitx-pinyin-libpinyin.svg share/icons/breeze-dark/status/24/fcitx-pinyin.svg share/icons/breeze-dark/status/24/fcitx-shuangpin-libpinyin.svg share/icons/breeze-dark/status/24/fcitx-shuangpin.svg share/icons/breeze-dark/status/24/fcitx-sunpinyin.svg share/icons/breeze-dark/status/24/fcitx-wubi.svg share/icons/breeze-dark/status/24/firewall-applet-panic.svg share/icons/breeze-dark/status/24/firewall-applet-shields_up.svg share/icons/breeze-dark/status/24/firewall-applet.svg share/icons/breeze-dark/status/24/flameshot-tray.svg share/icons/breeze-dark/status/24/haguichi-connected.svg share/icons/breeze-dark/status/24/haguichi-connecting-1.svg share/icons/breeze-dark/status/24/haguichi-connecting-2.svg share/icons/breeze-dark/status/24/haguichi-connecting-3.svg share/icons/breeze-dark/status/24/haguichi-disconnected.svg share/icons/breeze-dark/status/24/input-caps-on.svg share/icons/breeze-dark/status/24/input-keyboard-virtual-off.svg share/icons/breeze-dark/status/24/input-keyboard-virtual-on.svg share/icons/breeze-dark/status/24/input-touchpad-off.svg share/icons/breeze-dark/status/24/input-touchpad-on.svg share/icons/breeze-dark/status/24/install.svg share/icons/breeze-dark/status/24/irc-channel-joined.svg share/icons/breeze-dark/status/24/irc-channel-parted.svg share/icons/breeze-dark/status/24/kdeconnect-tray.svg share/icons/breeze-dark/status/24/media-playback-paused.svg share/icons/breeze-dark/status/24/media-playback-playing.svg share/icons/breeze-dark/status/24/media-playback-stopped.svg share/icons/breeze-dark/status/24/meeting-organizer.svg share/icons/breeze-dark/status/24/mic-off.svg share/icons/breeze-dark/status/24/mic-on.svg share/icons/breeze-dark/status/24/mic-ready.svg share/icons/breeze-dark/status/24/microphone-sensitivity-high.svg share/icons/breeze-dark/status/24/microphone-sensitivity-low.svg share/icons/breeze-dark/status/24/microphone-sensitivity-medium.svg share/icons/breeze-dark/status/24/microphone-sensitivity-muted.svg share/icons/breeze-dark/status/24/network-limited.svg share/icons/breeze-dark/status/24/network-offline.svg share/icons/breeze-dark/status/24/network-wired-activated.svg share/icons/breeze-dark/status/24/network-wired-disconnected.svg share/icons/breeze-dark/status/24/network-wired-unavailable.svg share/icons/breeze-dark/status/24/network-wireless-acquiring.svg share/icons/breeze-dark/status/24/network-wireless-connected-00.svg share/icons/breeze-dark/status/24/network-wireless-connected-100.svg share/icons/breeze-dark/status/24/network-wireless-connected-25.svg share/icons/breeze-dark/status/24/network-wireless-connected-50.svg share/icons/breeze-dark/status/24/network-wireless-connected-75.svg share/icons/breeze-dark/status/24/network-wireless-disconnected.svg share/icons/breeze-dark/status/24/network-wireless-signal-excellent.svg share/icons/breeze-dark/status/24/network-wireless-signal-good.svg share/icons/breeze-dark/status/24/network-wireless-signal-none.svg share/icons/breeze-dark/status/24/network-wireless-signal-ok.svg share/icons/breeze-dark/status/24/network-wireless-signal-weak.svg share/icons/breeze-dark/status/24/nm-device-wired.svg share/icons/breeze-dark/status/24/nm-nm-signal-00.svg share/icons/breeze-dark/status/24/nm-nm-signal-100.svg share/icons/breeze-dark/status/24/nm-nm-signal-25.svg share/icons/breeze-dark/status/24/nm-nm-signal-50.svg share/icons/breeze-dark/status/24/nm-nm-signal-75.svg share/icons/breeze-dark/status/24/nm-no-connection.svg share/icons/breeze-dark/status/24/redshift-status-off.svg share/icons/breeze-dark/status/24/redshift-status-on.svg share/icons/breeze-dark/status/24/rotation-allowed.svg share/icons/breeze-dark/status/24/rotation-locked-landscape.svg share/icons/breeze-dark/status/24/rotation-locked-portrait.svg share/icons/breeze-dark/status/24/script-error.svg share/icons/breeze-dark/status/24/security-high.svg share/icons/breeze-dark/status/24/security-low.svg share/icons/breeze-dark/status/24/security-medium.svg share/icons/breeze-dark/status/24/state-download.svg share/icons/breeze-dark/status/24/state-error.svg share/icons/breeze-dark/status/24/state-information.svg share/icons/breeze-dark/status/24/state-offline.svg share/icons/breeze-dark/status/24/state-ok.svg share/icons/breeze-dark/status/24/state-pause.svg share/icons/breeze-dark/status/24/state-sync.svg share/icons/breeze-dark/status/24/state-warning.svg share/icons/breeze-dark/status/24/task-complete.svg share/icons/breeze-dark/status/24/task-recurring.svg share/icons/breeze-dark/status/24/task-reminder.svg share/icons/breeze-dark/status/24/telegram-attention-panel.svg share/icons/breeze-dark/status/24/telegram-mute-panel.svg share/icons/breeze-dark/status/24/telegram-panel.svg share/icons/breeze-dark/status/24/temperature-cold.svg share/icons/breeze-dark/status/24/temperature-normal.svg share/icons/breeze-dark/status/24/temperature-warm.svg share/icons/breeze-dark/status/24/transmission-tray-icon.svg share/icons/breeze-dark/status/24/uninstall.svg share/icons/breeze-dark/status/24/update-high.svg share/icons/breeze-dark/status/24/update-low.svg share/icons/breeze-dark/status/24/update-medium.svg share/icons/breeze-dark/status/24/update-none.svg share/icons/breeze-dark/status/24/user-away-extended.svg share/icons/breeze-dark/status/24/user-idle.svg share/icons/breeze-dark/status/24/user-invisible.svg share/icons/breeze-dark/status/24/user-offline.svg share/icons/breeze-dark/status/24/video-card-inactive.svg share/icons/breeze-dark/status/24@2x share/icons/breeze-dark/status/24@3x share/icons/breeze-dark/status/32/appointment-recurring.svg share/icons/breeze-dark/status/32/battery-000-charging.svg share/icons/breeze-dark/status/32/battery-000.svg share/icons/breeze-dark/status/32/battery-010-charging.svg share/icons/breeze-dark/status/32/battery-010.svg share/icons/breeze-dark/status/32/battery-020-charging.svg share/icons/breeze-dark/status/32/battery-020.svg share/icons/breeze-dark/status/32/battery-030-charging.svg share/icons/breeze-dark/status/32/battery-030.svg share/icons/breeze-dark/status/32/battery-040-charging.svg share/icons/breeze-dark/status/32/battery-040.svg share/icons/breeze-dark/status/32/battery-050-charging.svg share/icons/breeze-dark/status/32/battery-050.svg share/icons/breeze-dark/status/32/battery-060-charging.svg share/icons/breeze-dark/status/32/battery-060.svg share/icons/breeze-dark/status/32/battery-070-charging.svg share/icons/breeze-dark/status/32/battery-070.svg share/icons/breeze-dark/status/32/battery-080-charging.svg share/icons/breeze-dark/status/32/battery-080.svg share/icons/breeze-dark/status/32/battery-090-charging.svg share/icons/breeze-dark/status/32/battery-090.svg share/icons/breeze-dark/status/32/battery-100-charging.svg share/icons/breeze-dark/status/32/battery-100.svg share/icons/breeze-dark/status/32/battery-caution-charging.svg share/icons/breeze-dark/status/32/battery-caution.svg share/icons/breeze-dark/status/32/battery-empty-charging.svg share/icons/breeze-dark/status/32/battery-empty.svg share/icons/breeze-dark/status/32/battery-full-charging.svg share/icons/breeze-dark/status/32/battery-full.svg share/icons/breeze-dark/status/32/battery-good-charging.svg share/icons/breeze-dark/status/32/battery-good.svg share/icons/breeze-dark/status/32/battery-low-charging.svg share/icons/breeze-dark/status/32/battery-low.svg share/icons/breeze-dark/status/32/battery-missing.svg share/icons/breeze-dark/status/32/call-incoming.svg share/icons/breeze-dark/status/32/call-missed.svg share/icons/breeze-dark/status/32/call-outgoing.svg share/icons/breeze-dark/status/32/dialog-warning.svg share/icons/breeze-dark/status/32/rotation-allowed.svg share/icons/breeze-dark/status/32/rotation-locked-landscape.svg share/icons/breeze-dark/status/32/rotation-locked-portrait.svg share/icons/breeze-dark/status/32/task-recurring.svg share/icons/breeze-dark/status/48/dialog-warning.svg share/icons/breeze-dark/status/64/dialog-error.svg share/icons/breeze-dark/status/64/dialog-information.svg share/icons/breeze-dark/status/64/dialog-password.svg share/icons/breeze-dark/status/64/dialog-positive.svg share/icons/breeze-dark/status/64/dialog-question.svg share/icons/breeze-dark/status/64/dialog-warning.svg share/icons/breeze-dark/status/64/image-missing.svg share/icons/breeze-dark/status/64/security-high.svg share/icons/breeze-dark/status/64/security-low.svg share/icons/breeze-dark/status/64/security-medium.svg share/icons/breeze-dark/status/symbolic/alarm-symbolic.svg share/icons/breeze-dark/status/symbolic/appointment-missed-symbolic.svg share/icons/breeze-dark/status/symbolic/appointment-soon-symbolic.svg share/icons/breeze-dark/status/symbolic/audio-volume-high-symbolic.svg share/icons/breeze-dark/status/symbolic/audio-volume-low-symbolic.svg share/icons/breeze-dark/status/symbolic/audio-volume-medium-symbolic.svg share/icons/breeze-dark/status/symbolic/audio-volume-muted-symbolic.svg share/icons/breeze-dark/status/symbolic/auth-sim-locked-symbolic.svg share/icons/breeze-dark/status/symbolic/auth-sim-missing-symbolic.svg share/icons/breeze-dark/status/symbolic/avatar-default-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-caution-charging-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-caution-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-empty-charging-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-empty-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-full-charged-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-full-charging-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-full-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-good-charging-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-good-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-low-charging-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-low-symbolic.svg share/icons/breeze-dark/status/symbolic/battery-missing-symbolic.svg share/icons/breeze-dark/status/symbolic/call-incoming-symbolic.svg share/icons/breeze-dark/status/symbolic/call-missed-symbolic.svg share/icons/breeze-dark/status/symbolic/call-outgoing-symbolic.svg share/icons/breeze-dark/status/symbolic/changes-allow-symbolic.svg share/icons/breeze-dark/status/symbolic/changes-prevent-symbolic.svg share/icons/breeze-dark/status/symbolic/channel-insecure-symbolic.svg share/icons/breeze-dark/status/symbolic/channel-secure-symbolic.svg share/icons/breeze-dark/status/symbolic/computer-fail-symbolic.svg share/icons/breeze-dark/status/symbolic/content-loading-symbolic.svg share/icons/breeze-dark/status/symbolic/dialog-error-symbolic.svg share/icons/breeze-dark/status/symbolic/dialog-warning-symbolic.svg share/icons/breeze-dark/status/symbolic/folder-open-symbolic.svg share/icons/breeze-dark/status/symbolic/image-loading-symbolic.svg share/icons/breeze-dark/status/symbolic/mail-attachment-symbolic.svg share/icons/breeze-dark/status/symbolic/mail-read-symbolic.svg share/icons/breeze-dark/status/symbolic/mail-replied-symbolic.svg share/icons/breeze-dark/status/symbolic/mail-unread-symbolic.svg share/icons/breeze-dark/status/symbolic/media-playlist-consecutive-symbolic-rtl.svg share/icons/breeze-dark/status/symbolic/media-playlist-consecutive-symbolic.svg share/icons/breeze-dark/status/symbolic/media-playlist-repeat-song-symbolic-rtl.svg share/icons/breeze-dark/status/symbolic/media-playlist-repeat-song-symbolic.svg share/icons/breeze-dark/status/symbolic/media-playlist-repeat-symbolic-rtl.svg share/icons/breeze-dark/status/symbolic/media-playlist-repeat-symbolic.svg share/icons/breeze-dark/status/symbolic/media-playlist-shuffle-symbolic-rtl.svg share/icons/breeze-dark/status/symbolic/media-playlist-shuffle-symbolic.svg share/icons/breeze-dark/status/symbolic/microphone-sensitivity-high-symbolic.svg share/icons/breeze-dark/status/symbolic/microphone-sensitivity-low-symbolic.svg share/icons/breeze-dark/status/symbolic/microphone-sensitivity-medium-symbolic.svg share/icons/breeze-dark/status/symbolic/microphone-sensitivity-muted-symbolic.svg share/icons/breeze-dark/status/symbolic/non-starred-symbolic.svg share/icons/breeze-dark/status/symbolic/printer-error-symbolic.svg share/icons/breeze-dark/status/symbolic/printer-printing-symbolic.svg share/icons/breeze-dark/status/symbolic/printer-warning-symbolic.svg share/icons/breeze-dark/status/symbolic/process-working-symbolic.svg share/icons/breeze-dark/status/symbolic/rating-unrated.svg share/icons/breeze-dark/status/symbolic/rotation-allowed-symbolic.svg share/icons/breeze-dark/status/symbolic/rotation-locked-landscape-symbolic.svg share/icons/breeze-dark/status/symbolic/rotation-locked-portrait-symbolic.svg share/icons/breeze-dark/status/symbolic/rotation-locked-symbolic.svg share/icons/breeze-dark/status/symbolic/security-high-symbolic.svg share/icons/breeze-dark/status/symbolic/security-low-symbolic.svg share/icons/breeze-dark/status/symbolic/security-medium-symbolic.svg share/icons/breeze-dark/status/symbolic/semi-starred-symbolic-rtl.svg share/icons/breeze-dark/status/symbolic/semi-starred-symbolic.svg share/icons/breeze-dark/status/symbolic/starred-symbolic.svg share/icons/breeze-dark/status/symbolic/system-lock-screen-symbolic.svg share/icons/breeze-dark/status/symbolic/user-available-symbolic.svg share/icons/breeze-dark/status/symbolic/user-away-symbolic.svg share/icons/breeze-dark/status/symbolic/user-busy-symbolic.svg share/icons/breeze-dark/status/symbolic/user-idle-symbolic.svg share/icons/breeze-dark/status/symbolic/user-invisible-symbolic.svg share/icons/breeze-dark/status/symbolic/user-not-tracked-symbolic.svg share/icons/breeze-dark/status/symbolic/user-offline-symbolic.svg share/icons/breeze-dark/status/symbolic/user-status-pending-symbolic.svg share/icons/breeze-dark/status/symbolic/user-trash-full-symbolic.svg share/icons/breeze-dark/status/symbolic/view-wrapped-symbolic-rtl.svg share/icons/breeze-dark/status/symbolic/view-wrapped-symbolic.svg share/icons/breeze/actions/12/object-fill.svg share/icons/breeze/actions/12/object-stroke-style.svg share/icons/breeze/actions/12/object-stroke.svg share/icons/breeze/actions/12/transform-affect-gradient.svg share/icons/breeze/actions/12/transform-affect-pattern.svg share/icons/breeze/actions/12/transform-affect-rounded-corners.svg share/icons/breeze/actions/12/transform-affect-stroke.svg share/icons/breeze/actions/16/CVnamespace.svg share/icons/breeze/actions/16/Info-amarok.svg share/icons/breeze/actions/16/PrePostCondition.svg share/icons/breeze/actions/16/accept_signal.svg share/icons/breeze/actions/16/accept_time_event.svg +share/icons/breeze/actions/16/accessories-dictionary-symbolic.svg share/icons/breeze/actions/16/acrobat.svg share/icons/breeze/actions/16/action-albumfolder-importdir2.svg share/icons/breeze/actions/16/action-rss_tag.svg share/icons/breeze/actions/16/activities.svg share/icons/breeze/actions/16/activity-fork.svg share/icons/breeze/actions/16/actor.svg share/icons/breeze/actions/16/add-placemark.svg share/icons/breeze/actions/16/add-subtitle.svg share/icons/breeze/actions/16/address-book-new.svg share/icons/breeze/actions/16/addressbook-details.svg share/icons/breeze/actions/16/adjustcol.svg share/icons/breeze/actions/16/adjustrow.svg share/icons/breeze/actions/16/adress-book-new.svg share/icons/breeze/actions/16/aggregation.svg share/icons/breeze/actions/16/akonadi-phone-home.svg share/icons/breeze/actions/16/albumfolder-importdir.svg share/icons/breeze/actions/16/albumfolder-importimages.svg share/icons/breeze/actions/16/albumfolder-new.svg share/icons/breeze/actions/16/albumfolder-properties.svg share/icons/breeze/actions/16/albumfolder-user-trash.svg share/icons/breeze/actions/16/align-horizontal-baseline.svg share/icons/breeze/actions/16/align-horizontal-bottom-out.svg share/icons/breeze/actions/16/align-horizontal-center.svg share/icons/breeze/actions/16/align-horizontal-left-out.svg share/icons/breeze/actions/16/align-horizontal-left-to-anchor.svg share/icons/breeze/actions/16/align-horizontal-left.svg share/icons/breeze/actions/16/align-horizontal-right-out.svg share/icons/breeze/actions/16/align-horizontal-right-to-anchor.svg share/icons/breeze/actions/16/align-horizontal-right.svg share/icons/breeze/actions/16/align-horizontal-top-out.svg share/icons/breeze/actions/16/align-vertical-baseline.svg share/icons/breeze/actions/16/align-vertical-bottom-out.svg share/icons/breeze/actions/16/align-vertical-bottom-to-anchor.svg share/icons/breeze/actions/16/align-vertical-bottom.svg share/icons/breeze/actions/16/align-vertical-center.svg share/icons/breeze/actions/16/align-vertical-top-out.svg share/icons/breeze/actions/16/align-vertical-top-to-anchor.svg share/icons/breeze/actions/16/align-vertical-top.svg share/icons/breeze/actions/16/amarok_artist.svg share/icons/breeze/actions/16/amarok_cart_add.svg share/icons/breeze/actions/16/amarok_cart_remove.svg share/icons/breeze/actions/16/amarok_cart_view.svg share/icons/breeze/actions/16/amarok_change_language.svg share/icons/breeze/actions/16/amarok_clock.svg share/icons/breeze/actions/16/amarok_lyrics.svg share/icons/breeze/actions/16/amarok_playcount.svg share/icons/breeze/actions/16/amarok_playlist.svg share/icons/breeze/actions/16/amarok_playlist_refresh.svg share/icons/breeze/actions/16/amarok_scripts.svg share/icons/breeze/actions/16/anchor.svg share/icons/breeze/actions/16/animation-stage.svg share/icons/breeze/actions/16/answer-correct.svg share/icons/breeze/actions/16/answer.svg share/icons/breeze/actions/16/application-exit.svg share/icons/breeze/actions/16/application-menu.svg share/icons/breeze/actions/16/appointment-new.svg share/icons/breeze/actions/16/approved.svg share/icons/breeze/actions/16/archive-extract.svg share/icons/breeze/actions/16/archive-insert-directory.svg share/icons/breeze/actions/16/archive-insert.svg share/icons/breeze/actions/16/archive-remove.svg share/icons/breeze/actions/16/arrow-down-double.svg share/icons/breeze/actions/16/arrow-down.svg share/icons/breeze/actions/16/arrow-left-double.svg share/icons/breeze/actions/16/arrow-left.svg share/icons/breeze/actions/16/arrow-right-double.svg share/icons/breeze/actions/16/arrow-right.svg share/icons/breeze/actions/16/arrow-up-double.svg share/icons/breeze/actions/16/arrow-up.svg share/icons/breeze/actions/16/arrow.svg share/icons/breeze/actions/16/artifact.svg share/icons/breeze/actions/16/artistictext-tool.svg share/icons/breeze/actions/16/association.svg share/icons/breeze/actions/16/atmosphere.svg share/icons/breeze/actions/16/auto-scale-all.svg share/icons/breeze/actions/16/auto-scale-x.svg share/icons/breeze/actions/16/auto-scale-y.svg share/icons/breeze/actions/16/autocorrection.svg share/icons/breeze/actions/16/automated-tasks.svg share/icons/breeze/actions/16/backup.svg share/icons/breeze/actions/16/beamerblock.svg share/icons/breeze/actions/16/beamerframe.svg share/icons/breeze/actions/16/bibtex.svg share/icons/breeze/actions/16/bigskip.svg share/icons/breeze/actions/16/bitmap-trace.svg share/icons/breeze/actions/16/black_sum.svg share/icons/breeze/actions/16/bookmark-add-folder.svg share/icons/breeze/actions/16/bookmark-edit.svg share/icons/breeze/actions/16/bookmark-new-list.svg share/icons/breeze/actions/16/bookmark-new.svg share/icons/breeze/actions/16/bookmark-remove.svg share/icons/breeze/actions/16/bookmark-toolbar.svg share/icons/breeze/actions/16/bookmarks-organize.svg share/icons/breeze/actions/16/bookmarks.svg share/icons/breeze/actions/16/borderpainter.svg share/icons/breeze/actions/16/bordertool.svg share/icons/breeze/actions/16/box.svg share/icons/breeze/actions/16/bqm-add.svg share/icons/breeze/actions/16/bqm-addqueue.svg share/icons/breeze/actions/16/bqm-commit.svg share/icons/breeze/actions/16/bqm-diff.svg share/icons/breeze/actions/16/bqm-remove.svg share/icons/breeze/actions/16/bqm-rmqueue.svg share/icons/breeze/actions/16/bqm-update.svg share/icons/breeze/actions/16/branch.svg share/icons/breeze/actions/16/call-start.svg share/icons/breeze/actions/16/call-stop.svg share/icons/breeze/actions/16/call-voicemail.svg share/icons/breeze/actions/16/callout-shape.svg share/icons/breeze/actions/16/cards-block.svg share/icons/breeze/actions/16/category.svg share/icons/breeze/actions/16/category2parent.svg share/icons/breeze/actions/16/cell_edit.svg share/icons/breeze/actions/16/cell_layout.svg share/icons/breeze/actions/16/character-set.svg share/icons/breeze/actions/16/check_constraint.svg share/icons/breeze/actions/16/checkbox.svg share/icons/breeze/actions/16/checkmark.svg share/icons/breeze/actions/16/child2category.svg share/icons/breeze/actions/16/choice-rhomb.svg share/icons/breeze/actions/16/choice-round.svg share/icons/breeze/actions/16/chronometer-lap.svg share/icons/breeze/actions/16/chronometer-pause.svg share/icons/breeze/actions/16/chronometer-reset.svg share/icons/breeze/actions/16/chronometer-start.svg share/icons/breeze/actions/16/chronometer.svg share/icons/breeze/actions/16/circular-arrow-shape.svg share/icons/breeze/actions/16/class-or-package.svg share/icons/breeze/actions/16/class.svg share/icons/breeze/actions/16/clock-large.svg share/icons/breeze/actions/16/clock.svg share/icons/breeze/actions/16/cloud-download.svg share/icons/breeze/actions/16/cloud-upload.svg share/icons/breeze/actions/16/code-block.svg share/icons/breeze/actions/16/code-class.svg share/icons/breeze/actions/16/code-context.svg share/icons/breeze/actions/16/code-function.svg share/icons/breeze/actions/16/code-typedef.svg share/icons/breeze/actions/16/code-variable.svg share/icons/breeze/actions/16/collapse-all.svg share/icons/breeze/actions/16/collapse.svg share/icons/breeze/actions/16/collection-rescan-amarok.svg share/icons/breeze/actions/16/color-fill.svg share/icons/breeze/actions/16/color-gradient.svg share/icons/breeze/actions/16/color-management.svg share/icons/breeze/actions/16/color-mode-black-white.svg share/icons/breeze/actions/16/color-mode-hue-shift-negative.svg share/icons/breeze/actions/16/color-mode-hue-shift-positive.svg share/icons/breeze/actions/16/color-mode-invert-image.svg share/icons/breeze/actions/16/color-mode-invert-text.svg share/icons/breeze/actions/16/color-picker-black.svg share/icons/breeze/actions/16/color-picker-grey.svg share/icons/breeze/actions/16/color-picker-white.svg share/icons/breeze/actions/16/color-picker.svg share/icons/breeze/actions/16/colormanagement.svg share/icons/breeze/actions/16/colors-chromablue.svg share/icons/breeze/actions/16/colors-chromagreen.svg share/icons/breeze/actions/16/colors-chromared.svg share/icons/breeze/actions/16/colors-luma.svg share/icons/breeze/actions/16/combined_fragment.svg share/icons/breeze/actions/16/compass.svg share/icons/breeze/actions/16/component.svg share/icons/breeze/actions/16/composition.svg share/icons/breeze/actions/16/configure-shortcuts.svg share/icons/breeze/actions/16/configure-toolbars.svg share/icons/breeze/actions/16/configure.svg share/icons/breeze/actions/16/configure_kile.svg share/icons/breeze/actions/16/configure_project.svg share/icons/breeze/actions/16/contact-new.svg share/icons/breeze/actions/16/containment.svg share/icons/breeze/actions/16/contents.svg share/icons/breeze/actions/16/convert.svg share/icons/breeze/actions/16/createpath.svg share/icons/breeze/actions/16/cross-shape.svg share/icons/breeze/actions/16/crosshairs.svg share/icons/breeze/actions/16/cursor-arrow.svg share/icons/breeze/actions/16/curve-connector.svg share/icons/breeze/actions/16/dashboard-show.svg share/icons/breeze/actions/16/database-index.svg share/icons/breeze/actions/16/datatype.svg share/icons/breeze/actions/16/dblatex.svg share/icons/breeze/actions/16/debug-execute-from-cursor.svg share/icons/breeze/actions/16/debug-execute-to-cursor.svg share/icons/breeze/actions/16/debug-run-cursor.svg share/icons/breeze/actions/16/debug-run.svg share/icons/breeze/actions/16/debug-step-instruction.svg share/icons/breeze/actions/16/debug-step-into-instruction.svg share/icons/breeze/actions/16/debug-step-into.svg share/icons/breeze/actions/16/debug-step-out.svg share/icons/breeze/actions/16/debug-step-over.svg share/icons/breeze/actions/16/deep-history.svg share/icons/breeze/actions/16/delete-comment.svg share/icons/breeze/actions/16/delete-table-row.svg share/icons/breeze/actions/16/delete.svg share/icons/breeze/actions/16/delete_table.svg share/icons/breeze/actions/16/deletecell.svg share/icons/breeze/actions/16/dependency.svg share/icons/breeze/actions/16/diag_activity.svg share/icons/breeze/actions/16/diag_class.svg share/icons/breeze/actions/16/diag_component.svg share/icons/breeze/actions/16/dialog-align-and-distribute.svg share/icons/breeze/actions/16/dialog-cancel.svg share/icons/breeze/actions/16/dialog-close.svg share/icons/breeze/actions/16/dialog-fill-and-stroke.svg share/icons/breeze/actions/16/dialog-filters.svg share/icons/breeze/actions/16/dialog-icon-preview.svg share/icons/breeze/actions/16/dialog-input-devices.svg share/icons/breeze/actions/16/dialog-layers.svg share/icons/breeze/actions/16/dialog-memory.svg share/icons/breeze/actions/16/dialog-messages.svg share/icons/breeze/actions/16/dialog-object-properties.svg share/icons/breeze/actions/16/dialog-ok-apply.svg share/icons/breeze/actions/16/dialog-ok.svg share/icons/breeze/actions/16/dialog-rows-and-columns.svg share/icons/breeze/actions/16/dialog-scripts.svg share/icons/breeze/actions/16/dialog-text-and-font.svg share/icons/breeze/actions/16/dialog-tile-clones.svg share/icons/breeze/actions/16/dialog-transform.svg share/icons/breeze/actions/16/dialog-xml-editor.svg share/icons/breeze/actions/16/dirsync.svg share/icons/breeze/actions/16/displaymathmode.svg share/icons/breeze/actions/16/dissociatecell.svg share/icons/breeze/actions/16/distortionfx.svg share/icons/breeze/actions/16/distribute-horizontal-baseline.svg share/icons/breeze/actions/16/distribute-horizontal-center.svg share/icons/breeze/actions/16/distribute-horizontal-equal.svg share/icons/breeze/actions/16/distribute-horizontal-gaps.svg share/icons/breeze/actions/16/distribute-horizontal-left.svg share/icons/breeze/actions/16/distribute-horizontal-margin.svg share/icons/breeze/actions/16/distribute-horizontal-page.svg share/icons/breeze/actions/16/distribute-horizontal-right.svg share/icons/breeze/actions/16/distribute-horizontal-x.svg share/icons/breeze/actions/16/distribute-horizontal.svg share/icons/breeze/actions/16/distribute-vertical-baseline.svg share/icons/breeze/actions/16/distribute-vertical-bottom.svg share/icons/breeze/actions/16/distribute-vertical-center.svg share/icons/breeze/actions/16/distribute-vertical-equal.svg share/icons/breeze/actions/16/distribute-vertical-gaps.svg share/icons/breeze/actions/16/distribute-vertical-margin.svg share/icons/breeze/actions/16/distribute-vertical-page.svg share/icons/breeze/actions/16/distribute-vertical-top.svg share/icons/breeze/actions/16/distribute-vertical-y.svg share/icons/breeze/actions/16/distribute-vertical.svg share/icons/breeze/actions/16/document-cleanup.svg share/icons/breeze/actions/16/document-close.svg share/icons/breeze/actions/16/document-compareleft.svg share/icons/breeze/actions/16/document-compareright.svg share/icons/breeze/actions/16/document-decrypt.svg share/icons/breeze/actions/16/document-duplicate.svg share/icons/breeze/actions/16/document-edit-decrypt-verify.svg share/icons/breeze/actions/16/document-edit-decrypt.svg share/icons/breeze/actions/16/document-edit-encrypt.svg share/icons/breeze/actions/16/document-edit-sign-encrypt.svg share/icons/breeze/actions/16/document-edit-sign.svg share/icons/breeze/actions/16/document-edit-verify.svg share/icons/breeze/actions/16/document-edit.svg share/icons/breeze/actions/16/document-encrypt.svg share/icons/breeze/actions/16/document-encrypted.svg share/icons/breeze/actions/16/document-equal.svg share/icons/breeze/actions/16/document-export-ocal.svg share/icons/breeze/actions/16/document-export-table.svg share/icons/breeze/actions/16/document-export.svg share/icons/breeze/actions/16/document-import-ocal.svg share/icons/breeze/actions/16/document-import.svg share/icons/breeze/actions/16/document-multiple.svg share/icons/breeze/actions/16/document-new-from-template.svg share/icons/breeze/actions/16/document-new.svg share/icons/breeze/actions/16/document-open-data.svg share/icons/breeze/actions/16/document-open-folder.svg share/icons/breeze/actions/16/document-open-recent.svg share/icons/breeze/actions/16/document-open-remote.svg share/icons/breeze/actions/16/document-open.svg share/icons/breeze/actions/16/document-preview-archive.svg share/icons/breeze/actions/16/document-preview.svg share/icons/breeze/actions/16/document-print-direct.svg share/icons/breeze/actions/16/document-print-frame.svg share/icons/breeze/actions/16/document-print-preview.svg share/icons/breeze/actions/16/document-print.svg share/icons/breeze/actions/16/document-properties.svg share/icons/breeze/actions/16/document-replace.svg share/icons/breeze/actions/16/document-revert.svg share/icons/breeze/actions/16/document-save-all.svg share/icons/breeze/actions/16/document-save-as.svg share/icons/breeze/actions/16/document-save.svg share/icons/breeze/actions/16/document-scan.svg share/icons/breeze/actions/16/document-send.svg share/icons/breeze/actions/16/document-share.svg share/icons/breeze/actions/16/document-sign.svg share/icons/breeze/actions/16/document-single.svg share/icons/breeze/actions/16/document-swap.svg share/icons/breeze/actions/16/document-unequal.svg share/icons/breeze/actions/16/documentation.svg share/icons/breeze/actions/16/documentinfo.svg share/icons/breeze/actions/16/donate.svg share/icons/breeze/actions/16/download-amarok.svg share/icons/breeze/actions/16/download-later.svg share/icons/breeze/actions/16/download.svg share/icons/breeze/actions/16/draw-arrow-back.svg share/icons/breeze/actions/16/draw-arrow-down.svg share/icons/breeze/actions/16/draw-arrow-forward.svg share/icons/breeze/actions/16/draw-arrow-up.svg share/icons/breeze/actions/16/draw-arrow.svg share/icons/breeze/actions/16/draw-bezier-curves.svg share/icons/breeze/actions/16/draw-brush.svg share/icons/breeze/actions/16/draw-circle.svg share/icons/breeze/actions/16/draw-connector.svg share/icons/breeze/actions/16/draw-cross.svg share/icons/breeze/actions/16/draw-cuboid.svg share/icons/breeze/actions/16/draw-donut.svg share/icons/breeze/actions/16/draw-ellipse-arc.svg share/icons/breeze/actions/16/draw-ellipse-segment.svg share/icons/breeze/actions/16/draw-ellipse-whole.svg share/icons/breeze/actions/16/draw-ellipse.svg share/icons/breeze/actions/16/draw-eraser-delete-objects.svg share/icons/breeze/actions/16/draw-eraser.svg share/icons/breeze/actions/16/draw-freehand.svg share/icons/breeze/actions/16/draw-halfcircle1.svg share/icons/breeze/actions/16/draw-halfcircle2.svg share/icons/breeze/actions/16/draw-halfcircle3.svg share/icons/breeze/actions/16/draw-halfcircle4.svg share/icons/breeze/actions/16/draw-highlight.svg share/icons/breeze/actions/16/draw-line.svg share/icons/breeze/actions/16/draw-path.svg share/icons/breeze/actions/16/draw-polygon-star.svg share/icons/breeze/actions/16/draw-polygon.svg share/icons/breeze/actions/16/draw-polyline.svg share/icons/breeze/actions/16/draw-rectangle-rounded.svg share/icons/breeze/actions/16/draw-rectangle.svg share/icons/breeze/actions/16/draw-spiral.svg share/icons/breeze/actions/16/draw-square-inverted-corners.svg share/icons/breeze/actions/16/draw-star.svg share/icons/breeze/actions/16/draw-text.svg share/icons/breeze/actions/16/draw-triangle.svg share/icons/breeze/actions/16/draw-triangle1.svg share/icons/breeze/actions/16/draw-triangle2.svg share/icons/breeze/actions/16/draw-triangle3.svg share/icons/breeze/actions/16/draw-triangle4.svg share/icons/breeze/actions/16/draw-watercolor.svg share/icons/breeze/actions/16/dvipdf.svg share/icons/breeze/actions/16/dvipng.svg share/icons/breeze/actions/16/dvips.svg share/icons/breeze/actions/16/dynamic-amarok.svg share/icons/breeze/actions/16/edit-bomb.svg share/icons/breeze/actions/16/edit-clear-all.svg share/icons/breeze/actions/16/edit-clear-history.svg share/icons/breeze/actions/16/edit-clear-list.svg share/icons/breeze/actions/16/edit-clear-locationbar-ltr.svg share/icons/breeze/actions/16/edit-clear-locationbar-rtl.svg share/icons/breeze/actions/16/edit-clear.svg share/icons/breeze/actions/16/edit-clone-unlink.svg share/icons/breeze/actions/16/edit-clone.svg share/icons/breeze/actions/16/edit-comment.svg share/icons/breeze/actions/16/edit-copy-path.svg share/icons/breeze/actions/16/edit-copy.svg share/icons/breeze/actions/16/edit-cut.svg share/icons/breeze/actions/16/edit-delete-remove.svg share/icons/breeze/actions/16/edit-delete-shred.svg share/icons/breeze/actions/16/edit-delete.svg share/icons/breeze/actions/16/edit-download.svg share/icons/breeze/actions/16/edit-duplicate.svg share/icons/breeze/actions/16/edit-entry.svg share/icons/breeze/actions/16/edit-find-mail.svg share/icons/breeze/actions/16/edit-find-project.svg share/icons/breeze/actions/16/edit-find-replace.svg share/icons/breeze/actions/16/edit-find-user.svg share/icons/breeze/actions/16/edit-find.svg share/icons/breeze/actions/16/edit-guides.svg share/icons/breeze/actions/16/edit-image-face-add.svg share/icons/breeze/actions/16/edit-image-face-detect.svg share/icons/breeze/actions/16/edit-image-face-recognize.svg share/icons/breeze/actions/16/edit-image-face-show.svg share/icons/breeze/actions/16/edit-image.svg share/icons/breeze/actions/16/edit-line-width.svg share/icons/breeze/actions/16/edit-link.svg share/icons/breeze/actions/16/edit-map.svg share/icons/breeze/actions/16/edit-move.svg share/icons/breeze/actions/16/edit-node.svg share/icons/breeze/actions/16/edit-none.svg share/icons/breeze/actions/16/edit-opacity.svg share/icons/breeze/actions/16/edit-paste-in-place.svg share/icons/breeze/actions/16/edit-paste-style.svg share/icons/breeze/actions/16/edit-paste.svg share/icons/breeze/actions/16/edit-redo.svg share/icons/breeze/actions/16/edit-rename.svg share/icons/breeze/actions/16/edit-reset.svg share/icons/breeze/actions/16/edit-select-all-layers.svg share/icons/breeze/actions/16/edit-select-all.svg share/icons/breeze/actions/16/edit-select-invert.svg share/icons/breeze/actions/16/edit-select-none.svg share/icons/breeze/actions/16/edit-select-original.svg share/icons/breeze/actions/16/edit-select-text.svg share/icons/breeze/actions/16/edit-select.svg share/icons/breeze/actions/16/edit-table-cell-merge.svg share/icons/breeze/actions/16/edit-table-cell-split.svg share/icons/breeze/actions/16/edit-table-delete-column.svg share/icons/breeze/actions/16/edit-table-delete-row.svg share/icons/breeze/actions/16/edit-table-insert-column-left.svg share/icons/breeze/actions/16/edit-table-insert-column-right.svg share/icons/breeze/actions/16/edit-table-insert-row-above.svg share/icons/breeze/actions/16/edit-table-insert-row-below.svg share/icons/breeze/actions/16/edit-table-insert-row-under.svg share/icons/breeze/actions/16/edit-text-frame-update.svg share/icons/breeze/actions/16/edit-undo-history.svg share/icons/breeze/actions/16/edit-undo.svg share/icons/breeze/actions/16/editimage.svg share/icons/breeze/actions/16/editor.svg share/icons/breeze/actions/16/editpath.svg share/icons/breeze/actions/16/edittext.svg share/icons/breeze/actions/16/ellipse-shape.svg share/icons/breeze/actions/16/emph.svg share/icons/breeze/actions/16/end_of_life.svg share/icons/breeze/actions/16/end_state.svg share/icons/breeze/actions/16/entity.svg share/icons/breeze/actions/16/entry-clone.svg share/icons/breeze/actions/16/entry-delete.svg share/icons/breeze/actions/16/entry-edit.svg share/icons/breeze/actions/16/enum.svg share/icons/breeze/actions/16/enumerate.svg share/icons/breeze/actions/16/error.svg share/icons/breeze/actions/16/escape-direction-all.svg share/icons/breeze/actions/16/escape-direction-down.svg share/icons/breeze/actions/16/escape-direction-horizontal.svg share/icons/breeze/actions/16/escape-direction-left.svg share/icons/breeze/actions/16/escape-direction-right.svg share/icons/breeze/actions/16/escape-direction-up.svg share/icons/breeze/actions/16/escape-direction-vertical.svg share/icons/breeze/actions/16/exception.svg share/icons/breeze/actions/16/exifinfo.svg share/icons/breeze/actions/16/expand-all.svg share/icons/breeze/actions/16/expand.svg share/icons/breeze/actions/16/favorite-genres-amarok.svg share/icons/breeze/actions/16/feed-subscribe.svg share/icons/breeze/actions/16/file-zoom-in.svg share/icons/breeze/actions/16/file-zoom-out.svg share/icons/breeze/actions/16/filegrep.svg share/icons/breeze/actions/16/filename-album-amarok.svg share/icons/breeze/actions/16/filename-and-amarok.svg share/icons/breeze/actions/16/filename-artist-amarok.svg share/icons/breeze/actions/16/filename-bpm-amarok.svg share/icons/breeze/actions/16/filename-comment-amarok.svg share/icons/breeze/actions/16/filename-composer-amarok.svg share/icons/breeze/actions/16/filename-dash-amarok.svg share/icons/breeze/actions/16/filename-discnumber-amarok.svg share/icons/breeze/actions/16/filename-divider.svg share/icons/breeze/actions/16/filename-dot-amarok.svg share/icons/breeze/actions/16/filename-filetype-amarok.svg share/icons/breeze/actions/16/filename-genre-amarok.svg share/icons/breeze/actions/16/filename-group-length.svg share/icons/breeze/actions/16/filename-group-tracks.svg share/icons/breeze/actions/16/filename-ignore-amarok.svg share/icons/breeze/actions/16/filename-initial-amarok.svg share/icons/breeze/actions/16/filename-last-played.svg share/icons/breeze/actions/16/filename-moodbar.svg share/icons/breeze/actions/16/filename-sample-rate.svg share/icons/breeze/actions/16/filename-slash-amarok.svg share/icons/breeze/actions/16/filename-space-amarok.svg share/icons/breeze/actions/16/filename-title-amarok.svg share/icons/breeze/actions/16/filename-track-amarok.svg share/icons/breeze/actions/16/filename-underscore-amarok.svg share/icons/breeze/actions/16/filename-year-amarok.svg share/icons/breeze/actions/16/fileview-preview.svg share/icons/breeze/actions/16/fill-color.svg share/icons/breeze/actions/16/fill-rule-even-odd.svg share/icons/breeze/actions/16/fill-rule-nonzero.svg share/icons/breeze/actions/16/final_activity.svg share/icons/breeze/actions/16/find-location.svg share/icons/breeze/actions/16/flag-black.svg share/icons/breeze/actions/16/flag-blue.svg share/icons/breeze/actions/16/flag-green.svg share/icons/breeze/actions/16/flag-red.svg share/icons/breeze/actions/16/flag-yellow.svg share/icons/breeze/actions/16/flag.svg share/icons/breeze/actions/16/flash.svg share/icons/breeze/actions/16/flashlight-off.svg share/icons/breeze/actions/16/flashlight-on.svg share/icons/breeze/actions/16/folder-new.svg share/icons/breeze/actions/16/folder-open-recent.svg share/icons/breeze/actions/16/folder-stash.svg share/icons/breeze/actions/16/folder-sync.svg share/icons/breeze/actions/16/followmouse.svg share/icons/breeze/actions/16/font-disable.svg share/icons/breeze/actions/16/font-enable.svg share/icons/breeze/actions/16/font-face.svg share/icons/breeze/actions/16/font-size-down.svg share/icons/breeze/actions/16/font-size-up.svg share/icons/breeze/actions/16/font.svg share/icons/breeze/actions/16/foreign_green.svg share/icons/breeze/actions/16/foreign_red.svg share/icons/breeze/actions/16/foreignkey_constraint.svg share/icons/breeze/actions/16/fork.svg share/icons/breeze/actions/16/format-add-node.svg share/icons/breeze/actions/16/format-align-vertical-bottom.svg share/icons/breeze/actions/16/format-align-vertical-center.svg share/icons/breeze/actions/16/format-align-vertical-top.svg share/icons/breeze/actions/16/format-border-set-all.svg share/icons/breeze/actions/16/format-border-set-bottom.svg share/icons/breeze/actions/16/format-border-set-diagonal-bl-tr.svg share/icons/breeze/actions/16/format-border-set-diagonal-tl-br.svg share/icons/breeze/actions/16/format-border-set-external.svg share/icons/breeze/actions/16/format-border-set-internal-horizontal.svg share/icons/breeze/actions/16/format-border-set-internal-vertical.svg share/icons/breeze/actions/16/format-border-set-internal.svg share/icons/breeze/actions/16/format-border-set-left.svg share/icons/breeze/actions/16/format-border-set-none.svg share/icons/breeze/actions/16/format-border-set-right.svg share/icons/breeze/actions/16/format-border-set-top.svg share/icons/breeze/actions/16/format-border-style.svg share/icons/breeze/actions/16/format-break-node.svg share/icons/breeze/actions/16/format-connect-node.svg share/icons/breeze/actions/16/format-disconnect-node.svg share/icons/breeze/actions/16/format-fill-color.svg share/icons/breeze/actions/16/format-font-size-less.svg share/icons/breeze/actions/16/format-font-size-more.svg share/icons/breeze/actions/16/format-indent-less.svg share/icons/breeze/actions/16/format-indent-more.svg share/icons/breeze/actions/16/format-join-node.svg share/icons/breeze/actions/16/format-justify-center.svg share/icons/breeze/actions/16/format-justify-fill.svg share/icons/breeze/actions/16/format-justify-left.svg share/icons/breeze/actions/16/format-justify-right.svg share/icons/breeze/actions/16/format-line-spacing-double.svg share/icons/breeze/actions/16/format-line-spacing-normal.svg share/icons/breeze/actions/16/format-line-spacing-triple.svg share/icons/breeze/actions/16/format-list-ordered.svg share/icons/breeze/actions/16/format-list-unordered.svg share/icons/breeze/actions/16/format-number-percent.svg share/icons/breeze/actions/16/format-precision-less.svg share/icons/breeze/actions/16/format-precision-more.svg share/icons/breeze/actions/16/format-remove-node.svg share/icons/breeze/actions/16/format-stroke-color.svg share/icons/breeze/actions/16/format-text-blockquote.svg share/icons/breeze/actions/16/format-text-bold.svg share/icons/breeze/actions/16/format-text-capitalize.svg share/icons/breeze/actions/16/format-text-code.svg share/icons/breeze/actions/16/format-text-color.svg share/icons/breeze/actions/16/format-text-direction-horizontal.svg share/icons/breeze/actions/16/format-text-direction-ltr.svg share/icons/breeze/actions/16/format-text-direction-rtl.svg share/icons/breeze/actions/16/format-text-direction-vertical.svg share/icons/breeze/actions/16/format-text-italic.svg share/icons/breeze/actions/16/format-text-lowercase.svg share/icons/breeze/actions/16/format-text-strikethrough.svg share/icons/breeze/actions/16/format-text-subscript.svg share/icons/breeze/actions/16/format-text-superscript.svg share/icons/breeze/actions/16/format-text-symbol.svg share/icons/breeze/actions/16/format-text-underline-squiggle.svg share/icons/breeze/actions/16/format-text-underline.svg share/icons/breeze/actions/16/format-text-uppercase.svg share/icons/breeze/actions/16/formula.svg share/icons/breeze/actions/16/freerotation.svg share/icons/breeze/actions/16/games-achievements.svg share/icons/breeze/actions/16/games-config-background.svg share/icons/breeze/actions/16/games-config-board.svg share/icons/breeze/actions/16/games-config-custom.svg share/icons/breeze/actions/16/games-config-options.svg share/icons/breeze/actions/16/games-config-theme.svg share/icons/breeze/actions/16/games-config-tiles.svg share/icons/breeze/actions/16/games-difficult.svg share/icons/breeze/actions/16/games-endturn.svg share/icons/breeze/actions/16/games-highscores.svg share/icons/breeze/actions/16/games-hint.svg share/icons/breeze/actions/16/games-solve.svg share/icons/breeze/actions/16/geany-build.svg share/icons/breeze/actions/16/geany-close-all.svg share/icons/breeze/actions/16/geany-save-all.svg share/icons/breeze/actions/16/gearhead-shape.svg share/icons/breeze/actions/16/generalisation.svg share/icons/breeze/actions/16/generalise.svg share/icons/breeze/actions/16/get-hot-new-stuff.svg share/icons/breeze/actions/16/globe.svg share/icons/breeze/actions/16/gnumeric-autofilter-delete.svg share/icons/breeze/actions/16/gnumeric-autofilter.svg share/icons/breeze/actions/16/gnumeric-brush.svg share/icons/breeze/actions/16/gnumeric-cells-merge.svg share/icons/breeze/actions/16/gnumeric-cells-split.svg share/icons/breeze/actions/16/gnumeric-column-add.svg share/icons/breeze/actions/16/gnumeric-column-delete.svg share/icons/breeze/actions/16/gnumeric-column-hide.svg share/icons/breeze/actions/16/gnumeric-column-size.svg share/icons/breeze/actions/16/gnumeric-column-unhide.svg share/icons/breeze/actions/16/gnumeric-comment-add.svg share/icons/breeze/actions/16/gnumeric-comment-delete.svg share/icons/breeze/actions/16/gnumeric-comment-edit.svg share/icons/breeze/actions/16/gnumeric-component-insert-shaped.svg share/icons/breeze/actions/16/gnumeric-data-slicer.svg share/icons/breeze/actions/16/gnumeric-font.svg share/icons/breeze/actions/16/gnumeric-format-border-bottom.svg share/icons/breeze/actions/16/gnumeric-format-border-diag.svg share/icons/breeze/actions/16/gnumeric-format-border-left.svg share/icons/breeze/actions/16/gnumeric-format-border-rev-diag.svg share/icons/breeze/actions/16/gnumeric-format-border-right.svg share/icons/breeze/actions/16/gnumeric-format-border-top.svg share/icons/breeze/actions/16/gnumeric-formulaguru.svg share/icons/breeze/actions/16/gnumeric-graphguru.svg share/icons/breeze/actions/16/gnumeric-group.svg share/icons/breeze/actions/16/gnumeric-link-add.svg share/icons/breeze/actions/16/gnumeric-link-delete.svg share/icons/breeze/actions/16/gnumeric-link-edit.svg share/icons/breeze/actions/16/gnumeric-link-email.svg share/icons/breeze/actions/16/gnumeric-link-external.svg share/icons/breeze/actions/16/gnumeric-link-internal.svg share/icons/breeze/actions/16/gnumeric-link-url.svg share/icons/breeze/actions/16/gnumeric-pagesetup-hf-page.svg share/icons/breeze/actions/16/gnumeric-pagesetup-hf-pages.svg share/icons/breeze/actions/16/gnumeric-pivottable.svg share/icons/breeze/actions/16/gnumeric-row-add.svg share/icons/breeze/actions/16/gnumeric-row-delete.svg share/icons/breeze/actions/16/gnumeric-row-hide.svg share/icons/breeze/actions/16/gnumeric-row-size.svg share/icons/breeze/actions/16/gnumeric-row-unhide.svg share/icons/breeze/actions/16/gnumeric-subscript.svg share/icons/breeze/actions/16/gnumeric-superscript.svg share/icons/breeze/actions/16/gnumeric-ungroup.svg share/icons/breeze/actions/16/gnumeric-visible.svg share/icons/breeze/actions/16/go-bottom.svg share/icons/breeze/actions/16/go-down-search.svg share/icons/breeze/actions/16/go-down-skip.svg share/icons/breeze/actions/16/go-down.svg share/icons/breeze/actions/16/go-first-view-page.svg share/icons/breeze/actions/16/go-first-view.svg share/icons/breeze/actions/16/go-first.svg share/icons/breeze/actions/16/go-home-large.svg share/icons/breeze/actions/16/go-home.svg share/icons/breeze/actions/16/go-jump-declaration.svg share/icons/breeze/actions/16/go-jump-definition.svg share/icons/breeze/actions/16/go-jump-locationbar.svg share/icons/breeze/actions/16/go-jump-today.svg share/icons/breeze/actions/16/go-jump.svg share/icons/breeze/actions/16/go-last-view-page.svg share/icons/breeze/actions/16/go-last-view.svg share/icons/breeze/actions/16/go-last.svg share/icons/breeze/actions/16/go-next-context.svg share/icons/breeze/actions/16/go-next-skip.svg share/icons/breeze/actions/16/go-next-use.svg share/icons/breeze/actions/16/go-next-view-page.svg share/icons/breeze/actions/16/go-next-view.svg share/icons/breeze/actions/16/go-next.svg share/icons/breeze/actions/16/go-parent-folder.svg share/icons/breeze/actions/16/go-previous-context.svg share/icons/breeze/actions/16/go-previous-skip.svg share/icons/breeze/actions/16/go-previous-use.svg share/icons/breeze/actions/16/go-previous-view-page.svg share/icons/breeze/actions/16/go-previous-view.svg share/icons/breeze/actions/16/go-previous.svg share/icons/breeze/actions/16/go-top.svg share/icons/breeze/actions/16/go-up-search.svg share/icons/breeze/actions/16/go-up-skip.svg share/icons/breeze/actions/16/go-up.svg share/icons/breeze/actions/16/gpg.svg share/icons/breeze/actions/16/gpgsm.svg share/icons/breeze/actions/16/gps.svg share/icons/breeze/actions/16/gradient.svg share/icons/breeze/actions/16/graphics.svg share/icons/breeze/actions/16/grid-axonometric.svg share/icons/breeze/actions/16/grid-rectangular.svg share/icons/breeze/actions/16/group-delete.svg share/icons/breeze/actions/16/group-edit.svg share/icons/breeze/actions/16/group-new.svg share/icons/breeze/actions/16/group.svg share/icons/breeze/actions/16/gtk-add.svg share/icons/breeze/actions/16/gtk-apply.svg share/icons/breeze/actions/16/gtk-authentication.svg share/icons/breeze/actions/16/gtk-bold.svg share/icons/breeze/actions/16/gtk-cancel.svg share/icons/breeze/actions/16/gtk-cdrom.svg share/icons/breeze/actions/16/gtk-clear.svg share/icons/breeze/actions/16/gtk-close.svg share/icons/breeze/actions/16/gtk-color-picker.svg share/icons/breeze/actions/16/gtk-connect.svg share/icons/breeze/actions/16/gtk-convert.svg share/icons/breeze/actions/16/gtk-disconnect.svg share/icons/breeze/actions/16/gtk-edit.svg share/icons/breeze/actions/16/gtk-execute.svg share/icons/breeze/actions/16/gtk-floppy.svg share/icons/breeze/actions/16/gtk-index.svg share/icons/breeze/actions/16/gtk-no.svg share/icons/breeze/actions/16/gtk-ok.svg share/icons/breeze/actions/16/gtk-preferences.svg share/icons/breeze/actions/16/gtk-properties.svg share/icons/breeze/actions/16/gtk-quit.svg share/icons/breeze/actions/16/gtk-select-color.svg share/icons/breeze/actions/16/gtk-select-font.svg share/icons/breeze/actions/16/gtk-stop.svg share/icons/breeze/actions/16/gtk-undelete-ltr.svg share/icons/breeze/actions/16/gtk-undelete-rtl.svg share/icons/breeze/actions/16/gtk-yes.svg share/icons/breeze/actions/16/guides.svg share/icons/breeze/actions/16/help-about.svg share/icons/breeze/actions/16/help-contents.svg share/icons/breeze/actions/16/help-contextual.svg share/icons/breeze/actions/16/help-donate-ars.svg share/icons/breeze/actions/16/help-donate-aud.svg share/icons/breeze/actions/16/help-donate-brl.svg share/icons/breeze/actions/16/help-donate-cad.svg share/icons/breeze/actions/16/help-donate-chf.svg share/icons/breeze/actions/16/help-donate-cny.svg share/icons/breeze/actions/16/help-donate-eur.svg share/icons/breeze/actions/16/help-donate-gbp.svg share/icons/breeze/actions/16/help-donate-inr.svg share/icons/breeze/actions/16/help-donate-jpy.svg share/icons/breeze/actions/16/help-donate-mxn.svg share/icons/breeze/actions/16/help-donate-pln.svg share/icons/breeze/actions/16/help-donate-rub.svg share/icons/breeze/actions/16/help-donate-sek.svg share/icons/breeze/actions/16/help-donate-try.svg share/icons/breeze/actions/16/help-donate-uah.svg share/icons/breeze/actions/16/help-donate-usd.svg share/icons/breeze/actions/16/help-donate.svg share/icons/breeze/actions/16/help-feedback.svg share/icons/breeze/actions/16/help-hint.svg share/icons/breeze/actions/16/help-keybord-shortcuts.svg share/icons/breeze/actions/16/help-latex.svg share/icons/breeze/actions/16/help-whatsthis.svg share/icons/breeze/actions/16/hide_table_column.svg share/icons/breeze/actions/16/hide_table_row.svg share/icons/breeze/actions/16/hidemouse.svg share/icons/breeze/actions/16/highlight-pointer-spot.svg share/icons/breeze/actions/16/hint.svg share/icons/breeze/actions/16/identity.svg share/icons/breeze/actions/16/im-aim.svg share/icons/breeze/actions/16/im-ban-kick-user.svg share/icons/breeze/actions/16/im-ban-user.svg share/icons/breeze/actions/16/im-facebook.svg share/icons/breeze/actions/16/im-icq.svg share/icons/breeze/actions/16/im-identi.ca.svg share/icons/breeze/actions/16/im-invisible-user.svg share/icons/breeze/actions/16/im-irc.svg share/icons/breeze/actions/16/im-jabber.svg share/icons/breeze/actions/16/im-kick-user.svg share/icons/breeze/actions/16/im-msn.svg share/icons/breeze/actions/16/im-qq.svg share/icons/breeze/actions/16/im-skype.svg share/icons/breeze/actions/16/im-twitter.svg share/icons/breeze/actions/16/im-user-away.svg share/icons/breeze/actions/16/im-user-busy.svg share/icons/breeze/actions/16/im-user-offline.svg share/icons/breeze/actions/16/im-user-online.svg share/icons/breeze/actions/16/im-user.svg share/icons/breeze/actions/16/im-yahoo.svg share/icons/breeze/actions/16/im-youtube.svg share/icons/breeze/actions/16/imagecomment.svg share/icons/breeze/actions/16/initial_state.svg share/icons/breeze/actions/16/inpainting.svg share/icons/breeze/actions/16/input-mouse-click-left.svg share/icons/breeze/actions/16/input-mouse-click-middle.svg share/icons/breeze/actions/16/input-mouse-click-right.svg share/icons/breeze/actions/16/insert-button.svg share/icons/breeze/actions/16/insert-endnote.svg share/icons/breeze/actions/16/insert-footnote.svg share/icons/breeze/actions/16/insert-horizontal-rule.svg share/icons/breeze/actions/16/insert-image.svg share/icons/breeze/actions/16/insert-link.svg share/icons/breeze/actions/16/insert-math-expression.svg share/icons/breeze/actions/16/insert-more-mark.svg share/icons/breeze/actions/16/insert-page-break.svg share/icons/breeze/actions/16/insert-table-of-contents.svg share/icons/breeze/actions/16/insert-table-row.svg share/icons/breeze/actions/16/insert-table.svg share/icons/breeze/actions/16/insert-tableofcontents.svg share/icons/breeze/actions/16/insert-text-frame.svg share/icons/breeze/actions/16/insert-text.svg share/icons/breeze/actions/16/insertcell.svg share/icons/breeze/actions/16/insertcellcopy.svg share/icons/breeze/actions/16/interface.svg share/icons/breeze/actions/16/internet-amarok.svg share/icons/breeze/actions/16/internet-services.svg share/icons/breeze/actions/16/invertimage.svg share/icons/breeze/actions/16/irc-channel-active.svg share/icons/breeze/actions/16/irc-channel-inactive.svg share/icons/breeze/actions/16/irc-close-channel.svg share/icons/breeze/actions/16/irc-join-channel.svg share/icons/breeze/actions/16/itemize.svg share/icons/breeze/actions/16/join.svg share/icons/breeze/actions/16/journal-new.svg share/icons/breeze/actions/16/junction.svg share/icons/breeze/actions/16/kdenlive-add-slide-clip.svg share/icons/breeze/actions/16/kdenlive-add-text-clip.svg share/icons/breeze/actions/16/kdenlive-align-bottom.svg share/icons/breeze/actions/16/kdenlive-align-hor.svg share/icons/breeze/actions/16/kdenlive-align-left.svg share/icons/breeze/actions/16/kdenlive-align-right.svg share/icons/breeze/actions/16/kdenlive-align-top.svg share/icons/breeze/actions/16/kdenlive-align-vert.svg share/icons/breeze/actions/16/kdenlive-deleffect.svg share/icons/breeze/actions/16/kdenlive-down.svg share/icons/breeze/actions/16/kdenlive-lock.svg share/icons/breeze/actions/16/kdenlive-menu.svg share/icons/breeze/actions/16/kdenlive-ripple.svg share/icons/breeze/actions/16/kdenlive-rolling.svg share/icons/breeze/actions/16/kdenlive-select-rects.svg share/icons/breeze/actions/16/kdenlive-select-tool.svg share/icons/breeze/actions/16/kdenlive-show-audiothumb.svg share/icons/breeze/actions/16/kdenlive-show-video.svg share/icons/breeze/actions/16/kdenlive-show-videothumb.svg share/icons/breeze/actions/16/kdenlive-slide.svg share/icons/breeze/actions/16/kdenlive-slip.svg share/icons/breeze/actions/16/kdenlive-snap.svg share/icons/breeze/actions/16/kdenlive-spacer-tool.svg share/icons/breeze/actions/16/kdenlive-unlock.svg share/icons/breeze/actions/16/kdenlive-up.svg share/icons/breeze/actions/16/kdenlive-zoom-large.svg share/icons/breeze/actions/16/kdenlive-zoom-small.svg share/icons/breeze/actions/16/kdocumentinfo.svg share/icons/breeze/actions/16/key-enter.svg share/icons/breeze/actions/16/keyframe-add.svg share/icons/breeze/actions/16/keyframe-disable.svg share/icons/breeze/actions/16/keyframe-duplicate.svg share/icons/breeze/actions/16/keyframe-next.svg share/icons/breeze/actions/16/keyframe-previous.svg share/icons/breeze/actions/16/keyframe-record.svg share/icons/breeze/actions/16/keyframe-remove.svg share/icons/breeze/actions/16/keyframe.svg share/icons/breeze/actions/16/kmousetool_off.svg share/icons/breeze/actions/16/kmousetool_on.svg share/icons/breeze/actions/16/kmouth-phrase.svg share/icons/breeze/actions/16/kmouth-phrasebook.svg share/icons/breeze/actions/16/knotes_alarm.svg share/icons/breeze/actions/16/knotes_date.svg share/icons/breeze/actions/16/knotes_delete.svg share/icons/breeze/actions/16/kontact-import-wizard.svg share/icons/breeze/actions/16/kontes_close.svg share/icons/breeze/actions/16/kr_combine.svg share/icons/breeze/actions/16/kr_comparedirs.svg share/icons/breeze/actions/16/kr_diskusage.svg share/icons/breeze/actions/16/kr_jumpback.svg share/icons/breeze/actions/16/kr_mountman.svg share/icons/breeze/actions/16/kr_setjumpback.svg share/icons/breeze/actions/16/kr_syncbrowse_off.svg share/icons/breeze/actions/16/kr_syncbrowse_on.svg share/icons/breeze/actions/16/kr_unselect.svg share/icons/breeze/actions/16/kruler-east.svg share/icons/breeze/actions/16/kruler-north.svg share/icons/breeze/actions/16/kruler-south.svg share/icons/breeze/actions/16/kruler-west.svg share/icons/breeze/actions/16/kstars_advanced.svg share/icons/breeze/actions/16/kstars_catalog.svg share/icons/breeze/actions/16/kstars_colors.svg share/icons/breeze/actions/16/kstars_flag.svg share/icons/breeze/actions/16/kstars_guides.svg share/icons/breeze/actions/16/kt-bandwidth-scheduler.svg share/icons/breeze/actions/16/kt-change-tracker.svg share/icons/breeze/actions/16/kt-check-data.svg share/icons/breeze/actions/16/kt-encrypted.svg share/icons/breeze/actions/16/kt-info-widget.svg share/icons/breeze/actions/16/kt-pause.svg share/icons/breeze/actions/16/kt-plugins.svg share/icons/breeze/actions/16/kt-remove.svg share/icons/breeze/actions/16/kt-restore-defaults.svg share/icons/breeze/actions/16/kt-set-max-download-speed.svg share/icons/breeze/actions/16/kt-set-max-upload-speed.svg share/icons/breeze/actions/16/kt-show-statusbar.svg share/icons/breeze/actions/16/kt-speed-limits.svg share/icons/breeze/actions/16/kt-start.svg share/icons/breeze/actions/16/kt-stop.svg share/icons/breeze/actions/16/ktnef_extract_all_to.svg share/icons/breeze/actions/16/ktnef_extract_to.svg share/icons/breeze/actions/16/l2h.svg share/icons/breeze/actions/16/label-amarok.svg share/icons/breeze/actions/16/label.svg share/icons/breeze/actions/16/labplot-auto-scale-all.svg share/icons/breeze/actions/16/labplot-auto-scale-x.svg share/icons/breeze/actions/16/labplot-auto-scale-y.svg share/icons/breeze/actions/16/labplot-cursor-arrow.svg share/icons/breeze/actions/16/labplot-editbreaklayout.svg share/icons/breeze/actions/16/labplot-editgrid.svg share/icons/breeze/actions/16/labplot-edithlayout.svg share/icons/breeze/actions/16/labplot-editvlayout.svg share/icons/breeze/actions/16/labplot-format-text-symbol.svg share/icons/breeze/actions/16/labplot-spreadsheet-new.svg share/icons/breeze/actions/16/labplot-spreadsheet.svg share/icons/breeze/actions/16/labplot-transform-move.svg share/icons/breeze/actions/16/labplot-xy-curve-points.svg share/icons/breeze/actions/16/labplot-zoom-select-x.svg share/icons/breeze/actions/16/labplot-zoom-select-y.svg share/icons/breeze/actions/16/labplot-zoom-select.svg share/icons/breeze/actions/16/language-chooser.svg share/icons/breeze/actions/16/languages.svg share/icons/breeze/actions/16/lastfm-neighbour.svg share/icons/breeze/actions/16/lastfm-personal.svg share/icons/breeze/actions/16/lastfm-recommended.svg share/icons/breeze/actions/16/lastfm-tag.svg share/icons/breeze/actions/16/layer-bottom.svg share/icons/breeze/actions/16/layer-delete.svg share/icons/breeze/actions/16/layer-duplicate.svg share/icons/breeze/actions/16/layer-lower.svg share/icons/breeze/actions/16/layer-new.svg share/icons/breeze/actions/16/layer-next.svg share/icons/breeze/actions/16/layer-previous.svg share/icons/breeze/actions/16/layer-raise.svg share/icons/breeze/actions/16/layer-rename.svg share/icons/breeze/actions/16/layer-top.svg share/icons/breeze/actions/16/layer-visible-off.svg share/icons/breeze/actions/16/layer-visible-on.svg share/icons/breeze/actions/16/libpeas-plugin.svg share/icons/breeze/actions/16/license.svg share/icons/breeze/actions/16/lighttable.svg share/icons/breeze/actions/16/lighttableadd.svg share/icons/breeze/actions/16/lines-connector.svg share/icons/breeze/actions/16/link.svg share/icons/breeze/actions/16/list-add-font.svg share/icons/breeze/actions/16/list-add-user.svg share/icons/breeze/actions/16/list-add.svg share/icons/breeze/actions/16/list-remove-user.svg share/icons/breeze/actions/16/list-remove.svg share/icons/breeze/actions/16/list-resource-add.svg share/icons/breeze/actions/16/lock.svg share/icons/breeze/actions/16/love-amarok.svg share/icons/breeze/actions/16/love.svg share/icons/breeze/actions/16/mail-attachment.svg share/icons/breeze/actions/16/mail-deleted.svg share/icons/breeze/actions/16/mail-download-later.svg share/icons/breeze/actions/16/mail-download-now.svg share/icons/breeze/actions/16/mail-encrypted-full.svg share/icons/breeze/actions/16/mail-encrypted-part.svg share/icons/breeze/actions/16/mail-encrypted.svg share/icons/breeze/actions/16/mail-flag.svg share/icons/breeze/actions/16/mail-forward-attachment.svg share/icons/breeze/actions/16/mail-forward-custom.svg share/icons/breeze/actions/16/mail-forward.svg share/icons/breeze/actions/16/mail-forwarded-replied.svg share/icons/breeze/actions/16/mail-forwarded.svg share/icons/breeze/actions/16/mail-invitation.svg share/icons/breeze/actions/16/mail-mark-important.svg share/icons/breeze/actions/16/mail-mark-junk.svg share/icons/breeze/actions/16/mail-mark-notjunk.svg share/icons/breeze/actions/16/mail-mark-read.svg share/icons/breeze/actions/16/mail-mark-task.svg share/icons/breeze/actions/16/mail-mark-unread-new.svg share/icons/breeze/actions/16/mail-mark-unread.svg share/icons/breeze/actions/16/mail-meeting-request-reply.svg share/icons/breeze/actions/16/mail-message-new-list.svg share/icons/breeze/actions/16/mail-message-new.svg share/icons/breeze/actions/16/mail-message.svg share/icons/breeze/actions/16/mail-queue.svg share/icons/breeze/actions/16/mail-queued.svg share/icons/breeze/actions/16/mail-read.svg share/icons/breeze/actions/16/mail-receive.svg share/icons/breeze/actions/16/mail-replied.svg share/icons/breeze/actions/16/mail-reply-all.svg share/icons/breeze/actions/16/mail-reply-author.svg share/icons/breeze/actions/16/mail-reply-custom-all.svg share/icons/breeze/actions/16/mail-reply-custom.svg share/icons/breeze/actions/16/mail-reply-list.svg share/icons/breeze/actions/16/mail-reply-sender.svg share/icons/breeze/actions/16/mail-send.svg share/icons/breeze/actions/16/mail-sent.svg share/icons/breeze/actions/16/mail-signature-unknown.svg share/icons/breeze/actions/16/mail-signed-full.svg share/icons/breeze/actions/16/mail-signed-fully.svg share/icons/breeze/actions/16/mail-signed-part.svg share/icons/breeze/actions/16/mail-signed-verified.svg share/icons/breeze/actions/16/mail-signed.svg share/icons/breeze/actions/16/mail-tagged.svg share/icons/breeze/actions/16/mail-task.svg share/icons/breeze/actions/16/mail-thread-ignored.svg share/icons/breeze/actions/16/mail-thread-watch.svg share/icons/breeze/actions/16/mail-unread-new.svg share/icons/breeze/actions/16/mail-unread.svg share/icons/breeze/actions/16/makeidx.svg share/icons/breeze/actions/16/mark-location.svg share/icons/breeze/actions/16/markasblank.svg share/icons/breeze/actions/16/math0.svg share/icons/breeze/actions/16/math1.svg share/icons/breeze/actions/16/math2.svg share/icons/breeze/actions/16/math3.svg share/icons/breeze/actions/16/math7.svg share/icons/breeze/actions/16/math9.svg share/icons/breeze/actions/16/mathmode.svg share/icons/breeze/actions/16/measure.svg share/icons/breeze/actions/16/media-album-cover-manager-amarok.svg share/icons/breeze/actions/16/media-album-cover.svg share/icons/breeze/actions/16/media-album-repeat-amarok.svg share/icons/breeze/actions/16/media-album-track.svg share/icons/breeze/actions/16/media-eject.svg share/icons/breeze/actions/16/media-import-audio-cd.svg share/icons/breeze/actions/16/media-mount.svg share/icons/breeze/actions/16/media-playback-pause.svg share/icons/breeze/actions/16/media-playback-start.svg share/icons/breeze/actions/16/media-playback-stop.svg share/icons/breeze/actions/16/media-playlist-append.svg share/icons/breeze/actions/16/media-playlist-play.svg share/icons/breeze/actions/16/media-playlist-repeat-amarok.svg share/icons/breeze/actions/16/media-playlist-repeat-song.svg share/icons/breeze/actions/16/media-playlist-repeat.svg share/icons/breeze/actions/16/media-playlist-shuffle.svg share/icons/breeze/actions/16/media-random-albums-amarok.svg share/icons/breeze/actions/16/media-random-tracks-amarok.svg share/icons/breeze/actions/16/media-record.svg share/icons/breeze/actions/16/media-repeat-album-amarok.svg share/icons/breeze/actions/16/media-repeat-all.svg share/icons/breeze/actions/16/media-repeat-none.svg share/icons/breeze/actions/16/media-repeat-playlist-amarok.svg share/icons/breeze/actions/16/media-repeat-single.svg share/icons/breeze/actions/16/media-repeat-track-amarok.svg share/icons/breeze/actions/16/media-seek-backward.svg share/icons/breeze/actions/16/media-seek-forward.svg share/icons/breeze/actions/16/media-show-active-track-amarok.svg share/icons/breeze/actions/16/media-skip-backward.svg share/icons/breeze/actions/16/media-skip-forward.svg share/icons/breeze/actions/16/media-standard-track-progression-amarok.svg share/icons/breeze/actions/16/media-track-add-amarok.svg share/icons/breeze/actions/16/media-track-edit-amarok.svg share/icons/breeze/actions/16/media-track-queue-amarok.svg share/icons/breeze/actions/16/media-track-remove-amarok.svg share/icons/breeze/actions/16/media-track-show-active.svg share/icons/breeze/actions/16/medskip.svg share/icons/breeze/actions/16/meeting-attending-tentative.svg share/icons/breeze/actions/16/meeting-attending.svg share/icons/breeze/actions/16/meeting-participant-no-response.svg share/icons/breeze/actions/16/meeting-participant-request-response.svg share/icons/breeze/actions/16/menu_new.svg share/icons/breeze/actions/16/merge.svg share/icons/breeze/actions/16/mergecell-horizontal.svg share/icons/breeze/actions/16/mergecell-vertical.svg share/icons/breeze/actions/16/mergecell.svg share/icons/breeze/actions/16/message-new.svg share/icons/breeze/actions/16/messagebox_warning.svg share/icons/breeze/actions/16/milestone.svg share/icons/breeze/actions/16/minuet-chords.svg share/icons/breeze/actions/16/minuet-intervals.svg share/icons/breeze/actions/16/minuet-rhythms.svg share/icons/breeze/actions/16/minuet-scales.svg share/icons/breeze/actions/16/mode1.svg share/icons/breeze/actions/16/mode2.svg share/icons/breeze/actions/16/mode3.svg share/icons/breeze/actions/16/mode4.svg share/icons/breeze/actions/16/mode5.svg share/icons/breeze/actions/16/modified.svg share/icons/breeze/actions/16/mpost.svg share/icons/breeze/actions/16/msgid2msgstr.svg share/icons/breeze/actions/16/multirow.svg share/icons/breeze/actions/16/music-amarok.svg share/icons/breeze/actions/16/network-connect.svg share/icons/breeze/actions/16/network-disconnect.svg share/icons/breeze/actions/16/new-audio-alarm.svg share/icons/breeze/actions/16/new-command-alarm.svg share/icons/breeze/actions/16/news-subscribe.svg share/icons/breeze/actions/16/news-unsubscribe.svg share/icons/breeze/actions/16/nocover.svg share/icons/breeze/actions/16/node-add.svg share/icons/breeze/actions/16/node-break.svg share/icons/breeze/actions/16/node-delete-segment.svg share/icons/breeze/actions/16/node-delete.svg share/icons/breeze/actions/16/node-join-segment.svg share/icons/breeze/actions/16/node-join.svg share/icons/breeze/actions/16/node-segment-curve.svg share/icons/breeze/actions/16/node-segment-line.svg share/icons/breeze/actions/16/node-transform.svg share/icons/breeze/actions/16/node-type-auto-smooth.svg share/icons/breeze/actions/16/node-type-cusp.svg share/icons/breeze/actions/16/node-type-smooth.svg share/icons/breeze/actions/16/node-type-symmetric.svg share/icons/breeze/actions/16/node.svg share/icons/breeze/actions/16/note.svg share/icons/breeze/actions/16/notifications-disabled.svg share/icons/breeze/actions/16/notifications.svg share/icons/breeze/actions/16/object-align-horizontal-center-calligra.svg share/icons/breeze/actions/16/object-align-horizontal-left-calligra.svg share/icons/breeze/actions/16/object-align-horizontal-right-calligra.svg share/icons/breeze/actions/16/object-align-vertical-bottom-calligra.svg share/icons/breeze/actions/16/object-align-vertical-bottom-top-calligra.svg share/icons/breeze/actions/16/object-align-vertical-center-calligra.svg share/icons/breeze/actions/16/object-align-vertical-top-calligra.svg share/icons/breeze/actions/16/object-columns.svg share/icons/breeze/actions/16/object-fill.svg share/icons/breeze/actions/16/object-flip-horizontal.svg share/icons/breeze/actions/16/object-flip-vertical.svg share/icons/breeze/actions/16/object-group-calligra.svg share/icons/breeze/actions/16/object-group.svg share/icons/breeze/actions/16/object-hidden.svg share/icons/breeze/actions/16/object-locked.svg share/icons/breeze/actions/16/object-order-back-calligra.svg share/icons/breeze/actions/16/object-order-back.svg share/icons/breeze/actions/16/object-order-front-calligra.svg share/icons/breeze/actions/16/object-order-front.svg share/icons/breeze/actions/16/object-order-lower-calligra.svg share/icons/breeze/actions/16/object-order-lower.svg share/icons/breeze/actions/16/object-order-raise-calligra.svg share/icons/breeze/actions/16/object-order-raise.svg share/icons/breeze/actions/16/object-rotate-left.svg share/icons/breeze/actions/16/object-rotate-right.svg share/icons/breeze/actions/16/object-rows.svg share/icons/breeze/actions/16/object-stroke-style.svg share/icons/breeze/actions/16/object-stroke.svg share/icons/breeze/actions/16/object-to-path.svg share/icons/breeze/actions/16/object-ungroup-calligra.svg share/icons/breeze/actions/16/object-ungroup.svg share/icons/breeze/actions/16/object-unlocked.svg share/icons/breeze/actions/16/object-visible.svg share/icons/breeze/actions/16/object.svg share/icons/breeze/actions/16/object_node.svg share/icons/breeze/actions/16/office-chart-area-focus-peak-node.svg share/icons/breeze/actions/16/office-chart-area-percentage.svg share/icons/breeze/actions/16/office-chart-area-stacked.svg share/icons/breeze/actions/16/office-chart-area.svg share/icons/breeze/actions/16/office-chart-bar-percentage.svg share/icons/breeze/actions/16/office-chart-bar-stacked.svg share/icons/breeze/actions/16/office-chart-bar.svg share/icons/breeze/actions/16/office-chart-line-forecast.svg share/icons/breeze/actions/16/office-chart-line-percentage.svg share/icons/breeze/actions/16/office-chart-line-stacked.svg share/icons/breeze/actions/16/office-chart-line.svg share/icons/breeze/actions/16/office-chart-pie.svg share/icons/breeze/actions/16/office-chart-polar-stacked.svg share/icons/breeze/actions/16/office-chart-polar.svg share/icons/breeze/actions/16/office-chart-ring.svg share/icons/breeze/actions/16/office-chart-scatter.svg share/icons/breeze/actions/16/office-report.svg share/icons/breeze/actions/16/offline-settings.svg share/icons/breeze/actions/16/offline.svg share/icons/breeze/actions/16/online.svg share/icons/breeze/actions/16/open-for-editing.svg share/icons/breeze/actions/16/open-menu-symbolic.svg share/icons/breeze/actions/16/output_win.svg share/icons/breeze/actions/16/overflow-menu.svg share/icons/breeze/actions/16/package.svg share/icons/breeze/actions/16/page-2sides.svg share/icons/breeze/actions/16/page-3sides.svg share/icons/breeze/actions/16/page-4sides.svg share/icons/breeze/actions/16/page-simple.svg share/icons/breeze/actions/16/page-zoom.svg share/icons/breeze/actions/16/paint-gradient-linear.svg share/icons/breeze/actions/16/paint-gradient-radial.svg share/icons/breeze/actions/16/paint-none.svg share/icons/breeze/actions/16/paint-pattern.svg share/icons/breeze/actions/16/paint-solid.svg share/icons/breeze/actions/16/paint-swatch.svg share/icons/breeze/actions/16/paint-unknown.svg share/icons/breeze/actions/16/paper-color.svg share/icons/breeze/actions/16/password-copy.svg share/icons/breeze/actions/16/password-generate.svg share/icons/breeze/actions/16/password-show-off.svg share/icons/breeze/actions/16/password-show-on.svg share/icons/breeze/actions/16/path-break-apart.svg share/icons/breeze/actions/16/path-clip-edit.svg share/icons/breeze/actions/16/path-combine.svg share/icons/breeze/actions/16/path-cut.svg share/icons/breeze/actions/16/path-difference.svg share/icons/breeze/actions/16/path-division.svg share/icons/breeze/actions/16/path-effect-parameter-next.svg share/icons/breeze/actions/16/path-exclusion.svg share/icons/breeze/actions/16/path-inset.svg share/icons/breeze/actions/16/path-intersection.svg share/icons/breeze/actions/16/path-mask-edit.svg share/icons/breeze/actions/16/path-mode-bezier.svg share/icons/breeze/actions/16/path-mode-polyline-paraxial.svg share/icons/breeze/actions/16/path-mode-polyline.svg share/icons/breeze/actions/16/path-mode-spiro.svg share/icons/breeze/actions/16/path-offset-dynamic.svg share/icons/breeze/actions/16/path-offset-linked.svg share/icons/breeze/actions/16/path-outset.svg share/icons/breeze/actions/16/path-reverse.svg share/icons/breeze/actions/16/path-simplify.svg share/icons/breeze/actions/16/path-union.svg share/icons/breeze/actions/16/pattern.svg share/icons/breeze/actions/16/pdf-annotations.svg share/icons/breeze/actions/16/pdflatex.svg share/icons/breeze/actions/16/pdftex.svg share/icons/breeze/actions/16/pentagon-shape.svg share/icons/breeze/actions/16/photo.svg share/icons/breeze/actions/16/photos-amarok.svg share/icons/breeze/actions/16/pin.svg share/icons/breeze/actions/16/pixelart-trace.svg share/icons/breeze/actions/16/player-time.svg share/icons/breeze/actions/16/player-volume-muted.svg share/icons/breeze/actions/16/player-volume.svg share/icons/breeze/actions/16/playlist-generator.svg share/icons/breeze/actions/16/playlist-sort.svg share/icons/breeze/actions/16/plugins.svg share/icons/breeze/actions/16/pointer.svg share/icons/breeze/actions/16/polygon-add-nodes.svg share/icons/breeze/actions/16/polygon-merge-nodes.svg share/icons/breeze/actions/16/port.svg share/icons/breeze/actions/16/postalcode.svg share/icons/breeze/actions/16/practice-setup.svg share/icons/breeze/actions/16/practice-start.svg share/icons/breeze/actions/16/practice-stop.svg share/icons/breeze/actions/16/precondition.svg share/icons/breeze/actions/16/preferences-indicator-amarok.svg share/icons/breeze/actions/16/preferences-media-playback-amarok.svg share/icons/breeze/actions/16/preferences-other.svg share/icons/breeze/actions/16/preferences-system-symbolic.svg share/icons/breeze/actions/16/presence_away.svg share/icons/breeze/actions/16/presence_offline.svg share/icons/breeze/actions/16/presence_online.svg share/icons/breeze/actions/16/presence_unknown.svg share/icons/breeze/actions/16/preview.svg share/icons/breeze/actions/16/preview_math.svg share/icons/breeze/actions/16/preview_sel.svg share/icons/breeze/actions/16/primarykey_constraint.svg share/icons/breeze/actions/16/process-stop.svg share/icons/breeze/actions/16/project-development-close-all.svg share/icons/breeze/actions/16/project-development-close.svg share/icons/breeze/actions/16/project-development-new-template.svg share/icons/breeze/actions/16/project-development.svg share/icons/breeze/actions/16/project-open.svg share/icons/breeze/actions/16/project_add.svg share/icons/breeze/actions/16/project_archive.svg share/icons/breeze/actions/16/project_rebuild.svg share/icons/breeze/actions/16/project_remove.svg share/icons/breeze/actions/16/project_show.svg share/icons/breeze/actions/16/projectgrep.svg share/icons/breeze/actions/16/ps2pdf.svg share/icons/breeze/actions/16/qa.svg share/icons/breeze/actions/16/quick.svg share/icons/breeze/actions/16/quickopen-class.svg share/icons/breeze/actions/16/quickopen-file.svg share/icons/breeze/actions/16/quickopen-function.svg share/icons/breeze/actions/16/quickopen.svg share/icons/breeze/actions/16/quickview.svg share/icons/breeze/actions/16/quickwizard.svg share/icons/breeze/actions/16/randomize.svg share/icons/breeze/actions/16/ratiocrop.svg share/icons/breeze/actions/16/realization.svg share/icons/breeze/actions/16/rectangle-make-corners-sharp.svg share/icons/breeze/actions/16/rectangle-shape.svg share/icons/breeze/actions/16/redeyes.svg share/icons/breeze/actions/16/refactor.svg share/icons/breeze/actions/16/refreshstructure.svg share/icons/breeze/actions/16/region.svg share/icons/breeze/actions/16/relation.svg share/icons/breeze/actions/16/relationship.svg share/icons/breeze/actions/16/remove-amarok.svg share/icons/breeze/actions/16/remove-link.svg share/icons/breeze/actions/16/remove.svg share/icons/breeze/actions/16/removecell.svg share/icons/breeze/actions/16/repeat.svg share/icons/breeze/actions/16/resizecol.svg share/icons/breeze/actions/16/resizerow.svg share/icons/breeze/actions/16/resource-calendar-child-insert.svg share/icons/breeze/actions/16/resource-calendar-child.svg share/icons/breeze/actions/16/resource-calendar-insert.svg share/icons/breeze/actions/16/resource-group-new.svg share/icons/breeze/actions/16/resource-group.svg share/icons/breeze/actions/16/restoration.svg share/icons/breeze/actions/16/retweet.svg share/icons/breeze/actions/16/reverse.svg share/icons/breeze/actions/16/roll.svg share/icons/breeze/actions/16/routeplanning.svg share/icons/breeze/actions/16/run-build-clean.svg share/icons/breeze/actions/16/run-build-configure.svg share/icons/breeze/actions/16/run-build-file.svg share/icons/breeze/actions/16/run-build-install-root.svg share/icons/breeze/actions/16/run-build-install.svg share/icons/breeze/actions/16/run-build-prune.svg share/icons/breeze/actions/16/run-build.svg share/icons/breeze/actions/16/run-clean.svg share/icons/breeze/actions/16/run-install.svg share/icons/breeze/actions/16/scriptnew.svg share/icons/breeze/actions/16/scriptopen.svg share/icons/breeze/actions/16/search.svg share/icons/breeze/actions/16/select-rectangular.svg share/icons/breeze/actions/16/select.svg share/icons/breeze/actions/16/selection-bottom.svg share/icons/breeze/actions/16/selection-lower.svg share/icons/breeze/actions/16/selection-make-bitmap-copy.svg share/icons/breeze/actions/16/selection-move-to-layer-above.svg share/icons/breeze/actions/16/selection-move-to-layer-below.svg share/icons/breeze/actions/16/selection-raise.svg share/icons/breeze/actions/16/selection-top.svg share/icons/breeze/actions/16/selection.svg share/icons/breeze/actions/16/send_signal.svg share/icons/breeze/actions/16/services.svg share/icons/breeze/actions/16/set-language.svg share/icons/breeze/actions/16/settings-configure.svg share/icons/breeze/actions/16/shallow-history.svg share/icons/breeze/actions/16/shape-choose.svg share/icons/breeze/actions/16/shape-cuboid.svg share/icons/breeze/actions/16/shapes.svg share/icons/breeze/actions/16/shear.svg share/icons/breeze/actions/16/show-dialogs.svg share/icons/breeze/actions/16/show-grid.svg share/icons/breeze/actions/16/show-guides.svg share/icons/breeze/actions/16/show-menu.svg share/icons/breeze/actions/16/show-node-handles.svg share/icons/breeze/actions/16/show-offline.svg share/icons/breeze/actions/16/show-path-outline.svg share/icons/breeze/actions/16/show_table_column.svg share/icons/breeze/actions/16/show_table_row.svg share/icons/breeze/actions/16/shuffle.svg share/icons/breeze/actions/16/sidebar-collapse-left.svg share/icons/breeze/actions/16/sidebar-collapse-right.svg share/icons/breeze/actions/16/sidebar-collapse.svg share/icons/breeze/actions/16/sidebar-expand-left.svg share/icons/breeze/actions/16/sidebar-expand-right.svg share/icons/breeze/actions/16/sidebar-expand.svg share/icons/breeze/actions/16/sidebar-show-symbolic.svg share/icons/breeze/actions/16/similarartists-amarok.svg share/icons/breeze/actions/16/slanted.svg share/icons/breeze/actions/16/smallclock.svg share/icons/breeze/actions/16/smallskip.svg share/icons/breeze/actions/16/smiley-add.svg share/icons/breeze/actions/16/snap-angle.svg share/icons/breeze/actions/16/snap-bounding-box-center.svg share/icons/breeze/actions/16/snap-bounding-box-corners.svg share/icons/breeze/actions/16/snap-bounding-box-edges.svg share/icons/breeze/actions/16/snap-bounding-box-midpoints.svg share/icons/breeze/actions/16/snap-bounding-box.svg share/icons/breeze/actions/16/snap-extension.svg share/icons/breeze/actions/16/snap-grid-guide-intersections.svg share/icons/breeze/actions/16/snap-guideline.svg share/icons/breeze/actions/16/snap-intersection.svg share/icons/breeze/actions/16/snap-node.svg share/icons/breeze/actions/16/snap-nodes-center.svg share/icons/breeze/actions/16/snap-nodes-cusp.svg share/icons/breeze/actions/16/snap-nodes-intersection.svg share/icons/breeze/actions/16/snap-nodes-midpoint.svg share/icons/breeze/actions/16/snap-nodes-path.svg share/icons/breeze/actions/16/snap-nodes-rotation-center.svg share/icons/breeze/actions/16/snap-nodes-smooth.svg share/icons/breeze/actions/16/snap-orthogonal.svg share/icons/breeze/actions/16/snap-page.svg share/icons/breeze/actions/16/snap-text-baseline.svg share/icons/breeze/actions/16/snap.svg share/icons/breeze/actions/16/social.svg share/icons/breeze/actions/16/sort-name.svg share/icons/breeze/actions/16/sort-presence.svg share/icons/breeze/actions/16/sort_incr.svg share/icons/breeze/actions/16/source-playlist.svg share/icons/breeze/actions/16/source-smart-playlist.svg share/icons/breeze/actions/16/speaker.svg share/icons/breeze/actions/16/special_paste.svg share/icons/breeze/actions/16/specific-setup.svg share/icons/breeze/actions/16/speedometer.svg share/icons/breeze/actions/16/spiral-shape.svg share/icons/breeze/actions/16/split.svg share/icons/breeze/actions/16/spreadsheetshape.svg share/icons/breeze/actions/16/sqrt.svg share/icons/breeze/actions/16/standard-connector.svg share/icons/breeze/actions/16/star-shape.svg share/icons/breeze/actions/16/start-over.svg share/icons/breeze/actions/16/state-fork.svg share/icons/breeze/actions/16/stateshape.svg share/icons/breeze/actions/16/statetool.svg share/icons/breeze/actions/16/step_object_Anchor.svg share/icons/breeze/actions/16/step_object_Box.svg share/icons/breeze/actions/16/step_object_Controller.svg share/icons/breeze/actions/16/step_object_Disk.svg share/icons/breeze/actions/16/step_object_Graph.svg share/icons/breeze/actions/16/step_object_Note.svg share/icons/breeze/actions/16/step_object_Particle.svg share/icons/breeze/actions/16/step_object_Pin.svg share/icons/breeze/actions/16/step_object_Polygon.svg share/icons/breeze/actions/16/step_object_Rope.svg share/icons/breeze/actions/16/step_object_Stick.svg share/icons/breeze/actions/16/stickers.svg share/icons/breeze/actions/16/sticky_zoom.svg share/icons/breeze/actions/16/story-editor.svg share/icons/breeze/actions/16/straight-connector.svg share/icons/breeze/actions/16/stroke-cap-bevel.svg share/icons/breeze/actions/16/stroke-cap-butt.svg share/icons/breeze/actions/16/stroke-cap-miter.svg share/icons/breeze/actions/16/stroke-cap-round.svg share/icons/breeze/actions/16/stroke-cap-square.svg share/icons/breeze/actions/16/stroke-join-bevel.svg share/icons/breeze/actions/16/stroke-join-miter.svg share/icons/breeze/actions/16/stroke-join-round.svg share/icons/breeze/actions/16/stroke-to-path.svg share/icons/breeze/actions/16/strong.svg share/icons/breeze/actions/16/structure.svg share/icons/breeze/actions/16/subsystem.svg share/icons/breeze/actions/16/svn-commit.svg share/icons/breeze/actions/16/svn-update.svg share/icons/breeze/actions/16/swap-panels.svg share/icons/breeze/actions/16/symbols.svg share/icons/breeze/actions/16/system-lock-screen.svg share/icons/breeze/actions/16/system-log-out-rtl.svg share/icons/breeze/actions/16/system-log-out.svg share/icons/breeze/actions/16/system-reboot.svg share/icons/breeze/actions/16/system-run.svg share/icons/breeze/actions/16/system-save-session.svg share/icons/breeze/actions/16/system-search.svg share/icons/breeze/actions/16/system-users.svg share/icons/breeze/actions/16/tab-close-other.svg share/icons/breeze/actions/16/tab-close.svg share/icons/breeze/actions/16/tab-detach.svg share/icons/breeze/actions/16/tab-duplicate.svg share/icons/breeze/actions/16/tab-new-background.svg share/icons/breeze/actions/16/tab-new.svg share/icons/breeze/actions/16/table.svg share/icons/breeze/actions/16/tag-addressbook.svg share/icons/breeze/actions/16/tag-assigned.svg share/icons/breeze/actions/16/tag-delete.svg share/icons/breeze/actions/16/tag-edit.svg share/icons/breeze/actions/16/tag-events.svg share/icons/breeze/actions/16/tag-folder.svg share/icons/breeze/actions/16/tag-new.svg share/icons/breeze/actions/16/tag-people.svg share/icons/breeze/actions/16/tag-places.svg share/icons/breeze/actions/16/tag-properties.svg share/icons/breeze/actions/16/tag-recents.svg share/icons/breeze/actions/16/tag-reset.svg share/icons/breeze/actions/16/tag.svg share/icons/breeze/actions/16/task-new.svg share/icons/breeze/actions/16/taxes-finances.svg share/icons/breeze/actions/16/template.svg share/icons/breeze/actions/16/text-convert-to-regular.svg share/icons/breeze/actions/16/text-field-framed.svg share/icons/breeze/actions/16/text-field-frameless.svg share/icons/breeze/actions/16/text-field.svg share/icons/breeze/actions/16/text-flow-into-frame.svg share/icons/breeze/actions/16/text-frame-link.svg share/icons/breeze/actions/16/text-frame-unlink.svg share/icons/breeze/actions/16/text-put-on-path.svg share/icons/breeze/actions/16/text-remove-from-path.svg share/icons/breeze/actions/16/text-speak.svg share/icons/breeze/actions/16/text-unflow.svg share/icons/breeze/actions/16/text-unkern.svg share/icons/breeze/actions/16/text-wrap.svg share/icons/breeze/actions/16/text_horz_kern.svg share/icons/breeze/actions/16/text_letter_spacing.svg share/icons/breeze/actions/16/text_line_spacing.svg share/icons/breeze/actions/16/text_rotation.svg share/icons/breeze/actions/16/text_subscript.svg share/icons/breeze/actions/16/text_superscript.svg share/icons/breeze/actions/16/text_vert_kern.svg share/icons/breeze/actions/16/text_word_spacing.svg share/icons/breeze/actions/16/tool-animator.svg share/icons/breeze/actions/16/tool-measure.svg share/icons/breeze/actions/16/tool-node-editor.svg share/icons/breeze/actions/16/tool-pointer.svg share/icons/breeze/actions/16/tool-text.svg share/icons/breeze/actions/16/tool-tweak.svg share/icons/breeze/actions/16/tool_brush.svg share/icons/breeze/actions/16/tool_cellformatting.svg share/icons/breeze/actions/16/tool_color_picker.svg share/icons/breeze/actions/16/tool_ellipse.svg share/icons/breeze/actions/16/tool_elliptical_selection.svg share/icons/breeze/actions/16/tool_eraser.svg share/icons/breeze/actions/16/tool_flood_fill.svg share/icons/breeze/actions/16/tool_imageeffects.svg share/icons/breeze/actions/16/tool_line.svg share/icons/breeze/actions/16/tool_pagelayout.svg share/icons/breeze/actions/16/tool_pen.svg share/icons/breeze/actions/16/tool_polyline.svg share/icons/breeze/actions/16/tool_rect_selection.svg share/icons/breeze/actions/16/tool_rectangle.svg share/icons/breeze/actions/16/tool_references.svg share/icons/breeze/actions/16/tool_review.svg share/icons/breeze/actions/16/tool_rounded_rectangle.svg share/icons/breeze/actions/16/tool_text.svg share/icons/breeze/actions/16/tools-check-spelling.svg share/icons/breeze/actions/16/tools-media-optical-burn-image.svg share/icons/breeze/actions/16/tools-media-optical-burn.svg share/icons/breeze/actions/16/tools-media-optical-copy.svg share/icons/breeze/actions/16/tools-media-optical-erase.svg share/icons/breeze/actions/16/tools-media-optical-format.svg share/icons/breeze/actions/16/tools-report-bug.svg share/icons/breeze/actions/16/tools-rip-audio-cd.svg share/icons/breeze/actions/16/tools-rip-video-cd.svg share/icons/breeze/actions/16/tools-rip-video-dvd.svg share/icons/breeze/actions/16/tools-wizard.svg share/icons/breeze/actions/16/tools.svg share/icons/breeze/actions/16/transform-affect-gradient.svg share/icons/breeze/actions/16/transform-affect-pattern.svg share/icons/breeze/actions/16/transform-affect-rounded-corners.svg share/icons/breeze/actions/16/transform-affect-stroke.svg share/icons/breeze/actions/16/transform-crop-and-resize.svg share/icons/breeze/actions/16/transform-crop.svg share/icons/breeze/actions/16/transform-move-horizontal.svg share/icons/breeze/actions/16/transform-move-vertical.svg share/icons/breeze/actions/16/transform-move.svg share/icons/breeze/actions/16/transform-rotate.svg share/icons/breeze/actions/16/transform-scale-textbox-points.svg share/icons/breeze/actions/16/transform-scale.svg share/icons/breeze/actions/16/transform-shear-down.svg share/icons/breeze/actions/16/transform-shear-left.svg share/icons/breeze/actions/16/transform-shear-right.svg share/icons/breeze/actions/16/transform-shear-up.svg share/icons/breeze/actions/16/transform-skew-horizontal.svg share/icons/breeze/actions/16/transform-skew-vertical.svg share/icons/breeze/actions/16/transsearch.svg share/icons/breeze/actions/16/trash-empty.svg share/icons/breeze/actions/16/trim-margins.svg share/icons/breeze/actions/16/trim-to-selection.svg share/icons/breeze/actions/16/umbr-coll-message-asynchronous.svg share/icons/breeze/actions/16/umbr-coll-message-synchronous.svg share/icons/breeze/actions/16/umbr-message-asynchronous.svg share/icons/breeze/actions/16/umbr-message-found.svg share/icons/breeze/actions/16/umbr-message-lost.svg share/icons/breeze/actions/16/umbr-message-synchronous.svg share/icons/breeze/actions/16/umbrello_diagram_activity.svg share/icons/breeze/actions/16/umbrello_diagram_class.svg share/icons/breeze/actions/16/umbrello_diagram_collaboration.svg share/icons/breeze/actions/16/umbrello_diagram_component.svg share/icons/breeze/actions/16/umbrello_diagram_deployment.svg share/icons/breeze/actions/16/umbrello_diagram_entityrelationship.svg share/icons/breeze/actions/16/umbrello_diagram_sequence.svg share/icons/breeze/actions/16/umbrello_diagram_state.svg share/icons/breeze/actions/16/umbrello_diagram_usecase.svg share/icons/breeze/actions/16/uniassociation.svg share/icons/breeze/actions/16/unique_constraint.svg share/icons/breeze/actions/16/unlock.svg share/icons/breeze/actions/16/unmarkasblank.svg share/icons/breeze/actions/16/upcomingevents-amarok.svg share/icons/breeze/actions/16/upindicator.svg share/icons/breeze/actions/16/upload-media.svg share/icons/breeze/actions/16/usecase.svg share/icons/breeze/actions/16/user-group-delete.svg share/icons/breeze/actions/16/user-group-new.svg share/icons/breeze/actions/16/user-group-properties.svg share/icons/breeze/actions/16/user-identity.svg share/icons/breeze/actions/16/user-others.svg share/icons/breeze/actions/16/user-properties.svg share/icons/breeze/actions/16/user.svg share/icons/breeze/actions/16/usermenu-delete.svg share/icons/breeze/actions/16/usermenu-down.svg share/icons/breeze/actions/16/usermenu-up.svg share/icons/breeze/actions/16/vcs-branch-delete.svg share/icons/breeze/actions/16/vcs-branch.svg share/icons/breeze/actions/16/vcs-commit.svg share/icons/breeze/actions/16/vcs-diff.svg share/icons/breeze/actions/16/vcs-merge-request.svg share/icons/breeze/actions/16/vcs-merge.svg share/icons/breeze/actions/16/vcs-pull.svg share/icons/breeze/actions/16/vcs-push.svg share/icons/breeze/actions/16/vcs-stash-pop.svg share/icons/breeze/actions/16/vcs-stash.svg share/icons/breeze/actions/16/verb.svg share/icons/breeze/actions/16/verbatim.svg share/icons/breeze/actions/16/videoclip-amarok.svg share/icons/breeze/actions/16/view-bank-add.svg share/icons/breeze/actions/16/view-bank-delete.svg share/icons/breeze/actions/16/view-bank-edit.svg share/icons/breeze/actions/16/view-bank.svg share/icons/breeze/actions/16/view-barcode-add.svg share/icons/breeze/actions/16/view-barcode-qr.svg share/icons/breeze/actions/16/view-barcode.svg share/icons/breeze/actions/16/view-calendar-agenda.svg share/icons/breeze/actions/16/view-calendar-birthday.svg share/icons/breeze/actions/16/view-calendar-day.svg share/icons/breeze/actions/16/view-calendar-holiday.svg share/icons/breeze/actions/16/view-calendar-journal.svg share/icons/breeze/actions/16/view-calendar-list.svg share/icons/breeze/actions/16/view-calendar-month.svg share/icons/breeze/actions/16/view-calendar-special-occasion.svg share/icons/breeze/actions/16/view-calendar-tasks.svg share/icons/breeze/actions/16/view-calendar-time-spent.svg share/icons/breeze/actions/16/view-calendar-timeline.svg share/icons/breeze/actions/16/view-calendar-upcoming-days.svg share/icons/breeze/actions/16/view-calendar-upcoming-events.svg share/icons/breeze/actions/16/view-calendar-wedding-anniversary.svg share/icons/breeze/actions/16/view-calendar-week.svg share/icons/breeze/actions/16/view-calendar-whatsnext.svg share/icons/breeze/actions/16/view-calendar-workweek.svg share/icons/breeze/actions/16/view-calendar.svg share/icons/breeze/actions/16/view-categories-expenditures.svg share/icons/breeze/actions/16/view-categories-incomes.svg share/icons/breeze/actions/16/view-choose.svg share/icons/breeze/actions/16/view-close.svg share/icons/breeze/actions/16/view-conversation-balloon.svg share/icons/breeze/actions/16/view-currency-list.svg share/icons/breeze/actions/16/view-file-columns.svg share/icons/breeze/actions/16/view-filter.svg share/icons/breeze/actions/16/view-financial-account-add.svg share/icons/breeze/actions/16/view-financial-account-asset-closed.svg share/icons/breeze/actions/16/view-financial-account-asset.svg share/icons/breeze/actions/16/view-financial-account-cash-closed.svg share/icons/breeze/actions/16/view-financial-account-cash.svg share/icons/breeze/actions/16/view-financial-account-checking-closed.svg share/icons/breeze/actions/16/view-financial-account-checking.svg share/icons/breeze/actions/16/view-financial-account-close.svg share/icons/breeze/actions/16/view-financial-account-closed.svg share/icons/breeze/actions/16/view-financial-account-delete.svg share/icons/breeze/actions/16/view-financial-account-edit.svg share/icons/breeze/actions/16/view-financial-account-investment-closed.svg share/icons/breeze/actions/16/view-financial-account-investment-security-closed.svg share/icons/breeze/actions/16/view-financial-account-investment-security.svg share/icons/breeze/actions/16/view-financial-account-investment.svg share/icons/breeze/actions/16/view-financial-account-liability-closed.svg share/icons/breeze/actions/16/view-financial-account-liability.svg share/icons/breeze/actions/16/view-financial-account-loan-closed.svg share/icons/breeze/actions/16/view-financial-account-loan.svg share/icons/breeze/actions/16/view-financial-account-reopen.svg share/icons/breeze/actions/16/view-financial-account-savings-closed.svg share/icons/breeze/actions/16/view-financial-account-savings.svg share/icons/breeze/actions/16/view-financial-account.svg share/icons/breeze/actions/16/view-financial-budget.svg share/icons/breeze/actions/16/view-financial-category-add.svg share/icons/breeze/actions/16/view-financial-category-delete.svg share/icons/breeze/actions/16/view-financial-category-edit.svg share/icons/breeze/actions/16/view-financial-category-expense.svg share/icons/breeze/actions/16/view-financial-category-income.svg share/icons/breeze/actions/16/view-financial-category.svg share/icons/breeze/actions/16/view-financial-list.svg share/icons/breeze/actions/16/view-financial-transfer-reconcile.svg share/icons/breeze/actions/16/view-financial-transfer-reconciled.svg share/icons/breeze/actions/16/view-financial-transfer-unreconciled.svg share/icons/breeze/actions/16/view-form-action.svg share/icons/breeze/actions/16/view-form.svg share/icons/breeze/actions/16/view-fullscreen.svg share/icons/breeze/actions/16/view-grid.svg share/icons/breeze/actions/16/view-group.svg share/icons/breeze/actions/16/view-hidden.svg share/icons/breeze/actions/16/view-history.svg share/icons/breeze/actions/16/view-institution-add.svg share/icons/breeze/actions/16/view-institution-delete.svg share/icons/breeze/actions/16/view-institution-edit.svg share/icons/breeze/actions/16/view-institution.svg share/icons/breeze/actions/16/view-left-close.svg share/icons/breeze/actions/16/view-left-new.svg share/icons/breeze/actions/16/view-list-details.svg share/icons/breeze/actions/16/view-list-icons.svg share/icons/breeze/actions/16/view-list-text.svg share/icons/breeze/actions/16/view-list-tree.svg share/icons/breeze/actions/16/view-media-album-cover.svg share/icons/breeze/actions/16/view-media-artist.svg share/icons/breeze/actions/16/view-media-equalizer.svg share/icons/breeze/actions/16/view-media-lyrics.svg share/icons/breeze/actions/16/view-media-playlist.svg share/icons/breeze/actions/16/view-media-publisher.svg share/icons/breeze/actions/16/view-media-visualization.svg share/icons/breeze/actions/16/view-multiple-objects.svg share/icons/breeze/actions/16/view-object-histogram-linear.svg share/icons/breeze/actions/16/view-object-histogram-logarithmic.svg share/icons/breeze/actions/16/view-pages-continuous.svg share/icons/breeze/actions/16/view-pages-facing-first-centered.svg share/icons/breeze/actions/16/view-pages-facing.svg share/icons/breeze/actions/16/view-pages-overview.svg share/icons/breeze/actions/16/view-pages-single.svg share/icons/breeze/actions/16/view-pim-calendar.svg share/icons/breeze/actions/16/view-pim-contacts.svg share/icons/breeze/actions/16/view-pim-journal.svg share/icons/breeze/actions/16/view-pim-mail.svg share/icons/breeze/actions/16/view-pim-news.svg share/icons/breeze/actions/16/view-pim-notes.svg share/icons/breeze/actions/16/view-pim-tasks-pending.svg share/icons/breeze/actions/16/view-pim-tasks.svg share/icons/breeze/actions/16/view-presentation.svg share/icons/breeze/actions/16/view-preview.svg share/icons/breeze/actions/16/view-private.svg share/icons/breeze/actions/16/view-process-all-tree.svg share/icons/breeze/actions/16/view-process-all.svg share/icons/breeze/actions/16/view-process-own.svg share/icons/breeze/actions/16/view-process-system.svg share/icons/breeze/actions/16/view-process-tree.svg share/icons/breeze/actions/16/view-process-users.svg share/icons/breeze/actions/16/view-readermode-active.svg share/icons/breeze/actions/16/view-readermode.svg share/icons/breeze/actions/16/view-refresh.svg share/icons/breeze/actions/16/view-resource-calendar.svg share/icons/breeze/actions/16/view-restore.svg share/icons/breeze/actions/16/view-right-close.svg share/icons/breeze/actions/16/view-right-new.svg share/icons/breeze/actions/16/view-services-scripted-amarok.svg share/icons/breeze/actions/16/view-sidetree.svg share/icons/breeze/actions/16/view-sort-ascending-name.svg share/icons/breeze/actions/16/view-sort-ascending.svg share/icons/breeze/actions/16/view-sort-descending-name.svg share/icons/breeze/actions/16/view-sort-descending.svg share/icons/breeze/actions/16/view-sort.svg share/icons/breeze/actions/16/view-split-left-right.svg share/icons/breeze/actions/16/view-split-top-bottom.svg share/icons/breeze/actions/16/view-statistics.svg share/icons/breeze/actions/16/view-table-of-contents-ltr.svg share/icons/breeze/actions/16/view-table-of-contents-rtl.svg share/icons/breeze/actions/16/view-task-add.svg share/icons/breeze/actions/16/view-task-child-add.svg share/icons/breeze/actions/16/view-task-child.svg share/icons/breeze/actions/16/view-task.svg share/icons/breeze/actions/16/view-time-schedule-baselined-add.svg share/icons/breeze/actions/16/view-time-schedule-baselined-remove.svg share/icons/breeze/actions/16/view-time-schedule-baselined.svg share/icons/breeze/actions/16/view-time-schedule-calculus.svg share/icons/breeze/actions/16/view-time-schedule-child-insert.svg share/icons/breeze/actions/16/view-time-schedule-edit.svg share/icons/breeze/actions/16/view-time-schedule-insert.svg share/icons/breeze/actions/16/view-time-schedule.svg share/icons/breeze/actions/16/view-visible.svg share/icons/breeze/actions/16/view-web-browser-dom-tree.svg share/icons/breeze/actions/16/view_fit_to_page.svg share/icons/breeze/actions/16/viewbib.svg share/icons/breeze/actions/16/viewhtml.svg share/icons/breeze/actions/16/viewimage.svg share/icons/breeze/actions/16/viewlog.svg share/icons/breeze/actions/16/viewpdf.svg share/icons/breeze/actions/16/viewps.svg share/icons/breeze/actions/16/virtual-desktops.svg share/icons/breeze/actions/16/visibility.svg share/icons/breeze/actions/16/widget-alternatives.svg share/icons/breeze/actions/16/window-close.svg share/icons/breeze/actions/16/window-duplicate.svg share/icons/breeze/actions/16/window-keep-above.svg share/icons/breeze/actions/16/window-keep-below.svg share/icons/breeze/actions/16/window-maximize.svg share/icons/breeze/actions/16/window-minimize.svg share/icons/breeze/actions/16/window-new.svg share/icons/breeze/actions/16/window-next.svg share/icons/breeze/actions/16/window-pin.svg share/icons/breeze/actions/16/window-previous.svg share/icons/breeze/actions/16/window-restore.svg share/icons/breeze/actions/16/window-shade.svg share/icons/breeze/actions/16/window-unpin.svg share/icons/breeze/actions/16/window-unshade.svg share/icons/breeze/actions/16/window.svg share/icons/breeze/actions/16/wizard_math.svg share/icons/breeze/actions/16/wizard_pdftools.svg share/icons/breeze/actions/16/wizard_pstools.svg share/icons/breeze/actions/16/wizard_tabular.svg share/icons/breeze/actions/16/x-clementine-album.svg share/icons/breeze/actions/16/x-clementine-albums.svg share/icons/breeze/actions/16/x-clementine-artist.svg share/icons/breeze/actions/16/x-clementine-shuffle.svg share/icons/breeze/actions/16/x-shape-connection.svg share/icons/breeze/actions/16/x-shape-formula.svg share/icons/breeze/actions/16/x-shape-image.svg share/icons/breeze/actions/16/x-shape-text.svg share/icons/breeze/actions/16/x-zoom-in.svg share/icons/breeze/actions/16/x-zoom-out.svg share/icons/breeze/actions/16/xml-attribute-delete.svg share/icons/breeze/actions/16/xml-element-new.svg share/icons/breeze/actions/16/xml-node-delete.svg share/icons/breeze/actions/16/xml-node-duplicate.svg share/icons/breeze/actions/16/xml-text-new.svg share/icons/breeze/actions/16/y-zoom-in.svg share/icons/breeze/actions/16/y-zoom-out.svg share/icons/breeze/actions/16/zoom-1-to-2.svg share/icons/breeze/actions/16/zoom-2-to-1.svg share/icons/breeze/actions/16/zoom-all.svg share/icons/breeze/actions/16/zoom-double-size.svg share/icons/breeze/actions/16/zoom-draw.svg share/icons/breeze/actions/16/zoom-fit-best.svg share/icons/breeze/actions/16/zoom-fit-drawing.svg share/icons/breeze/actions/16/zoom-fit-height.svg share/icons/breeze/actions/16/zoom-fit-page.svg share/icons/breeze/actions/16/zoom-fit-selection.svg share/icons/breeze/actions/16/zoom-fit-width.svg share/icons/breeze/actions/16/zoom-half-size.svg share/icons/breeze/actions/16/zoom-in-large.svg share/icons/breeze/actions/16/zoom-in-x.svg share/icons/breeze/actions/16/zoom-in-y.svg share/icons/breeze/actions/16/zoom-in.svg share/icons/breeze/actions/16/zoom-next.svg share/icons/breeze/actions/16/zoom-original.svg share/icons/breeze/actions/16/zoom-out-large.svg share/icons/breeze/actions/16/zoom-out-x.svg share/icons/breeze/actions/16/zoom-out-y.svg share/icons/breeze/actions/16/zoom-out.svg share/icons/breeze/actions/16/zoom-previous.svg share/icons/breeze/actions/16/zoom-select-fit.svg share/icons/breeze/actions/16/zoom-select-x.svg share/icons/breeze/actions/16/zoom-select-y.svg share/icons/breeze/actions/16/zoom-select.svg share/icons/breeze/actions/16/zoom-selection.svg share/icons/breeze/actions/16/zoom.svg share/icons/breeze/actions/16@2x share/icons/breeze/actions/16@3x share/icons/breeze/actions/22/CVnamespace.svg share/icons/breeze/actions/22/Info-amarok.svg share/icons/breeze/actions/22/PrePostCondition.svg share/icons/breeze/actions/22/accept_signal.svg share/icons/breeze/actions/22/accept_time_event.svg share/icons/breeze/actions/22/acrobat.svg share/icons/breeze/actions/22/action-albumfolder-importdir2.svg share/icons/breeze/actions/22/action-rss_tag.svg share/icons/breeze/actions/22/activities.svg share/icons/breeze/actions/22/activity-fork.svg share/icons/breeze/actions/22/actor.svg share/icons/breeze/actions/22/add-placemark.svg share/icons/breeze/actions/22/add-subtitle.svg share/icons/breeze/actions/22/address-book-new.svg share/icons/breeze/actions/22/addressbook-details.svg share/icons/breeze/actions/22/adjustcurves.svg share/icons/breeze/actions/22/adjusthsl.svg share/icons/breeze/actions/22/adjustlevels.svg share/icons/breeze/actions/22/adjustrgb.svg share/icons/breeze/actions/22/aggregation.svg share/icons/breeze/actions/22/akonadi-phone-home.svg share/icons/breeze/actions/22/akonadiconsole.svg share/icons/breeze/actions/22/albumfolder-importdir.svg share/icons/breeze/actions/22/albumfolder-importimages.svg share/icons/breeze/actions/22/albumfolder-new.svg share/icons/breeze/actions/22/albumfolder-properties.svg share/icons/breeze/actions/22/albumfolder-user-trash.svg share/icons/breeze/actions/22/align-horizontal-baseline.svg share/icons/breeze/actions/22/align-horizontal-bottom-out.svg share/icons/breeze/actions/22/align-horizontal-center.svg share/icons/breeze/actions/22/align-horizontal-left-out.svg share/icons/breeze/actions/22/align-horizontal-left-to-anchor.svg share/icons/breeze/actions/22/align-horizontal-left.svg share/icons/breeze/actions/22/align-horizontal-node.svg share/icons/breeze/actions/22/align-horizontal-right-out.svg share/icons/breeze/actions/22/align-horizontal-right-to-anchor.svg share/icons/breeze/actions/22/align-horizontal-right.svg share/icons/breeze/actions/22/align-horizontal-top-out.svg share/icons/breeze/actions/22/align-vertical-baseline.svg share/icons/breeze/actions/22/align-vertical-bottom-out.svg share/icons/breeze/actions/22/align-vertical-bottom-to-anchor.svg share/icons/breeze/actions/22/align-vertical-bottom.svg share/icons/breeze/actions/22/align-vertical-center.svg share/icons/breeze/actions/22/align-vertical-node.svg share/icons/breeze/actions/22/align-vertical-top-out.svg share/icons/breeze/actions/22/align-vertical-top-to-anchor.svg share/icons/breeze/actions/22/align-vertical-top.svg share/icons/breeze/actions/22/amarok_artist.svg share/icons/breeze/actions/22/amarok_cart_add.svg share/icons/breeze/actions/22/amarok_cart_remove.svg share/icons/breeze/actions/22/amarok_cart_view.svg share/icons/breeze/actions/22/amarok_change_language.svg share/icons/breeze/actions/22/amarok_clock.svg share/icons/breeze/actions/22/amarok_lyrics.svg share/icons/breeze/actions/22/amarok_playcount.svg share/icons/breeze/actions/22/amarok_playlist.svg share/icons/breeze/actions/22/amarok_playlist_refresh.svg share/icons/breeze/actions/22/amarok_scripts.svg share/icons/breeze/actions/22/anchor.svg share/icons/breeze/actions/22/animal.svg share/icons/breeze/actions/22/animation-stage.svg share/icons/breeze/actions/22/answer-correct.svg share/icons/breeze/actions/22/answer.svg share/icons/breeze/actions/22/antivignetting.svg share/icons/breeze/actions/22/application-exit.svg share/icons/breeze/actions/22/application-menu.svg share/icons/breeze/actions/22/appointment-new.svg share/icons/breeze/actions/22/approved.svg share/icons/breeze/actions/22/archive-extract.svg share/icons/breeze/actions/22/archive-insert-directory.svg share/icons/breeze/actions/22/archive-insert.svg share/icons/breeze/actions/22/archive-remove.svg share/icons/breeze/actions/22/arrow-down-double.svg share/icons/breeze/actions/22/arrow-down.svg share/icons/breeze/actions/22/arrow-left-double.svg share/icons/breeze/actions/22/arrow-left.svg share/icons/breeze/actions/22/arrow-right-double.svg share/icons/breeze/actions/22/arrow-right.svg share/icons/breeze/actions/22/arrow-up-double.svg share/icons/breeze/actions/22/arrow-up.svg share/icons/breeze/actions/22/arrow.svg share/icons/breeze/actions/22/artifact.svg share/icons/breeze/actions/22/artistictext-tool.svg share/icons/breeze/actions/22/association.svg share/icons/breeze/actions/22/atmosphere.svg share/icons/breeze/actions/22/auto-scale-all.svg share/icons/breeze/actions/22/auto-scale-x.svg share/icons/breeze/actions/22/auto-scale-y.svg share/icons/breeze/actions/22/auto-transition.svg share/icons/breeze/actions/22/auto-type.svg share/icons/breeze/actions/22/autocorrection.svg share/icons/breeze/actions/22/backgroundtool.svg share/icons/breeze/actions/22/backup.svg share/icons/breeze/actions/22/bboxnext.svg share/icons/breeze/actions/22/bboxprev.svg share/icons/breeze/actions/22/beamerblock.svg share/icons/breeze/actions/22/beamerframe.svg share/icons/breeze/actions/22/bibtex.svg share/icons/breeze/actions/22/bigskip.svg share/icons/breeze/actions/22/black_sum.svg share/icons/breeze/actions/22/blurfx.svg share/icons/breeze/actions/22/blurimage.svg share/icons/breeze/actions/22/bookmark-add-folder.svg share/icons/breeze/actions/22/bookmark-edit.svg share/icons/breeze/actions/22/bookmark-new-list.svg share/icons/breeze/actions/22/bookmark-new.svg share/icons/breeze/actions/22/bookmark-remove.svg share/icons/breeze/actions/22/bookmark-toolbar.svg share/icons/breeze/actions/22/bookmarks-organize.svg share/icons/breeze/actions/22/bookmarks.svg share/icons/breeze/actions/22/borderpainter.svg share/icons/breeze/actions/22/bordertool.svg share/icons/breeze/actions/22/box.svg share/icons/breeze/actions/22/bqm-diff.svg share/icons/breeze/actions/22/bqm-remove.svg share/icons/breeze/actions/22/bqm-rmqueue.svg share/icons/breeze/actions/22/branch.svg share/icons/breeze/actions/22/brightness-high.svg share/icons/breeze/actions/22/brightness-low.svg share/icons/breeze/actions/22/bwtonal.svg share/icons/breeze/actions/22/call-start.svg share/icons/breeze/actions/22/call-stop.svg share/icons/breeze/actions/22/call-voicemail.svg share/icons/breeze/actions/22/calligraphy.svg share/icons/breeze/actions/22/callout-shape.svg share/icons/breeze/actions/22/cards-block.svg share/icons/breeze/actions/22/category.svg share/icons/breeze/actions/22/category2parent.svg share/icons/breeze/actions/22/cell_edit.svg share/icons/breeze/actions/22/cell_layout.svg share/icons/breeze/actions/22/channelmixer.svg share/icons/breeze/actions/22/character-set.svg share/icons/breeze/actions/22/charcoaltool.svg share/icons/breeze/actions/22/check_constraint.svg share/icons/breeze/actions/22/checkbox.svg share/icons/breeze/actions/22/checkmark.svg share/icons/breeze/actions/22/child2category.svg share/icons/breeze/actions/22/choice-rhomb.svg share/icons/breeze/actions/22/choice-round.svg share/icons/breeze/actions/22/chronometer-lap.svg share/icons/breeze/actions/22/chronometer-pause.svg share/icons/breeze/actions/22/chronometer-reset.svg share/icons/breeze/actions/22/chronometer-start.svg share/icons/breeze/actions/22/chronometer.svg share/icons/breeze/actions/22/circular-arrow-shape.svg share/icons/breeze/actions/22/class-or-package.svg share/icons/breeze/actions/22/class.svg share/icons/breeze/actions/22/clock-large.svg share/icons/breeze/actions/22/clock.svg share/icons/breeze/actions/22/cloud-download.svg share/icons/breeze/actions/22/cloud-upload.svg share/icons/breeze/actions/22/code-block.svg share/icons/breeze/actions/22/code-class.svg share/icons/breeze/actions/22/code-context.svg share/icons/breeze/actions/22/code-function.svg share/icons/breeze/actions/22/code-typedef.svg share/icons/breeze/actions/22/code-variable.svg share/icons/breeze/actions/22/collapse-all.svg share/icons/breeze/actions/22/collapse.svg share/icons/breeze/actions/22/collection-rescan-amarok.svg share/icons/breeze/actions/22/color-fill.svg share/icons/breeze/actions/22/color-gradient.svg share/icons/breeze/actions/22/color-management.svg share/icons/breeze/actions/22/color-mode-black-white.svg share/icons/breeze/actions/22/color-mode-hue-shift-negative.svg share/icons/breeze/actions/22/color-mode-hue-shift-positive.svg share/icons/breeze/actions/22/color-mode-invert-image.svg share/icons/breeze/actions/22/color-mode-invert-text.svg share/icons/breeze/actions/22/color-picker-black.svg share/icons/breeze/actions/22/color-picker-grey.svg share/icons/breeze/actions/22/color-picker-white.svg share/icons/breeze/actions/22/color-picker.svg share/icons/breeze/actions/22/colorfx.svg share/icons/breeze/actions/22/colormanagement.svg share/icons/breeze/actions/22/colorneg.svg share/icons/breeze/actions/22/colors-chromablue.svg share/icons/breeze/actions/22/colors-chromagreen.svg share/icons/breeze/actions/22/colors-chromared.svg share/icons/breeze/actions/22/colors-luma.svg share/icons/breeze/actions/22/combined_fragment.svg share/icons/breeze/actions/22/compass.svg share/icons/breeze/actions/22/component.svg share/icons/breeze/actions/22/composite-track-off.svg share/icons/breeze/actions/22/composite-track-on.svg share/icons/breeze/actions/22/composite-track-preview.svg share/icons/breeze/actions/22/composition.svg share/icons/breeze/actions/22/configure-shortcuts.svg share/icons/breeze/actions/22/configure-toolbars.svg share/icons/breeze/actions/22/configure.svg share/icons/breeze/actions/22/configure_kile.svg share/icons/breeze/actions/22/configure_project.svg share/icons/breeze/actions/22/contact-new.svg share/icons/breeze/actions/22/containment.svg share/icons/breeze/actions/22/contents.svg share/icons/breeze/actions/22/contrast.svg share/icons/breeze/actions/22/convert.svg share/icons/breeze/actions/22/coordinate.svg share/icons/breeze/actions/22/copy-coordinates.svg share/icons/breeze/actions/22/createpath.svg share/icons/breeze/actions/22/cross-shape.svg share/icons/breeze/actions/22/crosshairs.svg share/icons/breeze/actions/22/cursor-arrow.svg share/icons/breeze/actions/22/curve-connector.svg share/icons/breeze/actions/22/dashboard-show.svg share/icons/breeze/actions/22/database-change-key.svg share/icons/breeze/actions/22/database-index.svg share/icons/breeze/actions/22/datatype.svg share/icons/breeze/actions/22/dblatex.svg share/icons/breeze/actions/22/debug-execute-from-cursor.svg share/icons/breeze/actions/22/debug-execute-to-cursor.svg share/icons/breeze/actions/22/debug-run-cursor.svg share/icons/breeze/actions/22/debug-run.svg share/icons/breeze/actions/22/debug-step-instruction.svg share/icons/breeze/actions/22/debug-step-into-instruction.svg share/icons/breeze/actions/22/debug-step-into.svg share/icons/breeze/actions/22/debug-step-out.svg share/icons/breeze/actions/22/debug-step-over.svg share/icons/breeze/actions/22/deep-history.svg share/icons/breeze/actions/22/delete-comment.svg share/icons/breeze/actions/22/delete-table-row.svg share/icons/breeze/actions/22/delete.svg share/icons/breeze/actions/22/dependency.svg share/icons/breeze/actions/22/depth16to8.svg share/icons/breeze/actions/22/depth8to16.svg share/icons/breeze/actions/22/description.svg share/icons/breeze/actions/22/dfrac.svg share/icons/breeze/actions/22/diag_activity.svg share/icons/breeze/actions/22/diag_class.svg share/icons/breeze/actions/22/diag_component.svg share/icons/breeze/actions/22/dialog-cancel.svg share/icons/breeze/actions/22/dialog-close.svg share/icons/breeze/actions/22/dialog-input-devices.svg share/icons/breeze/actions/22/dialog-messages.svg share/icons/breeze/actions/22/dialog-ok-apply.svg share/icons/breeze/actions/22/dialog-ok.svg share/icons/breeze/actions/22/dialog-scripts.svg share/icons/breeze/actions/22/dialog-xml-editor.svg share/icons/breeze/actions/22/dirsync.svg share/icons/breeze/actions/22/discrete.svg share/icons/breeze/actions/22/displaymathmode.svg share/icons/breeze/actions/22/distortionfx.svg share/icons/breeze/actions/22/distribute-graph-directed.svg share/icons/breeze/actions/22/distribute-graph.svg share/icons/breeze/actions/22/distribute-horizontal-baseline.svg share/icons/breeze/actions/22/distribute-horizontal-center.svg share/icons/breeze/actions/22/distribute-horizontal-equal.svg share/icons/breeze/actions/22/distribute-horizontal-gaps.svg share/icons/breeze/actions/22/distribute-horizontal-left.svg share/icons/breeze/actions/22/distribute-horizontal-margin.svg share/icons/breeze/actions/22/distribute-horizontal-node.svg share/icons/breeze/actions/22/distribute-horizontal-page.svg share/icons/breeze/actions/22/distribute-horizontal-right.svg share/icons/breeze/actions/22/distribute-horizontal-x.svg share/icons/breeze/actions/22/distribute-horizontal.svg share/icons/breeze/actions/22/distribute-randomize.svg share/icons/breeze/actions/22/distribute-remove-overlaps.svg share/icons/breeze/actions/22/distribute-unclump.svg share/icons/breeze/actions/22/distribute-vertical-baseline.svg share/icons/breeze/actions/22/distribute-vertical-bottom.svg share/icons/breeze/actions/22/distribute-vertical-center.svg share/icons/breeze/actions/22/distribute-vertical-equal.svg share/icons/breeze/actions/22/distribute-vertical-gaps.svg share/icons/breeze/actions/22/distribute-vertical-margin.svg share/icons/breeze/actions/22/distribute-vertical-node.svg share/icons/breeze/actions/22/distribute-vertical-page.svg share/icons/breeze/actions/22/distribute-vertical-top.svg share/icons/breeze/actions/22/distribute-vertical-y.svg share/icons/breeze/actions/22/distribute-vertical.svg share/icons/breeze/actions/22/document-close.svg share/icons/breeze/actions/22/document-decrypt.svg share/icons/breeze/actions/22/document-edit-decrypt-verify.svg share/icons/breeze/actions/22/document-edit-decrypt.svg share/icons/breeze/actions/22/document-edit-encrypt.svg share/icons/breeze/actions/22/document-edit-sign-encrypt.svg share/icons/breeze/actions/22/document-edit-sign.svg share/icons/breeze/actions/22/document-edit-verify.svg share/icons/breeze/actions/22/document-edit.svg share/icons/breeze/actions/22/document-encrypt.svg share/icons/breeze/actions/22/document-encrypted.svg share/icons/breeze/actions/22/document-export-ocal.svg share/icons/breeze/actions/22/document-export-table.svg share/icons/breeze/actions/22/document-export.svg share/icons/breeze/actions/22/document-import-ocal.svg share/icons/breeze/actions/22/document-import.svg share/icons/breeze/actions/22/document-multiple.svg share/icons/breeze/actions/22/document-new-from-template.svg share/icons/breeze/actions/22/document-new.svg share/icons/breeze/actions/22/document-open-data.svg share/icons/breeze/actions/22/document-open-folder.svg share/icons/breeze/actions/22/document-open-recent.svg share/icons/breeze/actions/22/document-open-remote.svg share/icons/breeze/actions/22/document-open.svg share/icons/breeze/actions/22/document-preview-archive.svg share/icons/breeze/actions/22/document-preview.svg share/icons/breeze/actions/22/document-print-direct.svg share/icons/breeze/actions/22/document-print-frame.svg share/icons/breeze/actions/22/document-print-preview.svg share/icons/breeze/actions/22/document-print.svg share/icons/breeze/actions/22/document-properties.svg share/icons/breeze/actions/22/document-replace.svg share/icons/breeze/actions/22/document-revert.svg share/icons/breeze/actions/22/document-save-all.svg share/icons/breeze/actions/22/document-save-as-template.svg share/icons/breeze/actions/22/document-save-as.svg share/icons/breeze/actions/22/document-save.svg share/icons/breeze/actions/22/document-scan.svg share/icons/breeze/actions/22/document-send.svg share/icons/breeze/actions/22/document-share.svg share/icons/breeze/actions/22/document-sign.svg share/icons/breeze/actions/22/document-swap.svg share/icons/breeze/actions/22/documentation.svg share/icons/breeze/actions/22/documentinfo.svg share/icons/breeze/actions/22/donate.svg share/icons/breeze/actions/22/dontknow.svg share/icons/breeze/actions/22/download-amarok.svg share/icons/breeze/actions/22/download-later.svg share/icons/breeze/actions/22/download.svg share/icons/breeze/actions/22/drag-surface.svg share/icons/breeze/actions/22/draw-arrow-back.svg share/icons/breeze/actions/22/draw-arrow-down.svg share/icons/breeze/actions/22/draw-arrow-forward.svg share/icons/breeze/actions/22/draw-arrow-up.svg share/icons/breeze/actions/22/draw-arrow.svg share/icons/breeze/actions/22/draw-bezier-curves.svg share/icons/breeze/actions/22/draw-brush.svg share/icons/breeze/actions/22/draw-calligraphic.svg share/icons/breeze/actions/22/draw-circle.svg share/icons/breeze/actions/22/draw-connector.svg share/icons/breeze/actions/22/draw-cross.svg share/icons/breeze/actions/22/draw-cuboid.svg share/icons/breeze/actions/22/draw-donut.svg share/icons/breeze/actions/22/draw-ellipse.svg share/icons/breeze/actions/22/draw-eraser.svg share/icons/breeze/actions/22/draw-freehand.svg share/icons/breeze/actions/22/draw-halfcircle1.svg share/icons/breeze/actions/22/draw-halfcircle2.svg share/icons/breeze/actions/22/draw-halfcircle3.svg share/icons/breeze/actions/22/draw-halfcircle4.svg share/icons/breeze/actions/22/draw-highlight.svg share/icons/breeze/actions/22/draw-line.svg share/icons/breeze/actions/22/draw-path.svg share/icons/breeze/actions/22/draw-polygon-star.svg share/icons/breeze/actions/22/draw-polygon.svg share/icons/breeze/actions/22/draw-polyline.svg share/icons/breeze/actions/22/draw-rectangle-rounded.svg share/icons/breeze/actions/22/draw-rectangle.svg share/icons/breeze/actions/22/draw-spiral.svg share/icons/breeze/actions/22/draw-square-inverted-corners.svg share/icons/breeze/actions/22/draw-star.svg share/icons/breeze/actions/22/draw-text.svg share/icons/breeze/actions/22/draw-triangle.svg share/icons/breeze/actions/22/draw-triangle1.svg share/icons/breeze/actions/22/draw-triangle2.svg share/icons/breeze/actions/22/draw-triangle3.svg share/icons/breeze/actions/22/draw-triangle4.svg share/icons/breeze/actions/22/draw-watercolor.svg share/icons/breeze/actions/22/dvipdf.svg share/icons/breeze/actions/22/dvipng.svg share/icons/breeze/actions/22/dvips.svg share/icons/breeze/actions/22/dvisearch.svg share/icons/breeze/actions/22/dynamic-amarok.svg share/icons/breeze/actions/22/earthquake.svg share/icons/breeze/actions/22/edit-bomb.svg share/icons/breeze/actions/22/edit-clear-all.svg share/icons/breeze/actions/22/edit-clear-history.svg share/icons/breeze/actions/22/edit-clear-list.svg share/icons/breeze/actions/22/edit-clear-locationbar-ltr.svg share/icons/breeze/actions/22/edit-clear-locationbar-rtl.svg share/icons/breeze/actions/22/edit-clear.svg share/icons/breeze/actions/22/edit-clone-unlink.svg share/icons/breeze/actions/22/edit-clone.svg share/icons/breeze/actions/22/edit-comment.svg share/icons/breeze/actions/22/edit-copy-path.svg share/icons/breeze/actions/22/edit-copy.svg share/icons/breeze/actions/22/edit-cut.svg share/icons/breeze/actions/22/edit-delete-remove.svg share/icons/breeze/actions/22/edit-delete-shred.svg share/icons/breeze/actions/22/edit-delete.svg share/icons/breeze/actions/22/edit-download.svg share/icons/breeze/actions/22/edit-entry.svg share/icons/breeze/actions/22/edit-find-mail.svg share/icons/breeze/actions/22/edit-find-project.svg share/icons/breeze/actions/22/edit-find-replace.svg share/icons/breeze/actions/22/edit-find-user.svg share/icons/breeze/actions/22/edit-find.svg share/icons/breeze/actions/22/edit-group.svg share/icons/breeze/actions/22/edit-guides.svg share/icons/breeze/actions/22/edit-image-face-add.svg share/icons/breeze/actions/22/edit-image-face-detect.svg share/icons/breeze/actions/22/edit-image-face-recognize.svg share/icons/breeze/actions/22/edit-image-face-show.svg share/icons/breeze/actions/22/edit-image.svg share/icons/breeze/actions/22/edit-line-width.svg share/icons/breeze/actions/22/edit-link.svg share/icons/breeze/actions/22/edit-map.svg share/icons/breeze/actions/22/edit-move.svg share/icons/breeze/actions/22/edit-node.svg share/icons/breeze/actions/22/edit-none.svg share/icons/breeze/actions/22/edit-opacity.svg share/icons/breeze/actions/22/edit-paste-in-place.svg share/icons/breeze/actions/22/edit-paste.svg share/icons/breeze/actions/22/edit-redo.svg share/icons/breeze/actions/22/edit-rename.svg share/icons/breeze/actions/22/edit-reset.svg share/icons/breeze/actions/22/edit-select-all.svg share/icons/breeze/actions/22/edit-select-invert.svg share/icons/breeze/actions/22/edit-select-lasso.svg share/icons/breeze/actions/22/edit-select-none.svg share/icons/breeze/actions/22/edit-select-text.svg share/icons/breeze/actions/22/edit-select.svg share/icons/breeze/actions/22/edit-table-cell-merge.svg share/icons/breeze/actions/22/edit-table-cell-split.svg share/icons/breeze/actions/22/edit-table-delete-column.svg share/icons/breeze/actions/22/edit-table-delete-row.svg share/icons/breeze/actions/22/edit-table-insert-column-left.svg share/icons/breeze/actions/22/edit-table-insert-column-right.svg share/icons/breeze/actions/22/edit-table-insert-row-above.svg share/icons/breeze/actions/22/edit-table-insert-row-below.svg share/icons/breeze/actions/22/edit-table-insert-row-under.svg share/icons/breeze/actions/22/edit-text-frame-update.svg share/icons/breeze/actions/22/edit-undo.svg share/icons/breeze/actions/22/edit_animation.svg share/icons/breeze/actions/22/editimage.svg share/icons/breeze/actions/22/editor.svg share/icons/breeze/actions/22/editpath.svg share/icons/breeze/actions/22/edittext.svg share/icons/breeze/actions/22/ellipse-shape.svg share/icons/breeze/actions/22/embosstool.svg share/icons/breeze/actions/22/emph.svg share/icons/breeze/actions/22/end_of_life.svg share/icons/breeze/actions/22/end_state.svg share/icons/breeze/actions/22/entity.svg share/icons/breeze/actions/22/entrance_animations.svg share/icons/breeze/actions/22/entry-clone.svg share/icons/breeze/actions/22/entry-delete.svg share/icons/breeze/actions/22/entry-edit.svg share/icons/breeze/actions/22/entry-new.svg share/icons/breeze/actions/22/enum.svg share/icons/breeze/actions/22/enumerate.svg share/icons/breeze/actions/22/error.svg share/icons/breeze/actions/22/errornext.svg share/icons/breeze/actions/22/errorprev.svg share/icons/breeze/actions/22/escape-direction-all.svg share/icons/breeze/actions/22/escape-direction-down.svg share/icons/breeze/actions/22/escape-direction-horizontal.svg share/icons/breeze/actions/22/escape-direction-left.svg share/icons/breeze/actions/22/escape-direction-right.svg share/icons/breeze/actions/22/escape-direction-up.svg share/icons/breeze/actions/22/escape-direction-vertical.svg share/icons/breeze/actions/22/exception.svg share/icons/breeze/actions/22/exchange-positions-clockwise.svg share/icons/breeze/actions/22/exchange-positions-zorder.svg share/icons/breeze/actions/22/exchange-positions.svg share/icons/breeze/actions/22/exifinfo.svg share/icons/breeze/actions/22/exit_animations.svg share/icons/breeze/actions/22/expand-all.svg share/icons/breeze/actions/22/expand.svg share/icons/breeze/actions/22/favorite-genres-amarok.svg share/icons/breeze/actions/22/favorite.svg share/icons/breeze/actions/22/feed-subscribe.svg share/icons/breeze/actions/22/file-zoom-in.svg share/icons/breeze/actions/22/file-zoom-out.svg share/icons/breeze/actions/22/filegrep.svg share/icons/breeze/actions/22/filename-album-amarok.svg share/icons/breeze/actions/22/filename-and-amarok.svg share/icons/breeze/actions/22/filename-artist-amarok.svg share/icons/breeze/actions/22/filename-bpm-amarok.svg share/icons/breeze/actions/22/filename-comment-amarok.svg share/icons/breeze/actions/22/filename-composer-amarok.svg share/icons/breeze/actions/22/filename-dash-amarok.svg share/icons/breeze/actions/22/filename-discnumber-amarok.svg share/icons/breeze/actions/22/filename-divider.svg share/icons/breeze/actions/22/filename-dot-amarok.svg share/icons/breeze/actions/22/filename-filetype-amarok.svg share/icons/breeze/actions/22/filename-genre-amarok.svg share/icons/breeze/actions/22/filename-group-length.svg share/icons/breeze/actions/22/filename-group-tracks.svg share/icons/breeze/actions/22/filename-ignore-amarok.svg share/icons/breeze/actions/22/filename-initial-amarok.svg share/icons/breeze/actions/22/filename-last-played.svg share/icons/breeze/actions/22/filename-moodbar.svg share/icons/breeze/actions/22/filename-sample-rate.svg share/icons/breeze/actions/22/filename-slash-amarok.svg share/icons/breeze/actions/22/filename-space-amarok.svg share/icons/breeze/actions/22/filename-title-amarok.svg share/icons/breeze/actions/22/filename-track-amarok.svg share/icons/breeze/actions/22/filename-underscore-amarok.svg share/icons/breeze/actions/22/filename-year-amarok.svg share/icons/breeze/actions/22/fileview-preview.svg share/icons/breeze/actions/22/fill-color.svg share/icons/breeze/actions/22/filmgrain.svg share/icons/breeze/actions/22/final_activity.svg share/icons/breeze/actions/22/find-location.svg share/icons/breeze/actions/22/fingerprint.svg share/icons/breeze/actions/22/flag-black.svg share/icons/breeze/actions/22/flag-blue.svg share/icons/breeze/actions/22/flag-green.svg share/icons/breeze/actions/22/flag-red.svg share/icons/breeze/actions/22/flag-yellow.svg share/icons/breeze/actions/22/flag.svg share/icons/breeze/actions/22/flash.svg share/icons/breeze/actions/22/flashlight-off.svg share/icons/breeze/actions/22/flashlight-on.svg share/icons/breeze/actions/22/flower-shape.svg share/icons/breeze/actions/22/folder-new.svg share/icons/breeze/actions/22/folder-open-recent.svg share/icons/breeze/actions/22/folder-stash.svg share/icons/breeze/actions/22/folder-sync.svg share/icons/breeze/actions/22/followmouse.svg share/icons/breeze/actions/22/font-disable.svg share/icons/breeze/actions/22/font-enable.svg share/icons/breeze/actions/22/font.svg share/icons/breeze/actions/22/food.svg share/icons/breeze/actions/22/foreignkey_constraint.svg share/icons/breeze/actions/22/fork.svg share/icons/breeze/actions/22/format-add-node.svg share/icons/breeze/actions/22/format-align-vertical-bottom.svg share/icons/breeze/actions/22/format-align-vertical-center.svg share/icons/breeze/actions/22/format-align-vertical-top.svg share/icons/breeze/actions/22/format-border-set-all.svg share/icons/breeze/actions/22/format-border-set-bottom.svg share/icons/breeze/actions/22/format-border-set-diagonal-bl-tr.svg share/icons/breeze/actions/22/format-border-set-diagonal-tl-br.svg share/icons/breeze/actions/22/format-border-set-external.svg share/icons/breeze/actions/22/format-border-set-internal-horizontal.svg share/icons/breeze/actions/22/format-border-set-internal-vertical.svg share/icons/breeze/actions/22/format-border-set-internal.svg share/icons/breeze/actions/22/format-border-set-left.svg share/icons/breeze/actions/22/format-border-set-none.svg share/icons/breeze/actions/22/format-border-set-right.svg share/icons/breeze/actions/22/format-border-set-top.svg share/icons/breeze/actions/22/format-border-style.svg share/icons/breeze/actions/22/format-break-node.svg share/icons/breeze/actions/22/format-connect-node.svg share/icons/breeze/actions/22/format-convert-to-path.svg share/icons/breeze/actions/22/format-currency.svg share/icons/breeze/actions/22/format-disconnect-node.svg share/icons/breeze/actions/22/format-fill-color.svg share/icons/breeze/actions/22/format-font-size-less.svg share/icons/breeze/actions/22/format-font-size-more.svg share/icons/breeze/actions/22/format-indent-less.svg share/icons/breeze/actions/22/format-indent-more.svg share/icons/breeze/actions/22/format-insert-node.svg share/icons/breeze/actions/22/format-join-node.svg share/icons/breeze/actions/22/format-justify-center.svg share/icons/breeze/actions/22/format-justify-fill.svg share/icons/breeze/actions/22/format-justify-left.svg share/icons/breeze/actions/22/format-justify-right.svg share/icons/breeze/actions/22/format-line-spacing-double.svg share/icons/breeze/actions/22/format-line-spacing-normal.svg share/icons/breeze/actions/22/format-line-spacing-triple.svg share/icons/breeze/actions/22/format-list-ordered.svg share/icons/breeze/actions/22/format-list-unordered.svg share/icons/breeze/actions/22/format-node-corner.svg share/icons/breeze/actions/22/format-node-curve.svg share/icons/breeze/actions/22/format-node-line.svg share/icons/breeze/actions/22/format-node-smooth.svg share/icons/breeze/actions/22/format-node-symmetric.svg share/icons/breeze/actions/22/format-number-percent.svg share/icons/breeze/actions/22/format-precision-less.svg share/icons/breeze/actions/22/format-precision-more.svg share/icons/breeze/actions/22/format-remove-node.svg share/icons/breeze/actions/22/format-segment-curve.svg share/icons/breeze/actions/22/format-segment-line.svg share/icons/breeze/actions/22/format-stroke-color.svg share/icons/breeze/actions/22/format-text-blockquote.svg share/icons/breeze/actions/22/format-text-bold.svg share/icons/breeze/actions/22/format-text-capitalize.svg share/icons/breeze/actions/22/format-text-code.svg share/icons/breeze/actions/22/format-text-color.svg share/icons/breeze/actions/22/format-text-direction-horizontal.svg share/icons/breeze/actions/22/format-text-direction-ltr.svg share/icons/breeze/actions/22/format-text-direction-rtl.svg share/icons/breeze/actions/22/format-text-direction-vertical.svg share/icons/breeze/actions/22/format-text-italic.svg share/icons/breeze/actions/22/format-text-lowercase.svg share/icons/breeze/actions/22/format-text-strikethrough.svg share/icons/breeze/actions/22/format-text-subscript.svg share/icons/breeze/actions/22/format-text-superscript.svg share/icons/breeze/actions/22/format-text-symbol.svg share/icons/breeze/actions/22/format-text-underline-squiggle.svg share/icons/breeze/actions/22/format-text-underline.svg share/icons/breeze/actions/22/format-text-uppercase.svg share/icons/breeze/actions/22/formula.svg share/icons/breeze/actions/22/freerotation.svg share/icons/breeze/actions/22/games-achievements.svg share/icons/breeze/actions/22/games-config-background.svg share/icons/breeze/actions/22/games-config-board.svg share/icons/breeze/actions/22/games-config-custom.svg share/icons/breeze/actions/22/games-config-options.svg share/icons/breeze/actions/22/games-config-theme.svg share/icons/breeze/actions/22/games-config-tiles.svg share/icons/breeze/actions/22/games-difficult.svg share/icons/breeze/actions/22/games-endturn.svg share/icons/breeze/actions/22/games-highscores.svg share/icons/breeze/actions/22/games-hint.svg share/icons/breeze/actions/22/games-solve.svg share/icons/breeze/actions/22/geany-build.svg share/icons/breeze/actions/22/geany-close-all.svg share/icons/breeze/actions/22/geany-save-all.svg share/icons/breeze/actions/22/gearhead-shape.svg share/icons/breeze/actions/22/generalisation.svg share/icons/breeze/actions/22/generalise.svg share/icons/breeze/actions/22/get-hot-new-stuff.svg share/icons/breeze/actions/22/globe.svg share/icons/breeze/actions/22/gnumeric-autofilter-delete.svg share/icons/breeze/actions/22/gnumeric-autofilter.svg share/icons/breeze/actions/22/gnumeric-autosum.svg share/icons/breeze/actions/22/gnumeric-brush.svg share/icons/breeze/actions/22/gnumeric-bucket.svg share/icons/breeze/actions/22/gnumeric-cells-merge.svg share/icons/breeze/actions/22/gnumeric-cells-split.svg share/icons/breeze/actions/22/gnumeric-column-add.svg share/icons/breeze/actions/22/gnumeric-column-delete.svg share/icons/breeze/actions/22/gnumeric-column-hide.svg share/icons/breeze/actions/22/gnumeric-column-size.svg share/icons/breeze/actions/22/gnumeric-column-unhide.svg share/icons/breeze/actions/22/gnumeric-comment-add.svg share/icons/breeze/actions/22/gnumeric-comment-delete.svg share/icons/breeze/actions/22/gnumeric-comment-edit.svg share/icons/breeze/actions/22/gnumeric-component-insert-shaped.svg share/icons/breeze/actions/22/gnumeric-data-slicer.svg share/icons/breeze/actions/22/gnumeric-font.svg share/icons/breeze/actions/22/gnumeric-format-accounting.svg share/icons/breeze/actions/22/gnumeric-format-border-all.svg share/icons/breeze/actions/22/gnumeric-format-border-bottom.svg share/icons/breeze/actions/22/gnumeric-format-border-diag.svg share/icons/breeze/actions/22/gnumeric-format-border-double-bottom.svg share/icons/breeze/actions/22/gnumeric-format-border-inside-horiz.svg share/icons/breeze/actions/22/gnumeric-format-border-left.svg share/icons/breeze/actions/22/gnumeric-format-border-none.svg share/icons/breeze/actions/22/gnumeric-format-border-outside.svg share/icons/breeze/actions/22/gnumeric-format-border-rev-diag.svg share/icons/breeze/actions/22/gnumeric-format-border-right.svg share/icons/breeze/actions/22/gnumeric-format-border-thick-bottom.svg share/icons/breeze/actions/22/gnumeric-format-border-thick-outside.svg share/icons/breeze/actions/22/gnumeric-format-border-top-n-bottom.svg share/icons/breeze/actions/22/gnumeric-format-border-top-n-double-bottom.svg share/icons/breeze/actions/22/gnumeric-format-border-top-n-thick-bottom.svg share/icons/breeze/actions/22/gnumeric-format-border-top.svg share/icons/breeze/actions/22/gnumeric-format-percentage.svg share/icons/breeze/actions/22/gnumeric-format-precision-decrease.svg share/icons/breeze/actions/22/gnumeric-format-precision-increase.svg share/icons/breeze/actions/22/gnumeric-format-thousand-separator.svg share/icons/breeze/actions/22/gnumeric-formulaguru.svg share/icons/breeze/actions/22/gnumeric-graphguru.svg share/icons/breeze/actions/22/gnumeric-group.svg share/icons/breeze/actions/22/gnumeric-link-add.svg share/icons/breeze/actions/22/gnumeric-link-delete.svg share/icons/breeze/actions/22/gnumeric-link-edit.svg share/icons/breeze/actions/22/gnumeric-link-email.svg share/icons/breeze/actions/22/gnumeric-link-external.svg share/icons/breeze/actions/22/gnumeric-link-internal.svg share/icons/breeze/actions/22/gnumeric-link-url.svg share/icons/breeze/actions/22/gnumeric-object-arrow.svg share/icons/breeze/actions/22/gnumeric-object-button.svg share/icons/breeze/actions/22/gnumeric-object-checkbox.svg share/icons/breeze/actions/22/gnumeric-object-combo.svg share/icons/breeze/actions/22/gnumeric-object-ellipse.svg share/icons/breeze/actions/22/gnumeric-object-label.svg share/icons/breeze/actions/22/gnumeric-object-line.svg share/icons/breeze/actions/22/gnumeric-object-list.svg share/icons/breeze/actions/22/gnumeric-object-rectangle.svg share/icons/breeze/actions/22/gnumeric-object-scrollbar.svg share/icons/breeze/actions/22/gnumeric-object-spinbutton.svg share/icons/breeze/actions/22/gnumeric-pagesetup-hf-cell.svg share/icons/breeze/actions/22/gnumeric-pagesetup-hf-page.svg share/icons/breeze/actions/22/gnumeric-pagesetup-hf-pages.svg share/icons/breeze/actions/22/gnumeric-pagesetup-hf-time.svg share/icons/breeze/actions/22/gnumeric-protection-no.svg share/icons/breeze/actions/22/gnumeric-protection-yes.svg share/icons/breeze/actions/22/gnumeric-row-add.svg share/icons/breeze/actions/22/gnumeric-row-delete.svg share/icons/breeze/actions/22/gnumeric-row-hide.svg share/icons/breeze/actions/22/gnumeric-row-size.svg share/icons/breeze/actions/22/gnumeric-row-unhide.svg share/icons/breeze/actions/22/gnumeric-subscript.svg share/icons/breeze/actions/22/gnumeric-superscript.svg share/icons/breeze/actions/22/gnumeric-ungroup.svg share/icons/breeze/actions/22/gnumeric-visible.svg share/icons/breeze/actions/22/go-bottom.svg share/icons/breeze/actions/22/go-down-search.svg share/icons/breeze/actions/22/go-down-skip.svg share/icons/breeze/actions/22/go-down.svg share/icons/breeze/actions/22/go-first-view-page.svg share/icons/breeze/actions/22/go-first-view.svg share/icons/breeze/actions/22/go-first.svg share/icons/breeze/actions/22/go-home-large.svg share/icons/breeze/actions/22/go-home.svg share/icons/breeze/actions/22/go-jump-declaration.svg share/icons/breeze/actions/22/go-jump-definition.svg share/icons/breeze/actions/22/go-jump-locationbar.svg share/icons/breeze/actions/22/go-jump-today.svg share/icons/breeze/actions/22/go-jump.svg share/icons/breeze/actions/22/go-last-view-page.svg share/icons/breeze/actions/22/go-last-view.svg share/icons/breeze/actions/22/go-last.svg share/icons/breeze/actions/22/go-next-context.svg share/icons/breeze/actions/22/go-next-skip.svg share/icons/breeze/actions/22/go-next-use.svg share/icons/breeze/actions/22/go-next-view-page.svg share/icons/breeze/actions/22/go-next-view.svg share/icons/breeze/actions/22/go-next.svg share/icons/breeze/actions/22/go-parent-folder.svg share/icons/breeze/actions/22/go-previous-context.svg share/icons/breeze/actions/22/go-previous-skip.svg share/icons/breeze/actions/22/go-previous-use.svg share/icons/breeze/actions/22/go-previous-view-page.svg share/icons/breeze/actions/22/go-previous-view.svg share/icons/breeze/actions/22/go-previous.svg share/icons/breeze/actions/22/go-top.svg share/icons/breeze/actions/22/go-up-search.svg share/icons/breeze/actions/22/go-up-skip.svg share/icons/breeze/actions/22/go-up.svg share/icons/breeze/actions/22/gpg.svg share/icons/breeze/actions/22/gpgsm.svg share/icons/breeze/actions/22/gps.svg share/icons/breeze/actions/22/gradient.svg share/icons/breeze/actions/22/graphics.svg share/icons/breeze/actions/22/grid-rectangular.svg share/icons/breeze/actions/22/group-delete.svg share/icons/breeze/actions/22/group-edit.svg share/icons/breeze/actions/22/group-new.svg share/icons/breeze/actions/22/group.svg share/icons/breeze/actions/22/gtk-add.svg share/icons/breeze/actions/22/gtk-apply.svg share/icons/breeze/actions/22/gtk-authentication.svg share/icons/breeze/actions/22/gtk-bold.svg share/icons/breeze/actions/22/gtk-cancel.svg share/icons/breeze/actions/22/gtk-cdrom.svg share/icons/breeze/actions/22/gtk-clear.svg share/icons/breeze/actions/22/gtk-close.svg share/icons/breeze/actions/22/gtk-color-picker.svg share/icons/breeze/actions/22/gtk-connect.svg share/icons/breeze/actions/22/gtk-convert.svg share/icons/breeze/actions/22/gtk-disconnect.svg share/icons/breeze/actions/22/gtk-edit.svg share/icons/breeze/actions/22/gtk-execute.svg share/icons/breeze/actions/22/gtk-floppy.svg share/icons/breeze/actions/22/gtk-index.svg share/icons/breeze/actions/22/gtk-no.svg share/icons/breeze/actions/22/gtk-ok.svg share/icons/breeze/actions/22/gtk-preferences.svg share/icons/breeze/actions/22/gtk-properties.svg share/icons/breeze/actions/22/gtk-quit.svg share/icons/breeze/actions/22/gtk-select-color.svg share/icons/breeze/actions/22/gtk-select-font.svg share/icons/breeze/actions/22/gtk-stop.svg share/icons/breeze/actions/22/gtk-tab-duplicate.svg share/icons/breeze/actions/22/gtk-tab-new.svg share/icons/breeze/actions/22/gtk-undelete-ltr.svg share/icons/breeze/actions/22/gtk-undelete-rtl.svg share/icons/breeze/actions/22/gtk-yes.svg share/icons/breeze/actions/22/guides.svg share/icons/breeze/actions/22/hand.svg share/icons/breeze/actions/22/handle-left.svg share/icons/breeze/actions/22/handle-move.svg share/icons/breeze/actions/22/handle-right.svg share/icons/breeze/actions/22/handle-sort.svg share/icons/breeze/actions/22/headphones.svg share/icons/breeze/actions/22/help-about.svg share/icons/breeze/actions/22/help-contents.svg share/icons/breeze/actions/22/help-contextual.svg share/icons/breeze/actions/22/help-donate.svg share/icons/breeze/actions/22/help-feedback.svg share/icons/breeze/actions/22/help-hint.svg share/icons/breeze/actions/22/help-keybord-shortcuts.svg share/icons/breeze/actions/22/help-latex.svg share/icons/breeze/actions/22/help-whatsthis.svg share/icons/breeze/actions/22/hexagon-shape.svg share/icons/breeze/actions/22/hide_table_column.svg share/icons/breeze/actions/22/hide_table_row.svg share/icons/breeze/actions/22/hidemouse.svg share/icons/breeze/actions/22/high-brightness.svg share/icons/breeze/actions/22/hint.svg share/icons/breeze/actions/22/hotpixels.svg share/icons/breeze/actions/22/identity.svg share/icons/breeze/actions/22/im-aim.svg share/icons/breeze/actions/22/im-ban-kick-user.svg share/icons/breeze/actions/22/im-ban-user.svg share/icons/breeze/actions/22/im-facebook.svg share/icons/breeze/actions/22/im-gadugadu.svg share/icons/breeze/actions/22/im-google-talk.svg share/icons/breeze/actions/22/im-google.svg share/icons/breeze/actions/22/im-icq.svg share/icons/breeze/actions/22/im-identi.ca.svg share/icons/breeze/actions/22/im-invisible-user.svg share/icons/breeze/actions/22/im-irc.svg share/icons/breeze/actions/22/im-jabber.svg share/icons/breeze/actions/22/im-kick-user.svg share/icons/breeze/actions/22/im-msn.svg share/icons/breeze/actions/22/im-qq.svg share/icons/breeze/actions/22/im-skype.svg share/icons/breeze/actions/22/im-twitter.svg share/icons/breeze/actions/22/im-user-away.svg share/icons/breeze/actions/22/im-user-busy.svg share/icons/breeze/actions/22/im-user-offline.svg share/icons/breeze/actions/22/im-user-online.svg share/icons/breeze/actions/22/im-user.svg share/icons/breeze/actions/22/im-yahoo.svg share/icons/breeze/actions/22/im-youtube.svg share/icons/breeze/actions/22/imagecomment.svg share/icons/breeze/actions/22/initial_state.svg share/icons/breeze/actions/22/inpainting.svg share/icons/breeze/actions/22/input-mouse-click-left.svg share/icons/breeze/actions/22/input-mouse-click-middle.svg share/icons/breeze/actions/22/input-mouse-click-right.svg share/icons/breeze/actions/22/insert-button.svg share/icons/breeze/actions/22/insert-endnote.svg share/icons/breeze/actions/22/insert-footnote.svg share/icons/breeze/actions/22/insert-horizontal-rule.svg share/icons/breeze/actions/22/insert-image.svg share/icons/breeze/actions/22/insert-link.svg share/icons/breeze/actions/22/insert-math-expression.svg share/icons/breeze/actions/22/insert-more-mark.svg share/icons/breeze/actions/22/insert-page-break.svg share/icons/breeze/actions/22/insert-table-of-contents.svg share/icons/breeze/actions/22/insert-table-row.svg share/icons/breeze/actions/22/insert-table.svg share/icons/breeze/actions/22/insert-tableofcontents.svg share/icons/breeze/actions/22/insert-text-frame.svg share/icons/breeze/actions/22/insert-text.svg share/icons/breeze/actions/22/insertcell.svg share/icons/breeze/actions/22/interface.svg share/icons/breeze/actions/22/internet-amarok.svg share/icons/breeze/actions/22/internet-services.svg share/icons/breeze/actions/22/invertimage.svg share/icons/breeze/actions/22/irc-channel-active.svg share/icons/breeze/actions/22/irc-channel-inactive.svg share/icons/breeze/actions/22/irc-close-channel.svg share/icons/breeze/actions/22/irc-join-channel.svg share/icons/breeze/actions/22/irc-operator.svg share/icons/breeze/actions/22/irc-remove-operator.svg share/icons/breeze/actions/22/irc-unvoice.svg share/icons/breeze/actions/22/irc-voice.svg share/icons/breeze/actions/22/item.svg share/icons/breeze/actions/22/itemize.svg share/icons/breeze/actions/22/join.svg share/icons/breeze/actions/22/journal-new.svg share/icons/breeze/actions/22/junction.svg share/icons/breeze/actions/22/kdenlive-add-clip.svg share/icons/breeze/actions/22/kdenlive-add-color-clip.svg share/icons/breeze/actions/22/kdenlive-add-slide-clip.svg share/icons/breeze/actions/22/kdenlive-add-text-clip.svg share/icons/breeze/actions/22/kdenlive-align-bottom.svg share/icons/breeze/actions/22/kdenlive-align-hor.svg share/icons/breeze/actions/22/kdenlive-align-left.svg share/icons/breeze/actions/22/kdenlive-align-none.svg share/icons/breeze/actions/22/kdenlive-align-right.svg share/icons/breeze/actions/22/kdenlive-align-top.svg share/icons/breeze/actions/22/kdenlive-align-vert.svg share/icons/breeze/actions/22/kdenlive-composite.svg share/icons/breeze/actions/22/kdenlive-custom-effect.svg share/icons/breeze/actions/22/kdenlive-deleffect.svg share/icons/breeze/actions/22/kdenlive-down.svg share/icons/breeze/actions/22/kdenlive-hide-audio.svg share/icons/breeze/actions/22/kdenlive-hide-video.svg share/icons/breeze/actions/22/kdenlive-insert-edit.svg share/icons/breeze/actions/22/kdenlive-insert-rect.svg share/icons/breeze/actions/22/kdenlive-insert-unicode.svg share/icons/breeze/actions/22/kdenlive-lock.svg share/icons/breeze/actions/22/kdenlive-menu.svg share/icons/breeze/actions/22/kdenlive-no-composite.svg share/icons/breeze/actions/22/kdenlive-normal-edit.svg share/icons/breeze/actions/22/kdenlive-object-height.svg share/icons/breeze/actions/22/kdenlive-object-width.svg share/icons/breeze/actions/22/kdenlive-overwrite-edit.svg share/icons/breeze/actions/22/kdenlive-ripple.svg share/icons/breeze/actions/22/kdenlive-rolling.svg share/icons/breeze/actions/22/kdenlive-select-all.svg share/icons/breeze/actions/22/kdenlive-select-images.svg share/icons/breeze/actions/22/kdenlive-select-rects.svg share/icons/breeze/actions/22/kdenlive-select-texts.svg share/icons/breeze/actions/22/kdenlive-select-tool.svg share/icons/breeze/actions/22/kdenlive-show-audio.svg share/icons/breeze/actions/22/kdenlive-show-audiothumb.svg share/icons/breeze/actions/22/kdenlive-show-markers.svg share/icons/breeze/actions/22/kdenlive-show-video.svg share/icons/breeze/actions/22/kdenlive-show-videothumb.svg share/icons/breeze/actions/22/kdenlive-slide.svg share/icons/breeze/actions/22/kdenlive-slip.svg share/icons/breeze/actions/22/kdenlive-snap.svg share/icons/breeze/actions/22/kdenlive-spacer-tool.svg share/icons/breeze/actions/22/kdenlive-split-audio.svg share/icons/breeze/actions/22/kdenlive-track_has_effect.svg share/icons/breeze/actions/22/kdenlive-unlock.svg share/icons/breeze/actions/22/kdenlive-unselect-all.svg share/icons/breeze/actions/22/kdenlive-up.svg share/icons/breeze/actions/22/kdenlive-zindex-bottom.svg share/icons/breeze/actions/22/kdenlive-zindex-down.svg share/icons/breeze/actions/22/kdenlive-zindex-top.svg share/icons/breeze/actions/22/kdenlive-zindex-up.svg share/icons/breeze/actions/22/kdenlive-zone-end.svg share/icons/breeze/actions/22/kdenlive-zone-start.svg share/icons/breeze/actions/22/kdenlive-zoom-large.svg share/icons/breeze/actions/22/kdenlive-zoom-small.svg share/icons/breeze/actions/22/kdocumentinfo.svg share/icons/breeze/actions/22/key-enter.svg share/icons/breeze/actions/22/keyframe-add.svg share/icons/breeze/actions/22/keyframe-disable.svg share/icons/breeze/actions/22/keyframe-duplicate.svg share/icons/breeze/actions/22/keyframe-next.svg share/icons/breeze/actions/22/keyframe-previous.svg share/icons/breeze/actions/22/keyframe-record.svg share/icons/breeze/actions/22/keyframe-remove.svg share/icons/breeze/actions/22/keyframe.svg share/icons/breeze/actions/22/kmousetool_off.svg share/icons/breeze/actions/22/kmousetool_on.svg share/icons/breeze/actions/22/kmouth-phrase-new.svg share/icons/breeze/actions/22/kmouth-phrase.svg share/icons/breeze/actions/22/kmouth-phrasebook.svg share/icons/breeze/actions/22/kmouth-phresebook-new.svg share/icons/breeze/actions/22/knotes_alarm.svg share/icons/breeze/actions/22/knotes_date.svg share/icons/breeze/actions/22/knotes_delete.svg share/icons/breeze/actions/22/know.svg share/icons/breeze/actions/22/kontact-import-wizard.svg share/icons/breeze/actions/22/kontes_close.svg share/icons/breeze/actions/22/kr_combine.svg share/icons/breeze/actions/22/kr_comparedirs.svg share/icons/breeze/actions/22/kr_diskusage.svg share/icons/breeze/actions/22/kr_jumpback.svg share/icons/breeze/actions/22/kr_mountman.svg share/icons/breeze/actions/22/kr_setjumpback.svg share/icons/breeze/actions/22/kr_syncbrowse_off.svg share/icons/breeze/actions/22/kr_syncbrowse_on.svg share/icons/breeze/actions/22/kr_unselect.svg share/icons/breeze/actions/22/kstars_advanced.svg share/icons/breeze/actions/22/kstars_catalog.svg share/icons/breeze/actions/22/kstars_cbound.svg share/icons/breeze/actions/22/kstars_clines.svg share/icons/breeze/actions/22/kstars_cnames.svg share/icons/breeze/actions/22/kstars_colors.svg share/icons/breeze/actions/22/kstars_constellationart.svg share/icons/breeze/actions/22/kstars_deepsky.svg share/icons/breeze/actions/22/kstars_ekos.svg share/icons/breeze/actions/22/kstars_fitsviewer.svg share/icons/breeze/actions/22/kstars_flag.svg share/icons/breeze/actions/22/kstars_grid.svg share/icons/breeze/actions/22/kstars_guides.svg share/icons/breeze/actions/22/kstars_hgrid.svg share/icons/breeze/actions/22/kstars_horizon.svg share/icons/breeze/actions/22/kstars_indi.svg share/icons/breeze/actions/22/kstars_mw.svg share/icons/breeze/actions/22/kstars_planets.svg share/icons/breeze/actions/22/kstars_satellites.svg share/icons/breeze/actions/22/kstars_solarsystem.svg share/icons/breeze/actions/22/kstars_stars.svg share/icons/breeze/actions/22/kstars_supernovae.svg share/icons/breeze/actions/22/kstars_xplanet.svg share/icons/breeze/actions/22/kt-add-feeds.svg share/icons/breeze/actions/22/kt-add-filters.svg share/icons/breeze/actions/22/kt-bandwidth-scheduler.svg share/icons/breeze/actions/22/kt-change-tracker.svg share/icons/breeze/actions/22/kt-check-data.svg share/icons/breeze/actions/22/kt-chunks.svg share/icons/breeze/actions/22/kt-encrypted.svg share/icons/breeze/actions/22/kt-info-widget.svg share/icons/breeze/actions/22/kt-magnet.svg share/icons/breeze/actions/22/kt-pause.svg share/icons/breeze/actions/22/kt-plugins.svg share/icons/breeze/actions/22/kt-queue-manager.svg share/icons/breeze/actions/22/kt-remove-feeds.svg share/icons/breeze/actions/22/kt-remove-filters.svg share/icons/breeze/actions/22/kt-remove.svg share/icons/breeze/actions/22/kt-restore-defaults.svg share/icons/breeze/actions/22/kt-set-max-download-speed.svg share/icons/breeze/actions/22/kt-set-max-upload-speed.svg share/icons/breeze/actions/22/kt-show-statusbar.svg share/icons/breeze/actions/22/kt-speed-limits.svg share/icons/breeze/actions/22/kt-start-all.svg share/icons/breeze/actions/22/kt-start.svg share/icons/breeze/actions/22/kt-stop-all.svg share/icons/breeze/actions/22/kt-stop.svg share/icons/breeze/actions/22/ktnef_extract_all_to.svg share/icons/breeze/actions/22/ktnef_extract_to.svg share/icons/breeze/actions/22/l2h.svg share/icons/breeze/actions/22/label-amarok.svg share/icons/breeze/actions/22/label.svg share/icons/breeze/actions/22/labplot-1x-zoom.svg share/icons/breeze/actions/22/labplot-2x-zoom.svg share/icons/breeze/actions/22/labplot-3x-zoom.svg share/icons/breeze/actions/22/labplot-4x-zoom.svg share/icons/breeze/actions/22/labplot-5x-zoom.svg share/icons/breeze/actions/22/labplot-TeX-logo.svg share/icons/breeze/actions/22/labplot-auto-scale-all.svg share/icons/breeze/actions/22/labplot-auto-scale-x.svg share/icons/breeze/actions/22/labplot-auto-scale-y.svg share/icons/breeze/actions/22/labplot-axis-horizontal.svg share/icons/breeze/actions/22/labplot-axis-vertical.svg share/icons/breeze/actions/22/labplot-cursor-arrow.svg share/icons/breeze/actions/22/labplot-editbreaklayout.svg share/icons/breeze/actions/22/labplot-editgrid.svg share/icons/breeze/actions/22/labplot-edithlayout.svg share/icons/breeze/actions/22/labplot-editvlayout.svg share/icons/breeze/actions/22/labplot-format-text-symbol.svg share/icons/breeze/actions/22/labplot-matrix-new.svg share/icons/breeze/actions/22/labplot-matrix.svg share/icons/breeze/actions/22/labplot-plot-axis-points.svg share/icons/breeze/actions/22/labplot-shift-down-y.svg share/icons/breeze/actions/22/labplot-shift-left-x.svg share/icons/breeze/actions/22/labplot-shift-right-x.svg share/icons/breeze/actions/22/labplot-shift-up-y.svg share/icons/breeze/actions/22/labplot-spreadsheet-new.svg share/icons/breeze/actions/22/labplot-spreadsheet.svg share/icons/breeze/actions/22/labplot-transform-move.svg share/icons/breeze/actions/22/labplot-workbook-new.svg share/icons/breeze/actions/22/labplot-workbook.svg share/icons/breeze/actions/22/labplot-worksheet-new.svg share/icons/breeze/actions/22/labplot-worksheet.svg share/icons/breeze/actions/22/labplot-xy-curve-points.svg share/icons/breeze/actions/22/labplot-xy-curve-segments.svg share/icons/breeze/actions/22/labplot-xy-curve.svg share/icons/breeze/actions/22/labplot-xy-equation-curve.svg share/icons/breeze/actions/22/labplot-xy-fit-curve.svg share/icons/breeze/actions/22/labplot-xy-fourier-filter-curve.svg share/icons/breeze/actions/22/labplot-xy-fourier-transform-curve.svg share/icons/breeze/actions/22/labplot-xy-interpolation-curve.svg share/icons/breeze/actions/22/labplot-xy-plot-four-axes.svg share/icons/breeze/actions/22/labplot-xy-plot-two-axes-centered-origin.svg share/icons/breeze/actions/22/labplot-xy-plot-two-axes-centered.svg share/icons/breeze/actions/22/labplot-xy-plot-two-axes.svg share/icons/breeze/actions/22/labplot-xy-smoothing-curve.svg share/icons/breeze/actions/22/labplot-zoom-in-x.svg share/icons/breeze/actions/22/labplot-zoom-in-y.svg share/icons/breeze/actions/22/labplot-zoom-out-x.svg share/icons/breeze/actions/22/labplot-zoom-out-y.svg share/icons/breeze/actions/22/labplot-zoom-select-x.svg share/icons/breeze/actions/22/labplot-zoom-select-y.svg share/icons/breeze/actions/22/labplot-zoom-select.svg share/icons/breeze/actions/22/language-chooser.svg share/icons/breeze/actions/22/languages.svg share/icons/breeze/actions/22/latex-config.svg share/icons/breeze/actions/22/latex.svg share/icons/breeze/actions/22/layer-visible-off.svg share/icons/breeze/actions/22/layer-visible-on.svg share/icons/breeze/actions/22/lensautofix.svg share/icons/breeze/actions/22/lensdistortion.svg share/icons/breeze/actions/22/libpeas-plugin.svg share/icons/breeze/actions/22/license.svg share/icons/breeze/actions/22/lighttable.svg share/icons/breeze/actions/22/lighttableadd.svg share/icons/breeze/actions/22/lilypond.svg share/icons/breeze/actions/22/linear.svg share/icons/breeze/actions/22/lines-connector.svg share/icons/breeze/actions/22/link.svg share/icons/breeze/actions/22/list-add-font.svg share/icons/breeze/actions/22/list-add-user.svg share/icons/breeze/actions/22/list-add.svg share/icons/breeze/actions/22/list-remove-user.svg share/icons/breeze/actions/22/list-remove.svg share/icons/breeze/actions/22/list-resource-add.svg share/icons/breeze/actions/22/lock.svg share/icons/breeze/actions/22/love-amarok.svg share/icons/breeze/actions/22/love.svg share/icons/breeze/actions/22/low-brightness.svg share/icons/breeze/actions/22/mail-attachment.svg share/icons/breeze/actions/22/mail-deleted.svg share/icons/breeze/actions/22/mail-download-later.svg share/icons/breeze/actions/22/mail-download-now.svg share/icons/breeze/actions/22/mail-encrypted-full.svg share/icons/breeze/actions/22/mail-encrypted-part.svg share/icons/breeze/actions/22/mail-encrypted.svg share/icons/breeze/actions/22/mail-flag.svg share/icons/breeze/actions/22/mail-forward.svg share/icons/breeze/actions/22/mail-forwarded-replied.svg share/icons/breeze/actions/22/mail-forwarded.svg share/icons/breeze/actions/22/mail-invitation.svg share/icons/breeze/actions/22/mail-mark-important.svg share/icons/breeze/actions/22/mail-mark-junk.svg share/icons/breeze/actions/22/mail-mark-notjunk.svg share/icons/breeze/actions/22/mail-mark-read.svg share/icons/breeze/actions/22/mail-mark-task.svg share/icons/breeze/actions/22/mail-mark-unread-new.svg share/icons/breeze/actions/22/mail-mark-unread.svg share/icons/breeze/actions/22/mail-meeting-request-reply.svg share/icons/breeze/actions/22/mail-message-new-list.svg share/icons/breeze/actions/22/mail-message-new.svg share/icons/breeze/actions/22/mail-message.svg share/icons/breeze/actions/22/mail-queue.svg share/icons/breeze/actions/22/mail-queued.svg share/icons/breeze/actions/22/mail-read.svg share/icons/breeze/actions/22/mail-receive.svg share/icons/breeze/actions/22/mail-replied.svg share/icons/breeze/actions/22/mail-reply-all.svg share/icons/breeze/actions/22/mail-reply-custom-all.svg share/icons/breeze/actions/22/mail-reply-custom.svg share/icons/breeze/actions/22/mail-reply-list.svg share/icons/breeze/actions/22/mail-reply-sender.svg share/icons/breeze/actions/22/mail-send.svg share/icons/breeze/actions/22/mail-sent.svg share/icons/breeze/actions/22/mail-signature-unknown.svg share/icons/breeze/actions/22/mail-signed-full.svg share/icons/breeze/actions/22/mail-signed-fully.svg share/icons/breeze/actions/22/mail-signed-part.svg share/icons/breeze/actions/22/mail-signed-verified.svg share/icons/breeze/actions/22/mail-signed.svg share/icons/breeze/actions/22/mail-tagged.svg share/icons/breeze/actions/22/mail-task.svg share/icons/breeze/actions/22/mail-thread-ignored.svg share/icons/breeze/actions/22/mail-thread-watch.svg share/icons/breeze/actions/22/mail-unread-new.svg share/icons/breeze/actions/22/mail-unread.svg share/icons/breeze/actions/22/makeidx.svg share/icons/breeze/actions/22/map-flat.svg share/icons/breeze/actions/22/map-globe.svg share/icons/breeze/actions/22/map-gnomonic.svg share/icons/breeze/actions/22/map-mercator.svg share/icons/breeze/actions/22/markasblank.svg share/icons/breeze/actions/22/math0.svg share/icons/breeze/actions/22/mathmode.svg share/icons/breeze/actions/22/measure.svg share/icons/breeze/actions/22/media-album-cover-manager-amarok.svg share/icons/breeze/actions/22/media-album-cover.svg share/icons/breeze/actions/22/media-album-repeat-amarok.svg share/icons/breeze/actions/22/media-album-track.svg share/icons/breeze/actions/22/media-eject.svg share/icons/breeze/actions/22/media-mount.svg share/icons/breeze/actions/22/media-playback-pause.svg share/icons/breeze/actions/22/media-playback-start.svg share/icons/breeze/actions/22/media-playback-stop.svg share/icons/breeze/actions/22/media-playlist-append.svg share/icons/breeze/actions/22/media-playlist-normal.svg share/icons/breeze/actions/22/media-playlist-play.svg share/icons/breeze/actions/22/media-playlist-repeat-song.svg share/icons/breeze/actions/22/media-playlist-repeat.svg share/icons/breeze/actions/22/media-playlist-shuffle.svg share/icons/breeze/actions/22/media-random-albums-amarok.svg share/icons/breeze/actions/22/media-random-tracks-amarok.svg share/icons/breeze/actions/22/media-record.svg share/icons/breeze/actions/22/media-repeat-album-amarok.svg share/icons/breeze/actions/22/media-repeat-all.svg share/icons/breeze/actions/22/media-repeat-none.svg share/icons/breeze/actions/22/media-repeat-playlist-amarok.svg share/icons/breeze/actions/22/media-repeat-single.svg share/icons/breeze/actions/22/media-repeat-track-amarok.svg share/icons/breeze/actions/22/media-seek-backward.svg share/icons/breeze/actions/22/media-seek-forward.svg share/icons/breeze/actions/22/media-show-active-track-amarok.svg share/icons/breeze/actions/22/media-skip-backward.svg share/icons/breeze/actions/22/media-skip-forward.svg share/icons/breeze/actions/22/media-standard-track-progression-amarok.svg share/icons/breeze/actions/22/media-track-add-amarok.svg share/icons/breeze/actions/22/media-track-edit-amarok.svg share/icons/breeze/actions/22/media-track-queue-amarok.svg share/icons/breeze/actions/22/media-track-remove-amarok.svg share/icons/breeze/actions/22/media-track-show-active.svg share/icons/breeze/actions/22/medskip.svg share/icons/breeze/actions/22/meeting-attending-tentative.svg share/icons/breeze/actions/22/meeting-attending.svg share/icons/breeze/actions/22/meeting-participant-no-response.svg share/icons/breeze/actions/22/meeting-participant-request-response.svg share/icons/breeze/actions/22/menu_new.svg share/icons/breeze/actions/22/menu_new_sep.svg share/icons/breeze/actions/22/merge.svg share/icons/breeze/actions/22/messagebox_warning.svg share/icons/breeze/actions/22/milestone.svg share/icons/breeze/actions/22/minuet-chords.svg share/icons/breeze/actions/22/minuet-intervals.svg share/icons/breeze/actions/22/minuet-rhythms.svg share/icons/breeze/actions/22/minuet-scales.svg share/icons/breeze/actions/22/mode1.svg share/icons/breeze/actions/22/mode2.svg share/icons/breeze/actions/22/mode3.svg share/icons/breeze/actions/22/mode4.svg share/icons/breeze/actions/22/mode5.svg share/icons/breeze/actions/22/modified.svg share/icons/breeze/actions/22/motion_path_animations.svg share/icons/breeze/actions/22/mpost.svg share/icons/breeze/actions/22/msgid2msgstr.svg share/icons/breeze/actions/22/multirow.svg share/icons/breeze/actions/22/music-amarok.svg share/icons/breeze/actions/22/music-note-16th.svg share/icons/breeze/actions/22/network-connect.svg share/icons/breeze/actions/22/network-disconnect.svg share/icons/breeze/actions/22/new-audio-alarm.svg share/icons/breeze/actions/22/new-command-alarm.svg share/icons/breeze/actions/22/newline.svg share/icons/breeze/actions/22/news-subscribe.svg share/icons/breeze/actions/22/news-unsubscribe.svg share/icons/breeze/actions/22/nextfuzzy.svg share/icons/breeze/actions/22/nextfuzzyuntrans.svg share/icons/breeze/actions/22/nextuntranslated.svg share/icons/breeze/actions/22/nocover.svg share/icons/breeze/actions/22/node-add.svg share/icons/breeze/actions/22/node-break.svg share/icons/breeze/actions/22/node-delete-segment.svg share/icons/breeze/actions/22/node-delete.svg share/icons/breeze/actions/22/node-join-segment.svg share/icons/breeze/actions/22/node-join.svg share/icons/breeze/actions/22/node-segment-curve.svg share/icons/breeze/actions/22/node-segment-line.svg share/icons/breeze/actions/22/node-transform.svg share/icons/breeze/actions/22/node-type-auto-smooth.svg share/icons/breeze/actions/22/node-type-cusp.svg share/icons/breeze/actions/22/node-type-smooth.svg share/icons/breeze/actions/22/node-type-symmetric.svg share/icons/breeze/actions/22/node.svg share/icons/breeze/actions/22/noisereduction.svg share/icons/breeze/actions/22/note.svg share/icons/breeze/actions/22/notifications-disabled.svg share/icons/breeze/actions/22/notifications.svg share/icons/breeze/actions/22/nroot.svg share/icons/breeze/actions/22/object-align-horizontal-center-calligra.svg share/icons/breeze/actions/22/object-align-horizontal-left-calligra.svg share/icons/breeze/actions/22/object-align-horizontal-right-calligra.svg share/icons/breeze/actions/22/object-align-vertical-bottom-calligra.svg share/icons/breeze/actions/22/object-align-vertical-bottom-top-calligra.svg share/icons/breeze/actions/22/object-align-vertical-center-calligra.svg share/icons/breeze/actions/22/object-align-vertical-top-calligra.svg share/icons/breeze/actions/22/object-columns.svg share/icons/breeze/actions/22/object-flip-horizontal.svg share/icons/breeze/actions/22/object-flip-vertical.svg share/icons/breeze/actions/22/object-group-calligra.svg share/icons/breeze/actions/22/object-group.svg share/icons/breeze/actions/22/object-locked.svg share/icons/breeze/actions/22/object-order-back-calligra.svg share/icons/breeze/actions/22/object-order-back.svg share/icons/breeze/actions/22/object-order-front-calligra.svg share/icons/breeze/actions/22/object-order-front.svg share/icons/breeze/actions/22/object-order-lower-calligra.svg share/icons/breeze/actions/22/object-order-lower.svg share/icons/breeze/actions/22/object-order-raise-calligra.svg share/icons/breeze/actions/22/object-order-raise.svg share/icons/breeze/actions/22/object-rotate-left.svg share/icons/breeze/actions/22/object-rotate-right.svg share/icons/breeze/actions/22/object-rows.svg share/icons/breeze/actions/22/object-to-path.svg share/icons/breeze/actions/22/object-ungroup-calligra.svg share/icons/breeze/actions/22/object-ungroup.svg share/icons/breeze/actions/22/object-unlocked.svg share/icons/breeze/actions/22/object.svg share/icons/breeze/actions/22/object_node.svg share/icons/breeze/actions/22/office-chart-area-focus-peak-node.svg share/icons/breeze/actions/22/office-chart-area-percentage.svg share/icons/breeze/actions/22/office-chart-area-stacked.svg share/icons/breeze/actions/22/office-chart-area.svg share/icons/breeze/actions/22/office-chart-bar-percentage.svg share/icons/breeze/actions/22/office-chart-bar-stacked.svg share/icons/breeze/actions/22/office-chart-bar.svg share/icons/breeze/actions/22/office-chart-line-forecast.svg share/icons/breeze/actions/22/office-chart-line-percentage.svg share/icons/breeze/actions/22/office-chart-line-stacked.svg share/icons/breeze/actions/22/office-chart-line.svg share/icons/breeze/actions/22/office-chart-pie.svg share/icons/breeze/actions/22/office-chart-polar-stacked.svg share/icons/breeze/actions/22/office-chart-polar.svg share/icons/breeze/actions/22/office-chart-ring.svg share/icons/breeze/actions/22/office-chart-scatter.svg share/icons/breeze/actions/22/office-report.svg share/icons/breeze/actions/22/offline-settings.svg share/icons/breeze/actions/22/offline.svg share/icons/breeze/actions/22/oilpaint.svg share/icons/breeze/actions/22/online.svg share/icons/breeze/actions/22/open-for-editing.svg share/icons/breeze/actions/22/open-menu-symbolic.svg share/icons/breeze/actions/22/output_win.svg share/icons/breeze/actions/22/overexposure.svg share/icons/breeze/actions/22/overflow-menu-left.svg share/icons/breeze/actions/22/overflow-menu-right.svg share/icons/breeze/actions/22/overflow-menu.svg share/icons/breeze/actions/22/package.svg share/icons/breeze/actions/22/page-2sides.svg share/icons/breeze/actions/22/page-3sides.svg share/icons/breeze/actions/22/page-4sides.svg share/icons/breeze/actions/22/page-simple.svg share/icons/breeze/actions/22/page-zoom.svg share/icons/breeze/actions/22/paint-none.svg share/icons/breeze/actions/22/paper-color.svg share/icons/breeze/actions/22/password-copy.svg share/icons/breeze/actions/22/password-generate.svg share/icons/breeze/actions/22/password-show-off.svg share/icons/breeze/actions/22/password-show-on.svg share/icons/breeze/actions/22/path-clip-edit.svg share/icons/breeze/actions/22/path-effect-parameter-next.svg share/icons/breeze/actions/22/path-mask-edit.svg share/icons/breeze/actions/22/path-mode-bezier.svg share/icons/breeze/actions/22/path-mode-polyline-paraxial.svg share/icons/breeze/actions/22/path-mode-polyline.svg share/icons/breeze/actions/22/path-mode-spiro.svg share/icons/breeze/actions/22/path-reverse.svg share/icons/breeze/actions/22/path-simplify.svg share/icons/breeze/actions/22/pathshape.svg share/icons/breeze/actions/22/pdf-annotations.svg share/icons/breeze/actions/22/pdflatex.svg share/icons/breeze/actions/22/pdftex.svg share/icons/breeze/actions/22/pentagon-shape.svg share/icons/breeze/actions/22/perspective.svg share/icons/breeze/actions/22/photo.svg share/icons/breeze/actions/22/photos-amarok.svg share/icons/breeze/actions/22/pin.svg share/icons/breeze/actions/22/player-time.svg share/icons/breeze/actions/22/player-volume-muted.svg share/icons/breeze/actions/22/player-volume.svg share/icons/breeze/actions/22/playlist-generator.svg share/icons/breeze/actions/22/playlist-sort.svg share/icons/breeze/actions/22/plugins.svg share/icons/breeze/actions/22/podcast-amarok.svg share/icons/breeze/actions/22/pointer.svg share/icons/breeze/actions/22/polygon-add-nodes.svg share/icons/breeze/actions/22/polygon-merge-nodes.svg share/icons/breeze/actions/22/port.svg share/icons/breeze/actions/22/postalcode.svg share/icons/breeze/actions/22/practice-setup.svg share/icons/breeze/actions/22/practice-start.svg share/icons/breeze/actions/22/practice-stop.svg share/icons/breeze/actions/22/precondition.svg share/icons/breeze/actions/22/preferences-indicator-amarok.svg share/icons/breeze/actions/22/preferences-media-playback-amarok.svg share/icons/breeze/actions/22/preferences-other.svg share/icons/breeze/actions/22/preferences-system-symbolic.svg share/icons/breeze/actions/22/preflight-verifier.svg share/icons/breeze/actions/22/presence_away.svg share/icons/breeze/actions/22/presence_offline.svg share/icons/breeze/actions/22/presence_online.svg share/icons/breeze/actions/22/presence_unknown.svg share/icons/breeze/actions/22/prevfuzzy.svg share/icons/breeze/actions/22/prevfuzzyuntrans.svg share/icons/breeze/actions/22/preview-add-zone.svg share/icons/breeze/actions/22/preview-remove-all.svg share/icons/breeze/actions/22/preview-remove-zone.svg share/icons/breeze/actions/22/preview-render-off.svg share/icons/breeze/actions/22/preview-render-on.svg share/icons/breeze/actions/22/preview.svg share/icons/breeze/actions/22/preview_math.svg share/icons/breeze/actions/22/preview_sel.svg share/icons/breeze/actions/22/prevuntranslated.svg share/icons/breeze/actions/22/primarykey_constraint.svg share/icons/breeze/actions/22/process-stop.svg share/icons/breeze/actions/22/project-defaults.svg share/icons/breeze/actions/22/project-development-close-all.svg share/icons/breeze/actions/22/project-development-close.svg share/icons/breeze/actions/22/project-development-new-template.svg share/icons/breeze/actions/22/project-development.svg share/icons/breeze/actions/22/project-open.svg share/icons/breeze/actions/22/project_add.svg share/icons/breeze/actions/22/project_archive.svg share/icons/breeze/actions/22/project_rebuild.svg share/icons/breeze/actions/22/project_remove.svg share/icons/breeze/actions/22/project_show.svg share/icons/breeze/actions/22/projectgrep.svg share/icons/breeze/actions/22/ps2pdf.svg share/icons/breeze/actions/22/qa.svg share/icons/breeze/actions/22/question.svg share/icons/breeze/actions/22/quick.svg share/icons/breeze/actions/22/quickopen-class.svg share/icons/breeze/actions/22/quickopen-file.svg share/icons/breeze/actions/22/quickopen-function.svg share/icons/breeze/actions/22/quickopen.svg share/icons/breeze/actions/22/quickview.svg share/icons/breeze/actions/22/quickwizard.svg share/icons/breeze/actions/22/raindrop.svg share/icons/breeze/actions/22/randomize.svg share/icons/breeze/actions/22/ratiocrop.svg share/icons/breeze/actions/22/realization.svg share/icons/breeze/actions/22/rectangle-shape.svg share/icons/breeze/actions/22/redeyes.svg share/icons/breeze/actions/22/refactor.svg share/icons/breeze/actions/22/refreshstructure.svg share/icons/breeze/actions/22/region.svg share/icons/breeze/actions/22/relation.svg share/icons/breeze/actions/22/relationship.svg share/icons/breeze/actions/22/remove-amarok.svg share/icons/breeze/actions/22/remove-link.svg share/icons/breeze/actions/22/remove.svg share/icons/breeze/actions/22/removecell.svg share/icons/breeze/actions/22/repeat.svg share/icons/breeze/actions/22/resource-calendar-child-insert.svg share/icons/breeze/actions/22/resource-calendar-child.svg share/icons/breeze/actions/22/resource-calendar-insert.svg share/icons/breeze/actions/22/resource-group-new.svg share/icons/breeze/actions/22/resource-group.svg share/icons/breeze/actions/22/restoration.svg share/icons/breeze/actions/22/reverse.svg share/icons/breeze/actions/22/roll.svg share/icons/breeze/actions/22/routeplanning.svg share/icons/breeze/actions/22/rss.svg share/icons/breeze/actions/22/run-build-clean.svg share/icons/breeze/actions/22/run-build-configure.svg share/icons/breeze/actions/22/run-build-file.svg share/icons/breeze/actions/22/run-build-install-root.svg share/icons/breeze/actions/22/run-build-install.svg share/icons/breeze/actions/22/run-build-prune.svg share/icons/breeze/actions/22/run-build.svg share/icons/breeze/actions/22/run-clean.svg share/icons/breeze/actions/22/run-install.svg share/icons/breeze/actions/22/scriptnew.svg share/icons/breeze/actions/22/scriptopen.svg share/icons/breeze/actions/22/secure-card.svg share/icons/breeze/actions/22/select-rectangular.svg share/icons/breeze/actions/22/select.svg share/icons/breeze/actions/22/selection.svg share/icons/breeze/actions/22/send_signal.svg share/icons/breeze/actions/22/services.svg share/icons/breeze/actions/22/set-language.svg share/icons/breeze/actions/22/settings-configure.svg share/icons/breeze/actions/22/shallow-history.svg share/icons/breeze/actions/22/shape-choose.svg share/icons/breeze/actions/22/shape-cuboid.svg share/icons/breeze/actions/22/shapes.svg share/icons/breeze/actions/22/sharpenimage.svg share/icons/breeze/actions/22/shear.svg share/icons/breeze/actions/22/show-all-effects.svg share/icons/breeze/actions/22/show-gpu-effects.svg share/icons/breeze/actions/22/show-menu.svg share/icons/breeze/actions/22/show-node-handles.svg share/icons/breeze/actions/22/show-offline.svg share/icons/breeze/actions/22/show-path-outline.svg share/icons/breeze/actions/22/show_table_column.svg share/icons/breeze/actions/22/show_table_row.svg share/icons/breeze/actions/22/shuffle.svg share/icons/breeze/actions/22/sidebar-collapse-left.svg share/icons/breeze/actions/22/sidebar-collapse-right.svg share/icons/breeze/actions/22/sidebar-collapse.svg share/icons/breeze/actions/22/sidebar-expand-left.svg share/icons/breeze/actions/22/sidebar-expand-right.svg share/icons/breeze/actions/22/sidebar-expand.svg share/icons/breeze/actions/22/sidebar-show-symbolic.svg share/icons/breeze/actions/22/similarartists-amarok.svg share/icons/breeze/actions/22/skg-chart-bubble.svg share/icons/breeze/actions/22/skrooge_credit_card.svg share/icons/breeze/actions/22/skrooge_less.svg share/icons/breeze/actions/22/skrooge_more.svg share/icons/breeze/actions/22/skrooge_much_less.svg share/icons/breeze/actions/22/skrooge_much_more.svg share/icons/breeze/actions/22/skrooge_type.svg share/icons/breeze/actions/22/slanted.svg share/icons/breeze/actions/22/smallclock.svg share/icons/breeze/actions/22/smallfrac.svg share/icons/breeze/actions/22/smallskip.svg share/icons/breeze/actions/22/smartnewline.svg share/icons/breeze/actions/22/smiley-add.svg share/icons/breeze/actions/22/smiley-shape.svg share/icons/breeze/actions/22/smiley.svg share/icons/breeze/actions/22/smooth.svg share/icons/breeze/actions/22/snap-angle.svg share/icons/breeze/actions/22/snap-bounding-box-center.svg share/icons/breeze/actions/22/snap-bounding-box-corners.svg share/icons/breeze/actions/22/snap-bounding-box-edges.svg share/icons/breeze/actions/22/snap-bounding-box-midpoints.svg share/icons/breeze/actions/22/snap-bounding-box.svg share/icons/breeze/actions/22/snap-extension.svg share/icons/breeze/actions/22/snap-grid-guide-intersections.svg share/icons/breeze/actions/22/snap-guideline.svg share/icons/breeze/actions/22/snap-intersection.svg share/icons/breeze/actions/22/snap-node.svg share/icons/breeze/actions/22/snap-nodes-center.svg share/icons/breeze/actions/22/snap-nodes-cusp.svg share/icons/breeze/actions/22/snap-nodes-intersection.svg share/icons/breeze/actions/22/snap-nodes-midpoint.svg share/icons/breeze/actions/22/snap-nodes-path.svg share/icons/breeze/actions/22/snap-nodes-rotation-center.svg share/icons/breeze/actions/22/snap-nodes-smooth.svg share/icons/breeze/actions/22/snap-orthogonal.svg share/icons/breeze/actions/22/snap-page.svg share/icons/breeze/actions/22/snap-text-baseline.svg share/icons/breeze/actions/22/snap.svg share/icons/breeze/actions/22/social.svg share/icons/breeze/actions/22/sort-name.svg share/icons/breeze/actions/22/sort-presence.svg share/icons/breeze/actions/22/sort_incr.svg share/icons/breeze/actions/22/speaker.svg share/icons/breeze/actions/22/special_paste.svg share/icons/breeze/actions/22/specific-setup.svg share/icons/breeze/actions/22/speedometer.svg share/icons/breeze/actions/22/spiral-shape.svg share/icons/breeze/actions/22/split.svg share/icons/breeze/actions/22/spreadsheetshape.svg share/icons/breeze/actions/22/sqrt.svg share/icons/breeze/actions/22/standard-connector.svg share/icons/breeze/actions/22/star-shape.svg share/icons/breeze/actions/22/start-over.svg share/icons/breeze/actions/22/state-fork.svg share/icons/breeze/actions/22/stateshape.svg share/icons/breeze/actions/22/statetool.svg share/icons/breeze/actions/22/step_object_Anchor.svg share/icons/breeze/actions/22/step_object_Box.svg share/icons/breeze/actions/22/step_object_ChargedParticle.svg share/icons/breeze/actions/22/step_object_CircularMotor.svg share/icons/breeze/actions/22/step_object_Controller.svg share/icons/breeze/actions/22/step_object_CoulombForce.svg share/icons/breeze/actions/22/step_object_Disk.svg share/icons/breeze/actions/22/step_object_Gas.svg share/icons/breeze/actions/22/step_object_GasParticle.svg share/icons/breeze/actions/22/step_object_Graph.svg share/icons/breeze/actions/22/step_object_GravitationForce.svg share/icons/breeze/actions/22/step_object_LinearMotor.svg share/icons/breeze/actions/22/step_object_Meter.svg share/icons/breeze/actions/22/step_object_Note.svg share/icons/breeze/actions/22/step_object_Particle.svg share/icons/breeze/actions/22/step_object_Pin.svg share/icons/breeze/actions/22/step_object_Polygon.svg share/icons/breeze/actions/22/step_object_Rope.svg share/icons/breeze/actions/22/step_object_SoftBody.svg share/icons/breeze/actions/22/step_object_Spring.svg share/icons/breeze/actions/22/step_object_Stick.svg share/icons/breeze/actions/22/step_object_Tracer.svg share/icons/breeze/actions/22/step_object_WeightForce.svg share/icons/breeze/actions/22/stickers.svg share/icons/breeze/actions/22/story-editor.svg share/icons/breeze/actions/22/straight-connector.svg share/icons/breeze/actions/22/stroke-cap-bevel.svg share/icons/breeze/actions/22/stroke-cap-butt.svg share/icons/breeze/actions/22/stroke-cap-miter.svg share/icons/breeze/actions/22/stroke-cap-round.svg share/icons/breeze/actions/22/stroke-cap-square.svg share/icons/breeze/actions/22/stroke-join-bevel.svg share/icons/breeze/actions/22/stroke-join-miter.svg share/icons/breeze/actions/22/stroke-join-round.svg share/icons/breeze/actions/22/stroke-to-path.svg share/icons/breeze/actions/22/strong.svg share/icons/breeze/actions/22/structure.svg share/icons/breeze/actions/22/subsystem.svg share/icons/breeze/actions/22/svn-commit.svg share/icons/breeze/actions/22/svn-update.svg share/icons/breeze/actions/22/swap-panels.svg share/icons/breeze/actions/22/system-hibernate.svg share/icons/breeze/actions/22/system-lock-screen.svg share/icons/breeze/actions/22/system-log-out-rtl.svg share/icons/breeze/actions/22/system-log-out.svg share/icons/breeze/actions/22/system-reboot.svg share/icons/breeze/actions/22/system-run.svg share/icons/breeze/actions/22/system-save-session.svg share/icons/breeze/actions/22/system-search.svg share/icons/breeze/actions/22/system-shutdown.svg share/icons/breeze/actions/22/system-suspend-hibernate.svg share/icons/breeze/actions/22/system-suspend.svg share/icons/breeze/actions/22/system-switch-user.svg share/icons/breeze/actions/22/system-upgrade.svg share/icons/breeze/actions/22/system-users.svg share/icons/breeze/actions/22/tab-close-other.svg share/icons/breeze/actions/22/tab-close.svg share/icons/breeze/actions/22/tab-detach.svg share/icons/breeze/actions/22/tab-duplicate.svg share/icons/breeze/actions/22/tab-new-background.svg share/icons/breeze/actions/22/tab-new.svg share/icons/breeze/actions/22/table.svg share/icons/breeze/actions/22/tag-addressbook.svg share/icons/breeze/actions/22/tag-assigned.svg share/icons/breeze/actions/22/tag-delete.svg share/icons/breeze/actions/22/tag-edit.svg share/icons/breeze/actions/22/tag-events.svg share/icons/breeze/actions/22/tag-folder.svg share/icons/breeze/actions/22/tag-new.svg share/icons/breeze/actions/22/tag-people.svg share/icons/breeze/actions/22/tag-places.svg share/icons/breeze/actions/22/tag-properties.svg share/icons/breeze/actions/22/tag-recents.svg share/icons/breeze/actions/22/tag-reset.svg share/icons/breeze/actions/22/tag.svg share/icons/breeze/actions/22/task-new.svg share/icons/breeze/actions/22/taxes-finances.svg share/icons/breeze/actions/22/template.svg share/icons/breeze/actions/22/texcompiler.svg share/icons/breeze/actions/22/texlion.svg share/icons/breeze/actions/22/text-field-framed.svg share/icons/breeze/actions/22/text-field-frameless.svg share/icons/breeze/actions/22/text-field.svg share/icons/breeze/actions/22/text-flow-into-frame.svg share/icons/breeze/actions/22/text-frame-link.svg share/icons/breeze/actions/22/text-frame-unlink.svg share/icons/breeze/actions/22/text-speak.svg share/icons/breeze/actions/22/text-unflow.svg share/icons/breeze/actions/22/text-wrap.svg share/icons/breeze/actions/22/text_horz_kern.svg share/icons/breeze/actions/22/text_letter_spacing.svg share/icons/breeze/actions/22/text_line_spacing.svg share/icons/breeze/actions/22/text_remove_kerns.svg share/icons/breeze/actions/22/text_rotation.svg share/icons/breeze/actions/22/text_subscript.svg share/icons/breeze/actions/22/text_superscript.svg share/icons/breeze/actions/22/text_vert_kern.svg share/icons/breeze/actions/22/text_word_spacing.svg share/icons/breeze/actions/22/texture.svg share/icons/breeze/actions/22/timeline-extract.svg share/icons/breeze/actions/22/timeline-insert.svg share/icons/breeze/actions/22/timeline-lift.svg share/icons/breeze/actions/22/timeline-overwrite.svg share/icons/breeze/actions/22/timeline-use-zone-off.svg share/icons/breeze/actions/22/timeline-use-zone-on.svg share/icons/breeze/actions/22/tool-animator.svg share/icons/breeze/actions/22/tool-measure.svg share/icons/breeze/actions/22/tool-node-editor.svg share/icons/breeze/actions/22/tool-pointer.svg share/icons/breeze/actions/22/tool-spray.svg share/icons/breeze/actions/22/tool-text.svg share/icons/breeze/actions/22/tool-tweak.svg share/icons/breeze/actions/22/tool_brush.svg share/icons/breeze/actions/22/tool_cellformatting.svg share/icons/breeze/actions/22/tool_color_eraser.svg share/icons/breeze/actions/22/tool_color_picker.svg share/icons/breeze/actions/22/tool_curve.svg share/icons/breeze/actions/22/tool_ellipse.svg share/icons/breeze/actions/22/tool_elliptical_selection.svg share/icons/breeze/actions/22/tool_eraser.svg share/icons/breeze/actions/22/tool_flood_fill.svg share/icons/breeze/actions/22/tool_free_form_selection.svg share/icons/breeze/actions/22/tool_imageeffects.svg share/icons/breeze/actions/22/tool_line.svg share/icons/breeze/actions/22/tool_pagelayout.svg share/icons/breeze/actions/22/tool_pen.svg share/icons/breeze/actions/22/tool_polygon.svg share/icons/breeze/actions/22/tool_polyline.svg share/icons/breeze/actions/22/tool_rect_selection.svg share/icons/breeze/actions/22/tool_rectangle.svg share/icons/breeze/actions/22/tool_references.svg share/icons/breeze/actions/22/tool_review.svg share/icons/breeze/actions/22/tool_rounded_rectangle.svg share/icons/breeze/actions/22/tool_spraycan.svg share/icons/breeze/actions/22/tool_text.svg share/icons/breeze/actions/22/tools-check-spelling.svg share/icons/breeze/actions/22/tools-media-optical-burn-image.svg share/icons/breeze/actions/22/tools-media-optical-burn.svg share/icons/breeze/actions/22/tools-media-optical-copy.svg share/icons/breeze/actions/22/tools-media-optical-erase.svg share/icons/breeze/actions/22/tools-media-optical-format.svg share/icons/breeze/actions/22/tools-report-bug.svg share/icons/breeze/actions/22/tools-rip-audio-cd.svg share/icons/breeze/actions/22/tools-rip-video-cd.svg share/icons/breeze/actions/22/tools-rip-video-dvd.svg share/icons/breeze/actions/22/tools-wizard.svg share/icons/breeze/actions/22/tools.svg share/icons/breeze/actions/22/torrents.svg share/icons/breeze/actions/22/transform-browse.svg share/icons/breeze/actions/22/transform-crop-and-resize.svg share/icons/breeze/actions/22/transform-crop.svg share/icons/breeze/actions/22/transform-move-horizontal.svg share/icons/breeze/actions/22/transform-move-vertical.svg share/icons/breeze/actions/22/transform-move.svg share/icons/breeze/actions/22/transform-rotate.svg share/icons/breeze/actions/22/transform-scale-horizontal.svg share/icons/breeze/actions/22/transform-scale-textbox-points.svg share/icons/breeze/actions/22/transform-scale-vertical.svg share/icons/breeze/actions/22/transform-scale.svg share/icons/breeze/actions/22/transform-shear-down.svg share/icons/breeze/actions/22/transform-shear-left.svg share/icons/breeze/actions/22/transform-shear-right.svg share/icons/breeze/actions/22/transform-shear-up.svg share/icons/breeze/actions/22/transform-skew-horizontal.svg share/icons/breeze/actions/22/transform-skew-vertical.svg share/icons/breeze/actions/22/transsearch.svg share/icons/breeze/actions/22/trash-empty.svg share/icons/breeze/actions/22/trim-margins.svg share/icons/breeze/actions/22/trim-to-selection.svg share/icons/breeze/actions/22/typewriter.svg share/icons/breeze/actions/22/umbr-coll-message-asynchronous.svg share/icons/breeze/actions/22/umbr-coll-message-synchronous.svg share/icons/breeze/actions/22/umbr-message-asynchronous.svg share/icons/breeze/actions/22/umbr-message-found.svg share/icons/breeze/actions/22/umbr-message-lost.svg share/icons/breeze/actions/22/umbr-message-synchronous.svg share/icons/breeze/actions/22/umbrello_diagram_activity.svg share/icons/breeze/actions/22/umbrello_diagram_class.svg share/icons/breeze/actions/22/umbrello_diagram_collaboration.svg share/icons/breeze/actions/22/umbrello_diagram_component.svg share/icons/breeze/actions/22/umbrello_diagram_deployment.svg share/icons/breeze/actions/22/umbrello_diagram_entityrelationship.svg share/icons/breeze/actions/22/umbrello_diagram_sequence.svg share/icons/breeze/actions/22/umbrello_diagram_state.svg share/icons/breeze/actions/22/umbrello_diagram_usecase.svg share/icons/breeze/actions/22/underexposure.svg share/icons/breeze/actions/22/uniassociation.svg share/icons/breeze/actions/22/unique_constraint.svg share/icons/breeze/actions/22/unlock.svg share/icons/breeze/actions/22/unmarkasblank.svg share/icons/breeze/actions/22/upcomingevents-amarok.svg share/icons/breeze/actions/22/upindicator.svg share/icons/breeze/actions/22/upload-media.svg share/icons/breeze/actions/22/usecase.svg share/icons/breeze/actions/22/user-group-delete.svg share/icons/breeze/actions/22/user-group-new.svg share/icons/breeze/actions/22/user-group-properties.svg share/icons/breeze/actions/22/user-identity.svg share/icons/breeze/actions/22/user-others.svg share/icons/breeze/actions/22/user-properties.svg share/icons/breeze/actions/22/user.svg share/icons/breeze/actions/22/username-copy.svg share/icons/breeze/actions/22/vcs-branch-delete.svg share/icons/breeze/actions/22/vcs-branch.svg share/icons/breeze/actions/22/vcs-commit-cvs-cervisia.svg share/icons/breeze/actions/22/vcs-commit.svg share/icons/breeze/actions/22/vcs-diff-cvs-cervisia.svg share/icons/breeze/actions/22/vcs-diff.svg share/icons/breeze/actions/22/vcs-merge-request.svg share/icons/breeze/actions/22/vcs-merge.svg share/icons/breeze/actions/22/vcs-pull.svg share/icons/breeze/actions/22/vcs-push.svg share/icons/breeze/actions/22/vcs-remove-cvs-cervisia.svg share/icons/breeze/actions/22/vcs-stash-pop.svg share/icons/breeze/actions/22/vcs-stash.svg share/icons/breeze/actions/22/vcs-status-cvs-cervisia.svg share/icons/breeze/actions/22/vcs-update-cvs-cervisia.svg share/icons/breeze/actions/22/verb.svg share/icons/breeze/actions/22/verbatim.svg share/icons/breeze/actions/22/videoclip-amarok.svg share/icons/breeze/actions/22/view-bank-add.svg share/icons/breeze/actions/22/view-bank-delete.svg share/icons/breeze/actions/22/view-bank-edit.svg share/icons/breeze/actions/22/view-bank.svg share/icons/breeze/actions/22/view-barcode-add.svg share/icons/breeze/actions/22/view-barcode-qr.svg share/icons/breeze/actions/22/view-barcode.svg share/icons/breeze/actions/22/view-calendar-agenda.svg share/icons/breeze/actions/22/view-calendar-birthday.svg share/icons/breeze/actions/22/view-calendar-day.svg share/icons/breeze/actions/22/view-calendar-holiday.svg share/icons/breeze/actions/22/view-calendar-journal.svg share/icons/breeze/actions/22/view-calendar-list.svg share/icons/breeze/actions/22/view-calendar-month.svg share/icons/breeze/actions/22/view-calendar-special-occasion.svg share/icons/breeze/actions/22/view-calendar-tasks.svg share/icons/breeze/actions/22/view-calendar-time-spent.svg share/icons/breeze/actions/22/view-calendar-timeline.svg share/icons/breeze/actions/22/view-calendar-upcoming-days.svg share/icons/breeze/actions/22/view-calendar-upcoming-events.svg share/icons/breeze/actions/22/view-calendar-wedding-anniversary.svg share/icons/breeze/actions/22/view-calendar-week.svg share/icons/breeze/actions/22/view-calendar-whatsnext.svg share/icons/breeze/actions/22/view-calendar-workweek.svg share/icons/breeze/actions/22/view-calendar.svg share/icons/breeze/actions/22/view-catalog.svg share/icons/breeze/actions/22/view-categories-expenditures.svg share/icons/breeze/actions/22/view-categories-incomes.svg share/icons/breeze/actions/22/view-certificate-add.svg share/icons/breeze/actions/22/view-certificate-export-secret.svg share/icons/breeze/actions/22/view-certificate-export-server.svg share/icons/breeze/actions/22/view-certificate-export.svg share/icons/breeze/actions/22/view-certificate-import.svg share/icons/breeze/actions/22/view-certificate-server-configure.svg share/icons/breeze/actions/22/view-certificate-sign.svg share/icons/breeze/actions/22/view-certificate.svg share/icons/breeze/actions/22/view-close.svg share/icons/breeze/actions/22/view-conversation-balloon.svg share/icons/breeze/actions/22/view-currency-list.svg share/icons/breeze/actions/22/view-file-columns.svg share/icons/breeze/actions/22/view-filter.svg share/icons/breeze/actions/22/view-financial-account-add.svg share/icons/breeze/actions/22/view-financial-account-asset-closed.svg share/icons/breeze/actions/22/view-financial-account-asset.svg share/icons/breeze/actions/22/view-financial-account-cash-closed.svg share/icons/breeze/actions/22/view-financial-account-cash.svg share/icons/breeze/actions/22/view-financial-account-checking-closed.svg share/icons/breeze/actions/22/view-financial-account-checking.svg share/icons/breeze/actions/22/view-financial-account-close.svg share/icons/breeze/actions/22/view-financial-account-closed.svg share/icons/breeze/actions/22/view-financial-account-credit-card-closed.svg share/icons/breeze/actions/22/view-financial-account-credit-card.svg share/icons/breeze/actions/22/view-financial-account-delete.svg share/icons/breeze/actions/22/view-financial-account-edit.svg share/icons/breeze/actions/22/view-financial-account-investment-closed.svg share/icons/breeze/actions/22/view-financial-account-investment-security-closed.svg share/icons/breeze/actions/22/view-financial-account-investment-security.svg share/icons/breeze/actions/22/view-financial-account-investment.svg share/icons/breeze/actions/22/view-financial-account-liability-closed.svg share/icons/breeze/actions/22/view-financial-account-liability.svg share/icons/breeze/actions/22/view-financial-account-loan-closed.svg share/icons/breeze/actions/22/view-financial-account-loan.svg share/icons/breeze/actions/22/view-financial-account-reopen.svg share/icons/breeze/actions/22/view-financial-account-savings-closed.svg share/icons/breeze/actions/22/view-financial-account-savings.svg share/icons/breeze/actions/22/view-financial-account.svg share/icons/breeze/actions/22/view-financial-budget.svg share/icons/breeze/actions/22/view-financial-category-add.svg share/icons/breeze/actions/22/view-financial-category-delete.svg share/icons/breeze/actions/22/view-financial-category-edit.svg share/icons/breeze/actions/22/view-financial-category-expense.svg share/icons/breeze/actions/22/view-financial-category-income.svg share/icons/breeze/actions/22/view-financial-category.svg share/icons/breeze/actions/22/view-financial-list.svg share/icons/breeze/actions/22/view-financial-transfer-reconcile.svg share/icons/breeze/actions/22/view-financial-transfer-reconciled.svg share/icons/breeze/actions/22/view-financial-transfer-unreconciled.svg share/icons/breeze/actions/22/view-form-action.svg share/icons/breeze/actions/22/view-form.svg share/icons/breeze/actions/22/view-fullscreen.svg share/icons/breeze/actions/22/view-grid.svg share/icons/breeze/actions/22/view-group.svg share/icons/breeze/actions/22/view-hidden.svg share/icons/breeze/actions/22/view-history.svg share/icons/breeze/actions/22/view-institution-add.svg share/icons/breeze/actions/22/view-institution-delete.svg share/icons/breeze/actions/22/view-institution-edit.svg share/icons/breeze/actions/22/view-institution.svg share/icons/breeze/actions/22/view-left-close.svg share/icons/breeze/actions/22/view-left-new.svg share/icons/breeze/actions/22/view-list-details.svg share/icons/breeze/actions/22/view-list-icons.svg share/icons/breeze/actions/22/view-list-text.svg share/icons/breeze/actions/22/view-list-tree.svg share/icons/breeze/actions/22/view-media-album-cover.svg share/icons/breeze/actions/22/view-media-artist.svg share/icons/breeze/actions/22/view-media-chart.svg share/icons/breeze/actions/22/view-media-config.svg share/icons/breeze/actions/22/view-media-equalizer.svg share/icons/breeze/actions/22/view-media-favorite.svg share/icons/breeze/actions/22/view-media-genre.svg share/icons/breeze/actions/22/view-media-lyrics.svg share/icons/breeze/actions/22/view-media-playcount.svg share/icons/breeze/actions/22/view-media-playlist.svg share/icons/breeze/actions/22/view-media-publisher.svg share/icons/breeze/actions/22/view-media-recent.svg share/icons/breeze/actions/22/view-media-similarartists.svg share/icons/breeze/actions/22/view-media-title.svg share/icons/breeze/actions/22/view-media-track.svg share/icons/breeze/actions/22/view-media-visualization.svg share/icons/breeze/actions/22/view-multiple-objects.svg share/icons/breeze/actions/22/view-object-histogram-linear.svg share/icons/breeze/actions/22/view-object-histogram-logarithmic.svg share/icons/breeze/actions/22/view-pages-continuous.svg share/icons/breeze/actions/22/view-pages-facing-first-centered.svg share/icons/breeze/actions/22/view-pages-facing.svg share/icons/breeze/actions/22/view-pages-overview.svg share/icons/breeze/actions/22/view-pages-single.svg share/icons/breeze/actions/22/view-pim-calendar.svg share/icons/breeze/actions/22/view-pim-contacts.svg share/icons/breeze/actions/22/view-pim-journal.svg share/icons/breeze/actions/22/view-pim-mail.svg share/icons/breeze/actions/22/view-pim-news.svg share/icons/breeze/actions/22/view-pim-notes.svg share/icons/breeze/actions/22/view-pim-tasks-pending.svg share/icons/breeze/actions/22/view-pim-tasks.svg share/icons/breeze/actions/22/view-presentation.svg share/icons/breeze/actions/22/view-preview.svg share/icons/breeze/actions/22/view-process-all-tree.svg share/icons/breeze/actions/22/view-process-all.svg share/icons/breeze/actions/22/view-process-own.svg share/icons/breeze/actions/22/view-process-system.svg share/icons/breeze/actions/22/view-process-tree.svg share/icons/breeze/actions/22/view-process-users.svg share/icons/breeze/actions/22/view-refresh.svg share/icons/breeze/actions/22/view-resource-calendar.svg share/icons/breeze/actions/22/view-restore.svg share/icons/breeze/actions/22/view-right-close.svg share/icons/breeze/actions/22/view-right-new.svg share/icons/breeze/actions/22/view-services-scripted-amarok.svg share/icons/breeze/actions/22/view-sidetree.svg share/icons/breeze/actions/22/view-sort-ascending-name.svg share/icons/breeze/actions/22/view-sort-ascending.svg share/icons/breeze/actions/22/view-sort-descending-name.svg share/icons/breeze/actions/22/view-sort-descending.svg share/icons/breeze/actions/22/view-sort.svg share/icons/breeze/actions/22/view-split-effect.svg share/icons/breeze/actions/22/view-split-left-right.svg share/icons/breeze/actions/22/view-split-top-bottom.svg share/icons/breeze/actions/22/view-statistics.svg share/icons/breeze/actions/22/view-table-of-contents-ltr.svg share/icons/breeze/actions/22/view-table-of-contents-rtl.svg share/icons/breeze/actions/22/view-task-add.svg share/icons/breeze/actions/22/view-task-child-add.svg share/icons/breeze/actions/22/view-task-child.svg share/icons/breeze/actions/22/view-task.svg share/icons/breeze/actions/22/view-time-schedule-baselined-add.svg share/icons/breeze/actions/22/view-time-schedule-baselined-remove.svg share/icons/breeze/actions/22/view-time-schedule-baselined.svg share/icons/breeze/actions/22/view-time-schedule-calculus.svg share/icons/breeze/actions/22/view-time-schedule-child-insert.svg share/icons/breeze/actions/22/view-time-schedule-edit.svg share/icons/breeze/actions/22/view-time-schedule-insert.svg share/icons/breeze/actions/22/view-time-schedule.svg share/icons/breeze/actions/22/view-unsplit-effect.svg share/icons/breeze/actions/22/view-visible.svg share/icons/breeze/actions/22/view-web-browser-dom-tree.svg share/icons/breeze/actions/22/view_fit_to_page.svg share/icons/breeze/actions/22/viewbib.svg share/icons/breeze/actions/22/viewdvi.svg share/icons/breeze/actions/22/viewhtml.svg share/icons/breeze/actions/22/viewimage.svg share/icons/breeze/actions/22/viewlog.svg share/icons/breeze/actions/22/viewpdf.svg share/icons/breeze/actions/22/viewps.svg share/icons/breeze/actions/22/virtual-desktops.svg share/icons/breeze/actions/22/visibility.svg share/icons/breeze/actions/22/wallet-closed.svg share/icons/breeze/actions/22/wallet-open.svg share/icons/breeze/actions/22/warnnext.svg share/icons/breeze/actions/22/warnprev.svg share/icons/breeze/actions/22/whitebalance.svg share/icons/breeze/actions/22/widget-alternatives.svg share/icons/breeze/actions/22/window-close.svg share/icons/breeze/actions/22/window-duplicate.svg share/icons/breeze/actions/22/window-keep-above.svg share/icons/breeze/actions/22/window-keep-below.svg share/icons/breeze/actions/22/window-maximize.svg share/icons/breeze/actions/22/window-minimize.svg share/icons/breeze/actions/22/window-new.svg share/icons/breeze/actions/22/window-pin.svg share/icons/breeze/actions/22/window-restore.svg share/icons/breeze/actions/22/window-shade.svg share/icons/breeze/actions/22/window-unpin.svg share/icons/breeze/actions/22/window-unshade.svg share/icons/breeze/actions/22/window.svg share/icons/breeze/actions/22/wizard_math.svg share/icons/breeze/actions/22/wizard_pdftools.svg share/icons/breeze/actions/22/wizard_pstools.svg share/icons/breeze/actions/22/wizard_tabular.svg share/icons/breeze/actions/22/x-clementine-album.svg share/icons/breeze/actions/22/x-clementine-albums.svg share/icons/breeze/actions/22/x-clementine-artist.svg share/icons/breeze/actions/22/x-clementine-shuffle.svg share/icons/breeze/actions/22/x-shape-connection.svg share/icons/breeze/actions/22/x-shape-formula.svg share/icons/breeze/actions/22/x-shape-image.svg share/icons/breeze/actions/22/x-shape-text.svg share/icons/breeze/actions/22/xfsm-hibernate.svg share/icons/breeze/actions/22/xml-attribute-delete.svg share/icons/breeze/actions/22/xml-element-new.svg share/icons/breeze/actions/22/xml-node-delete.svg share/icons/breeze/actions/22/xml-node-duplicate.svg share/icons/breeze/actions/22/xml-text-new.svg share/icons/breeze/actions/22/y-zoom-in.svg share/icons/breeze/actions/22/zone-in.svg share/icons/breeze/actions/22/zone-out.svg share/icons/breeze/actions/22/zoom-1-to-2.svg share/icons/breeze/actions/22/zoom-2-to-1.svg share/icons/breeze/actions/22/zoom-all.svg share/icons/breeze/actions/22/zoom-draw.svg share/icons/breeze/actions/22/zoom-fit-best.svg share/icons/breeze/actions/22/zoom-fit-height.svg share/icons/breeze/actions/22/zoom-fit-page.svg share/icons/breeze/actions/22/zoom-fit-selection.svg share/icons/breeze/actions/22/zoom-fit-width.svg share/icons/breeze/actions/22/zoom-in-large.svg share/icons/breeze/actions/22/zoom-in-x.svg share/icons/breeze/actions/22/zoom-in.svg share/icons/breeze/actions/22/zoom-next.svg share/icons/breeze/actions/22/zoom-original.svg share/icons/breeze/actions/22/zoom-out-large.svg share/icons/breeze/actions/22/zoom-out-x.svg share/icons/breeze/actions/22/zoom-out-y.svg share/icons/breeze/actions/22/zoom-out.svg share/icons/breeze/actions/22/zoom-pixels.svg share/icons/breeze/actions/22/zoom-previous.svg share/icons/breeze/actions/22/zoom-select-fit.svg share/icons/breeze/actions/22/zoom-select-x.svg share/icons/breeze/actions/22/zoom-select-y.svg share/icons/breeze/actions/22/zoom-select.svg share/icons/breeze/actions/22/zoom-selection.svg share/icons/breeze/actions/22/zoom.svg share/icons/breeze/actions/22@2x share/icons/breeze/actions/22@3x share/icons/breeze/actions/24/CVnamespace.svg share/icons/breeze/actions/24/Info-amarok.svg share/icons/breeze/actions/24/PrePostCondition.svg share/icons/breeze/actions/24/accept_signal.svg share/icons/breeze/actions/24/accept_time_event.svg share/icons/breeze/actions/24/acrobat.svg share/icons/breeze/actions/24/action-albumfolder-importdir2.svg share/icons/breeze/actions/24/action-rss_tag.svg share/icons/breeze/actions/24/activities.svg share/icons/breeze/actions/24/activity-fork.svg share/icons/breeze/actions/24/actor.svg share/icons/breeze/actions/24/add-placemark.svg share/icons/breeze/actions/24/add-subtitle.svg share/icons/breeze/actions/24/address-book-new.svg share/icons/breeze/actions/24/addressbook-details.svg share/icons/breeze/actions/24/adjustcurves.svg share/icons/breeze/actions/24/adjusthsl.svg share/icons/breeze/actions/24/adjustlevels.svg share/icons/breeze/actions/24/adjustrgb.svg share/icons/breeze/actions/24/aggregation.svg share/icons/breeze/actions/24/akonadi-phone-home.svg share/icons/breeze/actions/24/akonadiconsole.svg share/icons/breeze/actions/24/albumfolder-importdir.svg share/icons/breeze/actions/24/albumfolder-importimages.svg share/icons/breeze/actions/24/albumfolder-new.svg share/icons/breeze/actions/24/albumfolder-properties.svg share/icons/breeze/actions/24/albumfolder-user-trash.svg share/icons/breeze/actions/24/align-horizontal-baseline.svg share/icons/breeze/actions/24/align-horizontal-bottom-out.svg share/icons/breeze/actions/24/align-horizontal-center.svg share/icons/breeze/actions/24/align-horizontal-left-out.svg share/icons/breeze/actions/24/align-horizontal-left-to-anchor.svg share/icons/breeze/actions/24/align-horizontal-left.svg share/icons/breeze/actions/24/align-horizontal-node.svg share/icons/breeze/actions/24/align-horizontal-right-out.svg share/icons/breeze/actions/24/align-horizontal-right-to-anchor.svg share/icons/breeze/actions/24/align-horizontal-right.svg share/icons/breeze/actions/24/align-horizontal-top-out.svg share/icons/breeze/actions/24/align-vertical-baseline.svg share/icons/breeze/actions/24/align-vertical-bottom-out.svg share/icons/breeze/actions/24/align-vertical-bottom-to-anchor.svg share/icons/breeze/actions/24/align-vertical-bottom.svg share/icons/breeze/actions/24/align-vertical-center.svg share/icons/breeze/actions/24/align-vertical-node.svg share/icons/breeze/actions/24/align-vertical-top-out.svg share/icons/breeze/actions/24/align-vertical-top-to-anchor.svg share/icons/breeze/actions/24/align-vertical-top.svg share/icons/breeze/actions/24/amarok_artist.svg share/icons/breeze/actions/24/amarok_cart_add.svg share/icons/breeze/actions/24/amarok_cart_remove.svg share/icons/breeze/actions/24/amarok_cart_view.svg share/icons/breeze/actions/24/amarok_change_language.svg share/icons/breeze/actions/24/amarok_clock.svg share/icons/breeze/actions/24/amarok_lyrics.svg share/icons/breeze/actions/24/amarok_playcount.svg share/icons/breeze/actions/24/amarok_playlist.svg share/icons/breeze/actions/24/amarok_playlist_refresh.svg share/icons/breeze/actions/24/amarok_scripts.svg share/icons/breeze/actions/24/anchor.svg share/icons/breeze/actions/24/animal.svg share/icons/breeze/actions/24/animation-stage.svg share/icons/breeze/actions/24/answer-correct.svg share/icons/breeze/actions/24/answer.svg share/icons/breeze/actions/24/antivignetting.svg share/icons/breeze/actions/24/application-exit.svg share/icons/breeze/actions/24/application-menu.svg share/icons/breeze/actions/24/appointment-new.svg share/icons/breeze/actions/24/approved.svg share/icons/breeze/actions/24/archive-extract.svg share/icons/breeze/actions/24/archive-insert-directory.svg share/icons/breeze/actions/24/archive-insert.svg share/icons/breeze/actions/24/archive-remove.svg share/icons/breeze/actions/24/arrow-down-double.svg share/icons/breeze/actions/24/arrow-down.svg share/icons/breeze/actions/24/arrow-left-double.svg share/icons/breeze/actions/24/arrow-left.svg share/icons/breeze/actions/24/arrow-right-double.svg share/icons/breeze/actions/24/arrow-right.svg share/icons/breeze/actions/24/arrow-up-double.svg share/icons/breeze/actions/24/arrow-up.svg share/icons/breeze/actions/24/arrow.svg share/icons/breeze/actions/24/artifact.svg share/icons/breeze/actions/24/artistictext-tool.svg share/icons/breeze/actions/24/association.svg share/icons/breeze/actions/24/atmosphere.svg share/icons/breeze/actions/24/auto-scale-all.svg share/icons/breeze/actions/24/auto-scale-x.svg share/icons/breeze/actions/24/auto-scale-y.svg share/icons/breeze/actions/24/auto-transition.svg share/icons/breeze/actions/24/auto-type.svg share/icons/breeze/actions/24/autocorrection.svg share/icons/breeze/actions/24/backgroundtool.svg share/icons/breeze/actions/24/backup.svg share/icons/breeze/actions/24/bboxnext.svg share/icons/breeze/actions/24/bboxprev.svg share/icons/breeze/actions/24/beamerblock.svg share/icons/breeze/actions/24/beamerframe.svg share/icons/breeze/actions/24/bibtex.svg share/icons/breeze/actions/24/bigskip.svg share/icons/breeze/actions/24/black_sum.svg share/icons/breeze/actions/24/blurfx.svg share/icons/breeze/actions/24/blurimage.svg share/icons/breeze/actions/24/bookmark-add-folder.svg share/icons/breeze/actions/24/bookmark-edit.svg share/icons/breeze/actions/24/bookmark-new-list.svg share/icons/breeze/actions/24/bookmark-new.svg share/icons/breeze/actions/24/bookmark-remove.svg share/icons/breeze/actions/24/bookmark-toolbar.svg share/icons/breeze/actions/24/bookmarks-organize.svg share/icons/breeze/actions/24/bookmarks.svg share/icons/breeze/actions/24/borderpainter.svg share/icons/breeze/actions/24/bordertool.svg share/icons/breeze/actions/24/box.svg share/icons/breeze/actions/24/bqm-diff.svg share/icons/breeze/actions/24/bqm-remove.svg share/icons/breeze/actions/24/bqm-rmqueue.svg share/icons/breeze/actions/24/branch.svg share/icons/breeze/actions/24/brightness-high.svg share/icons/breeze/actions/24/brightness-low.svg share/icons/breeze/actions/24/bwtonal.svg share/icons/breeze/actions/24/call-start.svg share/icons/breeze/actions/24/call-stop.svg share/icons/breeze/actions/24/call-voicemail.svg share/icons/breeze/actions/24/calligraphy.svg share/icons/breeze/actions/24/callout-shape.svg share/icons/breeze/actions/24/cards-block.svg share/icons/breeze/actions/24/category.svg share/icons/breeze/actions/24/category2parent.svg share/icons/breeze/actions/24/cell_edit.svg share/icons/breeze/actions/24/cell_layout.svg share/icons/breeze/actions/24/channelmixer.svg share/icons/breeze/actions/24/character-set.svg share/icons/breeze/actions/24/charcoaltool.svg share/icons/breeze/actions/24/check_constraint.svg share/icons/breeze/actions/24/checkbox.svg share/icons/breeze/actions/24/checkmark.svg share/icons/breeze/actions/24/child2category.svg share/icons/breeze/actions/24/choice-rhomb.svg share/icons/breeze/actions/24/choice-round.svg share/icons/breeze/actions/24/chronometer-lap.svg share/icons/breeze/actions/24/chronometer-pause.svg share/icons/breeze/actions/24/chronometer-reset.svg share/icons/breeze/actions/24/chronometer-start.svg share/icons/breeze/actions/24/chronometer.svg share/icons/breeze/actions/24/circular-arrow-shape.svg share/icons/breeze/actions/24/class-or-package.svg share/icons/breeze/actions/24/class.svg share/icons/breeze/actions/24/clock-large.svg share/icons/breeze/actions/24/clock.svg share/icons/breeze/actions/24/cloud-download.svg share/icons/breeze/actions/24/cloud-upload.svg share/icons/breeze/actions/24/code-block.svg share/icons/breeze/actions/24/code-class.svg share/icons/breeze/actions/24/code-context.svg share/icons/breeze/actions/24/code-function.svg share/icons/breeze/actions/24/code-typedef.svg share/icons/breeze/actions/24/code-variable.svg share/icons/breeze/actions/24/collapse-all.svg share/icons/breeze/actions/24/collapse.svg share/icons/breeze/actions/24/collection-rescan-amarok.svg share/icons/breeze/actions/24/color-fill.svg share/icons/breeze/actions/24/color-gradient.svg share/icons/breeze/actions/24/color-management.svg share/icons/breeze/actions/24/color-mode-black-white.svg share/icons/breeze/actions/24/color-mode-hue-shift-negative.svg share/icons/breeze/actions/24/color-mode-hue-shift-positive.svg share/icons/breeze/actions/24/color-mode-invert-image.svg share/icons/breeze/actions/24/color-mode-invert-text.svg share/icons/breeze/actions/24/color-picker-black.svg share/icons/breeze/actions/24/color-picker-grey.svg share/icons/breeze/actions/24/color-picker-white.svg share/icons/breeze/actions/24/color-picker.svg share/icons/breeze/actions/24/colorfx.svg share/icons/breeze/actions/24/colormanagement.svg share/icons/breeze/actions/24/colorneg.svg share/icons/breeze/actions/24/colors-chromablue.svg share/icons/breeze/actions/24/colors-chromagreen.svg share/icons/breeze/actions/24/colors-chromared.svg share/icons/breeze/actions/24/colors-luma.svg share/icons/breeze/actions/24/combined_fragment.svg share/icons/breeze/actions/24/compass.svg share/icons/breeze/actions/24/component.svg share/icons/breeze/actions/24/composite-track-off.svg share/icons/breeze/actions/24/composite-track-on.svg share/icons/breeze/actions/24/composite-track-preview.svg share/icons/breeze/actions/24/composition.svg share/icons/breeze/actions/24/configure-shortcuts.svg share/icons/breeze/actions/24/configure-toolbars.svg share/icons/breeze/actions/24/configure.svg share/icons/breeze/actions/24/configure_kile.svg share/icons/breeze/actions/24/configure_project.svg share/icons/breeze/actions/24/contact-new.svg share/icons/breeze/actions/24/containment.svg share/icons/breeze/actions/24/contents.svg share/icons/breeze/actions/24/contrast.svg share/icons/breeze/actions/24/convert.svg share/icons/breeze/actions/24/coordinate.svg share/icons/breeze/actions/24/copy-coordinates.svg share/icons/breeze/actions/24/createpath.svg share/icons/breeze/actions/24/cross-shape.svg share/icons/breeze/actions/24/crosshairs.svg share/icons/breeze/actions/24/cursor-arrow.svg share/icons/breeze/actions/24/curve-connector.svg share/icons/breeze/actions/24/dashboard-show.svg share/icons/breeze/actions/24/database-change-key.svg share/icons/breeze/actions/24/database-index.svg share/icons/breeze/actions/24/datatype.svg share/icons/breeze/actions/24/dblatex.svg share/icons/breeze/actions/24/debug-execute-from-cursor.svg share/icons/breeze/actions/24/debug-execute-to-cursor.svg share/icons/breeze/actions/24/debug-run-cursor.svg share/icons/breeze/actions/24/debug-run.svg share/icons/breeze/actions/24/debug-step-instruction.svg share/icons/breeze/actions/24/debug-step-into-instruction.svg share/icons/breeze/actions/24/debug-step-into.svg share/icons/breeze/actions/24/debug-step-out.svg share/icons/breeze/actions/24/debug-step-over.svg share/icons/breeze/actions/24/deep-history.svg share/icons/breeze/actions/24/delete-comment.svg share/icons/breeze/actions/24/delete-table-row.svg share/icons/breeze/actions/24/delete.svg share/icons/breeze/actions/24/dependency.svg share/icons/breeze/actions/24/depth16to8.svg share/icons/breeze/actions/24/depth8to16.svg share/icons/breeze/actions/24/description.svg share/icons/breeze/actions/24/dfrac.svg share/icons/breeze/actions/24/diag_activity.svg share/icons/breeze/actions/24/diag_class.svg share/icons/breeze/actions/24/diag_component.svg share/icons/breeze/actions/24/dialog-cancel.svg share/icons/breeze/actions/24/dialog-close.svg share/icons/breeze/actions/24/dialog-input-devices.svg share/icons/breeze/actions/24/dialog-messages.svg share/icons/breeze/actions/24/dialog-ok-apply.svg share/icons/breeze/actions/24/dialog-ok.svg share/icons/breeze/actions/24/dialog-scripts.svg share/icons/breeze/actions/24/dialog-xml-editor.svg share/icons/breeze/actions/24/dirsync.svg share/icons/breeze/actions/24/discrete.svg share/icons/breeze/actions/24/displaymathmode.svg share/icons/breeze/actions/24/distortionfx.svg share/icons/breeze/actions/24/distribute-graph-directed.svg share/icons/breeze/actions/24/distribute-graph.svg share/icons/breeze/actions/24/distribute-horizontal-baseline.svg share/icons/breeze/actions/24/distribute-horizontal-center.svg share/icons/breeze/actions/24/distribute-horizontal-equal.svg share/icons/breeze/actions/24/distribute-horizontal-gaps.svg share/icons/breeze/actions/24/distribute-horizontal-left.svg share/icons/breeze/actions/24/distribute-horizontal-margin.svg share/icons/breeze/actions/24/distribute-horizontal-node.svg share/icons/breeze/actions/24/distribute-horizontal-page.svg share/icons/breeze/actions/24/distribute-horizontal-right.svg share/icons/breeze/actions/24/distribute-horizontal-x.svg share/icons/breeze/actions/24/distribute-horizontal.svg share/icons/breeze/actions/24/distribute-randomize.svg share/icons/breeze/actions/24/distribute-remove-overlaps.svg share/icons/breeze/actions/24/distribute-unclump.svg share/icons/breeze/actions/24/distribute-vertical-baseline.svg share/icons/breeze/actions/24/distribute-vertical-bottom.svg share/icons/breeze/actions/24/distribute-vertical-center.svg share/icons/breeze/actions/24/distribute-vertical-equal.svg share/icons/breeze/actions/24/distribute-vertical-gaps.svg share/icons/breeze/actions/24/distribute-vertical-margin.svg share/icons/breeze/actions/24/distribute-vertical-node.svg share/icons/breeze/actions/24/distribute-vertical-page.svg share/icons/breeze/actions/24/distribute-vertical-top.svg share/icons/breeze/actions/24/distribute-vertical-y.svg share/icons/breeze/actions/24/distribute-vertical.svg share/icons/breeze/actions/24/document-close.svg share/icons/breeze/actions/24/document-decrypt.svg share/icons/breeze/actions/24/document-edit-decrypt-verify.svg share/icons/breeze/actions/24/document-edit-decrypt.svg share/icons/breeze/actions/24/document-edit-encrypt.svg share/icons/breeze/actions/24/document-edit-sign-encrypt.svg share/icons/breeze/actions/24/document-edit-sign.svg share/icons/breeze/actions/24/document-edit-verify.svg share/icons/breeze/actions/24/document-edit.svg share/icons/breeze/actions/24/document-encrypt.svg share/icons/breeze/actions/24/document-encrypted.svg share/icons/breeze/actions/24/document-export-ocal.svg share/icons/breeze/actions/24/document-export-table.svg share/icons/breeze/actions/24/document-export.svg share/icons/breeze/actions/24/document-import-ocal.svg share/icons/breeze/actions/24/document-import.svg share/icons/breeze/actions/24/document-multiple.svg share/icons/breeze/actions/24/document-new-from-template.svg share/icons/breeze/actions/24/document-new.svg share/icons/breeze/actions/24/document-open-data.svg share/icons/breeze/actions/24/document-open-folder.svg share/icons/breeze/actions/24/document-open-recent.svg share/icons/breeze/actions/24/document-open-remote.svg share/icons/breeze/actions/24/document-open.svg share/icons/breeze/actions/24/document-preview-archive.svg share/icons/breeze/actions/24/document-preview.svg share/icons/breeze/actions/24/document-print-direct.svg share/icons/breeze/actions/24/document-print-frame.svg share/icons/breeze/actions/24/document-print-preview.svg share/icons/breeze/actions/24/document-print.svg share/icons/breeze/actions/24/document-properties.svg share/icons/breeze/actions/24/document-replace.svg share/icons/breeze/actions/24/document-revert.svg share/icons/breeze/actions/24/document-save-all.svg share/icons/breeze/actions/24/document-save-as-template.svg share/icons/breeze/actions/24/document-save-as.svg share/icons/breeze/actions/24/document-save.svg share/icons/breeze/actions/24/document-scan.svg share/icons/breeze/actions/24/document-send.svg share/icons/breeze/actions/24/document-share.svg share/icons/breeze/actions/24/document-sign.svg share/icons/breeze/actions/24/document-swap.svg share/icons/breeze/actions/24/documentation.svg share/icons/breeze/actions/24/documentinfo.svg share/icons/breeze/actions/24/donate.svg share/icons/breeze/actions/24/dontknow.svg share/icons/breeze/actions/24/download-amarok.svg share/icons/breeze/actions/24/download-later.svg share/icons/breeze/actions/24/download.svg share/icons/breeze/actions/24/drag-surface.svg share/icons/breeze/actions/24/draw-arrow-back.svg share/icons/breeze/actions/24/draw-arrow-down.svg share/icons/breeze/actions/24/draw-arrow-forward.svg share/icons/breeze/actions/24/draw-arrow-up.svg share/icons/breeze/actions/24/draw-arrow.svg share/icons/breeze/actions/24/draw-bezier-curves.svg share/icons/breeze/actions/24/draw-brush.svg share/icons/breeze/actions/24/draw-calligraphic.svg share/icons/breeze/actions/24/draw-circle.svg share/icons/breeze/actions/24/draw-connector.svg share/icons/breeze/actions/24/draw-cross.svg share/icons/breeze/actions/24/draw-cuboid.svg share/icons/breeze/actions/24/draw-donut.svg share/icons/breeze/actions/24/draw-ellipse.svg share/icons/breeze/actions/24/draw-eraser.svg share/icons/breeze/actions/24/draw-freehand.svg share/icons/breeze/actions/24/draw-halfcircle1.svg share/icons/breeze/actions/24/draw-halfcircle2.svg share/icons/breeze/actions/24/draw-halfcircle3.svg share/icons/breeze/actions/24/draw-halfcircle4.svg share/icons/breeze/actions/24/draw-highlight.svg share/icons/breeze/actions/24/draw-line.svg share/icons/breeze/actions/24/draw-path.svg share/icons/breeze/actions/24/draw-polygon-star.svg share/icons/breeze/actions/24/draw-polygon.svg share/icons/breeze/actions/24/draw-polyline.svg share/icons/breeze/actions/24/draw-rectangle-rounded.svg share/icons/breeze/actions/24/draw-rectangle.svg share/icons/breeze/actions/24/draw-spiral.svg share/icons/breeze/actions/24/draw-square-inverted-corners.svg share/icons/breeze/actions/24/draw-star.svg share/icons/breeze/actions/24/draw-text.svg share/icons/breeze/actions/24/draw-triangle.svg share/icons/breeze/actions/24/draw-triangle1.svg share/icons/breeze/actions/24/draw-triangle2.svg share/icons/breeze/actions/24/draw-triangle3.svg share/icons/breeze/actions/24/draw-triangle4.svg share/icons/breeze/actions/24/draw-watercolor.svg share/icons/breeze/actions/24/dvipdf.svg share/icons/breeze/actions/24/dvipng.svg share/icons/breeze/actions/24/dvips.svg share/icons/breeze/actions/24/dvisearch.svg share/icons/breeze/actions/24/dynamic-amarok.svg share/icons/breeze/actions/24/earthquake.svg share/icons/breeze/actions/24/edit-bomb.svg share/icons/breeze/actions/24/edit-clear-all.svg share/icons/breeze/actions/24/edit-clear-history.svg share/icons/breeze/actions/24/edit-clear-list.svg share/icons/breeze/actions/24/edit-clear-locationbar-ltr.svg share/icons/breeze/actions/24/edit-clear-locationbar-rtl.svg share/icons/breeze/actions/24/edit-clear.svg share/icons/breeze/actions/24/edit-clone-unlink.svg share/icons/breeze/actions/24/edit-clone.svg share/icons/breeze/actions/24/edit-comment.svg share/icons/breeze/actions/24/edit-copy-path.svg share/icons/breeze/actions/24/edit-copy.svg share/icons/breeze/actions/24/edit-cut.svg share/icons/breeze/actions/24/edit-delete-remove.svg share/icons/breeze/actions/24/edit-delete-shred.svg share/icons/breeze/actions/24/edit-delete.svg share/icons/breeze/actions/24/edit-download.svg share/icons/breeze/actions/24/edit-entry.svg share/icons/breeze/actions/24/edit-find-mail.svg share/icons/breeze/actions/24/edit-find-project.svg share/icons/breeze/actions/24/edit-find-replace.svg share/icons/breeze/actions/24/edit-find-user.svg share/icons/breeze/actions/24/edit-find.svg share/icons/breeze/actions/24/edit-group.svg share/icons/breeze/actions/24/edit-guides.svg share/icons/breeze/actions/24/edit-image-face-add.svg share/icons/breeze/actions/24/edit-image-face-detect.svg share/icons/breeze/actions/24/edit-image-face-recognize.svg share/icons/breeze/actions/24/edit-image-face-show.svg share/icons/breeze/actions/24/edit-image.svg share/icons/breeze/actions/24/edit-line-width.svg share/icons/breeze/actions/24/edit-link.svg share/icons/breeze/actions/24/edit-map.svg share/icons/breeze/actions/24/edit-move.svg share/icons/breeze/actions/24/edit-node.svg share/icons/breeze/actions/24/edit-none.svg share/icons/breeze/actions/24/edit-opacity.svg share/icons/breeze/actions/24/edit-paste-in-place.svg share/icons/breeze/actions/24/edit-paste.svg share/icons/breeze/actions/24/edit-redo.svg share/icons/breeze/actions/24/edit-rename.svg share/icons/breeze/actions/24/edit-reset.svg share/icons/breeze/actions/24/edit-select-all.svg share/icons/breeze/actions/24/edit-select-invert.svg share/icons/breeze/actions/24/edit-select-lasso.svg share/icons/breeze/actions/24/edit-select-none.svg share/icons/breeze/actions/24/edit-select-text.svg share/icons/breeze/actions/24/edit-select.svg share/icons/breeze/actions/24/edit-table-cell-merge.svg share/icons/breeze/actions/24/edit-table-cell-split.svg share/icons/breeze/actions/24/edit-table-delete-column.svg share/icons/breeze/actions/24/edit-table-delete-row.svg share/icons/breeze/actions/24/edit-table-insert-column-left.svg share/icons/breeze/actions/24/edit-table-insert-column-right.svg share/icons/breeze/actions/24/edit-table-insert-row-above.svg share/icons/breeze/actions/24/edit-table-insert-row-below.svg share/icons/breeze/actions/24/edit-table-insert-row-under.svg share/icons/breeze/actions/24/edit-text-frame-update.svg share/icons/breeze/actions/24/edit-undo.svg share/icons/breeze/actions/24/edit_animation.svg share/icons/breeze/actions/24/editimage.svg share/icons/breeze/actions/24/editor.svg share/icons/breeze/actions/24/editpath.svg share/icons/breeze/actions/24/edittext.svg share/icons/breeze/actions/24/ellipse-shape.svg share/icons/breeze/actions/24/embosstool.svg share/icons/breeze/actions/24/emph.svg share/icons/breeze/actions/24/end_of_life.svg share/icons/breeze/actions/24/end_state.svg share/icons/breeze/actions/24/entity.svg share/icons/breeze/actions/24/entrance_animations.svg share/icons/breeze/actions/24/entry-clone.svg share/icons/breeze/actions/24/entry-delete.svg share/icons/breeze/actions/24/entry-edit.svg share/icons/breeze/actions/24/entry-new.svg share/icons/breeze/actions/24/enum.svg share/icons/breeze/actions/24/enumerate.svg share/icons/breeze/actions/24/error.svg share/icons/breeze/actions/24/errornext.svg share/icons/breeze/actions/24/errorprev.svg share/icons/breeze/actions/24/escape-direction-all.svg share/icons/breeze/actions/24/escape-direction-down.svg share/icons/breeze/actions/24/escape-direction-horizontal.svg share/icons/breeze/actions/24/escape-direction-left.svg share/icons/breeze/actions/24/escape-direction-right.svg share/icons/breeze/actions/24/escape-direction-up.svg share/icons/breeze/actions/24/escape-direction-vertical.svg share/icons/breeze/actions/24/exception.svg share/icons/breeze/actions/24/exchange-positions-clockwise.svg share/icons/breeze/actions/24/exchange-positions-zorder.svg share/icons/breeze/actions/24/exchange-positions.svg share/icons/breeze/actions/24/exifinfo.svg share/icons/breeze/actions/24/exit_animations.svg share/icons/breeze/actions/24/expand-all.svg share/icons/breeze/actions/24/expand.svg share/icons/breeze/actions/24/favorite-genres-amarok.svg share/icons/breeze/actions/24/favorite.svg share/icons/breeze/actions/24/feed-subscribe.svg share/icons/breeze/actions/24/file-zoom-in.svg share/icons/breeze/actions/24/file-zoom-out.svg share/icons/breeze/actions/24/filegrep.svg share/icons/breeze/actions/24/filename-album-amarok.svg share/icons/breeze/actions/24/filename-and-amarok.svg share/icons/breeze/actions/24/filename-artist-amarok.svg share/icons/breeze/actions/24/filename-bpm-amarok.svg share/icons/breeze/actions/24/filename-comment-amarok.svg share/icons/breeze/actions/24/filename-composer-amarok.svg share/icons/breeze/actions/24/filename-dash-amarok.svg share/icons/breeze/actions/24/filename-discnumber-amarok.svg share/icons/breeze/actions/24/filename-divider.svg share/icons/breeze/actions/24/filename-dot-amarok.svg share/icons/breeze/actions/24/filename-filetype-amarok.svg share/icons/breeze/actions/24/filename-genre-amarok.svg share/icons/breeze/actions/24/filename-group-length.svg share/icons/breeze/actions/24/filename-group-tracks.svg share/icons/breeze/actions/24/filename-ignore-amarok.svg share/icons/breeze/actions/24/filename-initial-amarok.svg share/icons/breeze/actions/24/filename-last-played.svg share/icons/breeze/actions/24/filename-moodbar.svg share/icons/breeze/actions/24/filename-sample-rate.svg share/icons/breeze/actions/24/filename-slash-amarok.svg share/icons/breeze/actions/24/filename-space-amarok.svg share/icons/breeze/actions/24/filename-title-amarok.svg share/icons/breeze/actions/24/filename-track-amarok.svg share/icons/breeze/actions/24/filename-underscore-amarok.svg share/icons/breeze/actions/24/filename-year-amarok.svg share/icons/breeze/actions/24/fileview-preview.svg share/icons/breeze/actions/24/fill-color.svg share/icons/breeze/actions/24/filmgrain.svg share/icons/breeze/actions/24/final_activity.svg share/icons/breeze/actions/24/find-location.svg share/icons/breeze/actions/24/flag-black.svg share/icons/breeze/actions/24/flag-blue.svg share/icons/breeze/actions/24/flag-green.svg share/icons/breeze/actions/24/flag-red.svg share/icons/breeze/actions/24/flag-yellow.svg share/icons/breeze/actions/24/flag.svg share/icons/breeze/actions/24/flash.svg share/icons/breeze/actions/24/flashlight-off.svg share/icons/breeze/actions/24/flashlight-on.svg share/icons/breeze/actions/24/flower-shape.svg share/icons/breeze/actions/24/folder-new.svg share/icons/breeze/actions/24/folder-open-recent.svg share/icons/breeze/actions/24/folder-stash.svg share/icons/breeze/actions/24/folder-sync.svg share/icons/breeze/actions/24/followmouse.svg share/icons/breeze/actions/24/font-disable.svg share/icons/breeze/actions/24/font-enable.svg share/icons/breeze/actions/24/font.svg share/icons/breeze/actions/24/food.svg share/icons/breeze/actions/24/foreignkey_constraint.svg share/icons/breeze/actions/24/fork.svg share/icons/breeze/actions/24/format-add-node.svg share/icons/breeze/actions/24/format-align-vertical-bottom.svg share/icons/breeze/actions/24/format-align-vertical-center.svg share/icons/breeze/actions/24/format-align-vertical-top.svg share/icons/breeze/actions/24/format-border-set-all.svg share/icons/breeze/actions/24/format-border-set-bottom.svg share/icons/breeze/actions/24/format-border-set-diagonal-bl-tr.svg share/icons/breeze/actions/24/format-border-set-diagonal-tl-br.svg share/icons/breeze/actions/24/format-border-set-external.svg share/icons/breeze/actions/24/format-border-set-internal-horizontal.svg share/icons/breeze/actions/24/format-border-set-internal-vertical.svg share/icons/breeze/actions/24/format-border-set-internal.svg share/icons/breeze/actions/24/format-border-set-left.svg share/icons/breeze/actions/24/format-border-set-none.svg share/icons/breeze/actions/24/format-border-set-right.svg share/icons/breeze/actions/24/format-border-set-top.svg share/icons/breeze/actions/24/format-border-style.svg share/icons/breeze/actions/24/format-break-node.svg share/icons/breeze/actions/24/format-connect-node.svg share/icons/breeze/actions/24/format-convert-to-path.svg share/icons/breeze/actions/24/format-currency.svg share/icons/breeze/actions/24/format-disconnect-node.svg share/icons/breeze/actions/24/format-fill-color.svg share/icons/breeze/actions/24/format-font-size-less.svg share/icons/breeze/actions/24/format-font-size-more.svg share/icons/breeze/actions/24/format-indent-less.svg share/icons/breeze/actions/24/format-indent-more.svg share/icons/breeze/actions/24/format-insert-node.svg share/icons/breeze/actions/24/format-join-node.svg share/icons/breeze/actions/24/format-justify-center.svg share/icons/breeze/actions/24/format-justify-fill.svg share/icons/breeze/actions/24/format-justify-left.svg share/icons/breeze/actions/24/format-justify-right.svg share/icons/breeze/actions/24/format-line-spacing-double.svg share/icons/breeze/actions/24/format-line-spacing-normal.svg share/icons/breeze/actions/24/format-line-spacing-triple.svg share/icons/breeze/actions/24/format-list-ordered.svg share/icons/breeze/actions/24/format-list-unordered.svg share/icons/breeze/actions/24/format-node-corner.svg share/icons/breeze/actions/24/format-node-curve.svg share/icons/breeze/actions/24/format-node-line.svg share/icons/breeze/actions/24/format-node-smooth.svg share/icons/breeze/actions/24/format-node-symmetric.svg share/icons/breeze/actions/24/format-number-percent.svg share/icons/breeze/actions/24/format-precision-less.svg share/icons/breeze/actions/24/format-precision-more.svg share/icons/breeze/actions/24/format-remove-node.svg share/icons/breeze/actions/24/format-segment-curve.svg share/icons/breeze/actions/24/format-segment-line.svg share/icons/breeze/actions/24/format-stroke-color.svg share/icons/breeze/actions/24/format-text-blockquote.svg share/icons/breeze/actions/24/format-text-bold.svg share/icons/breeze/actions/24/format-text-capitalize.svg share/icons/breeze/actions/24/format-text-code.svg share/icons/breeze/actions/24/format-text-color.svg share/icons/breeze/actions/24/format-text-direction-horizontal.svg share/icons/breeze/actions/24/format-text-direction-ltr.svg share/icons/breeze/actions/24/format-text-direction-rtl.svg share/icons/breeze/actions/24/format-text-direction-vertical.svg share/icons/breeze/actions/24/format-text-italic.svg share/icons/breeze/actions/24/format-text-lowercase.svg share/icons/breeze/actions/24/format-text-strikethrough.svg share/icons/breeze/actions/24/format-text-subscript.svg share/icons/breeze/actions/24/format-text-superscript.svg share/icons/breeze/actions/24/format-text-symbol.svg share/icons/breeze/actions/24/format-text-underline-squiggle.svg share/icons/breeze/actions/24/format-text-underline.svg share/icons/breeze/actions/24/format-text-uppercase.svg share/icons/breeze/actions/24/formula.svg share/icons/breeze/actions/24/freerotation.svg share/icons/breeze/actions/24/games-achievements.svg share/icons/breeze/actions/24/games-config-background.svg share/icons/breeze/actions/24/games-config-board.svg share/icons/breeze/actions/24/games-config-custom.svg share/icons/breeze/actions/24/games-config-options.svg share/icons/breeze/actions/24/games-config-theme.svg share/icons/breeze/actions/24/games-config-tiles.svg share/icons/breeze/actions/24/games-difficult.svg share/icons/breeze/actions/24/games-endturn.svg share/icons/breeze/actions/24/games-highscores.svg share/icons/breeze/actions/24/games-hint.svg share/icons/breeze/actions/24/games-solve.svg share/icons/breeze/actions/24/geany-build.svg share/icons/breeze/actions/24/geany-close-all.svg share/icons/breeze/actions/24/geany-save-all.svg share/icons/breeze/actions/24/gearhead-shape.svg share/icons/breeze/actions/24/generalisation.svg share/icons/breeze/actions/24/generalise.svg share/icons/breeze/actions/24/get-hot-new-stuff.svg share/icons/breeze/actions/24/globe.svg share/icons/breeze/actions/24/gnumeric-autofilter-delete.svg share/icons/breeze/actions/24/gnumeric-autofilter.svg share/icons/breeze/actions/24/gnumeric-autosum.svg share/icons/breeze/actions/24/gnumeric-brush.svg share/icons/breeze/actions/24/gnumeric-bucket.svg share/icons/breeze/actions/24/gnumeric-cells-merge.svg share/icons/breeze/actions/24/gnumeric-cells-split.svg share/icons/breeze/actions/24/gnumeric-column-add.svg share/icons/breeze/actions/24/gnumeric-column-delete.svg share/icons/breeze/actions/24/gnumeric-column-hide.svg share/icons/breeze/actions/24/gnumeric-column-size.svg share/icons/breeze/actions/24/gnumeric-column-unhide.svg share/icons/breeze/actions/24/gnumeric-comment-add.svg share/icons/breeze/actions/24/gnumeric-comment-delete.svg share/icons/breeze/actions/24/gnumeric-comment-edit.svg share/icons/breeze/actions/24/gnumeric-component-insert-shaped.svg share/icons/breeze/actions/24/gnumeric-data-slicer.svg share/icons/breeze/actions/24/gnumeric-font.svg share/icons/breeze/actions/24/gnumeric-format-accounting.svg share/icons/breeze/actions/24/gnumeric-format-border-all.svg share/icons/breeze/actions/24/gnumeric-format-border-bottom.svg share/icons/breeze/actions/24/gnumeric-format-border-diag.svg share/icons/breeze/actions/24/gnumeric-format-border-double-bottom.svg share/icons/breeze/actions/24/gnumeric-format-border-inside-horiz.svg share/icons/breeze/actions/24/gnumeric-format-border-left.svg share/icons/breeze/actions/24/gnumeric-format-border-none.svg share/icons/breeze/actions/24/gnumeric-format-border-outside.svg share/icons/breeze/actions/24/gnumeric-format-border-rev-diag.svg share/icons/breeze/actions/24/gnumeric-format-border-right.svg share/icons/breeze/actions/24/gnumeric-format-border-thick-bottom.svg share/icons/breeze/actions/24/gnumeric-format-border-thick-outside.svg share/icons/breeze/actions/24/gnumeric-format-border-top-n-bottom.svg share/icons/breeze/actions/24/gnumeric-format-border-top-n-double-bottom.svg share/icons/breeze/actions/24/gnumeric-format-border-top-n-thick-bottom.svg share/icons/breeze/actions/24/gnumeric-format-border-top.svg share/icons/breeze/actions/24/gnumeric-format-percentage.svg share/icons/breeze/actions/24/gnumeric-format-precision-decrease.svg share/icons/breeze/actions/24/gnumeric-format-precision-increase.svg share/icons/breeze/actions/24/gnumeric-format-thousand-separator.svg share/icons/breeze/actions/24/gnumeric-formulaguru.svg share/icons/breeze/actions/24/gnumeric-graphguru.svg share/icons/breeze/actions/24/gnumeric-group.svg share/icons/breeze/actions/24/gnumeric-link-add.svg share/icons/breeze/actions/24/gnumeric-link-delete.svg share/icons/breeze/actions/24/gnumeric-link-edit.svg share/icons/breeze/actions/24/gnumeric-link-email.svg share/icons/breeze/actions/24/gnumeric-link-external.svg share/icons/breeze/actions/24/gnumeric-link-internal.svg share/icons/breeze/actions/24/gnumeric-link-url.svg share/icons/breeze/actions/24/gnumeric-object-arrow.svg share/icons/breeze/actions/24/gnumeric-object-button.svg share/icons/breeze/actions/24/gnumeric-object-checkbox.svg share/icons/breeze/actions/24/gnumeric-object-combo.svg share/icons/breeze/actions/24/gnumeric-object-ellipse.svg share/icons/breeze/actions/24/gnumeric-object-label.svg share/icons/breeze/actions/24/gnumeric-object-line.svg share/icons/breeze/actions/24/gnumeric-object-list.svg share/icons/breeze/actions/24/gnumeric-object-rectangle.svg share/icons/breeze/actions/24/gnumeric-object-scrollbar.svg share/icons/breeze/actions/24/gnumeric-object-spinbutton.svg share/icons/breeze/actions/24/gnumeric-pagesetup-hf-cell.svg share/icons/breeze/actions/24/gnumeric-pagesetup-hf-page.svg share/icons/breeze/actions/24/gnumeric-pagesetup-hf-pages.svg share/icons/breeze/actions/24/gnumeric-pagesetup-hf-time.svg share/icons/breeze/actions/24/gnumeric-protection-no.svg share/icons/breeze/actions/24/gnumeric-protection-yes.svg share/icons/breeze/actions/24/gnumeric-row-add.svg share/icons/breeze/actions/24/gnumeric-row-delete.svg share/icons/breeze/actions/24/gnumeric-row-hide.svg share/icons/breeze/actions/24/gnumeric-row-size.svg share/icons/breeze/actions/24/gnumeric-row-unhide.svg share/icons/breeze/actions/24/gnumeric-subscript.svg share/icons/breeze/actions/24/gnumeric-superscript.svg share/icons/breeze/actions/24/gnumeric-ungroup.svg share/icons/breeze/actions/24/gnumeric-visible.svg share/icons/breeze/actions/24/go-bottom.svg share/icons/breeze/actions/24/go-down-search.svg share/icons/breeze/actions/24/go-down-skip.svg share/icons/breeze/actions/24/go-down.svg share/icons/breeze/actions/24/go-first-view-page.svg share/icons/breeze/actions/24/go-first-view.svg share/icons/breeze/actions/24/go-first.svg share/icons/breeze/actions/24/go-home-large.svg share/icons/breeze/actions/24/go-home.svg share/icons/breeze/actions/24/go-jump-declaration.svg share/icons/breeze/actions/24/go-jump-definition.svg share/icons/breeze/actions/24/go-jump-locationbar.svg share/icons/breeze/actions/24/go-jump-today.svg share/icons/breeze/actions/24/go-jump.svg share/icons/breeze/actions/24/go-last-view-page.svg share/icons/breeze/actions/24/go-last-view.svg share/icons/breeze/actions/24/go-last.svg share/icons/breeze/actions/24/go-next-context.svg share/icons/breeze/actions/24/go-next-skip.svg share/icons/breeze/actions/24/go-next-use.svg share/icons/breeze/actions/24/go-next-view-page.svg share/icons/breeze/actions/24/go-next-view.svg share/icons/breeze/actions/24/go-next.svg share/icons/breeze/actions/24/go-parent-folder.svg share/icons/breeze/actions/24/go-previous-context.svg share/icons/breeze/actions/24/go-previous-skip.svg share/icons/breeze/actions/24/go-previous-use.svg share/icons/breeze/actions/24/go-previous-view-page.svg share/icons/breeze/actions/24/go-previous-view.svg share/icons/breeze/actions/24/go-previous.svg share/icons/breeze/actions/24/go-top.svg share/icons/breeze/actions/24/go-up-search.svg share/icons/breeze/actions/24/go-up-skip.svg share/icons/breeze/actions/24/go-up.svg share/icons/breeze/actions/24/gpg.svg share/icons/breeze/actions/24/gpgsm.svg share/icons/breeze/actions/24/gps.svg share/icons/breeze/actions/24/gradient.svg share/icons/breeze/actions/24/graphics.svg share/icons/breeze/actions/24/grid-rectangular.svg share/icons/breeze/actions/24/group-delete.svg share/icons/breeze/actions/24/group-edit.svg share/icons/breeze/actions/24/group-new.svg share/icons/breeze/actions/24/group.svg share/icons/breeze/actions/24/gtk-add.svg share/icons/breeze/actions/24/gtk-apply.svg share/icons/breeze/actions/24/gtk-authentication.svg share/icons/breeze/actions/24/gtk-bold.svg share/icons/breeze/actions/24/gtk-cancel.svg share/icons/breeze/actions/24/gtk-cdrom.svg share/icons/breeze/actions/24/gtk-clear.svg share/icons/breeze/actions/24/gtk-close.svg share/icons/breeze/actions/24/gtk-color-picker.svg share/icons/breeze/actions/24/gtk-connect.svg share/icons/breeze/actions/24/gtk-convert.svg share/icons/breeze/actions/24/gtk-disconnect.svg share/icons/breeze/actions/24/gtk-edit.svg share/icons/breeze/actions/24/gtk-execute.svg share/icons/breeze/actions/24/gtk-floppy.svg share/icons/breeze/actions/24/gtk-index.svg share/icons/breeze/actions/24/gtk-no.svg share/icons/breeze/actions/24/gtk-ok.svg share/icons/breeze/actions/24/gtk-preferences.svg share/icons/breeze/actions/24/gtk-properties.svg share/icons/breeze/actions/24/gtk-quit.svg share/icons/breeze/actions/24/gtk-select-color.svg share/icons/breeze/actions/24/gtk-select-font.svg share/icons/breeze/actions/24/gtk-stop.svg share/icons/breeze/actions/24/gtk-tab-duplicate.svg share/icons/breeze/actions/24/gtk-tab-new.svg share/icons/breeze/actions/24/gtk-undelete-ltr.svg share/icons/breeze/actions/24/gtk-undelete-rtl.svg share/icons/breeze/actions/24/gtk-yes.svg share/icons/breeze/actions/24/guides.svg share/icons/breeze/actions/24/hand.svg share/icons/breeze/actions/24/handle-left.svg share/icons/breeze/actions/24/handle-move.svg share/icons/breeze/actions/24/handle-right.svg share/icons/breeze/actions/24/handle-sort.svg share/icons/breeze/actions/24/headphones.svg share/icons/breeze/actions/24/help-about.svg share/icons/breeze/actions/24/help-contents.svg share/icons/breeze/actions/24/help-contextual.svg share/icons/breeze/actions/24/help-donate.svg share/icons/breeze/actions/24/help-feedback.svg share/icons/breeze/actions/24/help-hint.svg share/icons/breeze/actions/24/help-keybord-shortcuts.svg share/icons/breeze/actions/24/help-latex.svg share/icons/breeze/actions/24/help-whatsthis.svg share/icons/breeze/actions/24/hexagon-shape.svg share/icons/breeze/actions/24/hide_table_column.svg share/icons/breeze/actions/24/hide_table_row.svg share/icons/breeze/actions/24/hidemouse.svg share/icons/breeze/actions/24/high-brightness.svg share/icons/breeze/actions/24/hint.svg share/icons/breeze/actions/24/hotpixels.svg share/icons/breeze/actions/24/identity.svg share/icons/breeze/actions/24/im-aim.svg share/icons/breeze/actions/24/im-ban-kick-user.svg share/icons/breeze/actions/24/im-ban-user.svg share/icons/breeze/actions/24/im-facebook.svg share/icons/breeze/actions/24/im-gadugadu.svg share/icons/breeze/actions/24/im-google-talk.svg share/icons/breeze/actions/24/im-google.svg share/icons/breeze/actions/24/im-icq.svg share/icons/breeze/actions/24/im-identi.ca.svg share/icons/breeze/actions/24/im-invisible-user.svg share/icons/breeze/actions/24/im-irc.svg share/icons/breeze/actions/24/im-jabber.svg share/icons/breeze/actions/24/im-kick-user.svg share/icons/breeze/actions/24/im-msn.svg share/icons/breeze/actions/24/im-qq.svg share/icons/breeze/actions/24/im-skype.svg share/icons/breeze/actions/24/im-twitter.svg share/icons/breeze/actions/24/im-user-away.svg share/icons/breeze/actions/24/im-user-busy.svg share/icons/breeze/actions/24/im-user-offline.svg share/icons/breeze/actions/24/im-user-online.svg share/icons/breeze/actions/24/im-user.svg share/icons/breeze/actions/24/im-yahoo.svg share/icons/breeze/actions/24/im-youtube.svg share/icons/breeze/actions/24/imagecomment.svg share/icons/breeze/actions/24/initial_state.svg share/icons/breeze/actions/24/inpainting.svg share/icons/breeze/actions/24/input-mouse-click-left.svg share/icons/breeze/actions/24/input-mouse-click-middle.svg share/icons/breeze/actions/24/input-mouse-click-right.svg share/icons/breeze/actions/24/insert-button.svg share/icons/breeze/actions/24/insert-endnote.svg share/icons/breeze/actions/24/insert-footnote.svg share/icons/breeze/actions/24/insert-horizontal-rule.svg share/icons/breeze/actions/24/insert-image.svg share/icons/breeze/actions/24/insert-link.svg share/icons/breeze/actions/24/insert-math-expression.svg share/icons/breeze/actions/24/insert-more-mark.svg share/icons/breeze/actions/24/insert-page-break.svg share/icons/breeze/actions/24/insert-table-of-contents.svg share/icons/breeze/actions/24/insert-table-row.svg share/icons/breeze/actions/24/insert-table.svg share/icons/breeze/actions/24/insert-tableofcontents.svg share/icons/breeze/actions/24/insert-text-frame.svg share/icons/breeze/actions/24/insert-text.svg share/icons/breeze/actions/24/insertcell.svg share/icons/breeze/actions/24/interface.svg share/icons/breeze/actions/24/internet-amarok.svg share/icons/breeze/actions/24/internet-services.svg share/icons/breeze/actions/24/invertimage.svg share/icons/breeze/actions/24/irc-channel-active.svg share/icons/breeze/actions/24/irc-channel-inactive.svg share/icons/breeze/actions/24/irc-close-channel.svg share/icons/breeze/actions/24/irc-join-channel.svg share/icons/breeze/actions/24/irc-operator.svg share/icons/breeze/actions/24/irc-remove-operator.svg share/icons/breeze/actions/24/irc-unvoice.svg share/icons/breeze/actions/24/irc-voice.svg share/icons/breeze/actions/24/item.svg share/icons/breeze/actions/24/itemize.svg share/icons/breeze/actions/24/join.svg share/icons/breeze/actions/24/journal-new.svg share/icons/breeze/actions/24/junction.svg share/icons/breeze/actions/24/kdenlive-add-clip.svg share/icons/breeze/actions/24/kdenlive-add-color-clip.svg share/icons/breeze/actions/24/kdenlive-add-slide-clip.svg share/icons/breeze/actions/24/kdenlive-add-text-clip.svg share/icons/breeze/actions/24/kdenlive-align-bottom.svg share/icons/breeze/actions/24/kdenlive-align-hor.svg share/icons/breeze/actions/24/kdenlive-align-left.svg share/icons/breeze/actions/24/kdenlive-align-none.svg share/icons/breeze/actions/24/kdenlive-align-right.svg share/icons/breeze/actions/24/kdenlive-align-top.svg share/icons/breeze/actions/24/kdenlive-align-vert.svg share/icons/breeze/actions/24/kdenlive-composite.svg share/icons/breeze/actions/24/kdenlive-custom-effect.svg share/icons/breeze/actions/24/kdenlive-deleffect.svg share/icons/breeze/actions/24/kdenlive-down.svg share/icons/breeze/actions/24/kdenlive-hide-audio.svg share/icons/breeze/actions/24/kdenlive-hide-video.svg share/icons/breeze/actions/24/kdenlive-insert-edit.svg share/icons/breeze/actions/24/kdenlive-insert-rect.svg share/icons/breeze/actions/24/kdenlive-insert-unicode.svg share/icons/breeze/actions/24/kdenlive-lock.svg share/icons/breeze/actions/24/kdenlive-menu.svg share/icons/breeze/actions/24/kdenlive-no-composite.svg share/icons/breeze/actions/24/kdenlive-normal-edit.svg share/icons/breeze/actions/24/kdenlive-object-height.svg share/icons/breeze/actions/24/kdenlive-object-width.svg share/icons/breeze/actions/24/kdenlive-overwrite-edit.svg share/icons/breeze/actions/24/kdenlive-ripple.svg share/icons/breeze/actions/24/kdenlive-rolling.svg share/icons/breeze/actions/24/kdenlive-select-all.svg share/icons/breeze/actions/24/kdenlive-select-images.svg share/icons/breeze/actions/24/kdenlive-select-rects.svg share/icons/breeze/actions/24/kdenlive-select-texts.svg share/icons/breeze/actions/24/kdenlive-select-tool.svg share/icons/breeze/actions/24/kdenlive-show-audio.svg share/icons/breeze/actions/24/kdenlive-show-audiothumb.svg share/icons/breeze/actions/24/kdenlive-show-markers.svg share/icons/breeze/actions/24/kdenlive-show-video.svg share/icons/breeze/actions/24/kdenlive-show-videothumb.svg share/icons/breeze/actions/24/kdenlive-slide.svg share/icons/breeze/actions/24/kdenlive-slip.svg share/icons/breeze/actions/24/kdenlive-snap.svg share/icons/breeze/actions/24/kdenlive-spacer-tool.svg share/icons/breeze/actions/24/kdenlive-split-audio.svg share/icons/breeze/actions/24/kdenlive-track_has_effect.svg share/icons/breeze/actions/24/kdenlive-unlock.svg share/icons/breeze/actions/24/kdenlive-unselect-all.svg share/icons/breeze/actions/24/kdenlive-up.svg share/icons/breeze/actions/24/kdenlive-zindex-bottom.svg share/icons/breeze/actions/24/kdenlive-zindex-down.svg share/icons/breeze/actions/24/kdenlive-zindex-top.svg share/icons/breeze/actions/24/kdenlive-zindex-up.svg share/icons/breeze/actions/24/kdenlive-zone-end.svg share/icons/breeze/actions/24/kdenlive-zone-start.svg share/icons/breeze/actions/24/kdenlive-zoom-large.svg share/icons/breeze/actions/24/kdenlive-zoom-small.svg share/icons/breeze/actions/24/kdocumentinfo.svg share/icons/breeze/actions/24/key-enter.svg share/icons/breeze/actions/24/keyframe-add.svg share/icons/breeze/actions/24/keyframe-disable.svg share/icons/breeze/actions/24/keyframe-duplicate.svg share/icons/breeze/actions/24/keyframe-next.svg share/icons/breeze/actions/24/keyframe-previous.svg share/icons/breeze/actions/24/keyframe-record.svg share/icons/breeze/actions/24/keyframe-remove.svg share/icons/breeze/actions/24/keyframe.svg share/icons/breeze/actions/24/kmousetool_off.svg share/icons/breeze/actions/24/kmousetool_on.svg share/icons/breeze/actions/24/kmouth-phrase-new.svg share/icons/breeze/actions/24/kmouth-phrase.svg share/icons/breeze/actions/24/kmouth-phrasebook.svg share/icons/breeze/actions/24/kmouth-phresebook-new.svg share/icons/breeze/actions/24/knotes_alarm.svg share/icons/breeze/actions/24/knotes_date.svg share/icons/breeze/actions/24/knotes_delete.svg share/icons/breeze/actions/24/know.svg share/icons/breeze/actions/24/kontact-import-wizard.svg share/icons/breeze/actions/24/kontes_close.svg share/icons/breeze/actions/24/kr_combine.svg share/icons/breeze/actions/24/kr_comparedirs.svg share/icons/breeze/actions/24/kr_diskusage.svg share/icons/breeze/actions/24/kr_jumpback.svg share/icons/breeze/actions/24/kr_mountman.svg share/icons/breeze/actions/24/kr_setjumpback.svg share/icons/breeze/actions/24/kr_syncbrowse_off.svg share/icons/breeze/actions/24/kr_syncbrowse_on.svg share/icons/breeze/actions/24/kr_unselect.svg share/icons/breeze/actions/24/kstars_advanced.svg share/icons/breeze/actions/24/kstars_catalog.svg share/icons/breeze/actions/24/kstars_cbound.svg share/icons/breeze/actions/24/kstars_clines.svg share/icons/breeze/actions/24/kstars_cnames.svg share/icons/breeze/actions/24/kstars_colors.svg share/icons/breeze/actions/24/kstars_constellationart.svg share/icons/breeze/actions/24/kstars_deepsky.svg share/icons/breeze/actions/24/kstars_ekos.svg share/icons/breeze/actions/24/kstars_fitsviewer.svg share/icons/breeze/actions/24/kstars_flag.svg share/icons/breeze/actions/24/kstars_grid.svg share/icons/breeze/actions/24/kstars_guides.svg share/icons/breeze/actions/24/kstars_hgrid.svg share/icons/breeze/actions/24/kstars_horizon.svg share/icons/breeze/actions/24/kstars_indi.svg share/icons/breeze/actions/24/kstars_mw.svg share/icons/breeze/actions/24/kstars_planets.svg share/icons/breeze/actions/24/kstars_satellites.svg share/icons/breeze/actions/24/kstars_solarsystem.svg share/icons/breeze/actions/24/kstars_stars.svg share/icons/breeze/actions/24/kstars_supernovae.svg share/icons/breeze/actions/24/kstars_xplanet.svg share/icons/breeze/actions/24/kt-add-feeds.svg share/icons/breeze/actions/24/kt-add-filters.svg share/icons/breeze/actions/24/kt-bandwidth-scheduler.svg share/icons/breeze/actions/24/kt-change-tracker.svg share/icons/breeze/actions/24/kt-check-data.svg share/icons/breeze/actions/24/kt-chunks.svg share/icons/breeze/actions/24/kt-encrypted.svg share/icons/breeze/actions/24/kt-info-widget.svg share/icons/breeze/actions/24/kt-magnet.svg share/icons/breeze/actions/24/kt-pause.svg share/icons/breeze/actions/24/kt-plugins.svg share/icons/breeze/actions/24/kt-queue-manager.svg share/icons/breeze/actions/24/kt-remove-feeds.svg share/icons/breeze/actions/24/kt-remove-filters.svg share/icons/breeze/actions/24/kt-remove.svg share/icons/breeze/actions/24/kt-restore-defaults.svg share/icons/breeze/actions/24/kt-set-max-download-speed.svg share/icons/breeze/actions/24/kt-set-max-upload-speed.svg share/icons/breeze/actions/24/kt-show-statusbar.svg share/icons/breeze/actions/24/kt-speed-limits.svg share/icons/breeze/actions/24/kt-start-all.svg share/icons/breeze/actions/24/kt-start.svg share/icons/breeze/actions/24/kt-stop-all.svg share/icons/breeze/actions/24/kt-stop.svg share/icons/breeze/actions/24/ktnef_extract_all_to.svg share/icons/breeze/actions/24/ktnef_extract_to.svg share/icons/breeze/actions/24/l2h.svg share/icons/breeze/actions/24/label-amarok.svg share/icons/breeze/actions/24/label.svg share/icons/breeze/actions/24/labplot-1x-zoom.svg share/icons/breeze/actions/24/labplot-2x-zoom.svg share/icons/breeze/actions/24/labplot-3x-zoom.svg share/icons/breeze/actions/24/labplot-4x-zoom.svg share/icons/breeze/actions/24/labplot-5x-zoom.svg share/icons/breeze/actions/24/labplot-TeX-logo.svg share/icons/breeze/actions/24/labplot-auto-scale-all.svg share/icons/breeze/actions/24/labplot-auto-scale-x.svg share/icons/breeze/actions/24/labplot-auto-scale-y.svg share/icons/breeze/actions/24/labplot-axis-horizontal.svg share/icons/breeze/actions/24/labplot-axis-vertical.svg share/icons/breeze/actions/24/labplot-cursor-arrow.svg share/icons/breeze/actions/24/labplot-editbreaklayout.svg share/icons/breeze/actions/24/labplot-editgrid.svg share/icons/breeze/actions/24/labplot-edithlayout.svg share/icons/breeze/actions/24/labplot-editvlayout.svg share/icons/breeze/actions/24/labplot-format-text-symbol.svg share/icons/breeze/actions/24/labplot-matrix-new.svg share/icons/breeze/actions/24/labplot-matrix.svg share/icons/breeze/actions/24/labplot-plot-axis-points.svg share/icons/breeze/actions/24/labplot-shift-down-y.svg share/icons/breeze/actions/24/labplot-shift-left-x.svg share/icons/breeze/actions/24/labplot-shift-right-x.svg share/icons/breeze/actions/24/labplot-shift-up-y.svg share/icons/breeze/actions/24/labplot-spreadsheet-new.svg share/icons/breeze/actions/24/labplot-spreadsheet.svg share/icons/breeze/actions/24/labplot-transform-move.svg share/icons/breeze/actions/24/labplot-workbook-new.svg share/icons/breeze/actions/24/labplot-workbook.svg share/icons/breeze/actions/24/labplot-worksheet-new.svg share/icons/breeze/actions/24/labplot-worksheet.svg share/icons/breeze/actions/24/labplot-xy-curve-points.svg share/icons/breeze/actions/24/labplot-xy-curve-segments.svg share/icons/breeze/actions/24/labplot-xy-curve.svg share/icons/breeze/actions/24/labplot-xy-equation-curve.svg share/icons/breeze/actions/24/labplot-xy-fit-curve.svg share/icons/breeze/actions/24/labplot-xy-fourier-filter-curve.svg share/icons/breeze/actions/24/labplot-xy-fourier-transform-curve.svg share/icons/breeze/actions/24/labplot-xy-interpolation-curve.svg share/icons/breeze/actions/24/labplot-xy-plot-four-axes.svg share/icons/breeze/actions/24/labplot-xy-plot-two-axes-centered-origin.svg share/icons/breeze/actions/24/labplot-xy-plot-two-axes-centered.svg share/icons/breeze/actions/24/labplot-xy-plot-two-axes.svg share/icons/breeze/actions/24/labplot-xy-smoothing-curve.svg share/icons/breeze/actions/24/labplot-zoom-in-x.svg share/icons/breeze/actions/24/labplot-zoom-in-y.svg share/icons/breeze/actions/24/labplot-zoom-out-x.svg share/icons/breeze/actions/24/labplot-zoom-out-y.svg share/icons/breeze/actions/24/labplot-zoom-select-x.svg share/icons/breeze/actions/24/labplot-zoom-select-y.svg share/icons/breeze/actions/24/labplot-zoom-select.svg share/icons/breeze/actions/24/language-chooser.svg share/icons/breeze/actions/24/languages.svg share/icons/breeze/actions/24/latex-config.svg share/icons/breeze/actions/24/latex.svg share/icons/breeze/actions/24/layer-visible-off.svg share/icons/breeze/actions/24/layer-visible-on.svg share/icons/breeze/actions/24/lensautofix.svg share/icons/breeze/actions/24/lensdistortion.svg share/icons/breeze/actions/24/libpeas-plugin.svg share/icons/breeze/actions/24/license.svg share/icons/breeze/actions/24/lighttable.svg share/icons/breeze/actions/24/lighttableadd.svg share/icons/breeze/actions/24/lilypond.svg share/icons/breeze/actions/24/linear.svg share/icons/breeze/actions/24/lines-connector.svg share/icons/breeze/actions/24/link.svg share/icons/breeze/actions/24/list-add-font.svg share/icons/breeze/actions/24/list-add-user.svg share/icons/breeze/actions/24/list-add.svg share/icons/breeze/actions/24/list-remove-user.svg share/icons/breeze/actions/24/list-remove.svg share/icons/breeze/actions/24/list-resource-add.svg share/icons/breeze/actions/24/lock.svg share/icons/breeze/actions/24/love-amarok.svg share/icons/breeze/actions/24/love.svg share/icons/breeze/actions/24/low-brightness.svg share/icons/breeze/actions/24/mail-attachment.svg share/icons/breeze/actions/24/mail-deleted.svg share/icons/breeze/actions/24/mail-download-later.svg share/icons/breeze/actions/24/mail-download-now.svg share/icons/breeze/actions/24/mail-encrypted-full.svg share/icons/breeze/actions/24/mail-encrypted-part.svg share/icons/breeze/actions/24/mail-encrypted.svg share/icons/breeze/actions/24/mail-flag.svg share/icons/breeze/actions/24/mail-forward.svg share/icons/breeze/actions/24/mail-forwarded-replied.svg share/icons/breeze/actions/24/mail-forwarded.svg share/icons/breeze/actions/24/mail-invitation.svg share/icons/breeze/actions/24/mail-mark-important.svg share/icons/breeze/actions/24/mail-mark-junk.svg share/icons/breeze/actions/24/mail-mark-notjunk.svg share/icons/breeze/actions/24/mail-mark-read.svg share/icons/breeze/actions/24/mail-mark-task.svg share/icons/breeze/actions/24/mail-mark-unread-new.svg share/icons/breeze/actions/24/mail-mark-unread.svg share/icons/breeze/actions/24/mail-meeting-request-reply.svg share/icons/breeze/actions/24/mail-message-new-list.svg share/icons/breeze/actions/24/mail-message-new.svg share/icons/breeze/actions/24/mail-message.svg share/icons/breeze/actions/24/mail-queue.svg share/icons/breeze/actions/24/mail-queued.svg share/icons/breeze/actions/24/mail-read.svg share/icons/breeze/actions/24/mail-receive.svg share/icons/breeze/actions/24/mail-replied.svg share/icons/breeze/actions/24/mail-reply-all.svg share/icons/breeze/actions/24/mail-reply-custom-all.svg share/icons/breeze/actions/24/mail-reply-custom.svg share/icons/breeze/actions/24/mail-reply-list.svg share/icons/breeze/actions/24/mail-reply-sender.svg share/icons/breeze/actions/24/mail-send.svg share/icons/breeze/actions/24/mail-sent.svg share/icons/breeze/actions/24/mail-signature-unknown.svg share/icons/breeze/actions/24/mail-signed-full.svg share/icons/breeze/actions/24/mail-signed-fully.svg share/icons/breeze/actions/24/mail-signed-part.svg share/icons/breeze/actions/24/mail-signed-verified.svg share/icons/breeze/actions/24/mail-signed.svg share/icons/breeze/actions/24/mail-tagged.svg share/icons/breeze/actions/24/mail-task.svg share/icons/breeze/actions/24/mail-thread-ignored.svg share/icons/breeze/actions/24/mail-thread-watch.svg share/icons/breeze/actions/24/mail-unread-new.svg share/icons/breeze/actions/24/mail-unread.svg share/icons/breeze/actions/24/makeidx.svg share/icons/breeze/actions/24/map-flat.svg share/icons/breeze/actions/24/map-globe.svg share/icons/breeze/actions/24/map-gnomonic.svg share/icons/breeze/actions/24/map-mercator.svg share/icons/breeze/actions/24/markasblank.svg share/icons/breeze/actions/24/math0.svg share/icons/breeze/actions/24/mathmode.svg share/icons/breeze/actions/24/measure.svg share/icons/breeze/actions/24/media-album-cover-manager-amarok.svg share/icons/breeze/actions/24/media-album-cover.svg share/icons/breeze/actions/24/media-album-repeat-amarok.svg share/icons/breeze/actions/24/media-album-track.svg share/icons/breeze/actions/24/media-eject.svg share/icons/breeze/actions/24/media-mount.svg share/icons/breeze/actions/24/media-playback-pause.svg share/icons/breeze/actions/24/media-playback-start.svg share/icons/breeze/actions/24/media-playback-stop.svg share/icons/breeze/actions/24/media-playlist-append.svg share/icons/breeze/actions/24/media-playlist-normal.svg share/icons/breeze/actions/24/media-playlist-play.svg share/icons/breeze/actions/24/media-playlist-repeat-song.svg share/icons/breeze/actions/24/media-playlist-repeat.svg share/icons/breeze/actions/24/media-playlist-shuffle.svg share/icons/breeze/actions/24/media-random-albums-amarok.svg share/icons/breeze/actions/24/media-random-tracks-amarok.svg share/icons/breeze/actions/24/media-record.svg share/icons/breeze/actions/24/media-repeat-album-amarok.svg share/icons/breeze/actions/24/media-repeat-all.svg share/icons/breeze/actions/24/media-repeat-none.svg share/icons/breeze/actions/24/media-repeat-playlist-amarok.svg share/icons/breeze/actions/24/media-repeat-single.svg share/icons/breeze/actions/24/media-repeat-track-amarok.svg share/icons/breeze/actions/24/media-seek-backward.svg share/icons/breeze/actions/24/media-seek-forward.svg share/icons/breeze/actions/24/media-show-active-track-amarok.svg share/icons/breeze/actions/24/media-skip-backward.svg share/icons/breeze/actions/24/media-skip-forward.svg share/icons/breeze/actions/24/media-standard-track-progression-amarok.svg share/icons/breeze/actions/24/media-track-add-amarok.svg share/icons/breeze/actions/24/media-track-edit-amarok.svg share/icons/breeze/actions/24/media-track-queue-amarok.svg share/icons/breeze/actions/24/media-track-remove-amarok.svg share/icons/breeze/actions/24/media-track-show-active.svg share/icons/breeze/actions/24/medskip.svg share/icons/breeze/actions/24/meeting-attending-tentative.svg share/icons/breeze/actions/24/meeting-attending.svg share/icons/breeze/actions/24/meeting-participant-no-response.svg share/icons/breeze/actions/24/meeting-participant-request-response.svg share/icons/breeze/actions/24/menu_new.svg share/icons/breeze/actions/24/menu_new_sep.svg share/icons/breeze/actions/24/merge.svg share/icons/breeze/actions/24/messagebox_warning.svg share/icons/breeze/actions/24/milestone.svg share/icons/breeze/actions/24/minuet-chords.svg share/icons/breeze/actions/24/minuet-intervals.svg share/icons/breeze/actions/24/minuet-rhythms.svg share/icons/breeze/actions/24/minuet-scales.svg share/icons/breeze/actions/24/mode1.svg share/icons/breeze/actions/24/mode2.svg share/icons/breeze/actions/24/mode3.svg share/icons/breeze/actions/24/mode4.svg share/icons/breeze/actions/24/mode5.svg share/icons/breeze/actions/24/modified.svg share/icons/breeze/actions/24/motion_path_animations.svg share/icons/breeze/actions/24/mpost.svg share/icons/breeze/actions/24/msgid2msgstr.svg share/icons/breeze/actions/24/multirow.svg share/icons/breeze/actions/24/music-amarok.svg share/icons/breeze/actions/24/music-note-16th.svg share/icons/breeze/actions/24/network-connect.svg share/icons/breeze/actions/24/network-disconnect.svg share/icons/breeze/actions/24/new-audio-alarm.svg share/icons/breeze/actions/24/new-command-alarm.svg share/icons/breeze/actions/24/newline.svg share/icons/breeze/actions/24/news-subscribe.svg share/icons/breeze/actions/24/news-unsubscribe.svg share/icons/breeze/actions/24/nextfuzzy.svg share/icons/breeze/actions/24/nextfuzzyuntrans.svg share/icons/breeze/actions/24/nextuntranslated.svg share/icons/breeze/actions/24/nocover.svg share/icons/breeze/actions/24/node-add.svg share/icons/breeze/actions/24/node-break.svg share/icons/breeze/actions/24/node-delete-segment.svg share/icons/breeze/actions/24/node-delete.svg share/icons/breeze/actions/24/node-join-segment.svg share/icons/breeze/actions/24/node-join.svg share/icons/breeze/actions/24/node-segment-curve.svg share/icons/breeze/actions/24/node-segment-line.svg share/icons/breeze/actions/24/node-transform.svg share/icons/breeze/actions/24/node-type-auto-smooth.svg share/icons/breeze/actions/24/node-type-cusp.svg share/icons/breeze/actions/24/node-type-smooth.svg share/icons/breeze/actions/24/node-type-symmetric.svg share/icons/breeze/actions/24/node.svg share/icons/breeze/actions/24/noisereduction.svg share/icons/breeze/actions/24/note.svg share/icons/breeze/actions/24/notifications-disabled.svg share/icons/breeze/actions/24/notifications.svg share/icons/breeze/actions/24/nroot.svg share/icons/breeze/actions/24/object-align-horizontal-center-calligra.svg share/icons/breeze/actions/24/object-align-horizontal-left-calligra.svg share/icons/breeze/actions/24/object-align-horizontal-right-calligra.svg share/icons/breeze/actions/24/object-align-vertical-bottom-calligra.svg share/icons/breeze/actions/24/object-align-vertical-bottom-top-calligra.svg share/icons/breeze/actions/24/object-align-vertical-center-calligra.svg share/icons/breeze/actions/24/object-align-vertical-top-calligra.svg share/icons/breeze/actions/24/object-columns.svg share/icons/breeze/actions/24/object-flip-horizontal.svg share/icons/breeze/actions/24/object-flip-vertical.svg share/icons/breeze/actions/24/object-group-calligra.svg share/icons/breeze/actions/24/object-group.svg share/icons/breeze/actions/24/object-locked.svg share/icons/breeze/actions/24/object-order-back-calligra.svg share/icons/breeze/actions/24/object-order-back.svg share/icons/breeze/actions/24/object-order-front-calligra.svg share/icons/breeze/actions/24/object-order-front.svg share/icons/breeze/actions/24/object-order-lower-calligra.svg share/icons/breeze/actions/24/object-order-lower.svg share/icons/breeze/actions/24/object-order-raise-calligra.svg share/icons/breeze/actions/24/object-order-raise.svg share/icons/breeze/actions/24/object-rotate-left.svg share/icons/breeze/actions/24/object-rotate-right.svg share/icons/breeze/actions/24/object-rows.svg share/icons/breeze/actions/24/object-to-path.svg share/icons/breeze/actions/24/object-ungroup-calligra.svg share/icons/breeze/actions/24/object-ungroup.svg share/icons/breeze/actions/24/object-unlocked.svg share/icons/breeze/actions/24/object.svg share/icons/breeze/actions/24/object_node.svg share/icons/breeze/actions/24/office-chart-area-focus-peak-node.svg share/icons/breeze/actions/24/office-chart-area-percentage.svg share/icons/breeze/actions/24/office-chart-area-stacked.svg share/icons/breeze/actions/24/office-chart-area.svg share/icons/breeze/actions/24/office-chart-bar-percentage.svg share/icons/breeze/actions/24/office-chart-bar-stacked.svg share/icons/breeze/actions/24/office-chart-bar.svg share/icons/breeze/actions/24/office-chart-line-forecast.svg share/icons/breeze/actions/24/office-chart-line-percentage.svg share/icons/breeze/actions/24/office-chart-line-stacked.svg share/icons/breeze/actions/24/office-chart-line.svg share/icons/breeze/actions/24/office-chart-pie.svg share/icons/breeze/actions/24/office-chart-polar-stacked.svg share/icons/breeze/actions/24/office-chart-polar.svg share/icons/breeze/actions/24/office-chart-ring.svg share/icons/breeze/actions/24/office-chart-scatter.svg share/icons/breeze/actions/24/office-report.svg share/icons/breeze/actions/24/offline-settings.svg share/icons/breeze/actions/24/offline.svg share/icons/breeze/actions/24/oilpaint.svg share/icons/breeze/actions/24/online.svg share/icons/breeze/actions/24/open-for-editing.svg share/icons/breeze/actions/24/open-menu-symbolic.svg share/icons/breeze/actions/24/output_win.svg share/icons/breeze/actions/24/overexposure.svg share/icons/breeze/actions/24/overflow-menu-left.svg share/icons/breeze/actions/24/overflow-menu-right.svg share/icons/breeze/actions/24/overflow-menu.svg share/icons/breeze/actions/24/package.svg share/icons/breeze/actions/24/page-2sides.svg share/icons/breeze/actions/24/page-3sides.svg share/icons/breeze/actions/24/page-4sides.svg share/icons/breeze/actions/24/page-simple.svg share/icons/breeze/actions/24/page-zoom.svg share/icons/breeze/actions/24/paint-none.svg share/icons/breeze/actions/24/paper-color.svg share/icons/breeze/actions/24/password-copy.svg share/icons/breeze/actions/24/password-generate.svg share/icons/breeze/actions/24/password-show-off.svg share/icons/breeze/actions/24/password-show-on.svg share/icons/breeze/actions/24/path-clip-edit.svg share/icons/breeze/actions/24/path-effect-parameter-next.svg share/icons/breeze/actions/24/path-mask-edit.svg share/icons/breeze/actions/24/path-mode-bezier.svg share/icons/breeze/actions/24/path-mode-polyline-paraxial.svg share/icons/breeze/actions/24/path-mode-polyline.svg share/icons/breeze/actions/24/path-mode-spiro.svg share/icons/breeze/actions/24/path-reverse.svg share/icons/breeze/actions/24/path-simplify.svg share/icons/breeze/actions/24/pathshape.svg share/icons/breeze/actions/24/pdf-annotations.svg share/icons/breeze/actions/24/pdflatex.svg share/icons/breeze/actions/24/pdftex.svg share/icons/breeze/actions/24/pentagon-shape.svg share/icons/breeze/actions/24/perspective.svg share/icons/breeze/actions/24/photo.svg share/icons/breeze/actions/24/photos-amarok.svg share/icons/breeze/actions/24/pin.svg share/icons/breeze/actions/24/player-time.svg share/icons/breeze/actions/24/player-volume-muted.svg share/icons/breeze/actions/24/player-volume.svg share/icons/breeze/actions/24/playlist-generator.svg share/icons/breeze/actions/24/playlist-sort.svg share/icons/breeze/actions/24/plugins.svg share/icons/breeze/actions/24/podcast-amarok.svg share/icons/breeze/actions/24/pointer.svg share/icons/breeze/actions/24/polygon-add-nodes.svg share/icons/breeze/actions/24/polygon-merge-nodes.svg share/icons/breeze/actions/24/port.svg share/icons/breeze/actions/24/postalcode.svg share/icons/breeze/actions/24/practice-setup.svg share/icons/breeze/actions/24/practice-start.svg share/icons/breeze/actions/24/practice-stop.svg share/icons/breeze/actions/24/precondition.svg share/icons/breeze/actions/24/preferences-indicator-amarok.svg share/icons/breeze/actions/24/preferences-media-playback-amarok.svg share/icons/breeze/actions/24/preferences-other.svg share/icons/breeze/actions/24/preferences-system-symbolic.svg share/icons/breeze/actions/24/preflight-verifier.svg share/icons/breeze/actions/24/presence_away.svg share/icons/breeze/actions/24/presence_offline.svg share/icons/breeze/actions/24/presence_online.svg share/icons/breeze/actions/24/presence_unknown.svg share/icons/breeze/actions/24/prevfuzzy.svg share/icons/breeze/actions/24/prevfuzzyuntrans.svg share/icons/breeze/actions/24/preview-add-zone.svg share/icons/breeze/actions/24/preview-remove-all.svg share/icons/breeze/actions/24/preview-remove-zone.svg share/icons/breeze/actions/24/preview-render-off.svg share/icons/breeze/actions/24/preview-render-on.svg share/icons/breeze/actions/24/preview.svg share/icons/breeze/actions/24/preview_math.svg share/icons/breeze/actions/24/preview_sel.svg share/icons/breeze/actions/24/prevuntranslated.svg share/icons/breeze/actions/24/primarykey_constraint.svg share/icons/breeze/actions/24/process-stop.svg share/icons/breeze/actions/24/project-defaults.svg share/icons/breeze/actions/24/project-development-close-all.svg share/icons/breeze/actions/24/project-development-close.svg share/icons/breeze/actions/24/project-development-new-template.svg share/icons/breeze/actions/24/project-development.svg share/icons/breeze/actions/24/project-open.svg share/icons/breeze/actions/24/project_add.svg share/icons/breeze/actions/24/project_archive.svg share/icons/breeze/actions/24/project_rebuild.svg share/icons/breeze/actions/24/project_remove.svg share/icons/breeze/actions/24/project_show.svg share/icons/breeze/actions/24/projectgrep.svg share/icons/breeze/actions/24/ps2pdf.svg share/icons/breeze/actions/24/qa.svg share/icons/breeze/actions/24/question.svg share/icons/breeze/actions/24/quick.svg share/icons/breeze/actions/24/quickopen-class.svg share/icons/breeze/actions/24/quickopen-file.svg share/icons/breeze/actions/24/quickopen-function.svg share/icons/breeze/actions/24/quickopen.svg share/icons/breeze/actions/24/quickview.svg share/icons/breeze/actions/24/quickwizard.svg share/icons/breeze/actions/24/raindrop.svg share/icons/breeze/actions/24/randomize.svg share/icons/breeze/actions/24/ratiocrop.svg share/icons/breeze/actions/24/realization.svg share/icons/breeze/actions/24/rectangle-shape.svg share/icons/breeze/actions/24/redeyes.svg share/icons/breeze/actions/24/refactor.svg share/icons/breeze/actions/24/refreshstructure.svg share/icons/breeze/actions/24/region.svg share/icons/breeze/actions/24/relation.svg share/icons/breeze/actions/24/relationship.svg share/icons/breeze/actions/24/remove-amarok.svg share/icons/breeze/actions/24/remove-link.svg share/icons/breeze/actions/24/remove.svg share/icons/breeze/actions/24/removecell.svg share/icons/breeze/actions/24/repeat.svg share/icons/breeze/actions/24/resource-calendar-child-insert.svg share/icons/breeze/actions/24/resource-calendar-child.svg share/icons/breeze/actions/24/resource-calendar-insert.svg share/icons/breeze/actions/24/resource-group-new.svg share/icons/breeze/actions/24/resource-group.svg share/icons/breeze/actions/24/restoration.svg share/icons/breeze/actions/24/reverse.svg share/icons/breeze/actions/24/roll.svg share/icons/breeze/actions/24/routeplanning.svg share/icons/breeze/actions/24/rss.svg share/icons/breeze/actions/24/run-build-clean.svg share/icons/breeze/actions/24/run-build-configure.svg share/icons/breeze/actions/24/run-build-file.svg share/icons/breeze/actions/24/run-build-install-root.svg share/icons/breeze/actions/24/run-build-install.svg share/icons/breeze/actions/24/run-build-prune.svg share/icons/breeze/actions/24/run-build.svg share/icons/breeze/actions/24/run-clean.svg share/icons/breeze/actions/24/run-install.svg share/icons/breeze/actions/24/scriptnew.svg share/icons/breeze/actions/24/scriptopen.svg share/icons/breeze/actions/24/secure-card.svg share/icons/breeze/actions/24/select-rectangular.svg share/icons/breeze/actions/24/select.svg share/icons/breeze/actions/24/selection.svg share/icons/breeze/actions/24/send_signal.svg share/icons/breeze/actions/24/services.svg share/icons/breeze/actions/24/set-language.svg share/icons/breeze/actions/24/settings-configure.svg share/icons/breeze/actions/24/shallow-history.svg share/icons/breeze/actions/24/shape-choose.svg share/icons/breeze/actions/24/shape-cuboid.svg share/icons/breeze/actions/24/shapes.svg share/icons/breeze/actions/24/sharpenimage.svg share/icons/breeze/actions/24/shear.svg share/icons/breeze/actions/24/show-all-effects.svg share/icons/breeze/actions/24/show-gpu-effects.svg share/icons/breeze/actions/24/show-menu.svg share/icons/breeze/actions/24/show-node-handles.svg share/icons/breeze/actions/24/show-offline.svg share/icons/breeze/actions/24/show-path-outline.svg share/icons/breeze/actions/24/show_table_column.svg share/icons/breeze/actions/24/show_table_row.svg share/icons/breeze/actions/24/shuffle.svg share/icons/breeze/actions/24/sidebar-collapse-left.svg share/icons/breeze/actions/24/sidebar-collapse-right.svg share/icons/breeze/actions/24/sidebar-collapse.svg share/icons/breeze/actions/24/sidebar-expand-left.svg share/icons/breeze/actions/24/sidebar-expand-right.svg share/icons/breeze/actions/24/sidebar-expand.svg share/icons/breeze/actions/24/sidebar-show-symbolic.svg share/icons/breeze/actions/24/similarartists-amarok.svg share/icons/breeze/actions/24/skg-chart-bubble.svg share/icons/breeze/actions/24/skrooge_credit_card.svg share/icons/breeze/actions/24/skrooge_less.svg share/icons/breeze/actions/24/skrooge_more.svg share/icons/breeze/actions/24/skrooge_much_less.svg share/icons/breeze/actions/24/skrooge_much_more.svg share/icons/breeze/actions/24/skrooge_type.svg share/icons/breeze/actions/24/slanted.svg share/icons/breeze/actions/24/smallclock.svg share/icons/breeze/actions/24/smallfrac.svg share/icons/breeze/actions/24/smallskip.svg share/icons/breeze/actions/24/smartnewline.svg share/icons/breeze/actions/24/smiley-add.svg share/icons/breeze/actions/24/smiley-shape.svg share/icons/breeze/actions/24/smiley.svg share/icons/breeze/actions/24/smooth.svg share/icons/breeze/actions/24/snap-angle.svg share/icons/breeze/actions/24/snap-bounding-box-center.svg share/icons/breeze/actions/24/snap-bounding-box-corners.svg share/icons/breeze/actions/24/snap-bounding-box-edges.svg share/icons/breeze/actions/24/snap-bounding-box-midpoints.svg share/icons/breeze/actions/24/snap-bounding-box.svg share/icons/breeze/actions/24/snap-extension.svg share/icons/breeze/actions/24/snap-grid-guide-intersections.svg share/icons/breeze/actions/24/snap-guideline.svg share/icons/breeze/actions/24/snap-intersection.svg share/icons/breeze/actions/24/snap-node.svg share/icons/breeze/actions/24/snap-nodes-center.svg share/icons/breeze/actions/24/snap-nodes-cusp.svg share/icons/breeze/actions/24/snap-nodes-intersection.svg share/icons/breeze/actions/24/snap-nodes-midpoint.svg share/icons/breeze/actions/24/snap-nodes-path.svg share/icons/breeze/actions/24/snap-nodes-rotation-center.svg share/icons/breeze/actions/24/snap-nodes-smooth.svg share/icons/breeze/actions/24/snap-orthogonal.svg share/icons/breeze/actions/24/snap-page.svg share/icons/breeze/actions/24/snap-text-baseline.svg share/icons/breeze/actions/24/snap.svg share/icons/breeze/actions/24/social.svg share/icons/breeze/actions/24/sort-name.svg share/icons/breeze/actions/24/sort-presence.svg share/icons/breeze/actions/24/sort_incr.svg share/icons/breeze/actions/24/speaker.svg share/icons/breeze/actions/24/special_paste.svg share/icons/breeze/actions/24/specific-setup.svg share/icons/breeze/actions/24/speedometer.svg share/icons/breeze/actions/24/spiral-shape.svg share/icons/breeze/actions/24/split.svg share/icons/breeze/actions/24/spreadsheetshape.svg share/icons/breeze/actions/24/sqrt.svg share/icons/breeze/actions/24/standard-connector.svg share/icons/breeze/actions/24/star-shape.svg share/icons/breeze/actions/24/start-over.svg share/icons/breeze/actions/24/state-fork.svg share/icons/breeze/actions/24/stateshape.svg share/icons/breeze/actions/24/statetool.svg share/icons/breeze/actions/24/step_object_Anchor.svg share/icons/breeze/actions/24/step_object_Box.svg share/icons/breeze/actions/24/step_object_ChargedParticle.svg share/icons/breeze/actions/24/step_object_CircularMotor.svg share/icons/breeze/actions/24/step_object_Controller.svg share/icons/breeze/actions/24/step_object_CoulombForce.svg share/icons/breeze/actions/24/step_object_Disk.svg share/icons/breeze/actions/24/step_object_Gas.svg share/icons/breeze/actions/24/step_object_GasParticle.svg share/icons/breeze/actions/24/step_object_Graph.svg share/icons/breeze/actions/24/step_object_GravitationForce.svg share/icons/breeze/actions/24/step_object_LinearMotor.svg share/icons/breeze/actions/24/step_object_Meter.svg share/icons/breeze/actions/24/step_object_Note.svg share/icons/breeze/actions/24/step_object_Particle.svg share/icons/breeze/actions/24/step_object_Pin.svg share/icons/breeze/actions/24/step_object_Polygon.svg share/icons/breeze/actions/24/step_object_Rope.svg share/icons/breeze/actions/24/step_object_SoftBody.svg share/icons/breeze/actions/24/step_object_Spring.svg share/icons/breeze/actions/24/step_object_Stick.svg share/icons/breeze/actions/24/step_object_Tracer.svg share/icons/breeze/actions/24/step_object_WeightForce.svg share/icons/breeze/actions/24/stickers.svg share/icons/breeze/actions/24/story-editor.svg share/icons/breeze/actions/24/straight-connector.svg share/icons/breeze/actions/24/stroke-cap-bevel.svg share/icons/breeze/actions/24/stroke-cap-butt.svg share/icons/breeze/actions/24/stroke-cap-miter.svg share/icons/breeze/actions/24/stroke-cap-round.svg share/icons/breeze/actions/24/stroke-cap-square.svg share/icons/breeze/actions/24/stroke-join-bevel.svg share/icons/breeze/actions/24/stroke-join-miter.svg share/icons/breeze/actions/24/stroke-join-round.svg share/icons/breeze/actions/24/stroke-to-path.svg share/icons/breeze/actions/24/strong.svg share/icons/breeze/actions/24/structure.svg share/icons/breeze/actions/24/subsystem.svg share/icons/breeze/actions/24/svn-commit.svg share/icons/breeze/actions/24/svn-update.svg share/icons/breeze/actions/24/swap-panels.svg share/icons/breeze/actions/24/system-hibernate.svg share/icons/breeze/actions/24/system-lock-screen.svg share/icons/breeze/actions/24/system-log-out-rtl.svg share/icons/breeze/actions/24/system-log-out.svg share/icons/breeze/actions/24/system-reboot.svg share/icons/breeze/actions/24/system-run.svg share/icons/breeze/actions/24/system-save-session.svg share/icons/breeze/actions/24/system-search.svg share/icons/breeze/actions/24/system-shutdown.svg share/icons/breeze/actions/24/system-suspend-hibernate.svg share/icons/breeze/actions/24/system-suspend.svg share/icons/breeze/actions/24/system-switch-user.svg share/icons/breeze/actions/24/system-upgrade.svg share/icons/breeze/actions/24/system-users.svg share/icons/breeze/actions/24/tab-close-other.svg share/icons/breeze/actions/24/tab-close.svg share/icons/breeze/actions/24/tab-detach.svg share/icons/breeze/actions/24/tab-duplicate.svg share/icons/breeze/actions/24/tab-new-background.svg share/icons/breeze/actions/24/tab-new.svg share/icons/breeze/actions/24/table.svg share/icons/breeze/actions/24/tag-addressbook.svg share/icons/breeze/actions/24/tag-assigned.svg share/icons/breeze/actions/24/tag-delete.svg share/icons/breeze/actions/24/tag-edit.svg share/icons/breeze/actions/24/tag-events.svg share/icons/breeze/actions/24/tag-folder.svg share/icons/breeze/actions/24/tag-new.svg share/icons/breeze/actions/24/tag-people.svg share/icons/breeze/actions/24/tag-places.svg share/icons/breeze/actions/24/tag-properties.svg share/icons/breeze/actions/24/tag-recents.svg share/icons/breeze/actions/24/tag-reset.svg share/icons/breeze/actions/24/tag.svg share/icons/breeze/actions/24/task-new.svg share/icons/breeze/actions/24/taxes-finances.svg share/icons/breeze/actions/24/template.svg share/icons/breeze/actions/24/texcompiler.svg share/icons/breeze/actions/24/texlion.svg share/icons/breeze/actions/24/text-field-framed.svg share/icons/breeze/actions/24/text-field-frameless.svg share/icons/breeze/actions/24/text-field.svg share/icons/breeze/actions/24/text-flow-into-frame.svg share/icons/breeze/actions/24/text-frame-link.svg share/icons/breeze/actions/24/text-frame-unlink.svg share/icons/breeze/actions/24/text-speak.svg share/icons/breeze/actions/24/text-unflow.svg share/icons/breeze/actions/24/text-wrap.svg share/icons/breeze/actions/24/text_horz_kern.svg share/icons/breeze/actions/24/text_letter_spacing.svg share/icons/breeze/actions/24/text_line_spacing.svg share/icons/breeze/actions/24/text_remove_kerns.svg share/icons/breeze/actions/24/text_rotation.svg share/icons/breeze/actions/24/text_subscript.svg share/icons/breeze/actions/24/text_superscript.svg share/icons/breeze/actions/24/text_vert_kern.svg share/icons/breeze/actions/24/text_word_spacing.svg share/icons/breeze/actions/24/texture.svg share/icons/breeze/actions/24/timeline-extract.svg share/icons/breeze/actions/24/timeline-insert.svg share/icons/breeze/actions/24/timeline-lift.svg share/icons/breeze/actions/24/timeline-overwrite.svg share/icons/breeze/actions/24/timeline-use-zone-off.svg share/icons/breeze/actions/24/timeline-use-zone-on.svg share/icons/breeze/actions/24/tool-animator.svg share/icons/breeze/actions/24/tool-measure.svg share/icons/breeze/actions/24/tool-node-editor.svg share/icons/breeze/actions/24/tool-pointer.svg share/icons/breeze/actions/24/tool-spray.svg share/icons/breeze/actions/24/tool-text.svg share/icons/breeze/actions/24/tool-tweak.svg share/icons/breeze/actions/24/tool_brush.svg share/icons/breeze/actions/24/tool_cellformatting.svg share/icons/breeze/actions/24/tool_color_eraser.svg share/icons/breeze/actions/24/tool_color_picker.svg share/icons/breeze/actions/24/tool_curve.svg share/icons/breeze/actions/24/tool_ellipse.svg share/icons/breeze/actions/24/tool_elliptical_selection.svg share/icons/breeze/actions/24/tool_eraser.svg share/icons/breeze/actions/24/tool_flood_fill.svg share/icons/breeze/actions/24/tool_free_form_selection.svg share/icons/breeze/actions/24/tool_imageeffects.svg share/icons/breeze/actions/24/tool_line.svg share/icons/breeze/actions/24/tool_pagelayout.svg share/icons/breeze/actions/24/tool_pen.svg share/icons/breeze/actions/24/tool_polygon.svg share/icons/breeze/actions/24/tool_polyline.svg share/icons/breeze/actions/24/tool_rect_selection.svg share/icons/breeze/actions/24/tool_rectangle.svg share/icons/breeze/actions/24/tool_references.svg share/icons/breeze/actions/24/tool_review.svg share/icons/breeze/actions/24/tool_rounded_rectangle.svg share/icons/breeze/actions/24/tool_spraycan.svg share/icons/breeze/actions/24/tool_text.svg share/icons/breeze/actions/24/tools-check-spelling.svg share/icons/breeze/actions/24/tools-media-optical-burn-image.svg share/icons/breeze/actions/24/tools-media-optical-burn.svg share/icons/breeze/actions/24/tools-media-optical-copy.svg share/icons/breeze/actions/24/tools-media-optical-erase.svg share/icons/breeze/actions/24/tools-media-optical-format.svg share/icons/breeze/actions/24/tools-report-bug.svg share/icons/breeze/actions/24/tools-rip-audio-cd.svg share/icons/breeze/actions/24/tools-rip-video-cd.svg share/icons/breeze/actions/24/tools-rip-video-dvd.svg share/icons/breeze/actions/24/tools-wizard.svg share/icons/breeze/actions/24/tools.svg share/icons/breeze/actions/24/torrents.svg share/icons/breeze/actions/24/transform-browse.svg share/icons/breeze/actions/24/transform-crop-and-resize.svg share/icons/breeze/actions/24/transform-crop.svg share/icons/breeze/actions/24/transform-move-horizontal.svg share/icons/breeze/actions/24/transform-move-vertical.svg share/icons/breeze/actions/24/transform-move.svg share/icons/breeze/actions/24/transform-rotate.svg share/icons/breeze/actions/24/transform-scale-horizontal.svg share/icons/breeze/actions/24/transform-scale-textbox-points.svg share/icons/breeze/actions/24/transform-scale-vertical.svg share/icons/breeze/actions/24/transform-scale.svg share/icons/breeze/actions/24/transform-shear-down.svg share/icons/breeze/actions/24/transform-shear-left.svg share/icons/breeze/actions/24/transform-shear-right.svg share/icons/breeze/actions/24/transform-shear-up.svg share/icons/breeze/actions/24/transform-skew-horizontal.svg share/icons/breeze/actions/24/transform-skew-vertical.svg share/icons/breeze/actions/24/transsearch.svg share/icons/breeze/actions/24/trash-empty.svg share/icons/breeze/actions/24/trim-margins.svg share/icons/breeze/actions/24/trim-to-selection.svg share/icons/breeze/actions/24/typewriter.svg share/icons/breeze/actions/24/umbr-coll-message-asynchronous.svg share/icons/breeze/actions/24/umbr-coll-message-synchronous.svg share/icons/breeze/actions/24/umbr-message-asynchronous.svg share/icons/breeze/actions/24/umbr-message-found.svg share/icons/breeze/actions/24/umbr-message-lost.svg share/icons/breeze/actions/24/umbr-message-synchronous.svg share/icons/breeze/actions/24/umbrello_diagram_activity.svg share/icons/breeze/actions/24/umbrello_diagram_class.svg share/icons/breeze/actions/24/umbrello_diagram_collaboration.svg share/icons/breeze/actions/24/umbrello_diagram_component.svg share/icons/breeze/actions/24/umbrello_diagram_deployment.svg share/icons/breeze/actions/24/umbrello_diagram_entityrelationship.svg share/icons/breeze/actions/24/umbrello_diagram_sequence.svg share/icons/breeze/actions/24/umbrello_diagram_state.svg share/icons/breeze/actions/24/umbrello_diagram_usecase.svg share/icons/breeze/actions/24/underexposure.svg share/icons/breeze/actions/24/uniassociation.svg share/icons/breeze/actions/24/unique_constraint.svg share/icons/breeze/actions/24/unlock.svg share/icons/breeze/actions/24/unmarkasblank.svg share/icons/breeze/actions/24/upcomingevents-amarok.svg share/icons/breeze/actions/24/upindicator.svg share/icons/breeze/actions/24/upload-media.svg share/icons/breeze/actions/24/usecase.svg share/icons/breeze/actions/24/user-group-delete.svg share/icons/breeze/actions/24/user-group-new.svg share/icons/breeze/actions/24/user-group-properties.svg share/icons/breeze/actions/24/user-identity.svg share/icons/breeze/actions/24/user-others.svg share/icons/breeze/actions/24/user-properties.svg share/icons/breeze/actions/24/user.svg share/icons/breeze/actions/24/username-copy.svg share/icons/breeze/actions/24/vcs-branch-delete.svg share/icons/breeze/actions/24/vcs-branch.svg share/icons/breeze/actions/24/vcs-commit-cvs-cervisia.svg share/icons/breeze/actions/24/vcs-commit.svg share/icons/breeze/actions/24/vcs-diff-cvs-cervisia.svg share/icons/breeze/actions/24/vcs-diff.svg share/icons/breeze/actions/24/vcs-merge-request.svg share/icons/breeze/actions/24/vcs-merge.svg share/icons/breeze/actions/24/vcs-pull.svg share/icons/breeze/actions/24/vcs-push.svg share/icons/breeze/actions/24/vcs-remove-cvs-cervisia.svg share/icons/breeze/actions/24/vcs-stash-pop.svg share/icons/breeze/actions/24/vcs-stash.svg share/icons/breeze/actions/24/vcs-status-cvs-cervisia.svg share/icons/breeze/actions/24/vcs-update-cvs-cervisia.svg share/icons/breeze/actions/24/verb.svg share/icons/breeze/actions/24/verbatim.svg share/icons/breeze/actions/24/videoclip-amarok.svg share/icons/breeze/actions/24/view-bank-add.svg share/icons/breeze/actions/24/view-bank-delete.svg share/icons/breeze/actions/24/view-bank-edit.svg share/icons/breeze/actions/24/view-bank.svg share/icons/breeze/actions/24/view-barcode-add.svg share/icons/breeze/actions/24/view-barcode-qr.svg share/icons/breeze/actions/24/view-barcode.svg share/icons/breeze/actions/24/view-calendar-agenda.svg share/icons/breeze/actions/24/view-calendar-birthday.svg share/icons/breeze/actions/24/view-calendar-day.svg share/icons/breeze/actions/24/view-calendar-holiday.svg share/icons/breeze/actions/24/view-calendar-journal.svg share/icons/breeze/actions/24/view-calendar-list.svg share/icons/breeze/actions/24/view-calendar-month.svg share/icons/breeze/actions/24/view-calendar-special-occasion.svg share/icons/breeze/actions/24/view-calendar-tasks.svg share/icons/breeze/actions/24/view-calendar-time-spent.svg share/icons/breeze/actions/24/view-calendar-timeline.svg share/icons/breeze/actions/24/view-calendar-upcoming-days.svg share/icons/breeze/actions/24/view-calendar-upcoming-events.svg share/icons/breeze/actions/24/view-calendar-wedding-anniversary.svg share/icons/breeze/actions/24/view-calendar-week.svg share/icons/breeze/actions/24/view-calendar-whatsnext.svg share/icons/breeze/actions/24/view-calendar-workweek.svg share/icons/breeze/actions/24/view-calendar.svg share/icons/breeze/actions/24/view-catalog.svg share/icons/breeze/actions/24/view-categories-expenditures.svg share/icons/breeze/actions/24/view-categories-incomes.svg share/icons/breeze/actions/24/view-certificate-add.svg share/icons/breeze/actions/24/view-certificate-export-secret.svg share/icons/breeze/actions/24/view-certificate-export-server.svg share/icons/breeze/actions/24/view-certificate-export.svg share/icons/breeze/actions/24/view-certificate-import.svg share/icons/breeze/actions/24/view-certificate-server-configure.svg share/icons/breeze/actions/24/view-certificate-sign.svg share/icons/breeze/actions/24/view-certificate.svg share/icons/breeze/actions/24/view-close.svg share/icons/breeze/actions/24/view-conversation-balloon.svg share/icons/breeze/actions/24/view-currency-list.svg share/icons/breeze/actions/24/view-file-columns.svg share/icons/breeze/actions/24/view-filter.svg share/icons/breeze/actions/24/view-financial-account-add.svg share/icons/breeze/actions/24/view-financial-account-asset-closed.svg share/icons/breeze/actions/24/view-financial-account-asset.svg share/icons/breeze/actions/24/view-financial-account-cash-closed.svg share/icons/breeze/actions/24/view-financial-account-cash.svg share/icons/breeze/actions/24/view-financial-account-checking-closed.svg share/icons/breeze/actions/24/view-financial-account-checking.svg share/icons/breeze/actions/24/view-financial-account-close.svg share/icons/breeze/actions/24/view-financial-account-closed.svg share/icons/breeze/actions/24/view-financial-account-credit-card-closed.svg share/icons/breeze/actions/24/view-financial-account-credit-card.svg share/icons/breeze/actions/24/view-financial-account-delete.svg share/icons/breeze/actions/24/view-financial-account-edit.svg share/icons/breeze/actions/24/view-financial-account-investment-closed.svg share/icons/breeze/actions/24/view-financial-account-investment-security-closed.svg share/icons/breeze/actions/24/view-financial-account-investment-security.svg share/icons/breeze/actions/24/view-financial-account-investment.svg share/icons/breeze/actions/24/view-financial-account-liability-closed.svg share/icons/breeze/actions/24/view-financial-account-liability.svg share/icons/breeze/actions/24/view-financial-account-loan-closed.svg share/icons/breeze/actions/24/view-financial-account-loan.svg share/icons/breeze/actions/24/view-financial-account-reopen.svg share/icons/breeze/actions/24/view-financial-account-savings-closed.svg share/icons/breeze/actions/24/view-financial-account-savings.svg share/icons/breeze/actions/24/view-financial-account.svg share/icons/breeze/actions/24/view-financial-budget.svg share/icons/breeze/actions/24/view-financial-category-add.svg share/icons/breeze/actions/24/view-financial-category-delete.svg share/icons/breeze/actions/24/view-financial-category-edit.svg share/icons/breeze/actions/24/view-financial-category-expense.svg share/icons/breeze/actions/24/view-financial-category-income.svg share/icons/breeze/actions/24/view-financial-category.svg share/icons/breeze/actions/24/view-financial-list.svg share/icons/breeze/actions/24/view-financial-transfer-reconcile.svg share/icons/breeze/actions/24/view-financial-transfer-reconciled.svg share/icons/breeze/actions/24/view-financial-transfer-unreconciled.svg share/icons/breeze/actions/24/view-form-action.svg share/icons/breeze/actions/24/view-form.svg share/icons/breeze/actions/24/view-fullscreen.svg share/icons/breeze/actions/24/view-grid.svg share/icons/breeze/actions/24/view-group.svg share/icons/breeze/actions/24/view-hidden.svg share/icons/breeze/actions/24/view-history.svg share/icons/breeze/actions/24/view-institution-add.svg share/icons/breeze/actions/24/view-institution-delete.svg share/icons/breeze/actions/24/view-institution-edit.svg share/icons/breeze/actions/24/view-institution.svg share/icons/breeze/actions/24/view-left-close.svg share/icons/breeze/actions/24/view-left-new.svg share/icons/breeze/actions/24/view-list-details.svg share/icons/breeze/actions/24/view-list-icons.svg share/icons/breeze/actions/24/view-list-text.svg share/icons/breeze/actions/24/view-list-tree.svg share/icons/breeze/actions/24/view-media-album-cover.svg share/icons/breeze/actions/24/view-media-artist.svg share/icons/breeze/actions/24/view-media-chart.svg share/icons/breeze/actions/24/view-media-config.svg share/icons/breeze/actions/24/view-media-equalizer.svg share/icons/breeze/actions/24/view-media-favorite.svg share/icons/breeze/actions/24/view-media-genre.svg share/icons/breeze/actions/24/view-media-lyrics.svg share/icons/breeze/actions/24/view-media-playcount.svg share/icons/breeze/actions/24/view-media-playlist.svg share/icons/breeze/actions/24/view-media-publisher.svg share/icons/breeze/actions/24/view-media-recent.svg share/icons/breeze/actions/24/view-media-similarartists.svg share/icons/breeze/actions/24/view-media-title.svg share/icons/breeze/actions/24/view-media-track.svg share/icons/breeze/actions/24/view-media-visualization.svg share/icons/breeze/actions/24/view-multiple-objects.svg share/icons/breeze/actions/24/view-object-histogram-linear.svg share/icons/breeze/actions/24/view-object-histogram-logarithmic.svg share/icons/breeze/actions/24/view-pages-continuous.svg share/icons/breeze/actions/24/view-pages-facing-first-centered.svg share/icons/breeze/actions/24/view-pages-facing.svg share/icons/breeze/actions/24/view-pages-overview.svg share/icons/breeze/actions/24/view-pages-single.svg share/icons/breeze/actions/24/view-pim-calendar.svg share/icons/breeze/actions/24/view-pim-contacts.svg share/icons/breeze/actions/24/view-pim-journal.svg share/icons/breeze/actions/24/view-pim-mail.svg share/icons/breeze/actions/24/view-pim-news.svg share/icons/breeze/actions/24/view-pim-notes.svg share/icons/breeze/actions/24/view-pim-tasks-pending.svg share/icons/breeze/actions/24/view-pim-tasks.svg share/icons/breeze/actions/24/view-presentation.svg share/icons/breeze/actions/24/view-preview.svg share/icons/breeze/actions/24/view-process-all-tree.svg share/icons/breeze/actions/24/view-process-all.svg share/icons/breeze/actions/24/view-process-own.svg share/icons/breeze/actions/24/view-process-system.svg share/icons/breeze/actions/24/view-process-tree.svg share/icons/breeze/actions/24/view-process-users.svg share/icons/breeze/actions/24/view-refresh.svg share/icons/breeze/actions/24/view-resource-calendar.svg share/icons/breeze/actions/24/view-restore.svg share/icons/breeze/actions/24/view-right-close.svg share/icons/breeze/actions/24/view-right-new.svg share/icons/breeze/actions/24/view-services-scripted-amarok.svg share/icons/breeze/actions/24/view-sidetree.svg share/icons/breeze/actions/24/view-sort-ascending-name.svg share/icons/breeze/actions/24/view-sort-ascending.svg share/icons/breeze/actions/24/view-sort-descending-name.svg share/icons/breeze/actions/24/view-sort-descending.svg share/icons/breeze/actions/24/view-sort.svg share/icons/breeze/actions/24/view-split-effect.svg share/icons/breeze/actions/24/view-split-left-right.svg share/icons/breeze/actions/24/view-split-top-bottom.svg share/icons/breeze/actions/24/view-statistics.svg share/icons/breeze/actions/24/view-table-of-contents-ltr.svg share/icons/breeze/actions/24/view-table-of-contents-rtl.svg share/icons/breeze/actions/24/view-task-add.svg share/icons/breeze/actions/24/view-task-child-add.svg share/icons/breeze/actions/24/view-task-child.svg share/icons/breeze/actions/24/view-task.svg share/icons/breeze/actions/24/view-time-schedule-baselined-add.svg share/icons/breeze/actions/24/view-time-schedule-baselined-remove.svg share/icons/breeze/actions/24/view-time-schedule-baselined.svg share/icons/breeze/actions/24/view-time-schedule-calculus.svg share/icons/breeze/actions/24/view-time-schedule-child-insert.svg share/icons/breeze/actions/24/view-time-schedule-edit.svg share/icons/breeze/actions/24/view-time-schedule-insert.svg share/icons/breeze/actions/24/view-time-schedule.svg share/icons/breeze/actions/24/view-unsplit-effect.svg share/icons/breeze/actions/24/view-visible.svg share/icons/breeze/actions/24/view-web-browser-dom-tree.svg share/icons/breeze/actions/24/view_fit_to_page.svg share/icons/breeze/actions/24/viewbib.svg share/icons/breeze/actions/24/viewdvi.svg share/icons/breeze/actions/24/viewhtml.svg share/icons/breeze/actions/24/viewimage.svg share/icons/breeze/actions/24/viewlog.svg share/icons/breeze/actions/24/viewpdf.svg share/icons/breeze/actions/24/viewps.svg share/icons/breeze/actions/24/virtual-desktops.svg share/icons/breeze/actions/24/visibility.svg share/icons/breeze/actions/24/wallet-closed.svg share/icons/breeze/actions/24/wallet-open.svg share/icons/breeze/actions/24/warnnext.svg share/icons/breeze/actions/24/warnprev.svg share/icons/breeze/actions/24/whitebalance.svg share/icons/breeze/actions/24/widget-alternatives.svg share/icons/breeze/actions/24/window-close.svg share/icons/breeze/actions/24/window-duplicate.svg share/icons/breeze/actions/24/window-keep-above.svg share/icons/breeze/actions/24/window-keep-below.svg share/icons/breeze/actions/24/window-maximize.svg share/icons/breeze/actions/24/window-minimize.svg share/icons/breeze/actions/24/window-new.svg share/icons/breeze/actions/24/window-pin.svg share/icons/breeze/actions/24/window-restore.svg share/icons/breeze/actions/24/window-shade.svg share/icons/breeze/actions/24/window-unpin.svg share/icons/breeze/actions/24/window-unshade.svg share/icons/breeze/actions/24/window.svg share/icons/breeze/actions/24/wizard_math.svg share/icons/breeze/actions/24/wizard_pdftools.svg share/icons/breeze/actions/24/wizard_pstools.svg share/icons/breeze/actions/24/wizard_tabular.svg share/icons/breeze/actions/24/x-clementine-album.svg share/icons/breeze/actions/24/x-clementine-albums.svg share/icons/breeze/actions/24/x-clementine-artist.svg share/icons/breeze/actions/24/x-clementine-shuffle.svg share/icons/breeze/actions/24/x-shape-connection.svg share/icons/breeze/actions/24/x-shape-formula.svg share/icons/breeze/actions/24/x-shape-image.svg share/icons/breeze/actions/24/x-shape-text.svg share/icons/breeze/actions/24/xfsm-hibernate.svg share/icons/breeze/actions/24/xml-attribute-delete.svg share/icons/breeze/actions/24/xml-element-new.svg share/icons/breeze/actions/24/xml-node-delete.svg share/icons/breeze/actions/24/xml-node-duplicate.svg share/icons/breeze/actions/24/xml-text-new.svg share/icons/breeze/actions/24/y-zoom-in.svg share/icons/breeze/actions/24/zone-in.svg share/icons/breeze/actions/24/zone-out.svg share/icons/breeze/actions/24/zoom-1-to-2.svg share/icons/breeze/actions/24/zoom-2-to-1.svg share/icons/breeze/actions/24/zoom-all.svg share/icons/breeze/actions/24/zoom-draw.svg share/icons/breeze/actions/24/zoom-fit-best.svg share/icons/breeze/actions/24/zoom-fit-height.svg share/icons/breeze/actions/24/zoom-fit-page.svg share/icons/breeze/actions/24/zoom-fit-selection.svg share/icons/breeze/actions/24/zoom-fit-width.svg share/icons/breeze/actions/24/zoom-in-large.svg share/icons/breeze/actions/24/zoom-in-x.svg share/icons/breeze/actions/24/zoom-in.svg share/icons/breeze/actions/24/zoom-next.svg share/icons/breeze/actions/24/zoom-original.svg share/icons/breeze/actions/24/zoom-out-large.svg share/icons/breeze/actions/24/zoom-out-x.svg share/icons/breeze/actions/24/zoom-out-y.svg share/icons/breeze/actions/24/zoom-out.svg share/icons/breeze/actions/24/zoom-pixels.svg share/icons/breeze/actions/24/zoom-previous.svg share/icons/breeze/actions/24/zoom-select-fit.svg share/icons/breeze/actions/24/zoom-select-x.svg share/icons/breeze/actions/24/zoom-select-y.svg share/icons/breeze/actions/24/zoom-select.svg share/icons/breeze/actions/24/zoom-selection.svg share/icons/breeze/actions/24/zoom.svg share/icons/breeze/actions/24@2x share/icons/breeze/actions/24@3x share/icons/breeze/actions/32/acrobat.svg share/icons/breeze/actions/32/address-book-new.svg share/icons/breeze/actions/32/align-horizontal-bottom-out.svg share/icons/breeze/actions/32/align-horizontal-center.svg share/icons/breeze/actions/32/align-horizontal-left-out.svg share/icons/breeze/actions/32/align-horizontal-left-to-anchor.svg share/icons/breeze/actions/32/align-horizontal-left.svg share/icons/breeze/actions/32/align-horizontal-right-out.svg share/icons/breeze/actions/32/align-horizontal-right-to-anchor.svg share/icons/breeze/actions/32/align-horizontal-right.svg share/icons/breeze/actions/32/align-horizontal-top-out.svg share/icons/breeze/actions/32/align-vertical-bottom-out.svg share/icons/breeze/actions/32/align-vertical-bottom-to-anchor.svg share/icons/breeze/actions/32/align-vertical-bottom.svg share/icons/breeze/actions/32/align-vertical-center.svg share/icons/breeze/actions/32/align-vertical-top-out.svg share/icons/breeze/actions/32/align-vertical-top-to-anchor.svg share/icons/breeze/actions/32/align-vertical-top.svg share/icons/breeze/actions/32/application-exit.svg share/icons/breeze/actions/32/application-menu.svg share/icons/breeze/actions/32/appointment-new.svg share/icons/breeze/actions/32/archive-extract.svg share/icons/breeze/actions/32/archive-insert-directory.svg share/icons/breeze/actions/32/archive-insert.svg share/icons/breeze/actions/32/archive-remove.svg share/icons/breeze/actions/32/arrow-down-double.svg share/icons/breeze/actions/32/arrow-down.svg share/icons/breeze/actions/32/arrow-left-double.svg share/icons/breeze/actions/32/arrow-left.svg share/icons/breeze/actions/32/arrow-right-double.svg share/icons/breeze/actions/32/arrow-right.svg share/icons/breeze/actions/32/arrow-up-double.svg share/icons/breeze/actions/32/arrow-up.svg share/icons/breeze/actions/32/arrow.svg share/icons/breeze/actions/32/autocorrection.svg share/icons/breeze/actions/32/blurimage.svg share/icons/breeze/actions/32/bookmark-new.svg share/icons/breeze/actions/32/bookmark-remove.svg share/icons/breeze/actions/32/bookmarks.svg share/icons/breeze/actions/32/bordertool.svg share/icons/breeze/actions/32/call-start.svg share/icons/breeze/actions/32/call-stop.svg share/icons/breeze/actions/32/collapse-all.svg share/icons/breeze/actions/32/collapse.svg share/icons/breeze/actions/32/color-management.svg share/icons/breeze/actions/32/color-picker-black.svg share/icons/breeze/actions/32/color-picker-grey.svg share/icons/breeze/actions/32/color-picker-white.svg share/icons/breeze/actions/32/color-picker.svg share/icons/breeze/actions/32/colormanagement.svg share/icons/breeze/actions/32/colors-chromablue.svg share/icons/breeze/actions/32/colors-chromagreen.svg share/icons/breeze/actions/32/colors-chromared.svg share/icons/breeze/actions/32/colors-luma.svg share/icons/breeze/actions/32/compass.svg share/icons/breeze/actions/32/configure-shortcuts.svg share/icons/breeze/actions/32/configure.svg share/icons/breeze/actions/32/cursor-arrow.svg share/icons/breeze/actions/32/cursor-cross.svg share/icons/breeze/actions/32/dialog-cancel.svg share/icons/breeze/actions/32/dialog-messages.svg share/icons/breeze/actions/32/dialog-ok-apply.svg share/icons/breeze/actions/32/dialog-ok.svg share/icons/breeze/actions/32/document-close.svg share/icons/breeze/actions/32/document-decrypt.svg share/icons/breeze/actions/32/document-edit-decrypt-verify.svg share/icons/breeze/actions/32/document-edit-decrypt.svg share/icons/breeze/actions/32/document-edit-encrypt.svg share/icons/breeze/actions/32/document-edit-sign-encrypt.svg share/icons/breeze/actions/32/document-edit-sign.svg share/icons/breeze/actions/32/document-edit.svg share/icons/breeze/actions/32/document-encrypted.svg share/icons/breeze/actions/32/document-export.svg share/icons/breeze/actions/32/document-import.svg share/icons/breeze/actions/32/document-new-from-template.svg share/icons/breeze/actions/32/document-new.svg share/icons/breeze/actions/32/document-open-folder.svg share/icons/breeze/actions/32/document-open-remote.svg share/icons/breeze/actions/32/document-open.svg share/icons/breeze/actions/32/document-preview-archive.svg share/icons/breeze/actions/32/document-preview.svg share/icons/breeze/actions/32/document-print-direct.svg share/icons/breeze/actions/32/document-print.svg share/icons/breeze/actions/32/document-properties.svg share/icons/breeze/actions/32/document-replace.svg share/icons/breeze/actions/32/document-revert.svg share/icons/breeze/actions/32/document-save-all.svg share/icons/breeze/actions/32/document-save-as.svg share/icons/breeze/actions/32/document-save.svg share/icons/breeze/actions/32/document-share.svg share/icons/breeze/actions/32/donate.svg share/icons/breeze/actions/32/draw-arrow-back.svg share/icons/breeze/actions/32/draw-arrow-down.svg share/icons/breeze/actions/32/draw-arrow-forward.svg share/icons/breeze/actions/32/draw-arrow-up.svg share/icons/breeze/actions/32/edit-delete-shred.svg share/icons/breeze/actions/32/edit-delete.svg share/icons/breeze/actions/32/edit-redo.svg share/icons/breeze/actions/32/edit-reset.svg share/icons/breeze/actions/32/edit-select.svg share/icons/breeze/actions/32/edit-undo.svg share/icons/breeze/actions/32/editor.svg share/icons/breeze/actions/32/expand-all.svg share/icons/breeze/actions/32/expand.svg share/icons/breeze/actions/32/file-zoom-in.svg share/icons/breeze/actions/32/file-zoom-out.svg share/icons/breeze/actions/32/financial-account.svg share/icons/breeze/actions/32/financial-budget.svg share/icons/breeze/actions/32/financial-list.svg share/icons/breeze/actions/32/financial-payees.svg share/icons/breeze/actions/32/flash.svg share/icons/breeze/actions/32/flashlight-off.svg share/icons/breeze/actions/32/flashlight-on.svg share/icons/breeze/actions/32/folder-new.svg share/icons/breeze/actions/32/folder-sync.svg share/icons/breeze/actions/32/format-stroke-color.svg share/icons/breeze/actions/32/games-config-custom.svg share/icons/breeze/actions/32/games-config-options.svg share/icons/breeze/actions/32/gnumeric-format-halign-distributed.svg share/icons/breeze/actions/32/gnumeric-format-valign-bottom.svg share/icons/breeze/actions/32/gnumeric-format-valign-center.svg share/icons/breeze/actions/32/gnumeric-format-valign-distributed.svg share/icons/breeze/actions/32/gnumeric-format-valign-justify.svg share/icons/breeze/actions/32/gnumeric-format-valign-top.svg share/icons/breeze/actions/32/go-bottom.svg share/icons/breeze/actions/32/go-down-skip.svg share/icons/breeze/actions/32/go-down.svg share/icons/breeze/actions/32/go-first.svg share/icons/breeze/actions/32/go-jump.svg share/icons/breeze/actions/32/go-last.svg share/icons/breeze/actions/32/go-next-skip.svg share/icons/breeze/actions/32/go-next.svg share/icons/breeze/actions/32/go-parent-folder.svg share/icons/breeze/actions/32/go-previous-skip.svg share/icons/breeze/actions/32/go-previous.svg share/icons/breeze/actions/32/go-top.svg share/icons/breeze/actions/32/go-up-skip.svg share/icons/breeze/actions/32/go-up.svg share/icons/breeze/actions/32/gtk-ok.svg share/icons/breeze/actions/32/gtk-preferences.svg share/icons/breeze/actions/32/help-about.svg share/icons/breeze/actions/32/help-donate.svg share/icons/breeze/actions/32/help-keybord-shortcuts.svg share/icons/breeze/actions/32/help-whatsthis.svg share/icons/breeze/actions/32/home.svg share/icons/breeze/actions/32/institution.svg share/icons/breeze/actions/32/kdenlive-zoom-large.svg share/icons/breeze/actions/32/kdenlive-zoom-small.svg share/icons/breeze/actions/32/labplot-cursor-arrow.svg share/icons/breeze/actions/32/labplot-zoom-in-x.svg share/icons/breeze/actions/32/labplot-zoom-in-y.svg share/icons/breeze/actions/32/labplot-zoom-out-x.svg share/icons/breeze/actions/32/labplot-zoom-out-y.svg share/icons/breeze/actions/32/labplot-zoom-select-x.svg share/icons/breeze/actions/32/labplot-zoom-select-y.svg share/icons/breeze/actions/32/labplot-zoom-select.svg share/icons/breeze/actions/32/mail-attachment.svg share/icons/breeze/actions/32/mail-deleted.svg share/icons/breeze/actions/32/mail-encrypted-full.svg share/icons/breeze/actions/32/mail-encrypted-part.svg share/icons/breeze/actions/32/mail-encrypted.svg share/icons/breeze/actions/32/mail-flag.svg share/icons/breeze/actions/32/mail-forward.svg share/icons/breeze/actions/32/mail-forwarded-replied.svg share/icons/breeze/actions/32/mail-forwarded.svg share/icons/breeze/actions/32/mail-invitation.svg share/icons/breeze/actions/32/mail-mark-important.svg share/icons/breeze/actions/32/mail-mark-junk.svg share/icons/breeze/actions/32/mail-mark-notjunk.svg share/icons/breeze/actions/32/mail-mark-read.svg share/icons/breeze/actions/32/mail-mark-unread-new.svg share/icons/breeze/actions/32/mail-mark-unread.svg share/icons/breeze/actions/32/mail-meeting-request-reply.svg share/icons/breeze/actions/32/mail-message-new-list.svg share/icons/breeze/actions/32/mail-message-new.svg share/icons/breeze/actions/32/mail-message.svg share/icons/breeze/actions/32/mail-queue.svg share/icons/breeze/actions/32/mail-queued.svg share/icons/breeze/actions/32/mail-read.svg share/icons/breeze/actions/32/mail-replied.svg share/icons/breeze/actions/32/mail-reply-all.svg share/icons/breeze/actions/32/mail-reply-custom-all.svg share/icons/breeze/actions/32/mail-reply-custom.svg share/icons/breeze/actions/32/mail-reply-list.svg share/icons/breeze/actions/32/mail-reply-sender.svg share/icons/breeze/actions/32/mail-send.svg share/icons/breeze/actions/32/mail-sent.svg share/icons/breeze/actions/32/mail-signature-unknown.svg share/icons/breeze/actions/32/mail-signed-full.svg share/icons/breeze/actions/32/mail-signed-fully.svg share/icons/breeze/actions/32/mail-signed-part.svg share/icons/breeze/actions/32/mail-signed-verified.svg share/icons/breeze/actions/32/mail-signed.svg share/icons/breeze/actions/32/mail-tagged.svg share/icons/breeze/actions/32/mail-thread-watch.svg share/icons/breeze/actions/32/mail-unread-new.svg share/icons/breeze/actions/32/mail-unread.svg share/icons/breeze/actions/32/media-eject.svg share/icons/breeze/actions/32/media-playback-pause.svg share/icons/breeze/actions/32/media-playback-start.svg share/icons/breeze/actions/32/media-playback-stop.svg share/icons/breeze/actions/32/media-playlist-normal.svg share/icons/breeze/actions/32/media-playlist-repeat-song.svg share/icons/breeze/actions/32/media-playlist-repeat.svg share/icons/breeze/actions/32/media-playlist-shuffle.svg share/icons/breeze/actions/32/media-record.svg share/icons/breeze/actions/32/media-repeat-all.svg share/icons/breeze/actions/32/media-repeat-none.svg share/icons/breeze/actions/32/media-repeat-single.svg share/icons/breeze/actions/32/media-seek-backward.svg share/icons/breeze/actions/32/media-seek-forward.svg share/icons/breeze/actions/32/media-skip-backward.svg share/icons/breeze/actions/32/media-skip-forward.svg share/icons/breeze/actions/32/multiple.svg share/icons/breeze/actions/32/object-order-back.svg share/icons/breeze/actions/32/object-order-front.svg share/icons/breeze/actions/32/object-order-lower.svg share/icons/breeze/actions/32/object-order-raise.svg share/icons/breeze/actions/32/office-chart-pie.svg share/icons/breeze/actions/32/open-menu-symbolic.svg share/icons/breeze/actions/32/output_win.svg share/icons/breeze/actions/32/overflow-menu.svg share/icons/breeze/actions/32/page-zoom.svg share/icons/breeze/actions/32/percent.svg share/icons/breeze/actions/32/preferences-system-symbolic.svg share/icons/breeze/actions/32/preview.svg share/icons/breeze/actions/32/qa.svg share/icons/breeze/actions/32/select.svg share/icons/breeze/actions/32/settings-configure.svg share/icons/breeze/actions/32/step_object_Controller.svg share/icons/breeze/actions/32/system-hibernate.svg share/icons/breeze/actions/32/system-lock-screen.svg share/icons/breeze/actions/32/system-log-out-rtl.svg share/icons/breeze/actions/32/system-log-out.svg share/icons/breeze/actions/32/system-reboot.svg share/icons/breeze/actions/32/system-save-session.svg share/icons/breeze/actions/32/system-shutdown.svg share/icons/breeze/actions/32/system-suspend-hibernate.svg share/icons/breeze/actions/32/system-suspend.svg share/icons/breeze/actions/32/system-switch-user.svg share/icons/breeze/actions/32/system-users.svg share/icons/breeze/actions/32/tag.svg share/icons/breeze/actions/32/taxes-finances.svg share/icons/breeze/actions/32/tool-pointer.svg share/icons/breeze/actions/32/tools.svg share/icons/breeze/actions/32/trim-margins.svg share/icons/breeze/actions/32/trim-to-selection.svg share/icons/breeze/actions/32/view-barcode-qr.svg share/icons/breeze/actions/32/view-calendar-holiday.svg share/icons/breeze/actions/32/view-filter.svg share/icons/breeze/actions/32/view-group.svg share/icons/breeze/actions/32/view-left-close.svg share/icons/breeze/actions/32/view-left-new.svg share/icons/breeze/actions/32/view-list-details.svg share/icons/breeze/actions/32/view-list-icons.svg share/icons/breeze/actions/32/view-list-text.svg share/icons/breeze/actions/32/view-list-tree.svg share/icons/breeze/actions/32/view-preview.svg share/icons/breeze/actions/32/view-refresh.svg share/icons/breeze/actions/32/view-right-close.svg share/icons/breeze/actions/32/view-right-new.svg share/icons/breeze/actions/32/view-sort-ascending-name.svg share/icons/breeze/actions/32/view-sort-ascending.svg share/icons/breeze/actions/32/view-sort-descending-name.svg share/icons/breeze/actions/32/view-sort-descending.svg share/icons/breeze/actions/32/view-sort.svg share/icons/breeze/actions/32/window-close.svg share/icons/breeze/actions/32/xfsm-hibernate.svg share/icons/breeze/actions/32/zoom-1-to-2.svg share/icons/breeze/actions/32/zoom-2-to-1.svg share/icons/breeze/actions/32/zoom-all.svg share/icons/breeze/actions/32/zoom-draw.svg share/icons/breeze/actions/32/zoom-fit-best.svg share/icons/breeze/actions/32/zoom-fit-height.svg share/icons/breeze/actions/32/zoom-fit-page.svg share/icons/breeze/actions/32/zoom-fit-selection.svg share/icons/breeze/actions/32/zoom-fit-width.svg share/icons/breeze/actions/32/zoom-in-large.svg share/icons/breeze/actions/32/zoom-in.svg share/icons/breeze/actions/32/zoom-next.svg share/icons/breeze/actions/32/zoom-original.svg share/icons/breeze/actions/32/zoom-out-large.svg share/icons/breeze/actions/32/zoom-out.svg share/icons/breeze/actions/32/zoom-previous.svg share/icons/breeze/actions/32/zoom-select-fit.svg share/icons/breeze/actions/32/zoom-select-x.svg share/icons/breeze/actions/32/zoom-select-y.svg share/icons/breeze/actions/32/zoom-select.svg share/icons/breeze/actions/32/zoom-selection.svg share/icons/breeze/actions/32/zoom.svg share/icons/breeze/actions/32@2x share/icons/breeze/actions/32@3x share/icons/breeze/actions/48/draw-freehand.svg share/icons/breeze/actions/48/financial-account.svg share/icons/breeze/actions/48/financial-categories.svg share/icons/breeze/actions/48/financial-forecast.svg share/icons/breeze/actions/48/financial-investments.svg share/icons/breeze/actions/48/financial-list.svg share/icons/breeze/actions/48/financial-report.svg share/icons/breeze/actions/48/home.svg share/icons/breeze/actions/48/institution.svg share/icons/breeze/actions/48/view-history.svg share/icons/breeze/actions/48/view-presentation.svg share/icons/breeze/actions/64/go-home.svg share/icons/breeze/actions/64/media-default-album.svg share/icons/breeze/actions/64/media-default-track.svg share/icons/breeze/actions/64/view-institution.svg share/icons/breeze/actions/symbolic/action-unavailable-symbolic.svg share/icons/breeze/actions/symbolic/address-book-new-symbolic.svg share/icons/breeze/actions/symbolic/application-exit-symbolic.svg share/icons/breeze/actions/symbolic/appointment-new-symbolic.svg share/icons/breeze/actions/symbolic/bookmark-add-symbolic.svg share/icons/breeze/actions/symbolic/bookmark-new-symbolic.svg share/icons/breeze/actions/symbolic/builder-view-left-pane-symbolic.svg share/icons/breeze/actions/symbolic/call-end-symbolic.svg share/icons/breeze/actions/symbolic/call-start-symbolic.svg share/icons/breeze/actions/symbolic/call-stop-symbolic.svg share/icons/breeze/actions/symbolic/call-voicemail-symbolic.svg share/icons/breeze/actions/symbolic/change-date-symbolic.svg share/icons/breeze/actions/symbolic/collapse-all-symbolic.svg share/icons/breeze/actions/symbolic/color-profile.svg share/icons/breeze/actions/symbolic/color-select-symbolic.svg share/icons/breeze/actions/symbolic/comment-symbolic.svg share/icons/breeze/actions/symbolic/contact-new-symbolic.svg share/icons/breeze/actions/symbolic/content-loading-symbolic.svg share/icons/breeze/actions/symbolic/document-edit-symbolic.svg share/icons/breeze/actions/symbolic/document-new-symbolic.svg share/icons/breeze/actions/symbolic/document-open-recent-symbolic.svg share/icons/breeze/actions/symbolic/document-open-symbolic.svg share/icons/breeze/actions/symbolic/document-page-setup-symbolic.svg share/icons/breeze/actions/symbolic/document-print-preview-symbolic.svg share/icons/breeze/actions/symbolic/document-print-symbolic.svg share/icons/breeze/actions/symbolic/document-properties-symbolic.svg share/icons/breeze/actions/symbolic/document-revert-symbolic-rtl.svg share/icons/breeze/actions/symbolic/document-revert-symbolic.svg share/icons/breeze/actions/symbolic/document-save-as-symbolic.svg share/icons/breeze/actions/symbolic/document-save-symbolic.svg share/icons/breeze/actions/symbolic/document-send-symbolic.svg share/icons/breeze/actions/symbolic/drag-handle-symbolic.svg share/icons/breeze/actions/symbolic/edit-clear-all-symbolic.svg share/icons/breeze/actions/symbolic/edit-clear-rtl-symbolic.svg share/icons/breeze/actions/symbolic/edit-clear-symbolic-rtl.svg share/icons/breeze/actions/symbolic/edit-clear-symbolic.svg share/icons/breeze/actions/symbolic/edit-copy-symbolic.svg share/icons/breeze/actions/symbolic/edit-cut-symbolic.svg share/icons/breeze/actions/symbolic/edit-delete-symbolic.svg share/icons/breeze/actions/symbolic/edit-find-replace-symbolic.svg share/icons/breeze/actions/symbolic/edit-find-symbolic.svg share/icons/breeze/actions/symbolic/edit-move-symbolic.svg share/icons/breeze/actions/symbolic/edit-paste-symbolic.svg share/icons/breeze/actions/symbolic/edit-redo-rtl-symbolic.svg share/icons/breeze/actions/symbolic/edit-redo-symbolic-rtl.svg share/icons/breeze/actions/symbolic/edit-redo-symbolic.svg share/icons/breeze/actions/symbolic/edit-select-all-symbolic.svg share/icons/breeze/actions/symbolic/edit-select-symbolic.svg share/icons/breeze/actions/symbolic/edit-symbolic.svg share/icons/breeze/actions/symbolic/edit-undo-rtl-symbolic.svg share/icons/breeze/actions/symbolic/edit-undo-symbolic-rtl.svg share/icons/breeze/actions/symbolic/edit-undo-symbolic.svg share/icons/breeze/actions/symbolic/expand-all-symbolic.svg share/icons/breeze/actions/symbolic/export-symbolic.svg share/icons/breeze/actions/symbolic/extension-symbolic.svg share/icons/breeze/actions/symbolic/file-catalog-symbolic.svg share/icons/breeze/actions/symbolic/file-library-symbolic.svg share/icons/breeze/actions/symbolic/file-search-symbolic.svg share/icons/breeze/actions/symbolic/filter-symbolic.svg share/icons/breeze/actions/symbolic/find-location-symbolic.svg share/icons/breeze/actions/symbolic/folder-new-symbolic.svg share/icons/breeze/actions/symbolic/font-select-symbolic.svg share/icons/breeze/actions/symbolic/format-indent-less-rtl-symbolic.svg share/icons/breeze/actions/symbolic/format-indent-less-symbolic-rtl.svg share/icons/breeze/actions/symbolic/format-indent-less-symbolic.svg share/icons/breeze/actions/symbolic/format-indent-more-rtl-symbolic.svg share/icons/breeze/actions/symbolic/format-indent-more-symbolic-rtl.svg share/icons/breeze/actions/symbolic/format-indent-more-symbolic.svg share/icons/breeze/actions/symbolic/format-justify-center-symbolic.svg share/icons/breeze/actions/symbolic/format-justify-fill-symbolic.svg share/icons/breeze/actions/symbolic/format-justify-left-symbolic.svg share/icons/breeze/actions/symbolic/format-justify-right-symbolic.svg share/icons/breeze/actions/symbolic/format-text-bold-symbolic.svg share/icons/breeze/actions/symbolic/format-text-direction-ltr-symbolic.svg share/icons/breeze/actions/symbolic/format-text-direction-rtl-symbolic.svg share/icons/breeze/actions/symbolic/format-text-direction-symbolic-rtl.svg share/icons/breeze/actions/symbolic/format-text-direction-symbolic.svg share/icons/breeze/actions/symbolic/format-text-italic-symbolic.svg share/icons/breeze/actions/symbolic/format-text-strikethrough-symbolic.svg share/icons/breeze/actions/symbolic/format-text-underline-symbolic.svg share/icons/breeze/actions/symbolic/go-bottom-symbolic.svg share/icons/breeze/actions/symbolic/go-down-symbolic.svg share/icons/breeze/actions/symbolic/go-first-rtl-symbolic.svg share/icons/breeze/actions/symbolic/go-first-symbolic-rtl.svg share/icons/breeze/actions/symbolic/go-first-symbolic.svg share/icons/breeze/actions/symbolic/go-home-symbolic.svg share/icons/breeze/actions/symbolic/go-jump-rtl-symbolic.svg share/icons/breeze/actions/symbolic/go-jump-symbolic.svg share/icons/breeze/actions/symbolic/go-last-rtl-symbolic.svg share/icons/breeze/actions/symbolic/go-last-symbolic-rtl.svg share/icons/breeze/actions/symbolic/go-last-symbolic.svg share/icons/breeze/actions/symbolic/go-next-rtl-symbolic.svg share/icons/breeze/actions/symbolic/go-next-symbolic-rtl.svg share/icons/breeze/actions/symbolic/go-next-symbolic.svg share/icons/breeze/actions/symbolic/go-previous-rtl-symbolic.svg share/icons/breeze/actions/symbolic/go-previous-symbolic-rtl.svg share/icons/breeze/actions/symbolic/go-previous-symbolic.svg share/icons/breeze/actions/symbolic/go-top-symbolic.svg share/icons/breeze/actions/symbolic/go-up-symbolic.svg share/icons/breeze/actions/symbolic/help-about-symbolic.svg share/icons/breeze/actions/symbolic/histogram-symbolic.svg share/icons/breeze/actions/symbolic/image-crop-symbolic.svg share/icons/breeze/actions/symbolic/image-flip-horizontal-symbolic.svg share/icons/breeze/actions/symbolic/image-flip-vertical-symbolic.svg share/icons/breeze/actions/symbolic/image-invert-symbolic.svg share/icons/breeze/actions/symbolic/image-navigator-symbolic.svg share/icons/breeze/actions/symbolic/image-red-eye-symbolic.svg share/icons/breeze/actions/symbolic/image-resize-symbolic.svg share/icons/breeze/actions/symbolic/image-rotate-left-symbolic.svg share/icons/breeze/actions/symbolic/image-rotate-right-symbolic.svg share/icons/breeze/actions/symbolic/image-rotate-symbolic.svg share/icons/breeze/actions/symbolic/insert-image-symbolic.svg share/icons/breeze/actions/symbolic/insert-link-symbolic.svg share/icons/breeze/actions/symbolic/insert-text-symbolic.svg share/icons/breeze/actions/symbolic/list-add-symbolic.svg share/icons/breeze/actions/symbolic/list-remove-all-symbolic.svg share/icons/breeze/actions/symbolic/list-remove-symbolic.svg share/icons/breeze/actions/symbolic/mail-inbox-symbolic.svg share/icons/breeze/actions/symbolic/mail-mark-important-symbolic.svg share/icons/breeze/actions/symbolic/mail-send-receive-symbolic.svg share/icons/breeze/actions/symbolic/mail-send-symbolic.svg share/icons/breeze/actions/symbolic/map-symbolic.svg share/icons/breeze/actions/symbolic/mark-location-symbolic.svg share/icons/breeze/actions/symbolic/media-eject-symbolic.svg share/icons/breeze/actions/symbolic/media-playback-pause-symbolic.svg share/icons/breeze/actions/symbolic/media-playback-start-rtl-symbolic.svg share/icons/breeze/actions/symbolic/media-playback-start-symbolic-rtl.svg share/icons/breeze/actions/symbolic/media-playback-start-symbolic.svg share/icons/breeze/actions/symbolic/media-playback-stop-symbolic.svg share/icons/breeze/actions/symbolic/media-record-symbolic.svg share/icons/breeze/actions/symbolic/media-seek-backward-rtl-symbolic.svg share/icons/breeze/actions/symbolic/media-seek-backward-symbolic-rtl.svg share/icons/breeze/actions/symbolic/media-seek-backward-symbolic.svg share/icons/breeze/actions/symbolic/media-seek-forward-rtl-symbolic.svg share/icons/breeze/actions/symbolic/media-seek-forward-symbolic-rtl.svg share/icons/breeze/actions/symbolic/media-seek-forward-symbolic.svg share/icons/breeze/actions/symbolic/media-skip-backward-rtl-symbolic.svg share/icons/breeze/actions/symbolic/media-skip-backward-symbolic-rtl.svg share/icons/breeze/actions/symbolic/media-skip-backward-symbolic.svg share/icons/breeze/actions/symbolic/media-skip-forward-rtl-symbolic.svg share/icons/breeze/actions/symbolic/media-skip-forward-symbolic-rtl.svg share/icons/breeze/actions/symbolic/media-skip-forward-symbolic.svg share/icons/breeze/actions/symbolic/media-view-subtitles-symbolic.svg share/icons/breeze/actions/symbolic/object-flip-horizontal-symbolic.svg share/icons/breeze/actions/symbolic/object-flip-vertical-symbolic.svg share/icons/breeze/actions/symbolic/object-rotate-left-symbolic.svg share/icons/breeze/actions/symbolic/object-rotate-right-symbolic.svg share/icons/breeze/actions/symbolic/object-select-symbolic.svg share/icons/breeze/actions/symbolic/open-menu-symbolic.svg share/icons/breeze/actions/symbolic/palette-symbolic.svg share/icons/breeze/actions/symbolic/pan-down-symbolic.svg share/icons/breeze/actions/symbolic/pan-end-symbolic-rtl.svg share/icons/breeze/actions/symbolic/pan-end-symbolic.svg share/icons/breeze/actions/symbolic/pan-start-symbolic-rtl.svg share/icons/breeze/actions/symbolic/pan-start-symbolic.svg share/icons/breeze/actions/symbolic/pan-up-symbolic.svg share/icons/breeze/actions/symbolic/process-stop-symbolic.svg share/icons/breeze/actions/symbolic/selection-end-symbolic-rtl.svg share/icons/breeze/actions/symbolic/selection-end-symbolic.svg share/icons/breeze/actions/symbolic/selection-start-symbolic-rtl.svg share/icons/breeze/actions/symbolic/selection-start-symbolic.svg share/icons/breeze/actions/symbolic/send-to-symbolic.svg share/icons/breeze/actions/symbolic/special-effects-symbolic.svg share/icons/breeze/actions/symbolic/star-new-symbolic.svg share/icons/breeze/actions/symbolic/system-run-symbolic.svg share/icons/breeze/actions/symbolic/system-search-symbolic.svg share/icons/breeze/actions/symbolic/system-shutdown-symbolic.svg share/icons/breeze/actions/symbolic/tab-new-symbolic.svg share/icons/breeze/actions/symbolic/tag-symbolic.svg share/icons/breeze/actions/symbolic/tools-check-spelling-symbolic.svg share/icons/breeze/actions/symbolic/tools-symbolic.svg share/icons/breeze/actions/symbolic/view-app-grid-symbolic.svg share/icons/breeze/actions/symbolic/view-continuous-symbolic.svg share/icons/breeze/actions/symbolic/view-dual-symbolic.svg share/icons/breeze/actions/symbolic/view-fullscreen-symbolic.svg share/icons/breeze/actions/symbolic/view-grid-symbolic.svg share/icons/breeze/actions/symbolic/view-list-symbolic.svg share/icons/breeze/actions/symbolic/view-more-horizontal-symbolic.svg share/icons/breeze/actions/symbolic/view-more-symbolic.svg share/icons/breeze/actions/symbolic/view-presentation-symbolic.svg share/icons/breeze/actions/symbolic/view-private-symbolic.svg share/icons/breeze/actions/symbolic/view-refresh-symbolic.svg share/icons/breeze/actions/symbolic/view-restore-symbolic.svg share/icons/breeze/actions/symbolic/view-sort-ascending-symbolic.svg share/icons/breeze/actions/symbolic/view-sort-descending-symbolic.svg share/icons/breeze/actions/symbolic/view-tasks-all-symbolic.svg share/icons/breeze/actions/symbolic/view-tasks-today-symbolic.svg share/icons/breeze/actions/symbolic/view-tasks-unscheduled-symbolic.svg share/icons/breeze/actions/symbolic/view-tasks-week-symbolic.svg share/icons/breeze/actions/symbolic/view-zoom-fit-height-symbolic.svg share/icons/breeze/actions/symbolic/view-zoom-fit-symbolic.svg share/icons/breeze/actions/symbolic/view-zoom-fit-width-symbolic.svg share/icons/breeze/actions/symbolic/view-zoom-in-symbolic.svg share/icons/breeze/actions/symbolic/view-zoom-original-symbolic.svg share/icons/breeze/actions/symbolic/view-zoom-out-symbolic.svg share/icons/breeze/actions/symbolic/window-close-symbolic.svg share/icons/breeze/actions/symbolic/window-keep-above-symbolic.svg share/icons/breeze/actions/symbolic/window-keep-below-symbolic.svg share/icons/breeze/actions/symbolic/window-maximize-symbolic.svg share/icons/breeze/actions/symbolic/window-minimize-symbolic.svg share/icons/breeze/actions/symbolic/window-pin-symbolic.svg share/icons/breeze/actions/symbolic/window-restore-symbolic.svg share/icons/breeze/actions/symbolic/window-shade-symbolic.svg share/icons/breeze/actions/symbolic/window-unpin-symbolic.svg share/icons/breeze/actions/symbolic/window-unshade-symbolic.svg share/icons/breeze/actions/symbolic/zoom-fit-best-symbolic.svg share/icons/breeze/actions/symbolic/zoom-in-symbolic.svg share/icons/breeze/actions/symbolic/zoom-original-symbolic.svg share/icons/breeze/actions/symbolic/zoom-out-symbolic.svg share/icons/breeze/animations/16/process-working.svg share/icons/breeze/animations/16@2x share/icons/breeze/animations/16@3x share/icons/breeze/animations/22/process-working.svg share/icons/breeze/animations/24@2x share/icons/breeze/animations/24@3x share/icons/breeze/applets/128/user-ada-lovelace.svg share/icons/breeze/applets/128/user-alice-in-wonderland.svg share/icons/breeze/applets/128/user-grace-hopper.svg share/icons/breeze/applets/128/user-leonardo-da-vinci.svg share/icons/breeze/applets/128/user-mahatma-gandhi.svg share/icons/breeze/applets/128/user-man.svg share/icons/breeze/applets/128/user-mowgli.svg share/icons/breeze/applets/128/user-none.svg share/icons/breeze/applets/16/car.svg share/icons/breeze/applets/22/car.svg share/icons/breeze/applets/22/hands-free.svg share/icons/breeze/applets/22/handset.svg share/icons/breeze/applets/22/headphone.svg share/icons/breeze/applets/22/headset.svg share/icons/breeze/applets/22/hifi.svg share/icons/breeze/applets/22/internal.svg share/icons/breeze/applets/22/microphone.svg share/icons/breeze/applets/22/portable.svg share/icons/breeze/applets/22/speaker.svg share/icons/breeze/applets/22/tv.svg share/icons/breeze/applets/22/user-identity.svg share/icons/breeze/applets/22/webcam.svg share/icons/breeze/applets/24/car.svg share/icons/breeze/applets/24/hands-free.svg share/icons/breeze/applets/24/handset.svg share/icons/breeze/applets/24/headphone.svg share/icons/breeze/applets/24/headset.svg share/icons/breeze/applets/24/hifi.svg share/icons/breeze/applets/24/internal.svg share/icons/breeze/applets/24/microphone.svg share/icons/breeze/applets/24/portable.svg share/icons/breeze/applets/24/speaker.svg share/icons/breeze/applets/24/tv.svg share/icons/breeze/applets/24/user-identity.svg share/icons/breeze/applets/24/webcam.svg share/icons/breeze/applets/24@2x share/icons/breeze/applets/24@3x share/icons/breeze/applets/256/applets-template.svg share/icons/breeze/applets/256/empty.svg share/icons/breeze/applets/256/org.kde.ktpcontactlist.svg share/icons/breeze/applets/256/org.kde.muonnotifier.svg share/icons/breeze/applets/256/org.kde.plasma.activitybar.svg share/icons/breeze/applets/256/org.kde.plasma.analogclock.svg share/icons/breeze/applets/256/org.kde.plasma.battery.svg share/icons/breeze/applets/256/org.kde.plasma.binaryclock.svg share/icons/breeze/applets/256/org.kde.plasma.calculator.svg share/icons/breeze/applets/256/org.kde.plasma.calendar.svg share/icons/breeze/applets/256/org.kde.plasma.clipboard.svg share/icons/breeze/applets/256/org.kde.plasma.colorpicker.svg share/icons/breeze/applets/256/org.kde.plasma.comic.svg share/icons/breeze/applets/256/org.kde.plasma.date.svg share/icons/breeze/applets/256/org.kde.plasma.devicenotifier.svg share/icons/breeze/applets/256/org.kde.plasma.digitalclock.svg share/icons/breeze/applets/256/org.kde.plasma.diskquota.svg share/icons/breeze/applets/256/org.kde.plasma.fifteenpuzzle.svg share/icons/breeze/applets/256/org.kde.plasma.folder.svg share/icons/breeze/applets/256/org.kde.plasma.frame.svg share/icons/breeze/applets/256/org.kde.plasma.fuzzyclock.svg share/icons/breeze/applets/256/org.kde.plasma.icontasks.svg share/icons/breeze/applets/256/org.kde.plasma.kicker.svg share/icons/breeze/applets/256/org.kde.plasma.kickerdash.svg share/icons/breeze/applets/256/org.kde.plasma.kickoff.svg share/icons/breeze/applets/256/org.kde.plasma.kickofflegacy.svg share/icons/breeze/applets/256/org.kde.plasma.mediacontroller.svg share/icons/breeze/applets/256/org.kde.plasma.networkmanagement.svg share/icons/breeze/applets/256/org.kde.plasma.notes.svg share/icons/breeze/applets/256/org.kde.plasma.pager.svg share/icons/breeze/applets/256/org.kde.plasma.quicklaunch.svg share/icons/breeze/applets/256/org.kde.plasma.showActivityManager.svg share/icons/breeze/applets/256/org.kde.plasma.systemloadviewer.svg share/icons/breeze/applets/256/org.kde.plasma.systemmonitor.cpu.svg share/icons/breeze/applets/256/org.kde.plasma.systemmonitor.diskactivity.svg share/icons/breeze/applets/256/org.kde.plasma.systemmonitor.diskusage.svg share/icons/breeze/applets/256/org.kde.plasma.systemmonitor.memory.svg share/icons/breeze/applets/256/org.kde.plasma.systemmonitor.net.svg share/icons/breeze/applets/256/org.kde.plasma.systemtray.svg share/icons/breeze/applets/256/org.kde.plasma.taskmanager.svg share/icons/breeze/applets/256/org.kde.plasma.timer.svg share/icons/breeze/applets/256/org.kde.plasma.userswitcher.svg share/icons/breeze/applets/256/org.kde.plasma.vault.svg share/icons/breeze/applets/256/org.kde.plasma.volume.svg share/icons/breeze/applets/256/org.kde.plasma.windowlist.svg share/icons/breeze/applets/48/weather-clear-night.svg share/icons/breeze/applets/48/weather-clear-wind-night.svg share/icons/breeze/applets/48/weather-clear-wind.svg share/icons/breeze/applets/48/weather-clear.svg share/icons/breeze/applets/48/weather-clouds-night.svg share/icons/breeze/applets/48/weather-clouds-wind-night.svg share/icons/breeze/applets/48/weather-clouds-wind.svg share/icons/breeze/applets/48/weather-clouds.svg share/icons/breeze/applets/48/weather-few-clouds-night.svg share/icons/breeze/applets/48/weather-few-clouds-wind-night.svg share/icons/breeze/applets/48/weather-few-clouds-wind.svg share/icons/breeze/applets/48/weather-few-clouds.svg share/icons/breeze/applets/48/weather-fog.svg share/icons/breeze/applets/48/weather-freezing-rain.svg share/icons/breeze/applets/48/weather-hail.svg share/icons/breeze/applets/48/weather-many-clouds-wind.svg share/icons/breeze/applets/48/weather-many-clouds.svg share/icons/breeze/applets/48/weather-mist.svg share/icons/breeze/applets/48/weather-none-available.svg share/icons/breeze/applets/48/weather-overcast-wind.svg share/icons/breeze/applets/48/weather-overcast.svg share/icons/breeze/applets/48/weather-showers-day.svg share/icons/breeze/applets/48/weather-showers-night.svg share/icons/breeze/applets/48/weather-showers-scattered-day.svg share/icons/breeze/applets/48/weather-showers-scattered-night.svg share/icons/breeze/applets/48/weather-showers-scattered.svg share/icons/breeze/applets/48/weather-showers.svg share/icons/breeze/applets/48/weather-snow-rain.svg share/icons/breeze/applets/48/weather-snow-scattered-day.svg share/icons/breeze/applets/48/weather-snow-scattered-night.svg share/icons/breeze/applets/48/weather-snow-scattered.svg share/icons/breeze/applets/48/weather-snow.svg share/icons/breeze/applets/48/weather-storm-day.svg share/icons/breeze/applets/48/weather-storm-night.svg share/icons/breeze/applets/48/weather-storm.svg share/icons/breeze/applets/64/osd-duplicate.svg share/icons/breeze/applets/64/osd-rotate-ccw.svg share/icons/breeze/applets/64/osd-rotate-cw.svg share/icons/breeze/applets/64/osd-rotate-flip.svg share/icons/breeze/applets/64/osd-rotate-normal.svg share/icons/breeze/applets/64/osd-sbs-left.svg share/icons/breeze/applets/64/osd-sbs-sright.svg share/icons/breeze/applets/64/osd-shutd-laptop.svg share/icons/breeze/applets/64/osd-shutd-screen.svg share/icons/breeze/applets/64/preferences-system-tabbox.svg share/icons/breeze/applets/64/preferences-system-windows-effect-blur.svg share/icons/breeze/applets/64/preferences-system-windows-effect-contrast.svg share/icons/breeze/applets/64/preferences-system-windows-effect-coverswitch.svg share/icons/breeze/applets/64/preferences-system-windows-effect-cubeslide.svg share/icons/breeze/applets/64/preferences-system-windows-effect-desktopgrid.svg share/icons/breeze/applets/64/preferences-system-windows-effect-dialog-parent.svg share/icons/breeze/applets/64/preferences-system-windows-effect-diminactive.svg share/icons/breeze/applets/64/preferences-system-windows-effect-dimscreen.svg share/icons/breeze/applets/64/preferences-system-windows-effect-fade.svg share/icons/breeze/applets/64/preferences-system-windows-effect-fadedesktop.svg share/icons/breeze/applets/64/preferences-system-windows-effect-fallapart.svg share/icons/breeze/applets/64/preferences-system-windows-effect-flipswitch.svg share/icons/breeze/applets/64/preferences-system-windows-effect-glide.svg share/icons/breeze/applets/64/preferences-system-windows-effect-highlightwindow.svg share/icons/breeze/applets/64/preferences-system-windows-effect-invert.svg share/icons/breeze/applets/64/preferences-system-windows-effect-kscreen.svg share/icons/breeze/applets/64/preferences-system-windows-effect-login.svg share/icons/breeze/applets/64/preferences-system-windows-effect-logout.svg share/icons/breeze/applets/64/preferences-system-windows-effect-magiclamp.svg share/icons/breeze/applets/64/preferences-system-windows-effect-magnifier.svg share/icons/breeze/applets/64/preferences-system-windows-effect-maximize.svg share/icons/breeze/applets/64/preferences-system-windows-effect-minimize.svg share/icons/breeze/applets/64/preferences-system-windows-effect-mouseclick.svg share/icons/breeze/applets/64/preferences-system-windows-effect-mousemark.svg share/icons/breeze/applets/64/preferences-system-windows-effect-presentwindows.svg share/icons/breeze/applets/64/preferences-system-windows-effect-resize.svg share/icons/breeze/applets/64/preferences-system-windows-effect-scale-in.svg share/icons/breeze/applets/64/preferences-system-windows-effect-screenedge.svg share/icons/breeze/applets/64/preferences-system-windows-effect-screenshot.svg share/icons/breeze/applets/64/preferences-system-windows-effect-showfps.svg share/icons/breeze/applets/64/preferences-system-windows-effect-showpaint.svg share/icons/breeze/applets/64/preferences-system-windows-effect-slide.svg share/icons/breeze/applets/64/preferences-system-windows-effect-slideback.svg share/icons/breeze/applets/64/preferences-system-windows-effect-slidingpopups.svg share/icons/breeze/applets/64/preferences-system-windows-effect-startupfeedback.svg share/icons/breeze/applets/64/preferences-system-windows-effect-thumbnailaside.svg share/icons/breeze/applets/64/preferences-system-windows-effect-trackmouse.svg share/icons/breeze/applets/64/preferences-system-windows-effect-translucency.svg share/icons/breeze/applets/64/preferences-system-windows-effect-windowaperture.svg share/icons/breeze/applets/64/preferences-system-windows-effect-wobblywindows.svg share/icons/breeze/applets/64/preferences-system-windows-effect-zoom.svg share/icons/breeze/apps/16/accessories-text-editor.svg share/icons/breeze/apps/16/anydesk.svg share/icons/breeze/apps/16/hotspot.svg share/icons/breeze/apps/16/kdeconnect.svg share/icons/breeze/apps/16/kmymoney.svg share/icons/breeze/apps/16/konversation.svg share/icons/breeze/apps/16/kwrite.svg share/icons/breeze/apps/16/libreoffice-base.svg share/icons/breeze/apps/16/libreoffice-calc.svg share/icons/breeze/apps/16/libreoffice-draw.svg share/icons/breeze/apps/16/libreoffice-impress.svg share/icons/breeze/apps/16/libreoffice-main.svg share/icons/breeze/apps/16/libreoffice-math.svg share/icons/breeze/apps/16/libreoffice-startcenter.svg share/icons/breeze/apps/16/libreoffice-writer.svg share/icons/breeze/apps/16/plasmavault.svg share/icons/breeze/apps/16/preferences-system-bluetooth.svg share/icons/breeze/apps/16/preferences-system.svg share/icons/breeze/apps/16/system-file-manager.svg share/icons/breeze/apps/16/systemsettings.svg share/icons/breeze/apps/16/umbrello.svg share/icons/breeze/apps/16/utilities-terminal.svg share/icons/breeze/apps/16/virt-manager.svg share/icons/breeze/apps/16/vvave.svg share/icons/breeze/apps/16@2x share/icons/breeze/apps/16@3x share/icons/breeze/apps/22/accessories-text-editor.svg share/icons/breeze/apps/22/akregator.svg share/icons/breeze/apps/22/anydesk.svg share/icons/breeze/apps/22/elisa.svg share/icons/breeze/apps/22/homerun.svg share/icons/breeze/apps/22/hotspot.svg share/icons/breeze/apps/22/kde.svg share/icons/breeze/apps/22/kdeconnect.svg share/icons/breeze/apps/22/korg-todo.svg share/icons/breeze/apps/22/ktimetracker.svg share/icons/breeze/apps/22/kwrite.svg share/icons/breeze/apps/22/plasma-browser-integration.svg share/icons/breeze/apps/22/plasma.svg share/icons/breeze/apps/22/plasmavault.svg share/icons/breeze/apps/22/preferences-other.svg share/icons/breeze/apps/22/preferences-plugin.svg share/icons/breeze/apps/22/system-file-manager.svg share/icons/breeze/apps/22/umbrello.svg share/icons/breeze/apps/22/utilities-terminal.svg share/icons/breeze/apps/22/virt-manager.svg share/icons/breeze/apps/22@2x share/icons/breeze/apps/22@3x share/icons/breeze/apps/24/accessories-text-editor.svg share/icons/breeze/apps/24/akregator.svg share/icons/breeze/apps/24/anydesk.svg share/icons/breeze/apps/24/homerun.svg share/icons/breeze/apps/24/kde.svg share/icons/breeze/apps/24/kdeconnect.svg share/icons/breeze/apps/24/korg-todo.svg share/icons/breeze/apps/24/ktimetracker.svg share/icons/breeze/apps/24/kwrite.svg share/icons/breeze/apps/24/plasma-browser-integration.svg share/icons/breeze/apps/24/plasma.svg share/icons/breeze/apps/24/plasmavault.svg share/icons/breeze/apps/24/preferences-other.svg share/icons/breeze/apps/24/preferences-plugin.svg share/icons/breeze/apps/24/system-file-manager.svg share/icons/breeze/apps/24/umbrello.svg share/icons/breeze/apps/24/utilities-terminal.svg share/icons/breeze/apps/24/virt-manager.svg share/icons/breeze/apps/24@2x share/icons/breeze/apps/24@3x share/icons/breeze/apps/32/accessories-text-editor.svg share/icons/breeze/apps/32/anydesk.svg share/icons/breeze/apps/32/hotspot.svg share/icons/breeze/apps/32/hwinfo.svg share/icons/breeze/apps/32/ktimetracker.svg share/icons/breeze/apps/32/kup.svg share/icons/breeze/apps/32/kwrite.svg share/icons/breeze/apps/32/plasmavault.svg share/icons/breeze/apps/32/preferences-system.svg share/icons/breeze/apps/32/system-file-manager.svg share/icons/breeze/apps/32/system-help.svg share/icons/breeze/apps/32/systemsettings.svg share/icons/breeze/apps/32/umbrello.svg share/icons/breeze/apps/32/utilities-log-viewer.svg share/icons/breeze/apps/32/utilities-terminal.svg share/icons/breeze/apps/32/yast-sw_single.svg share/icons/breeze/apps/32/yast.svg share/icons/breeze/apps/48/CMakeSetup.svg share/icons/breeze/apps/48/QOwnNotes.svg share/icons/breeze/apps/48/QtProject-designer.svg share/icons/breeze/apps/48/VBox.svg share/icons/breeze/apps/48/accessories-calculator.svg share/icons/breeze/apps/48/accessories-character-map.svg share/icons/breeze/apps/48/accessories-text-editor.svg share/icons/breeze/apps/48/acroread.svg share/icons/breeze/apps/48/akregator.svg share/icons/breeze/apps/48/alienarena.svg share/icons/breeze/apps/48/alligator.svg share/icons/breeze/apps/48/amarok.svg share/icons/breeze/apps/48/android-file-transfer.svg share/icons/breeze/apps/48/android-studio.svg share/icons/breeze/apps/48/anjuta.svg share/icons/breeze/apps/48/anydesk.svg share/icons/breeze/apps/48/apper.svg share/icons/breeze/apps/48/application-x-clementine.svg share/icons/breeze/apps/48/aptana.svg share/icons/breeze/apps/48/ardour.svg share/icons/breeze/apps/48/ark.svg share/icons/breeze/apps/48/artikulate.svg share/icons/breeze/apps/48/assistant.svg share/icons/breeze/apps/48/atom.svg share/icons/breeze/apps/48/audacity.svg share/icons/breeze/apps/48/author.svg share/icons/breeze/apps/48/babe.svg share/icons/breeze/apps/48/baloo.svg share/icons/breeze/apps/48/bitcoin128.svg share/icons/breeze/apps/48/bittorrent-sync.svg share/icons/breeze/apps/48/bleachbit.svg share/icons/breeze/apps/48/blender.svg share/icons/breeze/apps/48/blinken.svg share/icons/breeze/apps/48/blogilo.svg share/icons/breeze/apps/48/bluefish.svg share/icons/breeze/apps/48/bluegriffon.svg share/icons/breeze/apps/48/bomber.svg share/icons/breeze/apps/48/bomi.svg share/icons/breeze/apps/48/bovo.svg share/icons/breeze/apps/48/brackets.svg share/icons/breeze/apps/48/braindump.svg share/icons/breeze/apps/48/breeze-settings.svg share/icons/breeze/apps/48/btsync-gui.svg share/icons/breeze/apps/48/buho.svg share/icons/breeze/apps/48/calamares.svg share/icons/breeze/apps/48/calibre-ebook-edit.svg share/icons/breeze/apps/48/calibre-viewer.svg share/icons/breeze/apps/48/calindori.svg share/icons/breeze/apps/48/calligraauthor.svg share/icons/breeze/apps/48/calligraflow.svg share/icons/breeze/apps/48/calligrakarbon.svg share/icons/breeze/apps/48/calligrakexi.svg share/icons/breeze/apps/48/calligraplan.svg share/icons/breeze/apps/48/calligraplanwork.svg share/icons/breeze/apps/48/calligrasheets.svg share/icons/breeze/apps/48/calligrastage.svg share/icons/breeze/apps/48/calligrawords.svg share/icons/breeze/apps/48/cantata.svg share/icons/breeze/apps/48/cantor.svg share/icons/breeze/apps/48/cervisia.svg share/icons/breeze/apps/48/choqok.svg share/icons/breeze/apps/48/claws-mail.svg share/icons/breeze/apps/48/clementine.svg share/icons/breeze/apps/48/cmake.svg share/icons/breeze/apps/48/codeblocks.svg share/icons/breeze/apps/48/com.github.ztefn.haguichi.svg share/icons/breeze/apps/48/com.visualstudio.code.oss.svg share/icons/breeze/apps/48/com.visualstudio.code.svg share/icons/breeze/apps/48/converseen.svg share/icons/breeze/apps/48/crow-translate.svg share/icons/breeze/apps/48/cuttlefish.svg share/icons/breeze/apps/48/darktable.svg share/icons/breeze/apps/48/diaspora.svg share/icons/breeze/apps/48/diffuse.svg share/icons/breeze/apps/48/digikam.svg share/icons/breeze/apps/48/dragonplayer.svg share/icons/breeze/apps/48/elisa.svg share/icons/breeze/apps/48/emacs.svg share/icons/breeze/apps/48/falkon.svg share/icons/breeze/apps/48/ffmulticonverter.svg share/icons/breeze/apps/48/filelight.svg share/icons/breeze/apps/48/filezilla.svg share/icons/breeze/apps/48/fingerprint-gui.svg share/icons/breeze/apps/48/firewall-config.svg share/icons/breeze/apps/48/flow.svg share/icons/breeze/apps/48/fluid.svg share/icons/breeze/apps/48/fontforge.svg share/icons/breeze/apps/48/freemind.svg share/icons/breeze/apps/48/frostwire.svg share/icons/breeze/apps/48/gcompris-qt.svg share/icons/breeze/apps/48/gimp.svg share/icons/breeze/apps/48/git-cola.svg share/icons/breeze/apps/48/git-gui.svg share/icons/breeze/apps/48/goodvibes.svg share/icons/breeze/apps/48/gparted.svg share/icons/breeze/apps/48/gpick.svg share/icons/breeze/apps/48/gpodder.svg share/icons/breeze/apps/48/granatier.svg share/icons/breeze/apps/48/graphics-viewer-document.svg share/icons/breeze/apps/48/grub-customizer.svg share/icons/breeze/apps/48/gtkhash.svg share/icons/breeze/apps/48/gwenview.svg share/icons/breeze/apps/48/haguichi.svg share/icons/breeze/apps/48/handbrake.svg share/icons/breeze/apps/48/help-browser.svg share/icons/breeze/apps/48/homebank.svg share/icons/breeze/apps/48/homerun.svg share/icons/breeze/apps/48/hotspot.svg share/icons/breeze/apps/48/htop.svg share/icons/breeze/apps/48/hwinfo.svg share/icons/breeze/apps/48/im.vector.svg share/icons/breeze/apps/48/imagewriter.svg share/icons/breeze/apps/48/inkscape-logo.svg share/icons/breeze/apps/48/inkscape.svg share/icons/breeze/apps/48/internet-mail.svg share/icons/breeze/apps/48/internet-telephony.svg share/icons/breeze/apps/48/internet-web-browser.svg share/icons/breeze/apps/48/io.gitlab.Goodvibes.svg share/icons/breeze/apps/48/jdownloader.svg share/icons/breeze/apps/48/joplin.svg share/icons/breeze/apps/48/juk.svg share/icons/breeze/apps/48/juliabackend.svg share/icons/breeze/apps/48/k3b.svg share/icons/breeze/apps/48/kaddressbook.svg share/icons/breeze/apps/48/kaffeine.svg share/icons/breeze/apps/48/kajongg.svg share/icons/breeze/apps/48/kalarm.svg share/icons/breeze/apps/48/kalgebra.svg share/icons/breeze/apps/48/kalgebrabackend.svg share/icons/breeze/apps/48/kalzium.svg share/icons/breeze/apps/48/kamoso.svg share/icons/breeze/apps/48/kanagram.svg share/icons/breeze/apps/48/kapman.svg share/icons/breeze/apps/48/kapptemplate.svg share/icons/breeze/apps/48/karbon.svg share/icons/breeze/apps/48/kate.svg share/icons/breeze/apps/48/katomic.svg share/icons/breeze/apps/48/kblackbox.svg share/icons/breeze/apps/48/kblocks.svg share/icons/breeze/apps/48/kblogger.svg share/icons/breeze/apps/48/kbreakout.svg share/icons/breeze/apps/48/kbruch.svg share/icons/breeze/apps/48/kcachegrind.svg share/icons/breeze/apps/48/kcalc.svg share/icons/breeze/apps/48/kchart.svg share/icons/breeze/apps/48/kcolorchooser.svg share/icons/breeze/apps/48/kde-frameworks.svg share/icons/breeze/apps/48/kde-im-log-viewer.svg share/icons/breeze/apps/48/kde.svg share/icons/breeze/apps/48/kdeapp.svg share/icons/breeze/apps/48/kdenlive.svg share/icons/breeze/apps/48/kdesvn.svg share/icons/breeze/apps/48/kdevelop.svg share/icons/breeze/apps/48/kdiamond.svg share/icons/breeze/apps/48/kdiff3.svg share/icons/breeze/apps/48/kdots.svg share/icons/breeze/apps/48/keepass.svg share/icons/breeze/apps/48/keepass2.svg share/icons/breeze/apps/48/keepassx.svg share/icons/breeze/apps/48/keepassx2.svg share/icons/breeze/apps/48/kexi.svg share/icons/breeze/apps/48/kfind.svg share/icons/breeze/apps/48/kfloppy.svg share/icons/breeze/apps/48/kfontview.svg share/icons/breeze/apps/48/kfourinline.svg share/icons/breeze/apps/48/kgeography.svg share/icons/breeze/apps/48/kget.svg share/icons/breeze/apps/48/khangman.svg share/icons/breeze/apps/48/kig.svg share/icons/breeze/apps/48/kile.svg share/icons/breeze/apps/48/kimagemapeditor.svg share/icons/breeze/apps/48/kipi-dngconverter.svg share/icons/breeze/apps/48/kipi-expoblending.svg share/icons/breeze/apps/48/kipi-panorama.svg share/icons/breeze/apps/48/kirigami-gallery.svg share/icons/breeze/apps/48/kiriki.svg share/icons/breeze/apps/48/kirogi.svg share/icons/breeze/apps/48/kiten.svg share/icons/breeze/apps/48/kjumpingcube.svg share/icons/breeze/apps/48/kleopatra.svg share/icons/breeze/apps/48/klines.svg share/icons/breeze/apps/48/klipper.svg share/icons/breeze/apps/48/kmag.svg share/icons/breeze/apps/48/kmahjongg.svg share/icons/breeze/apps/48/kmail.svg share/icons/breeze/apps/48/kmenuedit.svg share/icons/breeze/apps/48/kmix.svg share/icons/breeze/apps/48/kmousetool.svg share/icons/breeze/apps/48/kmouth.svg share/icons/breeze/apps/48/kmplayer.svg share/icons/breeze/apps/48/kmplot.svg share/icons/breeze/apps/48/kmymoney.svg share/icons/breeze/apps/48/knetattach.svg share/icons/breeze/apps/48/knights.svg share/icons/breeze/apps/48/knotes.svg share/icons/breeze/apps/48/kolf.svg share/icons/breeze/apps/48/kolourpaint.svg share/icons/breeze/apps/48/kompare.svg share/icons/breeze/apps/48/konqueror.svg share/icons/breeze/apps/48/kontact.svg share/icons/breeze/apps/48/konversation.svg share/icons/breeze/apps/48/kopete.svg share/icons/breeze/apps/48/korg-todo.svg share/icons/breeze/apps/48/korgac.svg share/icons/breeze/apps/48/korganizer.svg share/icons/breeze/apps/48/kpat.svg share/icons/breeze/apps/48/kphotoalbum.svg share/icons/breeze/apps/48/kplato.svg share/icons/breeze/apps/48/kpresenter.svg share/icons/breeze/apps/48/krdc.svg share/icons/breeze/apps/48/krename.svg share/icons/breeze/apps/48/krfb.svg share/icons/breeze/apps/48/kronometer.svg share/icons/breeze/apps/48/kruler.svg share/icons/breeze/apps/48/krusader_root.svg share/icons/breeze/apps/48/krusader_user.svg share/icons/breeze/apps/48/kshisen.svg share/icons/breeze/apps/48/ksirk.svg share/icons/breeze/apps/48/ksnapshot.svg share/icons/breeze/apps/48/kspread.svg share/icons/breeze/apps/48/kstars.svg share/icons/breeze/apps/48/ksysguardd.svg share/icons/breeze/apps/48/kteatime.svg share/icons/breeze/apps/48/ktimer.svg share/icons/breeze/apps/48/ktimetracker.svg share/icons/breeze/apps/48/ktip.svg share/icons/breeze/apps/48/ktnef.svg share/icons/breeze/apps/48/ktorrent.svg share/icons/breeze/apps/48/ktouch.svg share/icons/breeze/apps/48/ktrip.svg share/icons/breeze/apps/48/kube-mail.svg share/icons/breeze/apps/48/kuiviewer.svg share/icons/breeze/apps/48/kup.svg share/icons/breeze/apps/48/kuser.svg share/icons/breeze/apps/48/kwalletmanager.svg share/icons/breeze/apps/48/kwalletmanager2.svg share/icons/breeze/apps/48/kwave.svg share/icons/breeze/apps/48/kwikdisk.svg share/icons/breeze/apps/48/kwin.svg share/icons/breeze/apps/48/kword.svg share/icons/breeze/apps/48/kwrite.svg share/icons/breeze/apps/48/kxstitch.svg share/icons/breeze/apps/48/labplot.svg share/icons/breeze/apps/48/labplot2.svg share/icons/breeze/apps/48/lastpass.svg share/icons/breeze/apps/48/latte-dock.svg share/icons/breeze/apps/48/leocad.svg share/icons/breeze/apps/48/libreoffice-base.svg share/icons/breeze/apps/48/libreoffice-calc.svg share/icons/breeze/apps/48/libreoffice-draw.svg share/icons/breeze/apps/48/libreoffice-impress.svg share/icons/breeze/apps/48/libreoffice-main.svg share/icons/breeze/apps/48/libreoffice-math.svg share/icons/breeze/apps/48/libreoffice-startcenter.svg share/icons/breeze/apps/48/libreoffice-writer.svg share/icons/breeze/apps/48/linguist.svg share/icons/breeze/apps/48/logisim.svg share/icons/breeze/apps/48/lokalize.svg share/icons/breeze/apps/48/luabackend.svg share/icons/breeze/apps/48/mail-client.svg share/icons/breeze/apps/48/massif-visualizer.svg share/icons/breeze/apps/48/masterpdfeditor.svg share/icons/breeze/apps/48/mathematica.svg share/icons/breeze/apps/48/matlab.svg share/icons/breeze/apps/48/maximabackend.svg share/icons/breeze/apps/48/mendeleydesktop.svg share/icons/breeze/apps/48/minitube.svg share/icons/breeze/apps/48/minuet.svg share/icons/breeze/apps/48/mixxx.svg share/icons/breeze/apps/48/mpv.svg share/icons/breeze/apps/48/multimedia-volume-control.svg share/icons/breeze/apps/48/muon.svg share/icons/breeze/apps/48/muondiscover.svg share/icons/breeze/apps/48/network-manager.svg share/icons/breeze/apps/48/nota.svg share/icons/breeze/apps/48/ntfs-config.svg share/icons/breeze/apps/48/nylas.svg share/icons/breeze/apps/48/octave.svg share/icons/breeze/apps/48/octavebackend.svg share/icons/breeze/apps/48/octopi.svg share/icons/breeze/apps/48/office-address-book.svg share/icons/breeze/apps/48/office-calendar.svg share/icons/breeze/apps/48/okteta.svg share/icons/breeze/apps/48/okular.svg share/icons/breeze/apps/48/openbravo-erp.svg share/icons/breeze/apps/48/org.fedoraproject.AnacondaInstaller.svg share/icons/breeze/apps/48/org.gajim.Gajim.svg share/icons/breeze/apps/48/org.inkscape.Inkscape.svg share/icons/breeze/apps/48/org.kde.Ikona.svg share/icons/breeze/apps/48/org.kde.kongress.svg share/icons/breeze/apps/48/org.kde.kontrast.svg share/icons/breeze/apps/48/org.kde.neochat.svg share/icons/breeze/apps/48/org.kde.skanlite.svg share/icons/breeze/apps/48/org.telegram.desktop.svg share/icons/breeze/apps/48/parley.svg share/icons/breeze/apps/48/partitionmanager.svg share/icons/breeze/apps/48/phonon-gstreamer.svg share/icons/breeze/apps/48/photolayoutseditor.svg share/icons/breeze/apps/48/picmi.svg share/icons/breeze/apps/48/plan.svg share/icons/breeze/apps/48/planetkde.svg share/icons/breeze/apps/48/plank.svg share/icons/breeze/apps/48/planner.svg share/icons/breeze/apps/48/planwork.svg share/icons/breeze/apps/48/plasma-browser-integration.svg share/icons/breeze/apps/48/plasma-media-center.svg share/icons/breeze/apps/48/plasma-mobile-phone.svg share/icons/breeze/apps/48/plasma-nano.svg share/icons/breeze/apps/48/plasmadiscover.svg share/icons/breeze/apps/48/plasmavault.svg share/icons/breeze/apps/48/preferences-desktop-font-installer.svg share/icons/breeze/apps/48/preferences-system.svg share/icons/breeze/apps/48/puremaps.svg share/icons/breeze/apps/48/pythonbackend.svg share/icons/breeze/apps/48/q4wine.svg share/icons/breeze/apps/48/qalculate.svg share/icons/breeze/apps/48/qbittorrent.svg share/icons/breeze/apps/48/qdbusviewer.svg share/icons/breeze/apps/48/qelectrotech.svg share/icons/breeze/apps/48/qtcreator.svg share/icons/breeze/apps/48/quassel.svg share/icons/breeze/apps/48/quiterss.svg share/icons/breeze/apps/48/qupzilla.svg share/icons/breeze/apps/48/r.svg share/icons/breeze/apps/48/rbackend.svg share/icons/breeze/apps/48/rekonq.svg share/icons/breeze/apps/48/ring-kde.svg share/icons/breeze/apps/48/ring.svg share/icons/breeze/apps/48/rocs.svg share/icons/breeze/apps/48/rosegarden.svg share/icons/breeze/apps/48/sage-notebook.svg share/icons/breeze/apps/48/sagebackend.svg share/icons/breeze/apps/48/scanner.svg share/icons/breeze/apps/48/scribus.svg share/icons/breeze/apps/48/sheets.svg share/icons/breeze/apps/48/showfoto.svg share/icons/breeze/apps/48/skanlite.svg share/icons/breeze/apps/48/skanpage.svg share/icons/breeze/apps/48/skrooge-black.svg share/icons/breeze/apps/48/skrooge-initial.svg share/icons/breeze/apps/48/skrooge.svg share/icons/breeze/apps/48/smartgit.svg share/icons/breeze/apps/48/smb4k.svg share/icons/breeze/apps/48/smplayer.svg share/icons/breeze/apps/48/smtube.svg share/icons/breeze/apps/48/spectacle.svg share/icons/breeze/apps/48/stage.svg share/icons/breeze/apps/48/steam.svg share/icons/breeze/apps/48/step.svg share/icons/breeze/apps/48/sublime-merge.svg share/icons/breeze/apps/48/sublime-text.svg share/icons/breeze/apps/48/subtitlecomposer.svg share/icons/breeze/apps/48/sweeper.svg share/icons/breeze/apps/48/symboleditor.svg share/icons/breeze/apps/48/synaptic.svg share/icons/breeze/apps/48/syncthing.svg share/icons/breeze/apps/48/synfig_icon.svg share/icons/breeze/apps/48/system-file-manager.svg share/icons/breeze/apps/48/system-help.svg share/icons/breeze/apps/48/system-run.svg share/icons/breeze/apps/48/system-software-install.svg share/icons/breeze/apps/48/system-software-update.svg share/icons/breeze/apps/48/systemsettings.svg share/icons/breeze/apps/48/teamviewer.svg share/icons/breeze/apps/48/telegram.svg share/icons/breeze/apps/48/telepathy-kde.svg share/icons/breeze/apps/48/texstudio.svg share/icons/breeze/apps/48/truecrypt.svg share/icons/breeze/apps/48/ubiquity-kde.svg share/icons/breeze/apps/48/ubiquity.svg share/icons/breeze/apps/48/umbrello.svg share/icons/breeze/apps/48/unetbootin.svg share/icons/breeze/apps/48/usb-creator-kde.svg share/icons/breeze/apps/48/utilities-energy-monitor.svg share/icons/breeze/apps/48/utilities-file-archiver.svg share/icons/breeze/apps/48/utilities-log-viewer.svg share/icons/breeze/apps/48/utilities-system-monitor.svg share/icons/breeze/apps/48/utilities-terminal.svg share/icons/breeze/apps/48/veracrypt.svg share/icons/breeze/apps/48/viber.svg share/icons/breeze/apps/48/virt-manager.svg share/icons/breeze/apps/48/virtualbox.svg share/icons/breeze/apps/48/vlc.svg share/icons/breeze/apps/48/vokoscreen.svg share/icons/breeze/apps/48/vvave.svg share/icons/breeze/apps/48/wayland.svg share/icons/breeze/apps/48/wine.svg share/icons/breeze/apps/48/words.svg share/icons/breeze/apps/48/xchat.svg share/icons/breeze/apps/48/xine.svg share/icons/breeze/apps/48/xmind.svg share/icons/breeze/apps/48/xorg.svg share/icons/breeze/apps/48/xterm-color.svg share/icons/breeze/apps/48/xterm.svg share/icons/breeze/apps/48/yakuake.svg share/icons/breeze/apps/48/yandex-browser.svg share/icons/breeze/apps/48/yast-control-center.svg share/icons/breeze/apps/48/yast-installation.svg share/icons/breeze/apps/48/yast-sw_single.svg share/icons/breeze/apps/48/yast-upgrade.svg share/icons/breeze/apps/48/yast.svg share/icons/breeze/apps/48/zanshin.svg share/icons/breeze/apps/64/accessories-text-editor.svg share/icons/breeze/apps/64/diaspora.svg share/icons/breeze/apps/64/hotspot.svg share/icons/breeze/apps/64/kwrite.svg share/icons/breeze/apps/64/plasma-browser-integration.svg share/icons/breeze/apps/64/plasmavault.svg share/icons/breeze/apps/64/sharedlib.svg share/icons/breeze/apps/64/system-file-manager.svg share/icons/breeze/apps/64/umbrello.svg share/icons/breeze/apps/64/utilities-terminal.svg share/icons/breeze/breeze-icons.rcc share/icons/breeze/categories/32/applications-all.svg share/icons/breeze/categories/32/applications-development.svg share/icons/breeze/categories/32/applications-education-language.svg share/icons/breeze/categories/32/applications-education-mathematics.svg share/icons/breeze/categories/32/applications-education-science.svg share/icons/breeze/categories/32/applications-education.svg share/icons/breeze/categories/32/applications-engineering.svg share/icons/breeze/categories/32/applications-games.svg share/icons/breeze/categories/32/applications-graphics.svg share/icons/breeze/categories/32/applications-internet.svg share/icons/breeze/categories/32/applications-multimedia.svg share/icons/breeze/categories/32/applications-network.svg share/icons/breeze/categories/32/applications-office.svg share/icons/breeze/categories/32/applications-other.svg share/icons/breeze/categories/32/applications-science.svg share/icons/breeze/categories/32/applications-system.svg share/icons/breeze/categories/32/applications-utilities.svg share/icons/breeze/devices/16/audio-input-microphone.svg share/icons/breeze/devices/16/audio-radio.svg share/icons/breeze/devices/16/auth-sim.svg share/icons/breeze/devices/16/battery-ups.svg share/icons/breeze/devices/16/camera-photo.svg share/icons/breeze/devices/16/camera-video.svg share/icons/breeze/devices/16/computer-laptop.svg share/icons/breeze/devices/16/computer.svg share/icons/breeze/devices/16/cups.svg share/icons/breeze/devices/16/cupsprinter.svg share/icons/breeze/devices/16/drive-harddisk-encrypted.svg share/icons/breeze/devices/16/drive-harddisk-root.svg share/icons/breeze/devices/16/drive-harddisk.svg share/icons/breeze/devices/16/drive-multidisk.svg share/icons/breeze/devices/16/drive-multipartition.svg share/icons/breeze/devices/16/drive-optical.svg share/icons/breeze/devices/16/drive-partition.svg share/icons/breeze/devices/16/drive-removable-media-usb-pendrive.svg share/icons/breeze/devices/16/drive-removable-media-usb.svg share/icons/breeze/devices/16/drive-removable-media.svg share/icons/breeze/devices/16/input-dialpad.svg share/icons/breeze/devices/16/input-gamepad.svg share/icons/breeze/devices/16/input-keyboard-virtual.svg share/icons/breeze/devices/16/input-keyboard.svg share/icons/breeze/devices/16/input-mouse.svg share/icons/breeze/devices/16/input-tablet.svg share/icons/breeze/devices/16/input-touchpad.svg share/icons/breeze/devices/16/input-tvremote.svg share/icons/breeze/devices/16/keyboard-caps-disabled.svg share/icons/breeze/devices/16/keyboard-caps-enabled.svg share/icons/breeze/devices/16/keyboard-caps-locked.svg share/icons/breeze/devices/16/keyboard-enter.svg share/icons/breeze/devices/16/keyboard-spacebar.svg share/icons/breeze/devices/16/media-flash-memory-stick.svg share/icons/breeze/devices/16/media-flash-sd-mmc.svg share/icons/breeze/devices/16/media-floppy.svg share/icons/breeze/devices/16/media-optical-audio.svg share/icons/breeze/devices/16/media-optical-data.svg share/icons/breeze/devices/16/media-optical-mixed-cd.svg share/icons/breeze/devices/16/media-optical-recordable.svg share/icons/breeze/devices/16/media-optical-video.svg share/icons/breeze/devices/16/media-optical.svg share/icons/breeze/devices/16/media-write-cd.svg share/icons/breeze/devices/16/media-write-dvd.svg share/icons/breeze/devices/16/monitor.svg share/icons/breeze/devices/16/multimedia-player-ipod-mini-blue.svg share/icons/breeze/devices/16/multimedia-player.svg share/icons/breeze/devices/16/network-bluetooth.svg share/icons/breeze/devices/16/network-modem.svg share/icons/breeze/devices/16/network-rj11-female.svg share/icons/breeze/devices/16/network-rj45-female.svg share/icons/breeze/devices/16/network-vpn.svg share/icons/breeze/devices/16/network-wired-activated.svg share/icons/breeze/devices/16/network-wired-unavailable.svg share/icons/breeze/devices/16/network-wired.svg share/icons/breeze/devices/16/network-wireless-connected-00.svg share/icons/breeze/devices/16/network-wireless-connected-100.svg share/icons/breeze/devices/16/network-wireless-connected-25.svg share/icons/breeze/devices/16/network-wireless-connected-50.svg share/icons/breeze/devices/16/network-wireless-connected-75.svg share/icons/breeze/devices/16/network-wireless-disconnected.svg share/icons/breeze/devices/16/network-wireless-hotspot.svg share/icons/breeze/devices/16/network-wireless.svg share/icons/breeze/devices/16/phone.svg share/icons/breeze/devices/16/printer.svg share/icons/breeze/devices/16/radio.svg share/icons/breeze/devices/16/smartphone.svg share/icons/breeze/devices/16/tablet.svg share/icons/breeze/devices/16/uav-quadcopter.svg share/icons/breeze/devices/16/uav.svg share/icons/breeze/devices/16@2x share/icons/breeze/devices/16@3x share/icons/breeze/devices/22/audio-card.svg share/icons/breeze/devices/22/audio-headphones.svg share/icons/breeze/devices/22/audio-headset.svg share/icons/breeze/devices/22/audio-input-microphone.svg share/icons/breeze/devices/22/audio-radio.svg share/icons/breeze/devices/22/auth-sim.svg share/icons/breeze/devices/22/battery-ups.svg share/icons/breeze/devices/22/camera-photo.svg share/icons/breeze/devices/22/camera-video.svg share/icons/breeze/devices/22/camera-web.svg share/icons/breeze/devices/22/computer-laptop.svg share/icons/breeze/devices/22/computer.svg share/icons/breeze/devices/22/cups.svg share/icons/breeze/devices/22/cupsprinter.svg share/icons/breeze/devices/22/drive-harddisk-encrypted.svg share/icons/breeze/devices/22/drive-harddisk-root.svg share/icons/breeze/devices/22/drive-harddisk.svg share/icons/breeze/devices/22/drive-multidisk.svg share/icons/breeze/devices/22/drive-multipartition.svg share/icons/breeze/devices/22/drive-optical.svg share/icons/breeze/devices/22/drive-partition.svg share/icons/breeze/devices/22/drive-removable-media-usb-pendrive.svg share/icons/breeze/devices/22/drive-removable-media-usb.svg share/icons/breeze/devices/22/drive-removable-media.svg share/icons/breeze/devices/22/input-dialpad.svg share/icons/breeze/devices/22/input-gamepad.svg share/icons/breeze/devices/22/input-keyboard-virtual.svg share/icons/breeze/devices/22/input-keyboard.svg share/icons/breeze/devices/22/input-mouse.svg share/icons/breeze/devices/22/input-tablet.svg share/icons/breeze/devices/22/input-touchpad.svg share/icons/breeze/devices/22/input-tvremote.svg share/icons/breeze/devices/22/keyboard-caps-disabled.svg share/icons/breeze/devices/22/keyboard-caps-enabled.svg share/icons/breeze/devices/22/keyboard-caps-locked.svg share/icons/breeze/devices/22/keyboard-enter.svg share/icons/breeze/devices/22/keyboard-spacebar.svg share/icons/breeze/devices/22/media-flash-memory-stick.svg share/icons/breeze/devices/22/media-flash-sd-mmc.svg share/icons/breeze/devices/22/media-floppy.svg share/icons/breeze/devices/22/media-optical-audio.svg share/icons/breeze/devices/22/media-optical-data.svg share/icons/breeze/devices/22/media-optical-mixed-cd.svg share/icons/breeze/devices/22/media-optical-recordable.svg share/icons/breeze/devices/22/media-optical-video.svg share/icons/breeze/devices/22/media-optical.svg share/icons/breeze/devices/22/media-write-cd.svg share/icons/breeze/devices/22/media-write-dvd.svg share/icons/breeze/devices/22/monitor.svg share/icons/breeze/devices/22/multimedia-player-ipod-mini-blue.svg share/icons/breeze/devices/22/network-bluetooth.svg share/icons/breeze/devices/22/network-modem.svg share/icons/breeze/devices/22/network-rj11-female.svg share/icons/breeze/devices/22/network-rj45-female.svg share/icons/breeze/devices/22/network-vpn.svg share/icons/breeze/devices/22/network-wired.svg share/icons/breeze/devices/22/network-wireless-hotspot.svg share/icons/breeze/devices/22/network-wireless.svg share/icons/breeze/devices/22/phone.svg share/icons/breeze/devices/22/printer.svg share/icons/breeze/devices/22/radio.svg share/icons/breeze/devices/22/smartphone.svg share/icons/breeze/devices/22/tablet.svg share/icons/breeze/devices/22/uav-quadcopter.svg share/icons/breeze/devices/22/uav.svg share/icons/breeze/devices/22/video-television.svg share/icons/breeze/devices/22@2x share/icons/breeze/devices/22@3x share/icons/breeze/devices/24/audio-card.svg share/icons/breeze/devices/24/audio-headphones.svg share/icons/breeze/devices/24/audio-headset.svg share/icons/breeze/devices/24/audio-input-microphone.svg share/icons/breeze/devices/24/audio-radio.svg share/icons/breeze/devices/24/auth-sim.svg share/icons/breeze/devices/24/battery-ups.svg share/icons/breeze/devices/24/camera-photo.svg share/icons/breeze/devices/24/camera-video.svg share/icons/breeze/devices/24/camera-web.svg share/icons/breeze/devices/24/computer-laptop.svg share/icons/breeze/devices/24/computer.svg share/icons/breeze/devices/24/cups.svg share/icons/breeze/devices/24/cupsprinter.svg share/icons/breeze/devices/24/drive-harddisk-encrypted.svg share/icons/breeze/devices/24/drive-harddisk-root.svg share/icons/breeze/devices/24/drive-harddisk.svg share/icons/breeze/devices/24/drive-multidisk.svg share/icons/breeze/devices/24/drive-multipartition.svg share/icons/breeze/devices/24/drive-optical.svg share/icons/breeze/devices/24/drive-partition.svg share/icons/breeze/devices/24/drive-removable-media-usb-pendrive.svg share/icons/breeze/devices/24/drive-removable-media-usb.svg share/icons/breeze/devices/24/drive-removable-media.svg share/icons/breeze/devices/24/input-dialpad.svg share/icons/breeze/devices/24/input-gamepad.svg share/icons/breeze/devices/24/input-keyboard-virtual.svg share/icons/breeze/devices/24/input-keyboard.svg share/icons/breeze/devices/24/input-mouse.svg share/icons/breeze/devices/24/input-tablet.svg share/icons/breeze/devices/24/input-touchpad.svg share/icons/breeze/devices/24/input-tvremote.svg share/icons/breeze/devices/24/keyboard-caps-disabled.svg share/icons/breeze/devices/24/keyboard-caps-enabled.svg share/icons/breeze/devices/24/keyboard-caps-locked.svg share/icons/breeze/devices/24/keyboard-enter.svg share/icons/breeze/devices/24/keyboard-spacebar.svg share/icons/breeze/devices/24/media-flash-memory-stick.svg share/icons/breeze/devices/24/media-flash-sd-mmc.svg share/icons/breeze/devices/24/media-floppy.svg share/icons/breeze/devices/24/media-optical-audio.svg share/icons/breeze/devices/24/media-optical-data.svg share/icons/breeze/devices/24/media-optical-mixed-cd.svg share/icons/breeze/devices/24/media-optical-recordable.svg share/icons/breeze/devices/24/media-optical-video.svg share/icons/breeze/devices/24/media-optical.svg share/icons/breeze/devices/24/media-write-cd.svg share/icons/breeze/devices/24/media-write-dvd.svg share/icons/breeze/devices/24/monitor.svg share/icons/breeze/devices/24/multimedia-player-ipod-mini-blue.svg share/icons/breeze/devices/24/network-bluetooth.svg share/icons/breeze/devices/24/network-modem.svg share/icons/breeze/devices/24/network-rj11-female.svg share/icons/breeze/devices/24/network-rj45-female.svg share/icons/breeze/devices/24/network-vpn.svg share/icons/breeze/devices/24/network-wired.svg share/icons/breeze/devices/24/network-wireless-hotspot.svg share/icons/breeze/devices/24/network-wireless.svg share/icons/breeze/devices/24/phone.svg share/icons/breeze/devices/24/printer.svg share/icons/breeze/devices/24/radio.svg share/icons/breeze/devices/24/smartphone.svg share/icons/breeze/devices/24/tablet.svg share/icons/breeze/devices/24/uav-quadcopter.svg share/icons/breeze/devices/24/uav.svg share/icons/breeze/devices/24/video-television.svg share/icons/breeze/devices/24@2x share/icons/breeze/devices/24@3x share/icons/breeze/devices/64/audio-card.svg share/icons/breeze/devices/64/audio-headphones.svg +share/icons/breeze/devices/64/audio-headset.svg share/icons/breeze/devices/64/auth-sim.svg share/icons/breeze/devices/64/battery.svg share/icons/breeze/devices/64/camera-photo.svg share/icons/breeze/devices/64/camera-video.svg share/icons/breeze/devices/64/camera-web.svg share/icons/breeze/devices/64/computer-laptop.svg share/icons/breeze/devices/64/computer.svg share/icons/breeze/devices/64/cpu.svg share/icons/breeze/devices/64/cups.svg share/icons/breeze/devices/64/cupsprinter.svg share/icons/breeze/devices/64/drive-harddisk-encrypted.svg share/icons/breeze/devices/64/drive-harddisk-root.svg share/icons/breeze/devices/64/drive-harddisk.svg share/icons/breeze/devices/64/drive-multidisk.svg share/icons/breeze/devices/64/drive-multipartition.svg share/icons/breeze/devices/64/drive-optical.svg share/icons/breeze/devices/64/drive-partition.svg share/icons/breeze/devices/64/drive-removable-media-usb-pendrive.svg share/icons/breeze/devices/64/drive-removable-media-usb.svg share/icons/breeze/devices/64/drive-removable-media.svg share/icons/breeze/devices/64/input-gamepad.svg share/icons/breeze/devices/64/input-gaming.svg share/icons/breeze/devices/64/input-keyboard.svg share/icons/breeze/devices/64/input-mouse.svg share/icons/breeze/devices/64/input-tablet.svg share/icons/breeze/devices/64/input-touchpad.svg share/icons/breeze/devices/64/input-tvremote.svg share/icons/breeze/devices/64/media-flash-memory-stick.svg share/icons/breeze/devices/64/media-flash-sd-mmc.svg share/icons/breeze/devices/64/media-flash-smart-media.svg share/icons/breeze/devices/64/media-flash.svg share/icons/breeze/devices/64/media-optical-audio.svg share/icons/breeze/devices/64/media-optical-blu-ray.svg share/icons/breeze/devices/64/media-optical-data.svg share/icons/breeze/devices/64/media-optical-dvd.svg share/icons/breeze/devices/64/media-optical-recordable.svg share/icons/breeze/devices/64/media-optical-video.svg share/icons/breeze/devices/64/media-optical.svg share/icons/breeze/devices/64/media-write-cd.svg share/icons/breeze/devices/64/media-write-dvd.svg share/icons/breeze/devices/64/monitor.svg share/icons/breeze/devices/64/multimedia-player.svg share/icons/breeze/devices/64/network-card.svg share/icons/breeze/devices/64/network-rj11-female.svg share/icons/breeze/devices/64/network-rj45-female.svg share/icons/breeze/devices/64/phone.svg share/icons/breeze/devices/64/printer.svg share/icons/breeze/devices/64/scanner.svg share/icons/breeze/devices/64/smartphone.svg share/icons/breeze/devices/64/video-display.svg share/icons/breeze/devices/64/video-television.svg share/icons/breeze/devices/symbolic/audio-input-microphone-symbolic.svg share/icons/breeze/devices/symbolic/audio-radio-symbolic.svg share/icons/breeze/devices/symbolic/audio-speakers-symbolic.svg share/icons/breeze/devices/symbolic/auth-sim-symbolic.svg share/icons/breeze/devices/symbolic/camera-photo-symbolic.svg share/icons/breeze/devices/symbolic/camera-video-symbolic.svg share/icons/breeze/devices/symbolic/camera-web-symbolic.svg share/icons/breeze/devices/symbolic/computer-symbolic.svg share/icons/breeze/devices/symbolic/drive-harddisk-encrypted-symbolic.svg share/icons/breeze/devices/symbolic/drive-harddisk-ieee1394-symbolic.svg share/icons/breeze/devices/symbolic/drive-harddisk-root-symbolic.svg share/icons/breeze/devices/symbolic/drive-harddisk-symbolic.svg share/icons/breeze/devices/symbolic/drive-harddisk-system-symbolic.svg share/icons/breeze/devices/symbolic/drive-harddisk-usb-symbolic.svg share/icons/breeze/devices/symbolic/drive-multidisk-symbolic.svg share/icons/breeze/devices/symbolic/drive-multipartition-symbolic.svg share/icons/breeze/devices/symbolic/drive-partition-symbolic.svg share/icons/breeze/devices/symbolic/drive-removable-media-symbolic.svg share/icons/breeze/devices/symbolic/input-dialpad-symbolic.svg share/icons/breeze/devices/symbolic/input-gamepad-symbolic.svg share/icons/breeze/devices/symbolic/input-keyboard-symbolic.svg share/icons/breeze/devices/symbolic/input-keyboard-virtual-symbolic.svg share/icons/breeze/devices/symbolic/input-mouse-symbolic.svg share/icons/breeze/devices/symbolic/input-tablet-symbolic.svg share/icons/breeze/devices/symbolic/input-touchpad-symbolic.svg share/icons/breeze/devices/symbolic/media-flash-symbolic.svg share/icons/breeze/devices/symbolic/media-floppy-symbolic.svg share/icons/breeze/devices/symbolic/media-optical-bd-symbolic.svg share/icons/breeze/devices/symbolic/media-optical-cd-audio-symbolic.svg share/icons/breeze/devices/symbolic/media-optical-dvd-symbolic.svg share/icons/breeze/devices/symbolic/media-optical-symbolic.svg share/icons/breeze/devices/symbolic/media-removable-symbolic.svg share/icons/breeze/devices/symbolic/multimedia-player-apple-ipod-touch-symbolic.svg share/icons/breeze/devices/symbolic/multimedia-player-symbolic.svg share/icons/breeze/devices/symbolic/network-wired-symbolic.svg share/icons/breeze/devices/symbolic/network-wireless-symbolic.svg share/icons/breeze/devices/symbolic/phone-apple-iphone-symbolic.svg share/icons/breeze/devices/symbolic/phone-symbolic.svg share/icons/breeze/devices/symbolic/printer-network-symbolic.svg share/icons/breeze/devices/symbolic/printer-symbolic.svg share/icons/breeze/emblems/16/checkmark.svg share/icons/breeze/emblems/16/emblem-added.svg share/icons/breeze/emblems/16/emblem-checked.svg share/icons/breeze/emblems/16/emblem-encrypted-locked.svg share/icons/breeze/emblems/16/emblem-encrypted-unlocked.svg share/icons/breeze/emblems/16/emblem-error.svg share/icons/breeze/emblems/16/emblem-favorite.svg share/icons/breeze/emblems/16/emblem-important.svg share/icons/breeze/emblems/16/emblem-information.svg share/icons/breeze/emblems/16/emblem-locked.svg share/icons/breeze/emblems/16/emblem-mounted.svg share/icons/breeze/emblems/16/emblem-pause.svg share/icons/breeze/emblems/16/emblem-question.svg share/icons/breeze/emblems/16/emblem-readonly.svg share/icons/breeze/emblems/16/emblem-remove.svg share/icons/breeze/emblems/16/emblem-shared.svg share/icons/breeze/emblems/16/emblem-success.svg share/icons/breeze/emblems/16/emblem-symbolic-link.svg share/icons/breeze/emblems/16/emblem-unavailable.svg share/icons/breeze/emblems/16/emblem-unlocked.svg share/icons/breeze/emblems/16/emblem-unmounted.svg share/icons/breeze/emblems/16/emblem-warning.svg share/icons/breeze/emblems/16/installed.svg share/icons/breeze/emblems/16/newer.svg share/icons/breeze/emblems/16/noninstalled.svg share/icons/breeze/emblems/16/outdated.svg share/icons/breeze/emblems/16/package-available-locked.svg share/icons/breeze/emblems/16/package-available.svg share/icons/breeze/emblems/16/package-broken.svg share/icons/breeze/emblems/16/package-downgrade.svg share/icons/breeze/emblems/16/package-install-auto.svg share/icons/breeze/emblems/16/package-install.svg share/icons/breeze/emblems/16/package-installed-locked.svg share/icons/breeze/emblems/16/package-installed-outdated.svg share/icons/breeze/emblems/16/package-installed-updated.svg share/icons/breeze/emblems/16/package-new.svg share/icons/breeze/emblems/16/package-purge.svg share/icons/breeze/emblems/16/package-reinstall.svg share/icons/breeze/emblems/16/package-remove-auto.svg share/icons/breeze/emblems/16/package-remove.svg share/icons/breeze/emblems/16/package-upgrade-auto.svg share/icons/breeze/emblems/16/package-upgrade.svg share/icons/breeze/emblems/16/rating-half-rtl.svg share/icons/breeze/emblems/16/rating-half.svg share/icons/breeze/emblems/16/rating-unrated.svg share/icons/breeze/emblems/16/rating.svg share/icons/breeze/emblems/16/unrequired.svg share/icons/breeze/emblems/16/vcs-added.svg share/icons/breeze/emblems/16/vcs-conflicting.svg share/icons/breeze/emblems/16/vcs-locally-modified-unstaged.svg share/icons/breeze/emblems/16/vcs-locally-modified.svg share/icons/breeze/emblems/16/vcs-normal.svg share/icons/breeze/emblems/16/vcs-removed.svg share/icons/breeze/emblems/16/vcs-update-required.svg share/icons/breeze/emblems/16@2x share/icons/breeze/emblems/16@3x share/icons/breeze/emblems/22/checkmark.svg share/icons/breeze/emblems/22/emblem-added.svg share/icons/breeze/emblems/22/emblem-checked.svg share/icons/breeze/emblems/22/emblem-encrypted-locked.svg share/icons/breeze/emblems/22/emblem-encrypted-unlocked.svg share/icons/breeze/emblems/22/emblem-error.svg share/icons/breeze/emblems/22/emblem-favorite.svg share/icons/breeze/emblems/22/emblem-important.svg share/icons/breeze/emblems/22/emblem-information.svg share/icons/breeze/emblems/22/emblem-locked.svg share/icons/breeze/emblems/22/emblem-mounted.svg share/icons/breeze/emblems/22/emblem-pause.svg share/icons/breeze/emblems/22/emblem-question.svg share/icons/breeze/emblems/22/emblem-readonly.svg share/icons/breeze/emblems/22/emblem-remove.svg share/icons/breeze/emblems/22/emblem-shared.svg share/icons/breeze/emblems/22/emblem-success.svg share/icons/breeze/emblems/22/emblem-symbolic-link.svg share/icons/breeze/emblems/22/emblem-unavailable.svg share/icons/breeze/emblems/22/emblem-unlocked.svg share/icons/breeze/emblems/22/emblem-unmounted.svg share/icons/breeze/emblems/22/emblem-warning.svg share/icons/breeze/emblems/22/rating-half-rtl.svg share/icons/breeze/emblems/22/rating-half.svg share/icons/breeze/emblems/22/rating-unrated.svg share/icons/breeze/emblems/22/rating.svg share/icons/breeze/emblems/22/vcs-added.svg share/icons/breeze/emblems/22/vcs-conflicting.svg share/icons/breeze/emblems/22/vcs-locally-modified-unstaged.svg share/icons/breeze/emblems/22/vcs-locally-modified.svg share/icons/breeze/emblems/22/vcs-normal.svg share/icons/breeze/emblems/22/vcs-removed.svg share/icons/breeze/emblems/22/vcs-update-required.svg share/icons/breeze/emblems/22@2x share/icons/breeze/emblems/22@3x share/icons/breeze/emblems/24/checkmark.svg share/icons/breeze/emblems/24/emblem-added.svg share/icons/breeze/emblems/24/emblem-checked.svg share/icons/breeze/emblems/24/emblem-encrypted-locked.svg share/icons/breeze/emblems/24/emblem-encrypted-unlocked.svg share/icons/breeze/emblems/24/emblem-error.svg share/icons/breeze/emblems/24/emblem-favorite.svg share/icons/breeze/emblems/24/emblem-important.svg share/icons/breeze/emblems/24/emblem-information.svg share/icons/breeze/emblems/24/emblem-locked.svg share/icons/breeze/emblems/24/emblem-mounted.svg share/icons/breeze/emblems/24/emblem-pause.svg share/icons/breeze/emblems/24/emblem-question.svg share/icons/breeze/emblems/24/emblem-readonly.svg share/icons/breeze/emblems/24/emblem-remove.svg share/icons/breeze/emblems/24/emblem-shared.svg share/icons/breeze/emblems/24/emblem-success.svg share/icons/breeze/emblems/24/emblem-symbolic-link.svg share/icons/breeze/emblems/24/emblem-unavailable.svg share/icons/breeze/emblems/24/emblem-unlocked.svg share/icons/breeze/emblems/24/emblem-unmounted.svg share/icons/breeze/emblems/24/emblem-warning.svg share/icons/breeze/emblems/24/rating-half-rtl.svg share/icons/breeze/emblems/24/rating-half.svg share/icons/breeze/emblems/24/rating-unrated.svg share/icons/breeze/emblems/24/rating.svg share/icons/breeze/emblems/24/vcs-added.svg share/icons/breeze/emblems/24/vcs-conflicting.svg share/icons/breeze/emblems/24/vcs-locally-modified-unstaged.svg share/icons/breeze/emblems/24/vcs-locally-modified.svg share/icons/breeze/emblems/24/vcs-normal.svg share/icons/breeze/emblems/24/vcs-removed.svg share/icons/breeze/emblems/24/vcs-update-required.svg share/icons/breeze/emblems/24@2x share/icons/breeze/emblems/24@3x share/icons/breeze/emblems/8/checkmark.svg share/icons/breeze/emblems/8/emblem-added.svg share/icons/breeze/emblems/8/emblem-checked.svg share/icons/breeze/emblems/8/emblem-encrypted-locked.svg share/icons/breeze/emblems/8/emblem-encrypted-unlocked.svg share/icons/breeze/emblems/8/emblem-error.svg share/icons/breeze/emblems/8/emblem-favorite.svg share/icons/breeze/emblems/8/emblem-important.svg share/icons/breeze/emblems/8/emblem-information.svg share/icons/breeze/emblems/8/emblem-locked.svg share/icons/breeze/emblems/8/emblem-mounted.svg share/icons/breeze/emblems/8/emblem-pause.svg share/icons/breeze/emblems/8/emblem-question.svg share/icons/breeze/emblems/8/emblem-readonly.svg share/icons/breeze/emblems/8/emblem-remove.svg share/icons/breeze/emblems/8/emblem-shared.svg share/icons/breeze/emblems/8/emblem-success.svg share/icons/breeze/emblems/8/emblem-symbolic-link.svg share/icons/breeze/emblems/8/emblem-unavailable.svg share/icons/breeze/emblems/8/emblem-unlocked.svg share/icons/breeze/emblems/8/emblem-unmounted.svg share/icons/breeze/emblems/8/emblem-warning.svg share/icons/breeze/emblems/8/rating-unrated.svg share/icons/breeze/emblems/8/rating.svg share/icons/breeze/emblems/8/vcs-added.svg share/icons/breeze/emblems/8/vcs-conflicting.svg share/icons/breeze/emblems/8/vcs-locally-modified-unstaged.svg share/icons/breeze/emblems/8/vcs-locally-modified.svg share/icons/breeze/emblems/8/vcs-normal.svg share/icons/breeze/emblems/8/vcs-removed.svg share/icons/breeze/emblems/8/vcs-update-required.svg share/icons/breeze/emblems/symbolic/emblem-default-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-documents-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-favorite-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-important-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-music-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-ok-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-photos-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-shared-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-synchronizing-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-system-symbolic.svg share/icons/breeze/emblems/symbolic/emblem-videos-symbolic.svg share/icons/breeze/emotes/22/drink-beer.svg share/icons/breeze/emotes/22/drink-martini.svg share/icons/breeze/emotes/22/face-angel.svg share/icons/breeze/emotes/22/face-angry.svg share/icons/breeze/emotes/22/face-clown.svg share/icons/breeze/emotes/22/face-confused.svg share/icons/breeze/emotes/22/face-cool.svg share/icons/breeze/emotes/22/face-crying.svg share/icons/breeze/emotes/22/face-devilish.svg share/icons/breeze/emotes/22/face-embarrassed.svg share/icons/breeze/emotes/22/face-glasses.svg share/icons/breeze/emotes/22/face-hug-left.svg share/icons/breeze/emotes/22/face-hug-right.svg share/icons/breeze/emotes/22/face-in-love.svg share/icons/breeze/emotes/22/face-kiss.svg share/icons/breeze/emotes/22/face-laughing.svg share/icons/breeze/emotes/22/face-ninja.svg share/icons/breeze/emotes/22/face-pirate.svg share/icons/breeze/emotes/22/face-plain.svg share/icons/breeze/emotes/22/face-quiet.svg share/icons/breeze/emotes/22/face-raspberry.svg share/icons/breeze/emotes/22/face-sad.svg share/icons/breeze/emotes/22/face-sick.svg share/icons/breeze/emotes/22/face-sleeping.svg share/icons/breeze/emotes/22/face-smile-big.svg share/icons/breeze/emotes/22/face-smile-grin.svg share/icons/breeze/emotes/22/face-smile.svg share/icons/breeze/emotes/22/face-smirk.svg share/icons/breeze/emotes/22/face-surprise.svg share/icons/breeze/emotes/22/face-uncertain.svg share/icons/breeze/emotes/22/face-wink.svg share/icons/breeze/emotes/22/face-worried.svg share/icons/breeze/emotes/22/face-yawn.svg share/icons/breeze/emotes/22/food-cake.svg share/icons/breeze/emotes/22@2x share/icons/breeze/emotes/22@3x share/icons/breeze/emotes/24@2x share/icons/breeze/emotes/24@3x share/icons/breeze/index.theme share/icons/breeze/mimetypes/16/android-package-archive.svg share/icons/breeze/mimetypes/16/application-atom+xml.svg share/icons/breeze/mimetypes/16/application-certificate.svg share/icons/breeze/mimetypes/16/application-dicom.svg share/icons/breeze/mimetypes/16/application-epub+zip.svg share/icons/breeze/mimetypes/16/application-gzip.svg share/icons/breeze/mimetypes/16/application-illustrator.svg share/icons/breeze/mimetypes/16/application-javascript.svg share/icons/breeze/mimetypes/16/application-json.svg share/icons/breeze/mimetypes/16/application-mac-binhex40.svg share/icons/breeze/mimetypes/16/application-mathml+xml.svg share/icons/breeze/mimetypes/16/application-msonenote.svg share/icons/breeze/mimetypes/16/application-msoutlook.svg share/icons/breeze/mimetypes/16/application-msword-template.svg share/icons/breeze/mimetypes/16/application-msword.svg share/icons/breeze/mimetypes/16/application-octet-stream.svg share/icons/breeze/mimetypes/16/application-ogg.svg share/icons/breeze/mimetypes/16/application-pdf.svg share/icons/breeze/mimetypes/16/application-pgp-encrypted.svg share/icons/breeze/mimetypes/16/application-pgp-keys.svg share/icons/breeze/mimetypes/16/application-pgp-signature.svg share/icons/breeze/mimetypes/16/application-pgp.svg share/icons/breeze/mimetypes/16/application-pkcs12.svg share/icons/breeze/mimetypes/16/application-pkcs7-mime.svg share/icons/breeze/mimetypes/16/application-pkcs7-signature.svg share/icons/breeze/mimetypes/16/application-pkix-cerl.svg share/icons/breeze/mimetypes/16/application-pkix-cert.svg share/icons/breeze/mimetypes/16/application-postscript.svg share/icons/breeze/mimetypes/16/application-relaxng.svg share/icons/breeze/mimetypes/16/application-rss+xml.svg share/icons/breeze/mimetypes/16/application-rtf.svg share/icons/breeze/mimetypes/16/application-sql.svg share/icons/breeze/mimetypes/16/application-sxw.svg share/icons/breeze/mimetypes/16/application-vnd.android.package-archive.svg share/icons/breeze/mimetypes/16/application-vnd.appimage.svg share/icons/breeze/mimetypes/16/application-vnd.apple.pkpass.svg share/icons/breeze/mimetypes/16/application-vnd.debian.binary-package.svg share/icons/breeze/mimetypes/16/application-vnd.flatpak.ref.svg share/icons/breeze/mimetypes/16/application-vnd.google-earth.kml+xml.svg share/icons/breeze/mimetypes/16/application-vnd.iccprofile.svg share/icons/breeze/mimetypes/16/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze/mimetypes/16/application-vnd.ms-access.svg share/icons/breeze/mimetypes/16/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-excel.svg share/icons/breeze/mimetypes/16/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-infopath.svg share/icons/breeze/mimetypes/16/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-powerpoint.svg share/icons/breeze/mimetypes/16/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-publisher.svg share/icons/breeze/mimetypes/16/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.ms-word.svg share/icons/breeze/mimetypes/16/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze/mimetypes/16/application-vnd.nintendo.snes.rom.svg share/icons/breeze/mimetypes/16/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.chart.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.database.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.formula.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.image.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.text.svg share/icons/breeze/mimetypes/16/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze/mimetypes/16/application-vnd.openofficeorg.extension.svg share/icons/breeze/mimetypes/16/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze/mimetypes/16/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze/mimetypes/16/application-vnd.rar.svg share/icons/breeze/mimetypes/16/application-vnd.rn-realmedia.svg share/icons/breeze/mimetypes/16/application-vnd.scribus.svg share/icons/breeze/mimetypes/16/application-vnd.sqlite3.svg share/icons/breeze/mimetypes/16/application-vnd.squashfs.svg share/icons/breeze/mimetypes/16/application-vnd.stardivision.calc.svg share/icons/breeze/mimetypes/16/application-vnd.stardivision.draw.svg share/icons/breeze/mimetypes/16/application-vnd.stardivision.mail.svg share/icons/breeze/mimetypes/16/application-vnd.stardivision.math.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.calc.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.calc.template.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.draw.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.draw.template.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.impress.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.impress.template.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.math.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.writer.global.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.writer.svg share/icons/breeze/mimetypes/16/application-vnd.sun.xml.writer.template.svg share/icons/breeze/mimetypes/16/application-vnd.visio.svg share/icons/breeze/mimetypes/16/application-vnd.wordperfect.svg share/icons/breeze/mimetypes/16/application-wps-office.doc.svg share/icons/breeze/mimetypes/16/application-wps-office.docx.svg share/icons/breeze/mimetypes/16/application-wps-office.dot.svg share/icons/breeze/mimetypes/16/application-wps-office.dotx.svg share/icons/breeze/mimetypes/16/application-wps-office.pot.svg share/icons/breeze/mimetypes/16/application-wps-office.potx.svg share/icons/breeze/mimetypes/16/application-wps-office.ppt.svg share/icons/breeze/mimetypes/16/application-wps-office.pptx.svg share/icons/breeze/mimetypes/16/application-wps-office.xls.svg share/icons/breeze/mimetypes/16/application-wps-office.xlsx.svg share/icons/breeze/mimetypes/16/application-wps-office.xlt.svg share/icons/breeze/mimetypes/16/application-wps-office.xltx.svg share/icons/breeze/mimetypes/16/application-x-7z-compressed.svg share/icons/breeze/mimetypes/16/application-x-abiword.svg share/icons/breeze/mimetypes/16/application-x-ace.svg share/icons/breeze/mimetypes/16/application-x-apple-diskimage.svg share/icons/breeze/mimetypes/16/application-x-applix-spreadsheet.svg share/icons/breeze/mimetypes/16/application-x-applix-word.svg share/icons/breeze/mimetypes/16/application-x-ar.svg share/icons/breeze/mimetypes/16/application-x-arc.svg share/icons/breeze/mimetypes/16/application-x-archive.svg share/icons/breeze/mimetypes/16/application-x-arj.svg share/icons/breeze/mimetypes/16/application-x-audacity-project.svg share/icons/breeze/mimetypes/16/application-x-awk.svg share/icons/breeze/mimetypes/16/application-x-bittorrent.svg share/icons/breeze/mimetypes/16/application-x-blender.svg share/icons/breeze/mimetypes/16/application-x-bzdvi.svg share/icons/breeze/mimetypes/16/application-x-bzip-compressed-tar.svg share/icons/breeze/mimetypes/16/application-x-bzip.svg share/icons/breeze/mimetypes/16/application-x-cd-image.svg share/icons/breeze/mimetypes/16/application-x-cda.svg share/icons/breeze/mimetypes/16/application-x-chm.svg share/icons/breeze/mimetypes/16/application-x-compress.svg share/icons/breeze/mimetypes/16/application-x-compressed-tar.svg share/icons/breeze/mimetypes/16/application-x-core.svg share/icons/breeze/mimetypes/16/application-x-cpio.svg share/icons/breeze/mimetypes/16/application-x-cue.svg share/icons/breeze/mimetypes/16/application-x-deb.svg share/icons/breeze/mimetypes/16/application-x-designer.svg share/icons/breeze/mimetypes/16/application-x-desktop.svg share/icons/breeze/mimetypes/16/application-x-egon.svg share/icons/breeze/mimetypes/16/application-x-executable-script.svg share/icons/breeze/mimetypes/16/application-x-executable.svg share/icons/breeze/mimetypes/16/application-x-fictionbook+xml.svg share/icons/breeze/mimetypes/16/application-x-flash-video.svg share/icons/breeze/mimetypes/16/application-x-font-afm.svg share/icons/breeze/mimetypes/16/application-x-font-bdf.svg share/icons/breeze/mimetypes/16/application-x-font-otf.svg share/icons/breeze/mimetypes/16/application-x-font-pcf.svg share/icons/breeze/mimetypes/16/application-x-font-snf.svg share/icons/breeze/mimetypes/16/application-x-font-ttf.svg share/icons/breeze/mimetypes/16/application-x-font-ttx.svg share/icons/breeze/mimetypes/16/application-x-font-type1.svg share/icons/breeze/mimetypes/16/application-x-gameboy-rom.svg share/icons/breeze/mimetypes/16/application-x-gamecube-rom.svg share/icons/breeze/mimetypes/16/application-x-gba-rom.svg share/icons/breeze/mimetypes/16/application-x-gdscript.svg share/icons/breeze/mimetypes/16/application-x-gettext-translation.svg share/icons/breeze/mimetypes/16/application-x-gnumeric.svg share/icons/breeze/mimetypes/16/application-x-godot-project.svg share/icons/breeze/mimetypes/16/application-x-godot-resource.svg share/icons/breeze/mimetypes/16/application-x-godot-scene.svg share/icons/breeze/mimetypes/16/application-x-godot-shader.svg share/icons/breeze/mimetypes/16/application-x-gzdvi.svg share/icons/breeze/mimetypes/16/application-x-gzip.svg share/icons/breeze/mimetypes/16/application-x-gzpostscript.svg share/icons/breeze/mimetypes/16/application-x-iso.svg share/icons/breeze/mimetypes/16/application-x-iso9660-appimage.svg share/icons/breeze/mimetypes/16/application-x-it87.svg share/icons/breeze/mimetypes/16/application-x-jar.svg share/icons/breeze/mimetypes/16/application-x-java-applet.svg share/icons/breeze/mimetypes/16/application-x-java-archive.svg share/icons/breeze/mimetypes/16/application-x-java.svg share/icons/breeze/mimetypes/16/application-x-javascript.svg share/icons/breeze/mimetypes/16/application-x-k3b.svg share/icons/breeze/mimetypes/16/application-x-kcsrc.svg share/icons/breeze/mimetypes/16/application-x-kdenlivetitle.svg share/icons/breeze/mimetypes/16/application-x-kexi-connectiondata.svg share/icons/breeze/mimetypes/16/application-x-kexiproject-shortcut.svg share/icons/breeze/mimetypes/16/application-x-kexiproject-sqlite.svg share/icons/breeze/mimetypes/16/application-x-kexiproject-sqlite2.svg share/icons/breeze/mimetypes/16/application-x-kexiproject-sqlite3.svg share/icons/breeze/mimetypes/16/application-x-kformula.svg share/icons/breeze/mimetypes/16/application-x-kgetlist.svg share/icons/breeze/mimetypes/16/application-x-kmymoney.svg share/icons/breeze/mimetypes/16/application-x-kontour.svg share/icons/breeze/mimetypes/16/application-x-kplato.svg share/icons/breeze/mimetypes/16/application-x-krita.svg share/icons/breeze/mimetypes/16/application-x-kvtml.svg share/icons/breeze/mimetypes/16/application-x-kword.svg share/icons/breeze/mimetypes/16/application-x-lha.svg share/icons/breeze/mimetypes/16/application-x-lyx.svg share/icons/breeze/mimetypes/16/application-x-lzma-compressed-tar.svg share/icons/breeze/mimetypes/16/application-x-lzop.svg share/icons/breeze/mimetypes/16/application-x-m4.svg share/icons/breeze/mimetypes/16/application-x-macbinary.svg share/icons/breeze/mimetypes/16/application-x-marble.svg share/icons/breeze/mimetypes/16/application-x-mimearchive.svg share/icons/breeze/mimetypes/16/application-x-mplayer2.svg share/icons/breeze/mimetypes/16/application-x-ms-dos-executable.svg share/icons/breeze/mimetypes/16/application-x-ms-shortcut.svg share/icons/breeze/mimetypes/16/application-x-ms-wim.svg share/icons/breeze/mimetypes/16/application-x-msdownload.svg share/icons/breeze/mimetypes/16/application-x-mswinurl.svg share/icons/breeze/mimetypes/16/application-x-mswrite.svg share/icons/breeze/mimetypes/16/application-x-n64-rom.svg share/icons/breeze/mimetypes/16/application-x-nes-rom.svg share/icons/breeze/mimetypes/16/application-x-nintendo-ds-rom.svg share/icons/breeze/mimetypes/16/application-x-nzb.svg share/icons/breeze/mimetypes/16/application-x-object.svg share/icons/breeze/mimetypes/16/application-x-pak.svg share/icons/breeze/mimetypes/16/application-x-partial-download.svg share/icons/breeze/mimetypes/16/application-x-pem-key.svg share/icons/breeze/mimetypes/16/application-x-perl.svg share/icons/breeze/mimetypes/16/application-x-php.svg share/icons/breeze/mimetypes/16/application-x-pkcs12.svg share/icons/breeze/mimetypes/16/application-x-pkcs7-certificates.svg share/icons/breeze/mimetypes/16/application-x-plasma.svg share/icons/breeze/mimetypes/16/application-x-python-bytecode.svg share/icons/breeze/mimetypes/16/application-x-qemu-disk.svg share/icons/breeze/mimetypes/16/application-x-qet-element.svg share/icons/breeze/mimetypes/16/application-x-qet-project.svg share/icons/breeze/mimetypes/16/application-x-quattropro.svg share/icons/breeze/mimetypes/16/application-x-rar.svg share/icons/breeze/mimetypes/16/application-x-raw-disk-image.svg share/icons/breeze/mimetypes/16/application-x-rdata.svg share/icons/breeze/mimetypes/16/application-x-root.svg share/icons/breeze/mimetypes/16/application-x-rpm.svg share/icons/breeze/mimetypes/16/application-x-ruby.svg share/icons/breeze/mimetypes/16/application-x-sami.svg share/icons/breeze/mimetypes/16/application-x-sharedlib.svg share/icons/breeze/mimetypes/16/application-x-shellscript.svg share/icons/breeze/mimetypes/16/application-x-shockwave-flash.svg share/icons/breeze/mimetypes/16/application-x-siag.svg share/icons/breeze/mimetypes/16/application-x-sif.svg share/icons/breeze/mimetypes/16/application-x-skg.svg share/icons/breeze/mimetypes/16/application-x-skgc.svg share/icons/breeze/mimetypes/16/application-x-smb-server.svg share/icons/breeze/mimetypes/16/application-x-smb-workgroup.svg share/icons/breeze/mimetypes/16/application-x-source-rpm.svg share/icons/breeze/mimetypes/16/application-x-sqlite2.svg share/icons/breeze/mimetypes/16/application-x-sqlite3.svg share/icons/breeze/mimetypes/16/application-x-srt.svg share/icons/breeze/mimetypes/16/application-x-srtrip.svg share/icons/breeze/mimetypes/16/application-x-subrip.svg share/icons/breeze/mimetypes/16/application-x-tar.svg share/icons/breeze/mimetypes/16/application-x-tarz.svg share/icons/breeze/mimetypes/16/application-x-tgif.svg share/icons/breeze/mimetypes/16/application-x-theme.svg share/icons/breeze/mimetypes/16/application-x-trash.svg share/icons/breeze/mimetypes/16/application-x-troff-man.svg share/icons/breeze/mimetypes/16/application-x-tzo.svg share/icons/breeze/mimetypes/16/application-x-vdi-disk.svg share/icons/breeze/mimetypes/16/application-x-wmf.svg share/icons/breeze/mimetypes/16/application-x-x509-ca-cert.svg share/icons/breeze/mimetypes/16/application-x-x509-user-cert.svg share/icons/breeze/mimetypes/16/application-x-xliff.svg share/icons/breeze/mimetypes/16/application-x-xpinstall.svg share/icons/breeze/mimetypes/16/application-x-xz-compressed-tar.svg share/icons/breeze/mimetypes/16/application-x-xz-pkg.svg share/icons/breeze/mimetypes/16/application-x-zerosize.svg share/icons/breeze/mimetypes/16/application-x-zip-compressed-fb2.svg share/icons/breeze/mimetypes/16/application-x-zoo.svg share/icons/breeze/mimetypes/16/application-xhtml+xml.svg share/icons/breeze/mimetypes/16/application-xmind.svg share/icons/breeze/mimetypes/16/application-xml.svg share/icons/breeze/mimetypes/16/application-xsd.svg share/icons/breeze/mimetypes/16/application-xslt+xml.svg share/icons/breeze/mimetypes/16/application-zip.svg share/icons/breeze/mimetypes/16/audio-ac3.svg share/icons/breeze/mimetypes/16/audio-flac.svg share/icons/breeze/mimetypes/16/audio-midi.svg share/icons/breeze/mimetypes/16/audio-mp2.svg share/icons/breeze/mimetypes/16/audio-mp3.svg share/icons/breeze/mimetypes/16/audio-mp4.svg share/icons/breeze/mimetypes/16/audio-mpeg.svg share/icons/breeze/mimetypes/16/audio-prs.sid.svg share/icons/breeze/mimetypes/16/audio-vn.rn-realmedia.svg share/icons/breeze/mimetypes/16/audio-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/16/audio-x-adpcm.svg share/icons/breeze/mimetypes/16/audio-x-aiff.svg share/icons/breeze/mimetypes/16/audio-x-flac+ogg.svg share/icons/breeze/mimetypes/16/audio-x-flac.svg share/icons/breeze/mimetypes/16/audio-x-generic.svg share/icons/breeze/mimetypes/16/audio-x-monkey.svg share/icons/breeze/mimetypes/16/audio-x-mp2.svg share/icons/breeze/mimetypes/16/audio-x-mpeg.svg share/icons/breeze/mimetypes/16/audio-x-speex+ogg.svg share/icons/breeze/mimetypes/16/audio-x-wav.svg share/icons/breeze/mimetypes/16/audiobook.svg share/icons/breeze/mimetypes/16/encrypted.svg share/icons/breeze/mimetypes/16/font-otf.svg share/icons/breeze/mimetypes/16/font-ttf.svg share/icons/breeze/mimetypes/16/fonts-package.svg share/icons/breeze/mimetypes/16/image-bmp.svg share/icons/breeze/mimetypes/16/image-gif.svg share/icons/breeze/mimetypes/16/image-ico.svg share/icons/breeze/mimetypes/16/image-jpeg.svg share/icons/breeze/mimetypes/16/image-jpeg2000.svg share/icons/breeze/mimetypes/16/image-png.svg share/icons/breeze/mimetypes/16/image-svg+xml-compressed.svg share/icons/breeze/mimetypes/16/image-svg+xml.svg share/icons/breeze/mimetypes/16/image-tiff.svg share/icons/breeze/mimetypes/16/image-vnd.dgn.svg share/icons/breeze/mimetypes/16/image-vnd.djvu.svg share/icons/breeze/mimetypes/16/image-vnd.dwg.svg share/icons/breeze/mimetypes/16/image-vnd.microsoft.icon.svg share/icons/breeze/mimetypes/16/image-x-adobe-dng.svg share/icons/breeze/mimetypes/16/image-x-compressed-xcf.svg share/icons/breeze/mimetypes/16/image-x-emf.svg share/icons/breeze/mimetypes/16/image-x-eps.svg share/icons/breeze/mimetypes/16/image-x-generic.svg share/icons/breeze/mimetypes/16/image-x-ico.svg share/icons/breeze/mimetypes/16/image-x-icon.svg share/icons/breeze/mimetypes/16/image-x-krita.svg share/icons/breeze/mimetypes/16/image-x-portable-bitmap.svg share/icons/breeze/mimetypes/16/image-x-psd.svg share/icons/breeze/mimetypes/16/image-x-psdimage-x-psd.svg share/icons/breeze/mimetypes/16/image-x-svg+xml.svg share/icons/breeze/mimetypes/16/image-x-tga.svg share/icons/breeze/mimetypes/16/image-x-vnd.trolltech.qpicture.svg share/icons/breeze/mimetypes/16/image-x-win-bitmap.svg share/icons/breeze/mimetypes/16/image-x-win-bmp.svg share/icons/breeze/mimetypes/16/image-x-wmf.svg share/icons/breeze/mimetypes/16/image-x-xcf.svg share/icons/breeze/mimetypes/16/image-x-xfig.svg share/icons/breeze/mimetypes/16/inode-directory.svg share/icons/breeze/mimetypes/16/libreoffice-database.svg share/icons/breeze/mimetypes/16/libreoffice-drawing-template.svg share/icons/breeze/mimetypes/16/libreoffice-drawing.svg share/icons/breeze/mimetypes/16/libreoffice-extension.svg share/icons/breeze/mimetypes/16/libreoffice-formula.svg share/icons/breeze/mimetypes/16/libreoffice-master-document.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-database.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-drawing-template.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-drawing.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-formula.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-master-document.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-presentation-template.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-presentation.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-spreadsheet.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-text-template.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-text.svg share/icons/breeze/mimetypes/16/libreoffice-oasis-web-template.svg share/icons/breeze/mimetypes/16/libreoffice-presentation-template.svg share/icons/breeze/mimetypes/16/libreoffice-presentation.svg share/icons/breeze/mimetypes/16/libreoffice-spreadsheet-template.svg share/icons/breeze/mimetypes/16/libreoffice-spreadsheet.svg share/icons/breeze/mimetypes/16/libreoffice-text-template.svg share/icons/breeze/mimetypes/16/libreoffice-text.svg share/icons/breeze/mimetypes/16/message-news.svg share/icons/breeze/mimetypes/16/message-partial.svg share/icons/breeze/mimetypes/16/message-rfc822.svg share/icons/breeze/mimetypes/16/message-x-gnu-rmail.svg share/icons/breeze/mimetypes/16/message.svg share/icons/breeze/mimetypes/16/none.svg share/icons/breeze/mimetypes/16/odf.svg share/icons/breeze/mimetypes/16/package-x-generic.svg share/icons/breeze/mimetypes/16/podcast.svg share/icons/breeze/mimetypes/16/text-calendar.svg share/icons/breeze/mimetypes/16/text-csharp.svg share/icons/breeze/mimetypes/16/text-css.svg share/icons/breeze/mimetypes/16/text-csv.svg share/icons/breeze/mimetypes/16/text-directory.svg share/icons/breeze/mimetypes/16/text-dockerfile.svg share/icons/breeze/mimetypes/16/text-enriched.svg +share/icons/breeze/mimetypes/16/text-fortran.svg share/icons/breeze/mimetypes/16/text-html.svg share/icons/breeze/mimetypes/16/text-javascript.svg share/icons/breeze/mimetypes/16/text-markdown.svg share/icons/breeze/mimetypes/16/text-plain.svg share/icons/breeze/mimetypes/16/text-rdf+xml.svg share/icons/breeze/mimetypes/16/text-rdf.svg share/icons/breeze/mimetypes/16/text-rtf.svg share/icons/breeze/mimetypes/16/text-rust.svg share/icons/breeze/mimetypes/16/text-sgml.svg share/icons/breeze/mimetypes/16/text-troff.svg share/icons/breeze/mimetypes/16/text-vcalendar.svg share/icons/breeze/mimetypes/16/text-vnd.abc.svg share/icons/breeze/mimetypes/16/text-vnd.kde.kcrash-report.svg share/icons/breeze/mimetypes/16/text-vnd.trolltech.linguist.svg share/icons/breeze/mimetypes/16/text-vnd.wap.wml.svg share/icons/breeze/mimetypes/16/text-vtt.svg share/icons/breeze/mimetypes/16/text-wiki.svg share/icons/breeze/mimetypes/16/text-x-adasrc.svg share/icons/breeze/mimetypes/16/text-x-apport.svg share/icons/breeze/mimetypes/16/text-x-authors.svg share/icons/breeze/mimetypes/16/text-x-bibtex.svg share/icons/breeze/mimetypes/16/text-x-c++hdr.svg share/icons/breeze/mimetypes/16/text-x-c++src.svg share/icons/breeze/mimetypes/16/text-x-changelog.svg share/icons/breeze/mimetypes/16/text-x-chdr.svg share/icons/breeze/mimetypes/16/text-x-cmake.svg share/icons/breeze/mimetypes/16/text-x-copying.svg share/icons/breeze/mimetypes/16/text-x-credits.svg share/icons/breeze/mimetypes/16/text-x-csharp.svg share/icons/breeze/mimetypes/16/text-x-csrc.svg share/icons/breeze/mimetypes/16/text-x-dtd.svg +share/icons/breeze/mimetypes/16/text-x-fortran.svg share/icons/breeze/mimetypes/16/text-x-generic.svapplication-x-awk.svg share/icons/breeze/mimetypes/16/text-x-generic.svg share/icons/breeze/mimetypes/16/text-x-gettext-translation.svg share/icons/breeze/mimetypes/16/text-x-go.svg share/icons/breeze/mimetypes/16/text-x-haskell.svg share/icons/breeze/mimetypes/16/text-x-hex.svg share/icons/breeze/mimetypes/16/text-x-install.svg share/icons/breeze/mimetypes/16/text-x-java-source.svg share/icons/breeze/mimetypes/16/text-x-java.svg share/icons/breeze/mimetypes/16/text-x-javascript.svg share/icons/breeze/mimetypes/16/text-x-katefilelist.svg share/icons/breeze/mimetypes/16/text-x-kotlin.svg share/icons/breeze/mimetypes/16/text-x-ldif.svg share/icons/breeze/mimetypes/16/text-x-lilypond.svg share/icons/breeze/mimetypes/16/text-x-log.svg share/icons/breeze/mimetypes/16/text-x-lua.svg share/icons/breeze/mimetypes/16/text-x-makefile.svg share/icons/breeze/mimetypes/16/text-x-markdown.svg share/icons/breeze/mimetypes/16/text-x-microdvd.svg share/icons/breeze/mimetypes/16/text-x-mpsub.svg share/icons/breeze/mimetypes/16/text-x-nfo.svg share/icons/breeze/mimetypes/16/text-x-objchdr.svg share/icons/breeze/mimetypes/16/text-x-objcsrc.svg share/icons/breeze/mimetypes/16/text-x-opml+xml.svg share/icons/breeze/mimetypes/16/text-x-opml.svg share/icons/breeze/mimetypes/16/text-x-pascal.svg share/icons/breeze/mimetypes/16/text-x-patch.svg share/icons/breeze/mimetypes/16/text-x-plain.svg share/icons/breeze/mimetypes/16/text-x-po.svg share/icons/breeze/mimetypes/16/text-x-python.svg share/icons/breeze/mimetypes/16/text-x-python3.svg share/icons/breeze/mimetypes/16/text-x-qml.svg share/icons/breeze/mimetypes/16/text-x-r.svg share/icons/breeze/mimetypes/16/text-x-readme.svg share/icons/breeze/mimetypes/16/text-x-rpm-spec.svg share/icons/breeze/mimetypes/16/text-x-rust.svg share/icons/breeze/mimetypes/16/text-x-scala.svg share/icons/breeze/mimetypes/16/text-x-script.svg share/icons/breeze/mimetypes/16/text-x-sql.svg share/icons/breeze/mimetypes/16/text-x-ssa.svg share/icons/breeze/mimetypes/16/text-x-subviewer.svg share/icons/breeze/mimetypes/16/text-x-tcl.svg share/icons/breeze/mimetypes/16/text-x-tex.svg share/icons/breeze/mimetypes/16/text-x-texinfo.svg share/icons/breeze/mimetypes/16/text-x-vcard.svg share/icons/breeze/mimetypes/16/text-x-xslfo.svg share/icons/breeze/mimetypes/16/text-xmcd.svg share/icons/breeze/mimetypes/16/text-xml.svg share/icons/breeze/mimetypes/16/unknown.svg share/icons/breeze/mimetypes/16/uri-mms.svg share/icons/breeze/mimetypes/16/uri-mmst.svg share/icons/breeze/mimetypes/16/uri-pnm.svg share/icons/breeze/mimetypes/16/uri-rtspt.svg share/icons/breeze/mimetypes/16/uri-rtspu.svg share/icons/breeze/mimetypes/16/video-mlt-playlist.svg share/icons/breeze/mimetypes/16/video-mp2t.svg share/icons/breeze/mimetypes/16/video-mp4.svg share/icons/breeze/mimetypes/16/video-vivo.svg share/icons/breeze/mimetypes/16/video-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/16/video-wavelet.svg share/icons/breeze/mimetypes/16/video-webm.svg share/icons/breeze/mimetypes/16/video-x-anim.svg share/icons/breeze/mimetypes/16/video-x-flic.svg share/icons/breeze/mimetypes/16/video-x-flv.svg share/icons/breeze/mimetypes/16/video-x-generic.svg share/icons/breeze/mimetypes/16/video-x-google-vlc-plugin.svg share/icons/breeze/mimetypes/16/video-x-javafx.svg share/icons/breeze/mimetypes/16/video-x-matroska.svg share/icons/breeze/mimetypes/16/video-x-mng.svg share/icons/breeze/mimetypes/16/video-x-ms-wmp.svg share/icons/breeze/mimetypes/16/video-x-ms-wmv.svg share/icons/breeze/mimetypes/16/video-x-msvideo.svg share/icons/breeze/mimetypes/16/video-x-ogm+ogg.svg share/icons/breeze/mimetypes/16/video-x-theora+ogg.svg share/icons/breeze/mimetypes/16/video-x-wmv.svg share/icons/breeze/mimetypes/16/viewbib.svg share/icons/breeze/mimetypes/16/viewdvi.svg share/icons/breeze/mimetypes/16/viewhtml.svg share/icons/breeze/mimetypes/16/viewpdf.svg share/icons/breeze/mimetypes/16/viewps.svg share/icons/breeze/mimetypes/16/virtualbox-hdd.svg share/icons/breeze/mimetypes/16/virtualbox-ova.svg share/icons/breeze/mimetypes/16/virtualbox-ovf.svg share/icons/breeze/mimetypes/16/virtualbox-vbox-extpack.svg share/icons/breeze/mimetypes/16/virtualbox-vbox.svg share/icons/breeze/mimetypes/16/virtualbox-vdi.svg share/icons/breeze/mimetypes/16/virtualbox-vhd.svg share/icons/breeze/mimetypes/16/virtualbox-vmdk.svg share/icons/breeze/mimetypes/16/vnd.ms-publisher.svg share/icons/breeze/mimetypes/16/x-kde-nsplugin-generated.svg share/icons/breeze/mimetypes/16/x-mail-distribution-list.svg share/icons/breeze/mimetypes/16/x-media-podcast.svg share/icons/breeze/mimetypes/16/x-office-address-book.svg share/icons/breeze/mimetypes/16/x-office-calendar.svg share/icons/breeze/mimetypes/16/x-office-contact.svg share/icons/breeze/mimetypes/16/x-office-document.svg share/icons/breeze/mimetypes/16/x-office-drawing.svg share/icons/breeze/mimetypes/16/x-office-presentation.svg share/icons/breeze/mimetypes/16/x-office-spreadsheet.svg share/icons/breeze/mimetypes/16@2x share/icons/breeze/mimetypes/16@3x share/icons/breeze/mimetypes/22/android-package-archive.svg share/icons/breeze/mimetypes/22/application-atom+xml.svg share/icons/breeze/mimetypes/22/application-certificate.svg share/icons/breeze/mimetypes/22/application-dicom.svg share/icons/breeze/mimetypes/22/application-epub+zip.svg share/icons/breeze/mimetypes/22/application-gzip.svg share/icons/breeze/mimetypes/22/application-illustrator.svg share/icons/breeze/mimetypes/22/application-javascript.svg share/icons/breeze/mimetypes/22/application-json.svg share/icons/breeze/mimetypes/22/application-mac-binhex40.svg share/icons/breeze/mimetypes/22/application-mathml+xml.svg share/icons/breeze/mimetypes/22/application-msonenote.svg share/icons/breeze/mimetypes/22/application-msoutlook.svg share/icons/breeze/mimetypes/22/application-msword-template.svg share/icons/breeze/mimetypes/22/application-msword.svg share/icons/breeze/mimetypes/22/application-octet-stream.svg share/icons/breeze/mimetypes/22/application-ogg.svg share/icons/breeze/mimetypes/22/application-pdf.svg share/icons/breeze/mimetypes/22/application-pgp-encrypted.svg share/icons/breeze/mimetypes/22/application-pgp-keys.svg share/icons/breeze/mimetypes/22/application-pgp-signature.svg share/icons/breeze/mimetypes/22/application-pgp.svg share/icons/breeze/mimetypes/22/application-pkcs12.svg share/icons/breeze/mimetypes/22/application-pkcs7-mime.svg share/icons/breeze/mimetypes/22/application-pkcs7-signature.svg share/icons/breeze/mimetypes/22/application-pkix-cerl.svg share/icons/breeze/mimetypes/22/application-pkix-cert.svg share/icons/breeze/mimetypes/22/application-postscript.svg share/icons/breeze/mimetypes/22/application-relaxng.svg share/icons/breeze/mimetypes/22/application-rss+xml.svg share/icons/breeze/mimetypes/22/application-rtf.svg share/icons/breeze/mimetypes/22/application-sql.svg share/icons/breeze/mimetypes/22/application-sxw.svg share/icons/breeze/mimetypes/22/application-vnd.android.package-archive.svg share/icons/breeze/mimetypes/22/application-vnd.appimage.svg share/icons/breeze/mimetypes/22/application-vnd.apple.pkpass.svg share/icons/breeze/mimetypes/22/application-vnd.debian.binary-package.svg share/icons/breeze/mimetypes/22/application-vnd.flatpak.ref.svg share/icons/breeze/mimetypes/22/application-vnd.google-earth.kml+xml.svg share/icons/breeze/mimetypes/22/application-vnd.iccprofile.svg share/icons/breeze/mimetypes/22/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze/mimetypes/22/application-vnd.ms-access.svg share/icons/breeze/mimetypes/22/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-excel.svg share/icons/breeze/mimetypes/22/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-infopath.svg share/icons/breeze/mimetypes/22/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-powerpoint.svg share/icons/breeze/mimetypes/22/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-publisher.svg share/icons/breeze/mimetypes/22/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.ms-word.svg share/icons/breeze/mimetypes/22/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze/mimetypes/22/application-vnd.nintendo.snes.rom.svg share/icons/breeze/mimetypes/22/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.chart.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.database.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.formula.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.image.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.text.svg share/icons/breeze/mimetypes/22/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze/mimetypes/22/application-vnd.openofficeorg.extension.svg share/icons/breeze/mimetypes/22/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze/mimetypes/22/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze/mimetypes/22/application-vnd.rar.svg share/icons/breeze/mimetypes/22/application-vnd.rn-realmedia.svg share/icons/breeze/mimetypes/22/application-vnd.scribus.svg share/icons/breeze/mimetypes/22/application-vnd.sqlite3.svg share/icons/breeze/mimetypes/22/application-vnd.squashfs.svg share/icons/breeze/mimetypes/22/application-vnd.stardivision.calc.svg share/icons/breeze/mimetypes/22/application-vnd.stardivision.draw.svg share/icons/breeze/mimetypes/22/application-vnd.stardivision.mail.svg share/icons/breeze/mimetypes/22/application-vnd.stardivision.math.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.calc.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.calc.template.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.draw.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.draw.template.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.impress.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.impress.template.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.math.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.writer.global.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.writer.svg share/icons/breeze/mimetypes/22/application-vnd.sun.xml.writer.template.svg share/icons/breeze/mimetypes/22/application-vnd.visio.svg share/icons/breeze/mimetypes/22/application-vnd.wordperfect.svg share/icons/breeze/mimetypes/22/application-wps-office.doc.svg share/icons/breeze/mimetypes/22/application-wps-office.docx.svg share/icons/breeze/mimetypes/22/application-wps-office.dot.svg share/icons/breeze/mimetypes/22/application-wps-office.dotx.svg share/icons/breeze/mimetypes/22/application-wps-office.pot.svg share/icons/breeze/mimetypes/22/application-wps-office.potx.svg share/icons/breeze/mimetypes/22/application-wps-office.ppt.svg share/icons/breeze/mimetypes/22/application-wps-office.pptx.svg share/icons/breeze/mimetypes/22/application-wps-office.xls.svg share/icons/breeze/mimetypes/22/application-wps-office.xlsx.svg share/icons/breeze/mimetypes/22/application-wps-office.xlt.svg share/icons/breeze/mimetypes/22/application-wps-office.xltx.svg share/icons/breeze/mimetypes/22/application-x-7z-compressed.svg share/icons/breeze/mimetypes/22/application-x-abiword.svg share/icons/breeze/mimetypes/22/application-x-ace.svg share/icons/breeze/mimetypes/22/application-x-apple-diskimage.svg share/icons/breeze/mimetypes/22/application-x-applix-spreadsheet.svg share/icons/breeze/mimetypes/22/application-x-applix-word.svg share/icons/breeze/mimetypes/22/application-x-ar.svg share/icons/breeze/mimetypes/22/application-x-arc.svg share/icons/breeze/mimetypes/22/application-x-archive.svg share/icons/breeze/mimetypes/22/application-x-arj.svg share/icons/breeze/mimetypes/22/application-x-audacity-project.svg share/icons/breeze/mimetypes/22/application-x-awk.svg share/icons/breeze/mimetypes/22/application-x-bittorrent.svg share/icons/breeze/mimetypes/22/application-x-blender.svg share/icons/breeze/mimetypes/22/application-x-bzdvi.svg share/icons/breeze/mimetypes/22/application-x-bzip-compressed-tar.svg share/icons/breeze/mimetypes/22/application-x-bzip.svg share/icons/breeze/mimetypes/22/application-x-cd-image.svg share/icons/breeze/mimetypes/22/application-x-cda.svg share/icons/breeze/mimetypes/22/application-x-chm.svg share/icons/breeze/mimetypes/22/application-x-compress.svg share/icons/breeze/mimetypes/22/application-x-compressed-tar.svg share/icons/breeze/mimetypes/22/application-x-core.svg share/icons/breeze/mimetypes/22/application-x-cpio.svg share/icons/breeze/mimetypes/22/application-x-cue.svg share/icons/breeze/mimetypes/22/application-x-deb.svg share/icons/breeze/mimetypes/22/application-x-designer.svg share/icons/breeze/mimetypes/22/application-x-desktop.svg share/icons/breeze/mimetypes/22/application-x-egon.svg share/icons/breeze/mimetypes/22/application-x-executable-script.svg share/icons/breeze/mimetypes/22/application-x-executable.svg share/icons/breeze/mimetypes/22/application-x-fictionbook+xml.svg share/icons/breeze/mimetypes/22/application-x-flash-video.svg share/icons/breeze/mimetypes/22/application-x-font-afm.svg share/icons/breeze/mimetypes/22/application-x-font-bdf.svg share/icons/breeze/mimetypes/22/application-x-font-otf.svg share/icons/breeze/mimetypes/22/application-x-font-pcf.svg share/icons/breeze/mimetypes/22/application-x-font-snf.svg share/icons/breeze/mimetypes/22/application-x-font-ttf.svg share/icons/breeze/mimetypes/22/application-x-font-ttx.svg share/icons/breeze/mimetypes/22/application-x-font-type1.svg share/icons/breeze/mimetypes/22/application-x-gameboy-rom.svg share/icons/breeze/mimetypes/22/application-x-gamecube-rom.svg share/icons/breeze/mimetypes/22/application-x-gba-rom.svg share/icons/breeze/mimetypes/22/application-x-gdscript.svg share/icons/breeze/mimetypes/22/application-x-gettext-translation.svg share/icons/breeze/mimetypes/22/application-x-gnumeric.svg share/icons/breeze/mimetypes/22/application-x-godot-project.svg share/icons/breeze/mimetypes/22/application-x-godot-resource.svg share/icons/breeze/mimetypes/22/application-x-godot-scene.svg share/icons/breeze/mimetypes/22/application-x-godot-shader.svg share/icons/breeze/mimetypes/22/application-x-gzdvi.svg share/icons/breeze/mimetypes/22/application-x-gzip.svg share/icons/breeze/mimetypes/22/application-x-gzpostscript.svg share/icons/breeze/mimetypes/22/application-x-iso.svg share/icons/breeze/mimetypes/22/application-x-iso9660-appimage.svg share/icons/breeze/mimetypes/22/application-x-it87.svg share/icons/breeze/mimetypes/22/application-x-jar.svg share/icons/breeze/mimetypes/22/application-x-java-applet.svg share/icons/breeze/mimetypes/22/application-x-java-archive.svg share/icons/breeze/mimetypes/22/application-x-java.svg share/icons/breeze/mimetypes/22/application-x-javascript.svg share/icons/breeze/mimetypes/22/application-x-k3b.svg share/icons/breeze/mimetypes/22/application-x-kcsrc.svg share/icons/breeze/mimetypes/22/application-x-kdenlivetitle.svg share/icons/breeze/mimetypes/22/application-x-kexi-connectiondata.svg share/icons/breeze/mimetypes/22/application-x-kexiproject-shortcut.svg share/icons/breeze/mimetypes/22/application-x-kexiproject-sqlite.svg share/icons/breeze/mimetypes/22/application-x-kexiproject-sqlite2.svg share/icons/breeze/mimetypes/22/application-x-kexiproject-sqlite3.svg share/icons/breeze/mimetypes/22/application-x-kformula.svg share/icons/breeze/mimetypes/22/application-x-kgetlist.svg share/icons/breeze/mimetypes/22/application-x-kmymoney.svg share/icons/breeze/mimetypes/22/application-x-kontour.svg share/icons/breeze/mimetypes/22/application-x-kplato.svg share/icons/breeze/mimetypes/22/application-x-krita.svg share/icons/breeze/mimetypes/22/application-x-kvtml.svg share/icons/breeze/mimetypes/22/application-x-kword.svg share/icons/breeze/mimetypes/22/application-x-lha.svg share/icons/breeze/mimetypes/22/application-x-lyx.svg share/icons/breeze/mimetypes/22/application-x-lzma-compressed-tar.svg share/icons/breeze/mimetypes/22/application-x-lzop.svg share/icons/breeze/mimetypes/22/application-x-m4.svg share/icons/breeze/mimetypes/22/application-x-macbinary.svg share/icons/breeze/mimetypes/22/application-x-marble.svg share/icons/breeze/mimetypes/22/application-x-mimearchive.svg share/icons/breeze/mimetypes/22/application-x-mplayer2.svg share/icons/breeze/mimetypes/22/application-x-ms-dos-executable.svg share/icons/breeze/mimetypes/22/application-x-ms-shortcut.svg share/icons/breeze/mimetypes/22/application-x-ms-wim.svg share/icons/breeze/mimetypes/22/application-x-msdownload.svg share/icons/breeze/mimetypes/22/application-x-mswinurl.svg share/icons/breeze/mimetypes/22/application-x-mswrite.svg share/icons/breeze/mimetypes/22/application-x-n64-rom.svg share/icons/breeze/mimetypes/22/application-x-nes-rom.svg share/icons/breeze/mimetypes/22/application-x-nintendo-ds-rom.svg share/icons/breeze/mimetypes/22/application-x-nzb.svg share/icons/breeze/mimetypes/22/application-x-object.svg share/icons/breeze/mimetypes/22/application-x-pak.svg share/icons/breeze/mimetypes/22/application-x-partial-download.svg share/icons/breeze/mimetypes/22/application-x-pem-key.svg share/icons/breeze/mimetypes/22/application-x-perl.svg share/icons/breeze/mimetypes/22/application-x-php.svg share/icons/breeze/mimetypes/22/application-x-pkcs12.svg share/icons/breeze/mimetypes/22/application-x-pkcs7-certificates.svg share/icons/breeze/mimetypes/22/application-x-plasma.svg share/icons/breeze/mimetypes/22/application-x-python-bytecode.svg share/icons/breeze/mimetypes/22/application-x-qemu-disk.svg share/icons/breeze/mimetypes/22/application-x-qet-element.svg share/icons/breeze/mimetypes/22/application-x-qet-project.svg share/icons/breeze/mimetypes/22/application-x-quattropro.svg share/icons/breeze/mimetypes/22/application-x-rar.svg share/icons/breeze/mimetypes/22/application-x-raw-disk-image.svg share/icons/breeze/mimetypes/22/application-x-rdata.svg share/icons/breeze/mimetypes/22/application-x-root.svg share/icons/breeze/mimetypes/22/application-x-rpm.svg share/icons/breeze/mimetypes/22/application-x-ruby.svg share/icons/breeze/mimetypes/22/application-x-sami.svg share/icons/breeze/mimetypes/22/application-x-sharedlib.svg share/icons/breeze/mimetypes/22/application-x-shellscript.svg share/icons/breeze/mimetypes/22/application-x-shockwave-flash.svg share/icons/breeze/mimetypes/22/application-x-siag.svg share/icons/breeze/mimetypes/22/application-x-sif.svg share/icons/breeze/mimetypes/22/application-x-skg.svg share/icons/breeze/mimetypes/22/application-x-skgc.svg share/icons/breeze/mimetypes/22/application-x-smb-server.svg share/icons/breeze/mimetypes/22/application-x-smb-workgroup.svg share/icons/breeze/mimetypes/22/application-x-source-rpm.svg share/icons/breeze/mimetypes/22/application-x-sqlite2.svg share/icons/breeze/mimetypes/22/application-x-sqlite3.svg share/icons/breeze/mimetypes/22/application-x-srt.svg share/icons/breeze/mimetypes/22/application-x-srtrip.svg share/icons/breeze/mimetypes/22/application-x-subrip.svg share/icons/breeze/mimetypes/22/application-x-tar.svg share/icons/breeze/mimetypes/22/application-x-tarz.svg share/icons/breeze/mimetypes/22/application-x-tgif.svg share/icons/breeze/mimetypes/22/application-x-theme.svg share/icons/breeze/mimetypes/22/application-x-trash.svg share/icons/breeze/mimetypes/22/application-x-troff-man.svg share/icons/breeze/mimetypes/22/application-x-tzo.svg share/icons/breeze/mimetypes/22/application-x-vdi-disk.svg share/icons/breeze/mimetypes/22/application-x-wmf.svg share/icons/breeze/mimetypes/22/application-x-x509-ca-cert.svg share/icons/breeze/mimetypes/22/application-x-x509-user-cert.svg share/icons/breeze/mimetypes/22/application-x-xliff.svg share/icons/breeze/mimetypes/22/application-x-xpinstall.svg share/icons/breeze/mimetypes/22/application-x-xz-compressed-tar.svg share/icons/breeze/mimetypes/22/application-x-xz-pkg.svg share/icons/breeze/mimetypes/22/application-x-zerosize.svg share/icons/breeze/mimetypes/22/application-x-zip-compressed-fb2.svg share/icons/breeze/mimetypes/22/application-x-zoo.svg share/icons/breeze/mimetypes/22/application-xhtml+xml.svg share/icons/breeze/mimetypes/22/application-xmind.svg share/icons/breeze/mimetypes/22/application-xml.svg share/icons/breeze/mimetypes/22/application-xsd.svg share/icons/breeze/mimetypes/22/application-xslt+xml.svg share/icons/breeze/mimetypes/22/application-zip.svg share/icons/breeze/mimetypes/22/audio-ac3.svg share/icons/breeze/mimetypes/22/audio-flac.svg share/icons/breeze/mimetypes/22/audio-midi.svg share/icons/breeze/mimetypes/22/audio-mp2.svg share/icons/breeze/mimetypes/22/audio-mp3.svg share/icons/breeze/mimetypes/22/audio-mp4.svg share/icons/breeze/mimetypes/22/audio-mpeg.svg share/icons/breeze/mimetypes/22/audio-prs.sid.svg share/icons/breeze/mimetypes/22/audio-vn.rn-realmedia.svg share/icons/breeze/mimetypes/22/audio-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/22/audio-x-adpcm.svg share/icons/breeze/mimetypes/22/audio-x-aiff.svg share/icons/breeze/mimetypes/22/audio-x-flac+ogg.svg share/icons/breeze/mimetypes/22/audio-x-flac.svg share/icons/breeze/mimetypes/22/audio-x-generic.svg share/icons/breeze/mimetypes/22/audio-x-monkey.svg share/icons/breeze/mimetypes/22/audio-x-mp2.svg share/icons/breeze/mimetypes/22/audio-x-mpeg.svg share/icons/breeze/mimetypes/22/audio-x-speex+ogg.svg share/icons/breeze/mimetypes/22/audio-x-wav.svg share/icons/breeze/mimetypes/22/audiobook.svg share/icons/breeze/mimetypes/22/encrypted.svg share/icons/breeze/mimetypes/22/font-otf.svg share/icons/breeze/mimetypes/22/font-ttf.svg share/icons/breeze/mimetypes/22/fonts-package.svg share/icons/breeze/mimetypes/22/image-bmp.svg share/icons/breeze/mimetypes/22/image-gif.svg share/icons/breeze/mimetypes/22/image-ico.svg share/icons/breeze/mimetypes/22/image-jpeg.svg share/icons/breeze/mimetypes/22/image-jpeg2000.svg share/icons/breeze/mimetypes/22/image-png.svg share/icons/breeze/mimetypes/22/image-svg+xml-compressed.svg share/icons/breeze/mimetypes/22/image-svg+xml.svg share/icons/breeze/mimetypes/22/image-tiff.svg share/icons/breeze/mimetypes/22/image-vnd.dgn.svg share/icons/breeze/mimetypes/22/image-vnd.djvu.svg share/icons/breeze/mimetypes/22/image-vnd.dwg.svg share/icons/breeze/mimetypes/22/image-vnd.microsoft.icon.svg share/icons/breeze/mimetypes/22/image-x-adobe-dng.svg share/icons/breeze/mimetypes/22/image-x-compressed-xcf.svg share/icons/breeze/mimetypes/22/image-x-emf.svg share/icons/breeze/mimetypes/22/image-x-eps.svg share/icons/breeze/mimetypes/22/image-x-generic.svg share/icons/breeze/mimetypes/22/image-x-ico.svg share/icons/breeze/mimetypes/22/image-x-icon.svg share/icons/breeze/mimetypes/22/image-x-krita.svg share/icons/breeze/mimetypes/22/image-x-portable-bitmap.svg share/icons/breeze/mimetypes/22/image-x-psd.svg share/icons/breeze/mimetypes/22/image-x-psdimage-x-psd.svg share/icons/breeze/mimetypes/22/image-x-svg+xml.svg share/icons/breeze/mimetypes/22/image-x-tga.svg share/icons/breeze/mimetypes/22/image-x-vnd.trolltech.qpicture.svg share/icons/breeze/mimetypes/22/image-x-win-bitmap.svg share/icons/breeze/mimetypes/22/image-x-win-bmp.svg share/icons/breeze/mimetypes/22/image-x-wmf.svg share/icons/breeze/mimetypes/22/image-x-xcf.svg share/icons/breeze/mimetypes/22/image-x-xfig.svg share/icons/breeze/mimetypes/22/inode-directory.svg share/icons/breeze/mimetypes/22/libreoffice-database.svg share/icons/breeze/mimetypes/22/libreoffice-drawing-template.svg share/icons/breeze/mimetypes/22/libreoffice-drawing.svg share/icons/breeze/mimetypes/22/libreoffice-extension.svg share/icons/breeze/mimetypes/22/libreoffice-formula.svg share/icons/breeze/mimetypes/22/libreoffice-master-document.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-database.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-drawing-template.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-drawing.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-formula.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-master-document.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-presentation-template.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-presentation.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-spreadsheet.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-text-template.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-text.svg share/icons/breeze/mimetypes/22/libreoffice-oasis-web-template.svg share/icons/breeze/mimetypes/22/libreoffice-presentation-template.svg share/icons/breeze/mimetypes/22/libreoffice-presentation.svg share/icons/breeze/mimetypes/22/libreoffice-spreadsheet-template.svg share/icons/breeze/mimetypes/22/libreoffice-spreadsheet.svg share/icons/breeze/mimetypes/22/libreoffice-text-template.svg share/icons/breeze/mimetypes/22/libreoffice-text.svg share/icons/breeze/mimetypes/22/message-news.svg share/icons/breeze/mimetypes/22/message-partial.svg share/icons/breeze/mimetypes/22/message-rfc822.svg share/icons/breeze/mimetypes/22/message-x-gnu-rmail.svg share/icons/breeze/mimetypes/22/message.svg share/icons/breeze/mimetypes/22/none.svg share/icons/breeze/mimetypes/22/odf.svg share/icons/breeze/mimetypes/22/package-x-generic.svg share/icons/breeze/mimetypes/22/podcast.svg share/icons/breeze/mimetypes/22/text-calendar.svg share/icons/breeze/mimetypes/22/text-csharp.svg share/icons/breeze/mimetypes/22/text-css.svg share/icons/breeze/mimetypes/22/text-csv.svg share/icons/breeze/mimetypes/22/text-directory.svg share/icons/breeze/mimetypes/22/text-dockerfile.svg share/icons/breeze/mimetypes/22/text-enriched.svg +share/icons/breeze/mimetypes/22/text-fortran.svg share/icons/breeze/mimetypes/22/text-html.svg share/icons/breeze/mimetypes/22/text-javascript.svg share/icons/breeze/mimetypes/22/text-markdown.svg share/icons/breeze/mimetypes/22/text-plain.svg share/icons/breeze/mimetypes/22/text-rdf+xml.svg share/icons/breeze/mimetypes/22/text-rdf.svg share/icons/breeze/mimetypes/22/text-rtf.svg share/icons/breeze/mimetypes/22/text-rust.svg share/icons/breeze/mimetypes/22/text-sgml.svg share/icons/breeze/mimetypes/22/text-troff.svg share/icons/breeze/mimetypes/22/text-vcalendar.svg share/icons/breeze/mimetypes/22/text-vnd.abc.svg share/icons/breeze/mimetypes/22/text-vnd.kde.kcrash-report.svg share/icons/breeze/mimetypes/22/text-vnd.trolltech.linguist.svg share/icons/breeze/mimetypes/22/text-vnd.wap.wml.svg share/icons/breeze/mimetypes/22/text-vtt.svg share/icons/breeze/mimetypes/22/text-wiki.svg share/icons/breeze/mimetypes/22/text-x-adasrc.svg share/icons/breeze/mimetypes/22/text-x-apport.svg share/icons/breeze/mimetypes/22/text-x-authors.svg share/icons/breeze/mimetypes/22/text-x-bibtex.svg share/icons/breeze/mimetypes/22/text-x-c++hdr.svg share/icons/breeze/mimetypes/22/text-x-c++src.svg share/icons/breeze/mimetypes/22/text-x-changelog.svg share/icons/breeze/mimetypes/22/text-x-chdr.svg share/icons/breeze/mimetypes/22/text-x-cmake.svg share/icons/breeze/mimetypes/22/text-x-copying.svg share/icons/breeze/mimetypes/22/text-x-credits.svg share/icons/breeze/mimetypes/22/text-x-csharp.svg share/icons/breeze/mimetypes/22/text-x-csrc.svg share/icons/breeze/mimetypes/22/text-x-dtd.svg +share/icons/breeze/mimetypes/22/text-x-fortran.svg share/icons/breeze/mimetypes/22/text-x-generic.svapplication-x-awk.svg share/icons/breeze/mimetypes/22/text-x-generic.svg share/icons/breeze/mimetypes/22/text-x-gettext-translation.svg share/icons/breeze/mimetypes/22/text-x-go.svg share/icons/breeze/mimetypes/22/text-x-haskell.svg share/icons/breeze/mimetypes/22/text-x-hex.svg share/icons/breeze/mimetypes/22/text-x-install.svg share/icons/breeze/mimetypes/22/text-x-java-source.svg share/icons/breeze/mimetypes/22/text-x-java.svg share/icons/breeze/mimetypes/22/text-x-javascript.svg share/icons/breeze/mimetypes/22/text-x-katefilelist.svg share/icons/breeze/mimetypes/22/text-x-kotlin.svg share/icons/breeze/mimetypes/22/text-x-ldif.svg share/icons/breeze/mimetypes/22/text-x-lilypond.svg share/icons/breeze/mimetypes/22/text-x-log.svg share/icons/breeze/mimetypes/22/text-x-lua.svg share/icons/breeze/mimetypes/22/text-x-makefile.svg share/icons/breeze/mimetypes/22/text-x-markdown.svg share/icons/breeze/mimetypes/22/text-x-microdvd.svg share/icons/breeze/mimetypes/22/text-x-mpsub.svg share/icons/breeze/mimetypes/22/text-x-nfo.svg share/icons/breeze/mimetypes/22/text-x-objchdr.svg share/icons/breeze/mimetypes/22/text-x-objcsrc.svg share/icons/breeze/mimetypes/22/text-x-opml+xml.svg share/icons/breeze/mimetypes/22/text-x-opml.svg share/icons/breeze/mimetypes/22/text-x-pascal.svg share/icons/breeze/mimetypes/22/text-x-patch.svg share/icons/breeze/mimetypes/22/text-x-plain.svg share/icons/breeze/mimetypes/22/text-x-po.svg share/icons/breeze/mimetypes/22/text-x-python.svg share/icons/breeze/mimetypes/22/text-x-python3.svg share/icons/breeze/mimetypes/22/text-x-qml.svg share/icons/breeze/mimetypes/22/text-x-r.svg share/icons/breeze/mimetypes/22/text-x-readme.svg share/icons/breeze/mimetypes/22/text-x-rpm-spec.svg share/icons/breeze/mimetypes/22/text-x-rust.svg share/icons/breeze/mimetypes/22/text-x-scala.svg share/icons/breeze/mimetypes/22/text-x-script.svg share/icons/breeze/mimetypes/22/text-x-sql.svg share/icons/breeze/mimetypes/22/text-x-ssa.svg share/icons/breeze/mimetypes/22/text-x-subviewer.svg share/icons/breeze/mimetypes/22/text-x-tcl.svg share/icons/breeze/mimetypes/22/text-x-tex.svg share/icons/breeze/mimetypes/22/text-x-texinfo.svg share/icons/breeze/mimetypes/22/text-x-vcard.svg share/icons/breeze/mimetypes/22/text-x-xslfo.svg share/icons/breeze/mimetypes/22/text-xmcd.svg share/icons/breeze/mimetypes/22/text-xml.svg share/icons/breeze/mimetypes/22/unknown.svg share/icons/breeze/mimetypes/22/uri-mms.svg share/icons/breeze/mimetypes/22/uri-mmst.svg share/icons/breeze/mimetypes/22/uri-pnm.svg share/icons/breeze/mimetypes/22/uri-rtspt.svg share/icons/breeze/mimetypes/22/uri-rtspu.svg share/icons/breeze/mimetypes/22/video-mlt-playlist.svg share/icons/breeze/mimetypes/22/video-mp2t.svg share/icons/breeze/mimetypes/22/video-mp4.svg share/icons/breeze/mimetypes/22/video-vivo.svg share/icons/breeze/mimetypes/22/video-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/22/video-wavelet.svg share/icons/breeze/mimetypes/22/video-webm.svg share/icons/breeze/mimetypes/22/video-x-anim.svg share/icons/breeze/mimetypes/22/video-x-flic.svg share/icons/breeze/mimetypes/22/video-x-flv.svg share/icons/breeze/mimetypes/22/video-x-generic.svg share/icons/breeze/mimetypes/22/video-x-google-vlc-plugin.svg share/icons/breeze/mimetypes/22/video-x-javafx.svg share/icons/breeze/mimetypes/22/video-x-matroska.svg share/icons/breeze/mimetypes/22/video-x-mng.svg share/icons/breeze/mimetypes/22/video-x-ms-wmp.svg share/icons/breeze/mimetypes/22/video-x-ms-wmv.svg share/icons/breeze/mimetypes/22/video-x-msvideo.svg share/icons/breeze/mimetypes/22/video-x-ogm+ogg.svg share/icons/breeze/mimetypes/22/video-x-theora+ogg.svg share/icons/breeze/mimetypes/22/video-x-wmv.svg share/icons/breeze/mimetypes/22/viewbib.svg share/icons/breeze/mimetypes/22/viewdvi.svg share/icons/breeze/mimetypes/22/viewhtml.svg share/icons/breeze/mimetypes/22/viewpdf.svg share/icons/breeze/mimetypes/22/viewps.svg share/icons/breeze/mimetypes/22/virtualbox-hdd.svg share/icons/breeze/mimetypes/22/virtualbox-ova.svg share/icons/breeze/mimetypes/22/virtualbox-ovf.svg share/icons/breeze/mimetypes/22/virtualbox-vbox-extpack.svg share/icons/breeze/mimetypes/22/virtualbox-vbox.svg share/icons/breeze/mimetypes/22/virtualbox-vdi.svg share/icons/breeze/mimetypes/22/virtualbox-vhd.svg share/icons/breeze/mimetypes/22/virtualbox-vmdk.svg share/icons/breeze/mimetypes/22/vnd.ms-publisher.svg share/icons/breeze/mimetypes/22/x-kde-nsplugin-generated.svg share/icons/breeze/mimetypes/22/x-mail-distribution-list.svg share/icons/breeze/mimetypes/22/x-media-podcast.svg share/icons/breeze/mimetypes/22/x-office-address-book.svg share/icons/breeze/mimetypes/22/x-office-calendar.svg share/icons/breeze/mimetypes/22/x-office-contact.svg share/icons/breeze/mimetypes/22/x-office-document.svg share/icons/breeze/mimetypes/22/x-office-drawing.svg share/icons/breeze/mimetypes/22/x-office-presentation.svg share/icons/breeze/mimetypes/22/x-office-spreadsheet.svg share/icons/breeze/mimetypes/22@2x share/icons/breeze/mimetypes/22@3x share/icons/breeze/mimetypes/24/android-package-archive.svg share/icons/breeze/mimetypes/24/application-atom+xml.svg share/icons/breeze/mimetypes/24/application-certificate.svg share/icons/breeze/mimetypes/24/application-dicom.svg share/icons/breeze/mimetypes/24/application-epub+zip.svg share/icons/breeze/mimetypes/24/application-gzip.svg share/icons/breeze/mimetypes/24/application-illustrator.svg share/icons/breeze/mimetypes/24/application-javascript.svg share/icons/breeze/mimetypes/24/application-json.svg share/icons/breeze/mimetypes/24/application-mac-binhex40.svg share/icons/breeze/mimetypes/24/application-mathml+xml.svg share/icons/breeze/mimetypes/24/application-msonenote.svg share/icons/breeze/mimetypes/24/application-msoutlook.svg share/icons/breeze/mimetypes/24/application-msword-template.svg share/icons/breeze/mimetypes/24/application-msword.svg share/icons/breeze/mimetypes/24/application-octet-stream.svg share/icons/breeze/mimetypes/24/application-ogg.svg share/icons/breeze/mimetypes/24/application-pdf.svg share/icons/breeze/mimetypes/24/application-pgp-encrypted.svg share/icons/breeze/mimetypes/24/application-pgp-keys.svg share/icons/breeze/mimetypes/24/application-pgp-signature.svg share/icons/breeze/mimetypes/24/application-pgp.svg share/icons/breeze/mimetypes/24/application-pkcs12.svg share/icons/breeze/mimetypes/24/application-pkcs7-mime.svg share/icons/breeze/mimetypes/24/application-pkcs7-signature.svg share/icons/breeze/mimetypes/24/application-pkix-cerl.svg share/icons/breeze/mimetypes/24/application-pkix-cert.svg share/icons/breeze/mimetypes/24/application-postscript.svg share/icons/breeze/mimetypes/24/application-relaxng.svg share/icons/breeze/mimetypes/24/application-rss+xml.svg share/icons/breeze/mimetypes/24/application-rtf.svg share/icons/breeze/mimetypes/24/application-sql.svg share/icons/breeze/mimetypes/24/application-sxw.svg share/icons/breeze/mimetypes/24/application-vnd.android.package-archive.svg share/icons/breeze/mimetypes/24/application-vnd.appimage.svg share/icons/breeze/mimetypes/24/application-vnd.apple.pkpass.svg share/icons/breeze/mimetypes/24/application-vnd.debian.binary-package.svg share/icons/breeze/mimetypes/24/application-vnd.flatpak.ref.svg share/icons/breeze/mimetypes/24/application-vnd.google-earth.kml+xml.svg share/icons/breeze/mimetypes/24/application-vnd.iccprofile.svg share/icons/breeze/mimetypes/24/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze/mimetypes/24/application-vnd.ms-access.svg share/icons/breeze/mimetypes/24/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-excel.svg share/icons/breeze/mimetypes/24/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-infopath.svg share/icons/breeze/mimetypes/24/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-powerpoint.svg share/icons/breeze/mimetypes/24/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-publisher.svg share/icons/breeze/mimetypes/24/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.ms-word.svg share/icons/breeze/mimetypes/24/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze/mimetypes/24/application-vnd.nintendo.snes.rom.svg share/icons/breeze/mimetypes/24/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.chart.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.database.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.formula.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.image.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.text.svg share/icons/breeze/mimetypes/24/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze/mimetypes/24/application-vnd.openofficeorg.extension.svg share/icons/breeze/mimetypes/24/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze/mimetypes/24/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze/mimetypes/24/application-vnd.rar.svg share/icons/breeze/mimetypes/24/application-vnd.rn-realmedia.svg share/icons/breeze/mimetypes/24/application-vnd.scribus.svg share/icons/breeze/mimetypes/24/application-vnd.sqlite3.svg share/icons/breeze/mimetypes/24/application-vnd.squashfs.svg share/icons/breeze/mimetypes/24/application-vnd.stardivision.calc.svg share/icons/breeze/mimetypes/24/application-vnd.stardivision.draw.svg share/icons/breeze/mimetypes/24/application-vnd.stardivision.mail.svg share/icons/breeze/mimetypes/24/application-vnd.stardivision.math.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.calc.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.calc.template.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.draw.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.draw.template.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.impress.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.impress.template.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.math.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.writer.global.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.writer.svg share/icons/breeze/mimetypes/24/application-vnd.sun.xml.writer.template.svg share/icons/breeze/mimetypes/24/application-vnd.visio.svg share/icons/breeze/mimetypes/24/application-vnd.wordperfect.svg share/icons/breeze/mimetypes/24/application-wps-office.doc.svg share/icons/breeze/mimetypes/24/application-wps-office.docx.svg share/icons/breeze/mimetypes/24/application-wps-office.dot.svg share/icons/breeze/mimetypes/24/application-wps-office.dotx.svg share/icons/breeze/mimetypes/24/application-wps-office.pot.svg share/icons/breeze/mimetypes/24/application-wps-office.potx.svg share/icons/breeze/mimetypes/24/application-wps-office.ppt.svg share/icons/breeze/mimetypes/24/application-wps-office.pptx.svg share/icons/breeze/mimetypes/24/application-wps-office.xls.svg share/icons/breeze/mimetypes/24/application-wps-office.xlsx.svg share/icons/breeze/mimetypes/24/application-wps-office.xlt.svg share/icons/breeze/mimetypes/24/application-wps-office.xltx.svg share/icons/breeze/mimetypes/24/application-x-7z-compressed.svg share/icons/breeze/mimetypes/24/application-x-abiword.svg share/icons/breeze/mimetypes/24/application-x-ace.svg share/icons/breeze/mimetypes/24/application-x-apple-diskimage.svg share/icons/breeze/mimetypes/24/application-x-applix-spreadsheet.svg share/icons/breeze/mimetypes/24/application-x-applix-word.svg share/icons/breeze/mimetypes/24/application-x-ar.svg share/icons/breeze/mimetypes/24/application-x-arc.svg share/icons/breeze/mimetypes/24/application-x-archive.svg share/icons/breeze/mimetypes/24/application-x-arj.svg share/icons/breeze/mimetypes/24/application-x-audacity-project.svg share/icons/breeze/mimetypes/24/application-x-awk.svg share/icons/breeze/mimetypes/24/application-x-bittorrent.svg share/icons/breeze/mimetypes/24/application-x-blender.svg share/icons/breeze/mimetypes/24/application-x-bzdvi.svg share/icons/breeze/mimetypes/24/application-x-bzip-compressed-tar.svg share/icons/breeze/mimetypes/24/application-x-bzip.svg share/icons/breeze/mimetypes/24/application-x-cd-image.svg share/icons/breeze/mimetypes/24/application-x-cda.svg share/icons/breeze/mimetypes/24/application-x-chm.svg share/icons/breeze/mimetypes/24/application-x-compress.svg share/icons/breeze/mimetypes/24/application-x-compressed-tar.svg share/icons/breeze/mimetypes/24/application-x-core.svg share/icons/breeze/mimetypes/24/application-x-cpio.svg share/icons/breeze/mimetypes/24/application-x-cue.svg share/icons/breeze/mimetypes/24/application-x-deb.svg share/icons/breeze/mimetypes/24/application-x-designer.svg share/icons/breeze/mimetypes/24/application-x-desktop.svg share/icons/breeze/mimetypes/24/application-x-egon.svg share/icons/breeze/mimetypes/24/application-x-executable-script.svg share/icons/breeze/mimetypes/24/application-x-executable.svg share/icons/breeze/mimetypes/24/application-x-fictionbook+xml.svg share/icons/breeze/mimetypes/24/application-x-flash-video.svg share/icons/breeze/mimetypes/24/application-x-font-afm.svg share/icons/breeze/mimetypes/24/application-x-font-bdf.svg share/icons/breeze/mimetypes/24/application-x-font-otf.svg share/icons/breeze/mimetypes/24/application-x-font-pcf.svg share/icons/breeze/mimetypes/24/application-x-font-snf.svg share/icons/breeze/mimetypes/24/application-x-font-ttf.svg share/icons/breeze/mimetypes/24/application-x-font-ttx.svg share/icons/breeze/mimetypes/24/application-x-font-type1.svg share/icons/breeze/mimetypes/24/application-x-gameboy-rom.svg share/icons/breeze/mimetypes/24/application-x-gamecube-rom.svg share/icons/breeze/mimetypes/24/application-x-gba-rom.svg share/icons/breeze/mimetypes/24/application-x-gdscript.svg share/icons/breeze/mimetypes/24/application-x-gettext-translation.svg share/icons/breeze/mimetypes/24/application-x-gnumeric.svg share/icons/breeze/mimetypes/24/application-x-godot-project.svg share/icons/breeze/mimetypes/24/application-x-godot-resource.svg share/icons/breeze/mimetypes/24/application-x-godot-scene.svg share/icons/breeze/mimetypes/24/application-x-godot-shader.svg share/icons/breeze/mimetypes/24/application-x-gzdvi.svg share/icons/breeze/mimetypes/24/application-x-gzip.svg share/icons/breeze/mimetypes/24/application-x-gzpostscript.svg share/icons/breeze/mimetypes/24/application-x-iso.svg share/icons/breeze/mimetypes/24/application-x-iso9660-appimage.svg share/icons/breeze/mimetypes/24/application-x-it87.svg share/icons/breeze/mimetypes/24/application-x-jar.svg share/icons/breeze/mimetypes/24/application-x-java-applet.svg share/icons/breeze/mimetypes/24/application-x-java-archive.svg share/icons/breeze/mimetypes/24/application-x-java.svg share/icons/breeze/mimetypes/24/application-x-javascript.svg share/icons/breeze/mimetypes/24/application-x-k3b.svg share/icons/breeze/mimetypes/24/application-x-kcsrc.svg share/icons/breeze/mimetypes/24/application-x-kdenlivetitle.svg share/icons/breeze/mimetypes/24/application-x-kexi-connectiondata.svg share/icons/breeze/mimetypes/24/application-x-kexiproject-shortcut.svg share/icons/breeze/mimetypes/24/application-x-kexiproject-sqlite.svg share/icons/breeze/mimetypes/24/application-x-kexiproject-sqlite2.svg share/icons/breeze/mimetypes/24/application-x-kexiproject-sqlite3.svg share/icons/breeze/mimetypes/24/application-x-kformula.svg share/icons/breeze/mimetypes/24/application-x-kgetlist.svg share/icons/breeze/mimetypes/24/application-x-kmymoney.svg share/icons/breeze/mimetypes/24/application-x-kontour.svg share/icons/breeze/mimetypes/24/application-x-kplato.svg share/icons/breeze/mimetypes/24/application-x-krita.svg share/icons/breeze/mimetypes/24/application-x-kvtml.svg share/icons/breeze/mimetypes/24/application-x-kword.svg share/icons/breeze/mimetypes/24/application-x-lha.svg share/icons/breeze/mimetypes/24/application-x-lyx.svg share/icons/breeze/mimetypes/24/application-x-lzma-compressed-tar.svg share/icons/breeze/mimetypes/24/application-x-lzop.svg share/icons/breeze/mimetypes/24/application-x-m4.svg share/icons/breeze/mimetypes/24/application-x-macbinary.svg share/icons/breeze/mimetypes/24/application-x-marble.svg share/icons/breeze/mimetypes/24/application-x-mimearchive.svg share/icons/breeze/mimetypes/24/application-x-mplayer2.svg share/icons/breeze/mimetypes/24/application-x-ms-dos-executable.svg share/icons/breeze/mimetypes/24/application-x-ms-shortcut.svg share/icons/breeze/mimetypes/24/application-x-ms-wim.svg share/icons/breeze/mimetypes/24/application-x-msdownload.svg share/icons/breeze/mimetypes/24/application-x-mswinurl.svg share/icons/breeze/mimetypes/24/application-x-mswrite.svg share/icons/breeze/mimetypes/24/application-x-n64-rom.svg share/icons/breeze/mimetypes/24/application-x-nes-rom.svg share/icons/breeze/mimetypes/24/application-x-nintendo-ds-rom.svg share/icons/breeze/mimetypes/24/application-x-nzb.svg share/icons/breeze/mimetypes/24/application-x-object.svg share/icons/breeze/mimetypes/24/application-x-pak.svg share/icons/breeze/mimetypes/24/application-x-partial-download.svg share/icons/breeze/mimetypes/24/application-x-pem-key.svg share/icons/breeze/mimetypes/24/application-x-perl.svg share/icons/breeze/mimetypes/24/application-x-php.svg share/icons/breeze/mimetypes/24/application-x-pkcs12.svg share/icons/breeze/mimetypes/24/application-x-pkcs7-certificates.svg share/icons/breeze/mimetypes/24/application-x-plasma.svg share/icons/breeze/mimetypes/24/application-x-python-bytecode.svg share/icons/breeze/mimetypes/24/application-x-qemu-disk.svg share/icons/breeze/mimetypes/24/application-x-qet-element.svg share/icons/breeze/mimetypes/24/application-x-qet-project.svg share/icons/breeze/mimetypes/24/application-x-quattropro.svg share/icons/breeze/mimetypes/24/application-x-rar.svg share/icons/breeze/mimetypes/24/application-x-raw-disk-image.svg share/icons/breeze/mimetypes/24/application-x-rdata.svg share/icons/breeze/mimetypes/24/application-x-rpm.svg share/icons/breeze/mimetypes/24/application-x-ruby.svg share/icons/breeze/mimetypes/24/application-x-sami.svg share/icons/breeze/mimetypes/24/application-x-sharedlib.svg share/icons/breeze/mimetypes/24/application-x-shellscript.svg share/icons/breeze/mimetypes/24/application-x-shockwave-flash.svg share/icons/breeze/mimetypes/24/application-x-siag.svg share/icons/breeze/mimetypes/24/application-x-sif.svg share/icons/breeze/mimetypes/24/application-x-skg.svg share/icons/breeze/mimetypes/24/application-x-skgc.svg share/icons/breeze/mimetypes/24/application-x-smb-server.svg share/icons/breeze/mimetypes/24/application-x-smb-workgroup.svg share/icons/breeze/mimetypes/24/application-x-source-rpm.svg share/icons/breeze/mimetypes/24/application-x-sqlite2.svg share/icons/breeze/mimetypes/24/application-x-sqlite3.svg share/icons/breeze/mimetypes/24/application-x-srt.svg share/icons/breeze/mimetypes/24/application-x-srtrip.svg share/icons/breeze/mimetypes/24/application-x-subrip.svg share/icons/breeze/mimetypes/24/application-x-tar.svg share/icons/breeze/mimetypes/24/application-x-tarz.svg share/icons/breeze/mimetypes/24/application-x-tgif.svg share/icons/breeze/mimetypes/24/application-x-theme.svg share/icons/breeze/mimetypes/24/application-x-trash.svg share/icons/breeze/mimetypes/24/application-x-troff-man.svg share/icons/breeze/mimetypes/24/application-x-tzo.svg share/icons/breeze/mimetypes/24/application-x-vdi-disk.svg share/icons/breeze/mimetypes/24/application-x-wmf.svg share/icons/breeze/mimetypes/24/application-x-x509-ca-cert.svg share/icons/breeze/mimetypes/24/application-x-x509-user-cert.svg share/icons/breeze/mimetypes/24/application-x-xliff.svg share/icons/breeze/mimetypes/24/application-x-xpinstall.svg share/icons/breeze/mimetypes/24/application-x-xz-compressed-tar.svg share/icons/breeze/mimetypes/24/application-x-xz-pkg.svg share/icons/breeze/mimetypes/24/application-x-zerosize.svg share/icons/breeze/mimetypes/24/application-x-zip-compressed-fb2.svg share/icons/breeze/mimetypes/24/application-x-zoo.svg share/icons/breeze/mimetypes/24/application-xhtml+xml.svg share/icons/breeze/mimetypes/24/application-xmind.svg share/icons/breeze/mimetypes/24/application-xml.svg share/icons/breeze/mimetypes/24/application-xsd.svg share/icons/breeze/mimetypes/24/application-xslt+xml.svg share/icons/breeze/mimetypes/24/application-zip.svg share/icons/breeze/mimetypes/24/audio-ac3.svg share/icons/breeze/mimetypes/24/audio-flac.svg share/icons/breeze/mimetypes/24/audio-midi.svg share/icons/breeze/mimetypes/24/audio-mp2.svg share/icons/breeze/mimetypes/24/audio-mp3.svg share/icons/breeze/mimetypes/24/audio-mp4.svg share/icons/breeze/mimetypes/24/audio-mpeg.svg share/icons/breeze/mimetypes/24/audio-prs.sid.svg share/icons/breeze/mimetypes/24/audio-vn.rn-realmedia.svg share/icons/breeze/mimetypes/24/audio-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/24/audio-x-adpcm.svg share/icons/breeze/mimetypes/24/audio-x-aiff.svg share/icons/breeze/mimetypes/24/audio-x-flac+ogg.svg share/icons/breeze/mimetypes/24/audio-x-flac.svg share/icons/breeze/mimetypes/24/audio-x-generic.svg share/icons/breeze/mimetypes/24/audio-x-monkey.svg share/icons/breeze/mimetypes/24/audio-x-mp2.svg share/icons/breeze/mimetypes/24/audio-x-mpeg.svg share/icons/breeze/mimetypes/24/audio-x-speex+ogg.svg share/icons/breeze/mimetypes/24/audio-x-wav.svg share/icons/breeze/mimetypes/24/audiobook.svg share/icons/breeze/mimetypes/24/encrypted.svg share/icons/breeze/mimetypes/24/font-otf.svg share/icons/breeze/mimetypes/24/font-ttf.svg share/icons/breeze/mimetypes/24/fonts-package.svg share/icons/breeze/mimetypes/24/image-bmp.svg share/icons/breeze/mimetypes/24/image-gif.svg share/icons/breeze/mimetypes/24/image-ico.svg share/icons/breeze/mimetypes/24/image-jpeg.svg share/icons/breeze/mimetypes/24/image-jpeg2000.svg share/icons/breeze/mimetypes/24/image-png.svg share/icons/breeze/mimetypes/24/image-svg+xml-compressed.svg share/icons/breeze/mimetypes/24/image-svg+xml.svg share/icons/breeze/mimetypes/24/image-tiff.svg share/icons/breeze/mimetypes/24/image-vnd.dgn.svg share/icons/breeze/mimetypes/24/image-vnd.djvu.svg share/icons/breeze/mimetypes/24/image-vnd.dwg.svg share/icons/breeze/mimetypes/24/image-vnd.microsoft.icon.svg share/icons/breeze/mimetypes/24/image-x-adobe-dng.svg share/icons/breeze/mimetypes/24/image-x-compressed-xcf.svg share/icons/breeze/mimetypes/24/image-x-emf.svg share/icons/breeze/mimetypes/24/image-x-eps.svg share/icons/breeze/mimetypes/24/image-x-generic.svg share/icons/breeze/mimetypes/24/image-x-ico.svg share/icons/breeze/mimetypes/24/image-x-icon.svg share/icons/breeze/mimetypes/24/image-x-krita.svg share/icons/breeze/mimetypes/24/image-x-portable-bitmap.svg share/icons/breeze/mimetypes/24/image-x-psd.svg share/icons/breeze/mimetypes/24/image-x-psdimage-x-psd.svg share/icons/breeze/mimetypes/24/image-x-svg+xml.svg share/icons/breeze/mimetypes/24/image-x-tga.svg share/icons/breeze/mimetypes/24/image-x-vnd.trolltech.qpicture.svg share/icons/breeze/mimetypes/24/image-x-win-bitmap.svg share/icons/breeze/mimetypes/24/image-x-win-bmp.svg share/icons/breeze/mimetypes/24/image-x-wmf.svg share/icons/breeze/mimetypes/24/image-x-xcf.svg share/icons/breeze/mimetypes/24/image-x-xfig.svg share/icons/breeze/mimetypes/24/inode-directory.svg share/icons/breeze/mimetypes/24/libreoffice-database.svg share/icons/breeze/mimetypes/24/libreoffice-drawing-template.svg share/icons/breeze/mimetypes/24/libreoffice-drawing.svg share/icons/breeze/mimetypes/24/libreoffice-extension.svg share/icons/breeze/mimetypes/24/libreoffice-formula.svg share/icons/breeze/mimetypes/24/libreoffice-master-document.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-database.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-drawing-template.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-drawing.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-formula.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-master-document.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-presentation-template.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-presentation.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-spreadsheet.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-text-template.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-text.svg share/icons/breeze/mimetypes/24/libreoffice-oasis-web-template.svg share/icons/breeze/mimetypes/24/libreoffice-presentation-template.svg share/icons/breeze/mimetypes/24/libreoffice-presentation.svg share/icons/breeze/mimetypes/24/libreoffice-spreadsheet-template.svg share/icons/breeze/mimetypes/24/libreoffice-spreadsheet.svg share/icons/breeze/mimetypes/24/libreoffice-text-template.svg share/icons/breeze/mimetypes/24/libreoffice-text.svg share/icons/breeze/mimetypes/24/message-news.svg share/icons/breeze/mimetypes/24/message-partial.svg share/icons/breeze/mimetypes/24/message-rfc822.svg share/icons/breeze/mimetypes/24/message-x-gnu-rmail.svg share/icons/breeze/mimetypes/24/message.svg share/icons/breeze/mimetypes/24/none.svg share/icons/breeze/mimetypes/24/odf.svg share/icons/breeze/mimetypes/24/package-x-generic.svg share/icons/breeze/mimetypes/24/podcast.svg share/icons/breeze/mimetypes/24/text-calendar.svg share/icons/breeze/mimetypes/24/text-csharp.svg share/icons/breeze/mimetypes/24/text-css.svg share/icons/breeze/mimetypes/24/text-csv.svg share/icons/breeze/mimetypes/24/text-directory.svg share/icons/breeze/mimetypes/24/text-dockerfile.svg share/icons/breeze/mimetypes/24/text-enriched.svg +share/icons/breeze/mimetypes/24/text-fortran.svg share/icons/breeze/mimetypes/24/text-html.svg share/icons/breeze/mimetypes/24/text-javascript.svg share/icons/breeze/mimetypes/24/text-markdown.svg share/icons/breeze/mimetypes/24/text-plain.svg share/icons/breeze/mimetypes/24/text-rdf+xml.svg share/icons/breeze/mimetypes/24/text-rdf.svg share/icons/breeze/mimetypes/24/text-rtf.svg share/icons/breeze/mimetypes/24/text-rust.svg share/icons/breeze/mimetypes/24/text-sgml.svg share/icons/breeze/mimetypes/24/text-troff.svg share/icons/breeze/mimetypes/24/text-vcalendar.svg share/icons/breeze/mimetypes/24/text-vnd.abc.svg share/icons/breeze/mimetypes/24/text-vnd.kde.kcrash-report.svg share/icons/breeze/mimetypes/24/text-vnd.trolltech.linguist.svg share/icons/breeze/mimetypes/24/text-vnd.wap.wml.svg share/icons/breeze/mimetypes/24/text-vtt.svg share/icons/breeze/mimetypes/24/text-wiki.svg share/icons/breeze/mimetypes/24/text-x-adasrc.svg share/icons/breeze/mimetypes/24/text-x-apport.svg share/icons/breeze/mimetypes/24/text-x-authors.svg share/icons/breeze/mimetypes/24/text-x-bibtex.svg share/icons/breeze/mimetypes/24/text-x-c++hdr.svg share/icons/breeze/mimetypes/24/text-x-c++src.svg share/icons/breeze/mimetypes/24/text-x-changelog.svg share/icons/breeze/mimetypes/24/text-x-chdr.svg share/icons/breeze/mimetypes/24/text-x-cmake.svg share/icons/breeze/mimetypes/24/text-x-copying.svg share/icons/breeze/mimetypes/24/text-x-credits.svg share/icons/breeze/mimetypes/24/text-x-csharp.svg share/icons/breeze/mimetypes/24/text-x-csrc.svg share/icons/breeze/mimetypes/24/text-x-dtd.svg +share/icons/breeze/mimetypes/24/text-x-fortran.svg share/icons/breeze/mimetypes/24/text-x-generic.svapplication-x-awk.svg share/icons/breeze/mimetypes/24/text-x-generic.svg share/icons/breeze/mimetypes/24/text-x-gettext-translation.svg share/icons/breeze/mimetypes/24/text-x-haskell.svg share/icons/breeze/mimetypes/24/text-x-hex.svg share/icons/breeze/mimetypes/24/text-x-install.svg share/icons/breeze/mimetypes/24/text-x-java-source.svg share/icons/breeze/mimetypes/24/text-x-java.svg share/icons/breeze/mimetypes/24/text-x-javascript.svg share/icons/breeze/mimetypes/24/text-x-katefilelist.svg share/icons/breeze/mimetypes/24/text-x-kotlin.svg share/icons/breeze/mimetypes/24/text-x-ldif.svg share/icons/breeze/mimetypes/24/text-x-lilypond.svg share/icons/breeze/mimetypes/24/text-x-log.svg share/icons/breeze/mimetypes/24/text-x-makefile.svg share/icons/breeze/mimetypes/24/text-x-markdown.svg share/icons/breeze/mimetypes/24/text-x-microdvd.svg share/icons/breeze/mimetypes/24/text-x-mpsub.svg share/icons/breeze/mimetypes/24/text-x-nfo.svg share/icons/breeze/mimetypes/24/text-x-objchdr.svg share/icons/breeze/mimetypes/24/text-x-objcsrc.svg share/icons/breeze/mimetypes/24/text-x-opml+xml.svg share/icons/breeze/mimetypes/24/text-x-opml.svg share/icons/breeze/mimetypes/24/text-x-pascal.svg share/icons/breeze/mimetypes/24/text-x-patch.svg share/icons/breeze/mimetypes/24/text-x-plain.svg share/icons/breeze/mimetypes/24/text-x-po.svg share/icons/breeze/mimetypes/24/text-x-python.svg share/icons/breeze/mimetypes/24/text-x-python3.svg share/icons/breeze/mimetypes/24/text-x-qml.svg share/icons/breeze/mimetypes/24/text-x-r.svg share/icons/breeze/mimetypes/24/text-x-readme.svg share/icons/breeze/mimetypes/24/text-x-rpm-spec.svg share/icons/breeze/mimetypes/24/text-x-rust.svg share/icons/breeze/mimetypes/24/text-x-script.svg share/icons/breeze/mimetypes/24/text-x-sql.svg share/icons/breeze/mimetypes/24/text-x-ssa.svg share/icons/breeze/mimetypes/24/text-x-subviewer.svg share/icons/breeze/mimetypes/24/text-x-tcl.svg share/icons/breeze/mimetypes/24/text-x-tex.svg share/icons/breeze/mimetypes/24/text-x-texinfo.svg share/icons/breeze/mimetypes/24/text-x-vcard.svg share/icons/breeze/mimetypes/24/text-x-xslfo.svg share/icons/breeze/mimetypes/24/text-xmcd.svg share/icons/breeze/mimetypes/24/text-xml.svg share/icons/breeze/mimetypes/24/unknown.svg share/icons/breeze/mimetypes/24/uri-mms.svg share/icons/breeze/mimetypes/24/uri-mmst.svg share/icons/breeze/mimetypes/24/uri-pnm.svg share/icons/breeze/mimetypes/24/uri-rtspt.svg share/icons/breeze/mimetypes/24/uri-rtspu.svg share/icons/breeze/mimetypes/24/video-mlt-playlist.svg share/icons/breeze/mimetypes/24/video-mp2t.svg share/icons/breeze/mimetypes/24/video-mp4.svg share/icons/breeze/mimetypes/24/video-vivo.svg share/icons/breeze/mimetypes/24/video-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/24/video-wavelet.svg share/icons/breeze/mimetypes/24/video-webm.svg share/icons/breeze/mimetypes/24/video-x-anim.svg share/icons/breeze/mimetypes/24/video-x-flic.svg share/icons/breeze/mimetypes/24/video-x-flv.svg share/icons/breeze/mimetypes/24/video-x-generic.svg share/icons/breeze/mimetypes/24/video-x-google-vlc-plugin.svg share/icons/breeze/mimetypes/24/video-x-javafx.svg share/icons/breeze/mimetypes/24/video-x-matroska.svg share/icons/breeze/mimetypes/24/video-x-mng.svg share/icons/breeze/mimetypes/24/video-x-ms-wmp.svg share/icons/breeze/mimetypes/24/video-x-ms-wmv.svg share/icons/breeze/mimetypes/24/video-x-msvideo.svg share/icons/breeze/mimetypes/24/video-x-ogm+ogg.svg share/icons/breeze/mimetypes/24/video-x-theora+ogg.svg share/icons/breeze/mimetypes/24/video-x-wmv.svg share/icons/breeze/mimetypes/24/viewbib.svg share/icons/breeze/mimetypes/24/viewdvi.svg share/icons/breeze/mimetypes/24/viewhtml.svg share/icons/breeze/mimetypes/24/viewpdf.svg share/icons/breeze/mimetypes/24/viewps.svg share/icons/breeze/mimetypes/24/virtualbox-hdd.svg share/icons/breeze/mimetypes/24/virtualbox-ova.svg share/icons/breeze/mimetypes/24/virtualbox-ovf.svg share/icons/breeze/mimetypes/24/virtualbox-vbox-extpack.svg share/icons/breeze/mimetypes/24/virtualbox-vbox.svg share/icons/breeze/mimetypes/24/virtualbox-vdi.svg share/icons/breeze/mimetypes/24/virtualbox-vhd.svg share/icons/breeze/mimetypes/24/virtualbox-vmdk.svg share/icons/breeze/mimetypes/24/vnd.ms-publisher.svg share/icons/breeze/mimetypes/24/x-kde-nsplugin-generated.svg share/icons/breeze/mimetypes/24/x-mail-distribution-list.svg share/icons/breeze/mimetypes/24/x-media-podcast.svg share/icons/breeze/mimetypes/24/x-office-address-book.svg share/icons/breeze/mimetypes/24/x-office-calendar.svg share/icons/breeze/mimetypes/24/x-office-contact.svg share/icons/breeze/mimetypes/24/x-office-document.svg share/icons/breeze/mimetypes/24/x-office-drawing.svg share/icons/breeze/mimetypes/24/x-office-presentation.svg share/icons/breeze/mimetypes/24/x-office-spreadsheet.svg share/icons/breeze/mimetypes/24@2x share/icons/breeze/mimetypes/24@3x share/icons/breeze/mimetypes/32/android-package-archive.svg share/icons/breeze/mimetypes/32/application-atom+xml.svg share/icons/breeze/mimetypes/32/application-certificate.svg share/icons/breeze/mimetypes/32/application-dicom.svg share/icons/breeze/mimetypes/32/application-epub+zip.svg share/icons/breeze/mimetypes/32/application-gzip.svg share/icons/breeze/mimetypes/32/application-illustrator.svg share/icons/breeze/mimetypes/32/application-javascript.svg share/icons/breeze/mimetypes/32/application-json.svg share/icons/breeze/mimetypes/32/application-mac-binhex40.svg share/icons/breeze/mimetypes/32/application-mathml+xml.svg share/icons/breeze/mimetypes/32/application-msonenote.svg share/icons/breeze/mimetypes/32/application-msoutlook.svg share/icons/breeze/mimetypes/32/application-msword-template.svg share/icons/breeze/mimetypes/32/application-msword.svg share/icons/breeze/mimetypes/32/application-octet-stream.svg share/icons/breeze/mimetypes/32/application-ogg.svg share/icons/breeze/mimetypes/32/application-pdf.svg share/icons/breeze/mimetypes/32/application-pgp-encrypted.svg share/icons/breeze/mimetypes/32/application-pgp-keys.svg share/icons/breeze/mimetypes/32/application-pgp-signature.svg share/icons/breeze/mimetypes/32/application-pgp.svg share/icons/breeze/mimetypes/32/application-pkcs12.svg share/icons/breeze/mimetypes/32/application-pkcs7-mime.svg share/icons/breeze/mimetypes/32/application-pkcs7-signature.svg share/icons/breeze/mimetypes/32/application-pkix-cerl.svg share/icons/breeze/mimetypes/32/application-pkix-cert.svg share/icons/breeze/mimetypes/32/application-postscript.svg share/icons/breeze/mimetypes/32/application-relaxng.svg share/icons/breeze/mimetypes/32/application-rss+xml.svg share/icons/breeze/mimetypes/32/application-rtf.svg share/icons/breeze/mimetypes/32/application-sql.svg share/icons/breeze/mimetypes/32/application-sxw.svg share/icons/breeze/mimetypes/32/application-vnd.android.package-archive.svg share/icons/breeze/mimetypes/32/application-vnd.appimage.svg share/icons/breeze/mimetypes/32/application-vnd.apple.pkpass.svg share/icons/breeze/mimetypes/32/application-vnd.debian.binary-package.svg share/icons/breeze/mimetypes/32/application-vnd.flatpak.ref.svg share/icons/breeze/mimetypes/32/application-vnd.google-earth.kml+xml.svg share/icons/breeze/mimetypes/32/application-vnd.iccprofile.svg share/icons/breeze/mimetypes/32/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze/mimetypes/32/application-vnd.ms-access.svg share/icons/breeze/mimetypes/32/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-excel.svg share/icons/breeze/mimetypes/32/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-infopath.svg share/icons/breeze/mimetypes/32/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-powerpoint.svg share/icons/breeze/mimetypes/32/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-publisher.svg share/icons/breeze/mimetypes/32/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.ms-word.svg share/icons/breeze/mimetypes/32/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze/mimetypes/32/application-vnd.nintendo.snes.rom.svg share/icons/breeze/mimetypes/32/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.chart.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.database.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.formula.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.image.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.text.svg share/icons/breeze/mimetypes/32/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze/mimetypes/32/application-vnd.openofficeorg.extension.svg share/icons/breeze/mimetypes/32/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze/mimetypes/32/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze/mimetypes/32/application-vnd.rar.svg share/icons/breeze/mimetypes/32/application-vnd.rn-realmedia.svg share/icons/breeze/mimetypes/32/application-vnd.scribus.svg share/icons/breeze/mimetypes/32/application-vnd.sqlite3.svg share/icons/breeze/mimetypes/32/application-vnd.squashfs.svg share/icons/breeze/mimetypes/32/application-vnd.stardivision.calc.svg share/icons/breeze/mimetypes/32/application-vnd.stardivision.draw.svg share/icons/breeze/mimetypes/32/application-vnd.stardivision.mail.svg share/icons/breeze/mimetypes/32/application-vnd.stardivision.math.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.calc.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.calc.template.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.draw.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.draw.template.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.impress.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.impress.template.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.math.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.writer.global.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.writer.svg share/icons/breeze/mimetypes/32/application-vnd.sun.xml.writer.template.svg share/icons/breeze/mimetypes/32/application-vnd.visio.svg share/icons/breeze/mimetypes/32/application-vnd.wordperfect.svg share/icons/breeze/mimetypes/32/application-wps-office.doc.svg share/icons/breeze/mimetypes/32/application-wps-office.docx.svg share/icons/breeze/mimetypes/32/application-wps-office.dot.svg share/icons/breeze/mimetypes/32/application-wps-office.dotx.svg share/icons/breeze/mimetypes/32/application-wps-office.pot.svg share/icons/breeze/mimetypes/32/application-wps-office.potx.svg share/icons/breeze/mimetypes/32/application-wps-office.ppt.svg share/icons/breeze/mimetypes/32/application-wps-office.pptx.svg share/icons/breeze/mimetypes/32/application-wps-office.xls.svg share/icons/breeze/mimetypes/32/application-wps-office.xlsx.svg share/icons/breeze/mimetypes/32/application-wps-office.xlt.svg share/icons/breeze/mimetypes/32/application-wps-office.xltx.svg share/icons/breeze/mimetypes/32/application-x-7z-compressed.svg share/icons/breeze/mimetypes/32/application-x-abiword.svg share/icons/breeze/mimetypes/32/application-x-ace.svg share/icons/breeze/mimetypes/32/application-x-apple-diskimage.svg share/icons/breeze/mimetypes/32/application-x-applix-spreadsheet.svg share/icons/breeze/mimetypes/32/application-x-applix-word.svg share/icons/breeze/mimetypes/32/application-x-ar.svg share/icons/breeze/mimetypes/32/application-x-arc.svg share/icons/breeze/mimetypes/32/application-x-archive.svg share/icons/breeze/mimetypes/32/application-x-arj.svg share/icons/breeze/mimetypes/32/application-x-audacity-project.svg share/icons/breeze/mimetypes/32/application-x-awk.svg share/icons/breeze/mimetypes/32/application-x-bittorrent.svg share/icons/breeze/mimetypes/32/application-x-blender.svg share/icons/breeze/mimetypes/32/application-x-bzdvi.svg share/icons/breeze/mimetypes/32/application-x-bzip-compressed-tar.svg share/icons/breeze/mimetypes/32/application-x-bzip.svg share/icons/breeze/mimetypes/32/application-x-cd-image.svg share/icons/breeze/mimetypes/32/application-x-cda.svg share/icons/breeze/mimetypes/32/application-x-chm.svg share/icons/breeze/mimetypes/32/application-x-compress.svg share/icons/breeze/mimetypes/32/application-x-compressed-tar.svg share/icons/breeze/mimetypes/32/application-x-core.svg share/icons/breeze/mimetypes/32/application-x-cpio.svg share/icons/breeze/mimetypes/32/application-x-cue.svg share/icons/breeze/mimetypes/32/application-x-deb.svg share/icons/breeze/mimetypes/32/application-x-designer.svg share/icons/breeze/mimetypes/32/application-x-desktop.svg share/icons/breeze/mimetypes/32/application-x-egon.svg share/icons/breeze/mimetypes/32/application-x-executable-script.svg share/icons/breeze/mimetypes/32/application-x-executable.svg share/icons/breeze/mimetypes/32/application-x-fictionbook+xml.svg share/icons/breeze/mimetypes/32/application-x-flash-video.svg share/icons/breeze/mimetypes/32/application-x-font-afm.svg share/icons/breeze/mimetypes/32/application-x-font-bdf.svg share/icons/breeze/mimetypes/32/application-x-font-otf.svg share/icons/breeze/mimetypes/32/application-x-font-pcf.svg share/icons/breeze/mimetypes/32/application-x-font-snf.svg share/icons/breeze/mimetypes/32/application-x-font-ttf.svg share/icons/breeze/mimetypes/32/application-x-font-ttx.svg share/icons/breeze/mimetypes/32/application-x-font-type1.svg share/icons/breeze/mimetypes/32/application-x-gameboy-rom.svg share/icons/breeze/mimetypes/32/application-x-gamecube-rom.svg share/icons/breeze/mimetypes/32/application-x-gba-rom.svg share/icons/breeze/mimetypes/32/application-x-gdscript.svg share/icons/breeze/mimetypes/32/application-x-gettext-translation.svg share/icons/breeze/mimetypes/32/application-x-gnumeric.svg share/icons/breeze/mimetypes/32/application-x-godot-project.svg share/icons/breeze/mimetypes/32/application-x-godot-resource.svg share/icons/breeze/mimetypes/32/application-x-godot-scene.svg share/icons/breeze/mimetypes/32/application-x-godot-shader.svg share/icons/breeze/mimetypes/32/application-x-gzdvi.svg share/icons/breeze/mimetypes/32/application-x-gzip.svg share/icons/breeze/mimetypes/32/application-x-gzpostscript.svg share/icons/breeze/mimetypes/32/application-x-iso.svg share/icons/breeze/mimetypes/32/application-x-iso9660-appimage.svg share/icons/breeze/mimetypes/32/application-x-it87.svg share/icons/breeze/mimetypes/32/application-x-jar.svg share/icons/breeze/mimetypes/32/application-x-java-applet.svg share/icons/breeze/mimetypes/32/application-x-java-archive.svg share/icons/breeze/mimetypes/32/application-x-java.svg share/icons/breeze/mimetypes/32/application-x-javascript.svg share/icons/breeze/mimetypes/32/application-x-k3b.svg share/icons/breeze/mimetypes/32/application-x-kcsrc.svg share/icons/breeze/mimetypes/32/application-x-kdenlivetitle.svg share/icons/breeze/mimetypes/32/application-x-kexi-connectiondata.svg share/icons/breeze/mimetypes/32/application-x-kexiproject-shortcut.svg share/icons/breeze/mimetypes/32/application-x-kexiproject-sqlite.svg share/icons/breeze/mimetypes/32/application-x-kexiproject-sqlite2.svg share/icons/breeze/mimetypes/32/application-x-kexiproject-sqlite3.svg share/icons/breeze/mimetypes/32/application-x-kformula.svg share/icons/breeze/mimetypes/32/application-x-kgetlist.svg share/icons/breeze/mimetypes/32/application-x-kmymoney.svg share/icons/breeze/mimetypes/32/application-x-kontour.svg share/icons/breeze/mimetypes/32/application-x-kplato.svg share/icons/breeze/mimetypes/32/application-x-krita.svg share/icons/breeze/mimetypes/32/application-x-kvtml.svg share/icons/breeze/mimetypes/32/application-x-kword.svg share/icons/breeze/mimetypes/32/application-x-lha.svg share/icons/breeze/mimetypes/32/application-x-lyx.svg share/icons/breeze/mimetypes/32/application-x-lzma-compressed-tar.svg share/icons/breeze/mimetypes/32/application-x-lzop.svg share/icons/breeze/mimetypes/32/application-x-m4.svg share/icons/breeze/mimetypes/32/application-x-macbinary.svg share/icons/breeze/mimetypes/32/application-x-marble.svg share/icons/breeze/mimetypes/32/application-x-mimearchive.svg share/icons/breeze/mimetypes/32/application-x-mplayer2.svg share/icons/breeze/mimetypes/32/application-x-ms-dos-executable.svg share/icons/breeze/mimetypes/32/application-x-ms-shortcut.svg share/icons/breeze/mimetypes/32/application-x-ms-wim.svg share/icons/breeze/mimetypes/32/application-x-msdownload.svg share/icons/breeze/mimetypes/32/application-x-mswinurl.svg share/icons/breeze/mimetypes/32/application-x-mswrite.svg share/icons/breeze/mimetypes/32/application-x-n64-rom.svg share/icons/breeze/mimetypes/32/application-x-nes-rom.svg share/icons/breeze/mimetypes/32/application-x-nintendo-ds-rom.svg share/icons/breeze/mimetypes/32/application-x-nzb.svg share/icons/breeze/mimetypes/32/application-x-object.svg share/icons/breeze/mimetypes/32/application-x-pak.svg share/icons/breeze/mimetypes/32/application-x-partial-download.svg share/icons/breeze/mimetypes/32/application-x-pem-key.svg share/icons/breeze/mimetypes/32/application-x-perl.svg share/icons/breeze/mimetypes/32/application-x-php.svg share/icons/breeze/mimetypes/32/application-x-pkcs12.svg share/icons/breeze/mimetypes/32/application-x-pkcs7-certificates.svg share/icons/breeze/mimetypes/32/application-x-plasma.svg share/icons/breeze/mimetypes/32/application-x-python-bytecode.svg share/icons/breeze/mimetypes/32/application-x-qemu-disk.svg share/icons/breeze/mimetypes/32/application-x-qet-element.svg share/icons/breeze/mimetypes/32/application-x-qet-project.svg share/icons/breeze/mimetypes/32/application-x-quattropro.svg share/icons/breeze/mimetypes/32/application-x-rar.svg share/icons/breeze/mimetypes/32/application-x-raw-disk-image.svg share/icons/breeze/mimetypes/32/application-x-rdata.svg share/icons/breeze/mimetypes/32/application-x-root.svg share/icons/breeze/mimetypes/32/application-x-rpm.svg share/icons/breeze/mimetypes/32/application-x-ruby.svg share/icons/breeze/mimetypes/32/application-x-sami.svg share/icons/breeze/mimetypes/32/application-x-sharedlib.svg share/icons/breeze/mimetypes/32/application-x-shellscript.svg share/icons/breeze/mimetypes/32/application-x-shockwave-flash.svg share/icons/breeze/mimetypes/32/application-x-siag.svg share/icons/breeze/mimetypes/32/application-x-sif.svg share/icons/breeze/mimetypes/32/application-x-skg.svg share/icons/breeze/mimetypes/32/application-x-skgc.svg share/icons/breeze/mimetypes/32/application-x-smb-server.svg share/icons/breeze/mimetypes/32/application-x-smb-workgroup.svg share/icons/breeze/mimetypes/32/application-x-source-rpm.svg share/icons/breeze/mimetypes/32/application-x-sqlite2.svg share/icons/breeze/mimetypes/32/application-x-sqlite3.svg share/icons/breeze/mimetypes/32/application-x-srt.svg share/icons/breeze/mimetypes/32/application-x-srtrip.svg share/icons/breeze/mimetypes/32/application-x-subrip.svg share/icons/breeze/mimetypes/32/application-x-tar.svg share/icons/breeze/mimetypes/32/application-x-tarz.svg share/icons/breeze/mimetypes/32/application-x-tgif.svg share/icons/breeze/mimetypes/32/application-x-theme.svg share/icons/breeze/mimetypes/32/application-x-trash.svg share/icons/breeze/mimetypes/32/application-x-troff-man.svg share/icons/breeze/mimetypes/32/application-x-tzo.svg share/icons/breeze/mimetypes/32/application-x-vdi-disk.svg share/icons/breeze/mimetypes/32/application-x-wmf.svg share/icons/breeze/mimetypes/32/application-x-x509-ca-cert.svg share/icons/breeze/mimetypes/32/application-x-x509-user-cert.svg share/icons/breeze/mimetypes/32/application-x-xliff.svg share/icons/breeze/mimetypes/32/application-x-xpinstall.svg share/icons/breeze/mimetypes/32/application-x-xz-compressed-tar.svg share/icons/breeze/mimetypes/32/application-x-xz-pkg.svg share/icons/breeze/mimetypes/32/application-x-zerosize.svg share/icons/breeze/mimetypes/32/application-x-zip-compressed-fb2.svg share/icons/breeze/mimetypes/32/application-x-zoo.svg share/icons/breeze/mimetypes/32/application-xhtml+xml.svg share/icons/breeze/mimetypes/32/application-xmind.svg share/icons/breeze/mimetypes/32/application-xml.svg share/icons/breeze/mimetypes/32/application-xsd.svg share/icons/breeze/mimetypes/32/application-xslt+xml.svg share/icons/breeze/mimetypes/32/application-zip.svg share/icons/breeze/mimetypes/32/audio-ac3.svg share/icons/breeze/mimetypes/32/audio-flac.svg share/icons/breeze/mimetypes/32/audio-midi.svg share/icons/breeze/mimetypes/32/audio-mp2.svg share/icons/breeze/mimetypes/32/audio-mp3.svg share/icons/breeze/mimetypes/32/audio-mp4.svg share/icons/breeze/mimetypes/32/audio-mpeg.svg share/icons/breeze/mimetypes/32/audio-prs.sid.svg share/icons/breeze/mimetypes/32/audio-vn.rn-realmedia.svg share/icons/breeze/mimetypes/32/audio-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/32/audio-x-adpcm.svg share/icons/breeze/mimetypes/32/audio-x-aiff.svg share/icons/breeze/mimetypes/32/audio-x-flac+ogg.svg share/icons/breeze/mimetypes/32/audio-x-flac.svg share/icons/breeze/mimetypes/32/audio-x-generic.svg share/icons/breeze/mimetypes/32/audio-x-monkey.svg share/icons/breeze/mimetypes/32/audio-x-mp2.svg share/icons/breeze/mimetypes/32/audio-x-mpeg.svg share/icons/breeze/mimetypes/32/audio-x-speex+ogg.svg share/icons/breeze/mimetypes/32/audio-x-wav.svg share/icons/breeze/mimetypes/32/audiobook.svg share/icons/breeze/mimetypes/32/encrypted.svg share/icons/breeze/mimetypes/32/font-otf.svg share/icons/breeze/mimetypes/32/font-ttf.svg share/icons/breeze/mimetypes/32/fonts-package.svg share/icons/breeze/mimetypes/32/image-bmp.svg share/icons/breeze/mimetypes/32/image-gif.svg share/icons/breeze/mimetypes/32/image-ico.svg share/icons/breeze/mimetypes/32/image-jpeg.svg share/icons/breeze/mimetypes/32/image-jpeg2000.svg share/icons/breeze/mimetypes/32/image-png.svg share/icons/breeze/mimetypes/32/image-svg+xml-compressed.svg share/icons/breeze/mimetypes/32/image-svg+xml.svg share/icons/breeze/mimetypes/32/image-tiff.svg share/icons/breeze/mimetypes/32/image-vnd.dgn.svg share/icons/breeze/mimetypes/32/image-vnd.djvu.svg share/icons/breeze/mimetypes/32/image-vnd.dwg.svg share/icons/breeze/mimetypes/32/image-vnd.microsoft.icon.svg share/icons/breeze/mimetypes/32/image-x-adobe-dng.svg share/icons/breeze/mimetypes/32/image-x-compressed-xcf.svg share/icons/breeze/mimetypes/32/image-x-emf.svg share/icons/breeze/mimetypes/32/image-x-eps.svg share/icons/breeze/mimetypes/32/image-x-generic.svg share/icons/breeze/mimetypes/32/image-x-ico.svg share/icons/breeze/mimetypes/32/image-x-icon.svg share/icons/breeze/mimetypes/32/image-x-krita.svg share/icons/breeze/mimetypes/32/image-x-portable-bitmap.svg share/icons/breeze/mimetypes/32/image-x-psd.svg share/icons/breeze/mimetypes/32/image-x-psdimage-x-psd.svg share/icons/breeze/mimetypes/32/image-x-svg+xml.svg share/icons/breeze/mimetypes/32/image-x-tga.svg share/icons/breeze/mimetypes/32/image-x-vnd.trolltech.qpicture.svg share/icons/breeze/mimetypes/32/image-x-win-bitmap.svg share/icons/breeze/mimetypes/32/image-x-win-bmp.svg share/icons/breeze/mimetypes/32/image-x-wmf.svg share/icons/breeze/mimetypes/32/image-x-xcf.svg share/icons/breeze/mimetypes/32/image-x-xfig.svg share/icons/breeze/mimetypes/32/inode-directory.svg share/icons/breeze/mimetypes/32/libreoffice-database.svg share/icons/breeze/mimetypes/32/libreoffice-drawing-template.svg share/icons/breeze/mimetypes/32/libreoffice-drawing.svg share/icons/breeze/mimetypes/32/libreoffice-extension.svg share/icons/breeze/mimetypes/32/libreoffice-formula.svg share/icons/breeze/mimetypes/32/libreoffice-master-document.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-database.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-drawing-template.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-drawing.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-formula.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-master-document.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-presentation-template.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-presentation.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-spreadsheet.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-text-template.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-text.svg share/icons/breeze/mimetypes/32/libreoffice-oasis-web-template.svg share/icons/breeze/mimetypes/32/libreoffice-presentation-template.svg share/icons/breeze/mimetypes/32/libreoffice-presentation.svg share/icons/breeze/mimetypes/32/libreoffice-spreadsheet-template.svg share/icons/breeze/mimetypes/32/libreoffice-spreadsheet.svg share/icons/breeze/mimetypes/32/libreoffice-text-template.svg share/icons/breeze/mimetypes/32/libreoffice-text.svg share/icons/breeze/mimetypes/32/message-news.svg share/icons/breeze/mimetypes/32/message-partial.svg share/icons/breeze/mimetypes/32/message-rfc822.svg share/icons/breeze/mimetypes/32/message-x-gnu-rmail.svg share/icons/breeze/mimetypes/32/message.svg share/icons/breeze/mimetypes/32/none.svg share/icons/breeze/mimetypes/32/odf.svg share/icons/breeze/mimetypes/32/package-x-generic.svg share/icons/breeze/mimetypes/32/podcast.svg share/icons/breeze/mimetypes/32/preferences-desktop-cryptography.svg share/icons/breeze/mimetypes/32/text-calendar.svg share/icons/breeze/mimetypes/32/text-csharp.svg share/icons/breeze/mimetypes/32/text-css.svg share/icons/breeze/mimetypes/32/text-csv.svg share/icons/breeze/mimetypes/32/text-directory.svg share/icons/breeze/mimetypes/32/text-dockerfile.svg share/icons/breeze/mimetypes/32/text-enriched.svg +share/icons/breeze/mimetypes/32/text-fortran.svg share/icons/breeze/mimetypes/32/text-html.svg share/icons/breeze/mimetypes/32/text-javascript.svg share/icons/breeze/mimetypes/32/text-markdown.svg share/icons/breeze/mimetypes/32/text-plain.svg share/icons/breeze/mimetypes/32/text-rdf+xml.svg share/icons/breeze/mimetypes/32/text-rdf.svg share/icons/breeze/mimetypes/32/text-rtf.svg share/icons/breeze/mimetypes/32/text-rust.svg share/icons/breeze/mimetypes/32/text-sgml.svg share/icons/breeze/mimetypes/32/text-troff.svg share/icons/breeze/mimetypes/32/text-vcalendar.svg share/icons/breeze/mimetypes/32/text-vnd.abc.svg share/icons/breeze/mimetypes/32/text-vnd.kde.kcrash-report.svg share/icons/breeze/mimetypes/32/text-vnd.trolltech.linguist.svg share/icons/breeze/mimetypes/32/text-vnd.wap.wml.svg share/icons/breeze/mimetypes/32/text-vtt.svg share/icons/breeze/mimetypes/32/text-wiki.svg share/icons/breeze/mimetypes/32/text-x-adasrc.svg share/icons/breeze/mimetypes/32/text-x-apport.svg share/icons/breeze/mimetypes/32/text-x-authors.svg share/icons/breeze/mimetypes/32/text-x-bibtex.svg share/icons/breeze/mimetypes/32/text-x-c++hdr.svg share/icons/breeze/mimetypes/32/text-x-c++src.svg share/icons/breeze/mimetypes/32/text-x-changelog.svg share/icons/breeze/mimetypes/32/text-x-chdr.svg share/icons/breeze/mimetypes/32/text-x-cmake.svg share/icons/breeze/mimetypes/32/text-x-copying.svg share/icons/breeze/mimetypes/32/text-x-credits.svg share/icons/breeze/mimetypes/32/text-x-csharp.svg share/icons/breeze/mimetypes/32/text-x-csrc.svg share/icons/breeze/mimetypes/32/text-x-dtd.svg +share/icons/breeze/mimetypes/32/text-x-fortran.svg share/icons/breeze/mimetypes/32/text-x-generic.svapplication-x-awk.svg share/icons/breeze/mimetypes/32/text-x-generic.svg share/icons/breeze/mimetypes/32/text-x-gettext-translation.svg share/icons/breeze/mimetypes/32/text-x-go.svg share/icons/breeze/mimetypes/32/text-x-haskell.svg share/icons/breeze/mimetypes/32/text-x-hex.svg share/icons/breeze/mimetypes/32/text-x-install.svg share/icons/breeze/mimetypes/32/text-x-java-source.svg share/icons/breeze/mimetypes/32/text-x-java.svg share/icons/breeze/mimetypes/32/text-x-javascript.svg share/icons/breeze/mimetypes/32/text-x-katefilelist.svg share/icons/breeze/mimetypes/32/text-x-kotlin.svg share/icons/breeze/mimetypes/32/text-x-ldif.svg share/icons/breeze/mimetypes/32/text-x-lilypond.svg share/icons/breeze/mimetypes/32/text-x-log.svg share/icons/breeze/mimetypes/32/text-x-lua.svg share/icons/breeze/mimetypes/32/text-x-makefile.svg share/icons/breeze/mimetypes/32/text-x-markdown.svg share/icons/breeze/mimetypes/32/text-x-microdvd.svg share/icons/breeze/mimetypes/32/text-x-mpsub.svg share/icons/breeze/mimetypes/32/text-x-nfo.svg share/icons/breeze/mimetypes/32/text-x-objchdr.svg share/icons/breeze/mimetypes/32/text-x-objcsrc.svg share/icons/breeze/mimetypes/32/text-x-opml+xml.svg share/icons/breeze/mimetypes/32/text-x-opml.svg share/icons/breeze/mimetypes/32/text-x-pascal.svg share/icons/breeze/mimetypes/32/text-x-patch.svg share/icons/breeze/mimetypes/32/text-x-plain.svg share/icons/breeze/mimetypes/32/text-x-po.svg share/icons/breeze/mimetypes/32/text-x-python.svg share/icons/breeze/mimetypes/32/text-x-python3.svg share/icons/breeze/mimetypes/32/text-x-qml.svg share/icons/breeze/mimetypes/32/text-x-r.svg share/icons/breeze/mimetypes/32/text-x-readme.svg share/icons/breeze/mimetypes/32/text-x-rpm-spec.svg share/icons/breeze/mimetypes/32/text-x-rust.svg share/icons/breeze/mimetypes/32/text-x-scala.svg share/icons/breeze/mimetypes/32/text-x-script.svg share/icons/breeze/mimetypes/32/text-x-sql.svg share/icons/breeze/mimetypes/32/text-x-ssa.svg share/icons/breeze/mimetypes/32/text-x-subviewer.svg share/icons/breeze/mimetypes/32/text-x-tcl.svg share/icons/breeze/mimetypes/32/text-x-tex.svg share/icons/breeze/mimetypes/32/text-x-texinfo.svg share/icons/breeze/mimetypes/32/text-x-vcard.svg share/icons/breeze/mimetypes/32/text-x-xslfo.svg share/icons/breeze/mimetypes/32/text-xmcd.svg share/icons/breeze/mimetypes/32/text-xml.svg share/icons/breeze/mimetypes/32/unknown.svg share/icons/breeze/mimetypes/32/uri-mms.svg share/icons/breeze/mimetypes/32/uri-mmst.svg share/icons/breeze/mimetypes/32/uri-pnm.svg share/icons/breeze/mimetypes/32/uri-rtspt.svg share/icons/breeze/mimetypes/32/uri-rtspu.svg share/icons/breeze/mimetypes/32/video-mlt-playlist.svg share/icons/breeze/mimetypes/32/video-mp2t.svg share/icons/breeze/mimetypes/32/video-mp4.svg share/icons/breeze/mimetypes/32/video-vivo.svg share/icons/breeze/mimetypes/32/video-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/32/video-wavelet.svg share/icons/breeze/mimetypes/32/video-webm.svg share/icons/breeze/mimetypes/32/video-x-anim.svg share/icons/breeze/mimetypes/32/video-x-flic.svg share/icons/breeze/mimetypes/32/video-x-flv.svg share/icons/breeze/mimetypes/32/video-x-generic.svg share/icons/breeze/mimetypes/32/video-x-google-vlc-plugin.svg share/icons/breeze/mimetypes/32/video-x-javafx.svg share/icons/breeze/mimetypes/32/video-x-matroska.svg share/icons/breeze/mimetypes/32/video-x-mng.svg share/icons/breeze/mimetypes/32/video-x-ms-wmp.svg share/icons/breeze/mimetypes/32/video-x-ms-wmv.svg share/icons/breeze/mimetypes/32/video-x-msvideo.svg share/icons/breeze/mimetypes/32/video-x-ogm+ogg.svg share/icons/breeze/mimetypes/32/video-x-theora+ogg.svg share/icons/breeze/mimetypes/32/video-x-wmv.svg share/icons/breeze/mimetypes/32/viewbib.svg share/icons/breeze/mimetypes/32/viewdvi.svg share/icons/breeze/mimetypes/32/viewhtml.svg share/icons/breeze/mimetypes/32/viewpdf.svg share/icons/breeze/mimetypes/32/viewps.svg share/icons/breeze/mimetypes/32/virtualbox-hdd.svg share/icons/breeze/mimetypes/32/virtualbox-ova.svg share/icons/breeze/mimetypes/32/virtualbox-ovf.svg share/icons/breeze/mimetypes/32/virtualbox-vbox-extpack.svg share/icons/breeze/mimetypes/32/virtualbox-vbox.svg share/icons/breeze/mimetypes/32/virtualbox-vdi.svg share/icons/breeze/mimetypes/32/virtualbox-vhd.svg share/icons/breeze/mimetypes/32/virtualbox-vmdk.svg share/icons/breeze/mimetypes/32/vnd.ms-publisher.svg share/icons/breeze/mimetypes/32/x-kde-nsplugin-generated.svg share/icons/breeze/mimetypes/32/x-mail-distribution-list.svg share/icons/breeze/mimetypes/32/x-media-podcast.svg share/icons/breeze/mimetypes/32/x-office-address-book.svg share/icons/breeze/mimetypes/32/x-office-calendar.svg share/icons/breeze/mimetypes/32/x-office-contact.svg share/icons/breeze/mimetypes/32/x-office-document.svg share/icons/breeze/mimetypes/32/x-office-drawing.svg share/icons/breeze/mimetypes/32/x-office-presentation.svg share/icons/breeze/mimetypes/32/x-office-spreadsheet.svg share/icons/breeze/mimetypes/64/android-package-archive.svg share/icons/breeze/mimetypes/64/application-atom+xml.svg share/icons/breeze/mimetypes/64/application-certificate.svg share/icons/breeze/mimetypes/64/application-dicom.svg share/icons/breeze/mimetypes/64/application-epub+zip.svg share/icons/breeze/mimetypes/64/application-gzip.svg share/icons/breeze/mimetypes/64/application-illustrator.svg share/icons/breeze/mimetypes/64/application-javascript.svg share/icons/breeze/mimetypes/64/application-json.svg share/icons/breeze/mimetypes/64/application-mac-binhex40.svg share/icons/breeze/mimetypes/64/application-mathml+xml.svg share/icons/breeze/mimetypes/64/application-msonenote.svg share/icons/breeze/mimetypes/64/application-msoutlook.svg share/icons/breeze/mimetypes/64/application-msword-template.svg share/icons/breeze/mimetypes/64/application-msword.svg share/icons/breeze/mimetypes/64/application-octet-stream.svg share/icons/breeze/mimetypes/64/application-ogg.svg share/icons/breeze/mimetypes/64/application-pdf.svg share/icons/breeze/mimetypes/64/application-pgp-encrypted.svg share/icons/breeze/mimetypes/64/application-pgp-keys.svg share/icons/breeze/mimetypes/64/application-pgp-signature.svg share/icons/breeze/mimetypes/64/application-pgp.svg share/icons/breeze/mimetypes/64/application-pkcs12.svg share/icons/breeze/mimetypes/64/application-pkcs7-mime.svg share/icons/breeze/mimetypes/64/application-pkcs7-signature.svg share/icons/breeze/mimetypes/64/application-pkix-cerl.svg share/icons/breeze/mimetypes/64/application-pkix-cert.svg share/icons/breeze/mimetypes/64/application-postscript.svg share/icons/breeze/mimetypes/64/application-relaxng.svg share/icons/breeze/mimetypes/64/application-rss+xml.svg share/icons/breeze/mimetypes/64/application-rtf.svg share/icons/breeze/mimetypes/64/application-sql.svg share/icons/breeze/mimetypes/64/application-sxw.svg share/icons/breeze/mimetypes/64/application-vnd.android.package-archive.svg share/icons/breeze/mimetypes/64/application-vnd.appimage.svg share/icons/breeze/mimetypes/64/application-vnd.apple.pkpass.svg share/icons/breeze/mimetypes/64/application-vnd.debian.binary-package.svg share/icons/breeze/mimetypes/64/application-vnd.flatpak.ref.svg share/icons/breeze/mimetypes/64/application-vnd.google-earth.kml+xml.svg share/icons/breeze/mimetypes/64/application-vnd.iccprofile.svg share/icons/breeze/mimetypes/64/application-vnd.kde.kleopatra.keygroup.svg share/icons/breeze/mimetypes/64/application-vnd.ms-access.svg share/icons/breeze/mimetypes/64/application-vnd.ms-excel.addin.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-excel.sheet.binary.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-excel.sheet.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-excel.svg share/icons/breeze/mimetypes/64/application-vnd.ms-excel.template.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-infopath.svg share/icons/breeze/mimetypes/64/application-vnd.ms-powerpoint.addin.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-powerpoint.presentation.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-powerpoint.slide.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-powerpoint.slideshow.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-powerpoint.svg share/icons/breeze/mimetypes/64/application-vnd.ms-powerpoint.template.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-publisher.svg share/icons/breeze/mimetypes/64/application-vnd.ms-word.document.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.ms-word.svg share/icons/breeze/mimetypes/64/application-vnd.ms-word.template.macroenabled.12.svg share/icons/breeze/mimetypes/64/application-vnd.nintendo.snes.rom.svg share/icons/breeze/mimetypes/64/application-vnd.nokia.xml.qt.resource.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.chart.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.database.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.draw.template.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.drawing.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.drawing.template.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.formula-template.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.formula.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.graphics.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.image.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.presentation-template.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.presentation.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.spreadsheet-template.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.spreadsheet.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.text-master.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.text-template.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.text.svg share/icons/breeze/mimetypes/64/application-vnd.oasis.opendocument.web-template.svg +share/icons/breeze/mimetypes/64/application-vnd.openofficeorg.extension.svg share/icons/breeze/mimetypes/64/application-vnd.openxmlformats-officedocument.spreadsheetml.sheet.svg share/icons/breeze/mimetypes/64/application-vnd.openxmlformats-officedocument.wordprocessingml.document.svg share/icons/breeze/mimetypes/64/application-vnd.rar.svg share/icons/breeze/mimetypes/64/application-vnd.rn-realmedia.svg share/icons/breeze/mimetypes/64/application-vnd.scribus.svg share/icons/breeze/mimetypes/64/application-vnd.sqlite3.svg share/icons/breeze/mimetypes/64/application-vnd.squashfs.svg share/icons/breeze/mimetypes/64/application-vnd.stardivision.calc.svg share/icons/breeze/mimetypes/64/application-vnd.stardivision.draw.svg share/icons/breeze/mimetypes/64/application-vnd.stardivision.mail.svg share/icons/breeze/mimetypes/64/application-vnd.stardivision.math.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.calc.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.calc.template.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.draw.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.draw.template.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.impress.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.impress.template.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.math.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.writer.global.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.writer.svg share/icons/breeze/mimetypes/64/application-vnd.sun.xml.writer.template.svg share/icons/breeze/mimetypes/64/application-vnd.visio.svg share/icons/breeze/mimetypes/64/application-vnd.wordperfect.svg share/icons/breeze/mimetypes/64/application-wps-office.doc.svg share/icons/breeze/mimetypes/64/application-wps-office.docx.svg share/icons/breeze/mimetypes/64/application-wps-office.dot.svg share/icons/breeze/mimetypes/64/application-wps-office.dotx.svg share/icons/breeze/mimetypes/64/application-wps-office.pot.svg share/icons/breeze/mimetypes/64/application-wps-office.potx.svg share/icons/breeze/mimetypes/64/application-wps-office.ppt.svg share/icons/breeze/mimetypes/64/application-wps-office.pptx.svg share/icons/breeze/mimetypes/64/application-wps-office.xls.svg share/icons/breeze/mimetypes/64/application-wps-office.xlsx.svg share/icons/breeze/mimetypes/64/application-wps-office.xlt.svg share/icons/breeze/mimetypes/64/application-wps-office.xltx.svg share/icons/breeze/mimetypes/64/application-x-7z-compressed.svg share/icons/breeze/mimetypes/64/application-x-abiword.svg share/icons/breeze/mimetypes/64/application-x-ace.svg share/icons/breeze/mimetypes/64/application-x-apple-diskimage.svg share/icons/breeze/mimetypes/64/application-x-applix-spreadsheet.svg share/icons/breeze/mimetypes/64/application-x-applix-word.svg share/icons/breeze/mimetypes/64/application-x-ar.svg share/icons/breeze/mimetypes/64/application-x-arc.svg share/icons/breeze/mimetypes/64/application-x-archive.svg share/icons/breeze/mimetypes/64/application-x-arj.svg share/icons/breeze/mimetypes/64/application-x-audacity-project.svg share/icons/breeze/mimetypes/64/application-x-awk.svg share/icons/breeze/mimetypes/64/application-x-bittorrent.svg share/icons/breeze/mimetypes/64/application-x-blender.svg share/icons/breeze/mimetypes/64/application-x-bzdvi.svg share/icons/breeze/mimetypes/64/application-x-bzip-compressed-tar.svg share/icons/breeze/mimetypes/64/application-x-bzip.svg share/icons/breeze/mimetypes/64/application-x-cd-image.svg share/icons/breeze/mimetypes/64/application-x-cda.svg share/icons/breeze/mimetypes/64/application-x-chm.svg share/icons/breeze/mimetypes/64/application-x-compress.svg share/icons/breeze/mimetypes/64/application-x-compressed-tar.svg share/icons/breeze/mimetypes/64/application-x-core.svg share/icons/breeze/mimetypes/64/application-x-cpio.svg share/icons/breeze/mimetypes/64/application-x-cue.svg share/icons/breeze/mimetypes/64/application-x-deb.svg share/icons/breeze/mimetypes/64/application-x-designer.svg share/icons/breeze/mimetypes/64/application-x-desktop.svg share/icons/breeze/mimetypes/64/application-x-egon.svg share/icons/breeze/mimetypes/64/application-x-executable-script.svg share/icons/breeze/mimetypes/64/application-x-executable.svg share/icons/breeze/mimetypes/64/application-x-fictionbook+xml.svg share/icons/breeze/mimetypes/64/application-x-flash-video.svg share/icons/breeze/mimetypes/64/application-x-font-afm.svg share/icons/breeze/mimetypes/64/application-x-font-bdf.svg share/icons/breeze/mimetypes/64/application-x-font-otf.svg share/icons/breeze/mimetypes/64/application-x-font-pcf.svg share/icons/breeze/mimetypes/64/application-x-font-snf.svg share/icons/breeze/mimetypes/64/application-x-font-ttf.svg share/icons/breeze/mimetypes/64/application-x-font-ttx.svg share/icons/breeze/mimetypes/64/application-x-font-type1.svg share/icons/breeze/mimetypes/64/application-x-gameboy-rom.svg share/icons/breeze/mimetypes/64/application-x-gamecube-rom.svg share/icons/breeze/mimetypes/64/application-x-gba-rom.svg share/icons/breeze/mimetypes/64/application-x-gdscript.svg share/icons/breeze/mimetypes/64/application-x-gettext-translation.svg share/icons/breeze/mimetypes/64/application-x-gnumeric.svg share/icons/breeze/mimetypes/64/application-x-godot-project.svg share/icons/breeze/mimetypes/64/application-x-godot-resource.svg share/icons/breeze/mimetypes/64/application-x-godot-scene.svg share/icons/breeze/mimetypes/64/application-x-godot-shader.svg share/icons/breeze/mimetypes/64/application-x-gzdvi.svg share/icons/breeze/mimetypes/64/application-x-gzip.svg share/icons/breeze/mimetypes/64/application-x-gzpostscript.svg share/icons/breeze/mimetypes/64/application-x-iso.svg share/icons/breeze/mimetypes/64/application-x-iso9660-appimage.svg share/icons/breeze/mimetypes/64/application-x-it87.svg share/icons/breeze/mimetypes/64/application-x-jar.svg share/icons/breeze/mimetypes/64/application-x-java-applet.svg share/icons/breeze/mimetypes/64/application-x-java-archive.svg share/icons/breeze/mimetypes/64/application-x-java.svg share/icons/breeze/mimetypes/64/application-x-javascript.svg share/icons/breeze/mimetypes/64/application-x-k3b.svg share/icons/breeze/mimetypes/64/application-x-kcsrc.svg share/icons/breeze/mimetypes/64/application-x-kdenlivetitle.svg share/icons/breeze/mimetypes/64/application-x-kexi-connectiondata.svg share/icons/breeze/mimetypes/64/application-x-kexiproject-shortcut.svg share/icons/breeze/mimetypes/64/application-x-kexiproject-sqlite.svg share/icons/breeze/mimetypes/64/application-x-kexiproject-sqlite2.svg share/icons/breeze/mimetypes/64/application-x-kexiproject-sqlite3.svg share/icons/breeze/mimetypes/64/application-x-kformula.svg share/icons/breeze/mimetypes/64/application-x-kgetlist.svg share/icons/breeze/mimetypes/64/application-x-kmymoney.svg share/icons/breeze/mimetypes/64/application-x-kontour.svg share/icons/breeze/mimetypes/64/application-x-kplato.svg share/icons/breeze/mimetypes/64/application-x-krita.svg share/icons/breeze/mimetypes/64/application-x-kvtml.svg share/icons/breeze/mimetypes/64/application-x-kword.svg share/icons/breeze/mimetypes/64/application-x-labplot2.svg share/icons/breeze/mimetypes/64/application-x-lha.svg share/icons/breeze/mimetypes/64/application-x-lyx.svg share/icons/breeze/mimetypes/64/application-x-lzma-compressed-tar.svg share/icons/breeze/mimetypes/64/application-x-lzop.svg share/icons/breeze/mimetypes/64/application-x-m4.svg share/icons/breeze/mimetypes/64/application-x-macbinary.svg share/icons/breeze/mimetypes/64/application-x-marble.svg share/icons/breeze/mimetypes/64/application-x-mimearchive.svg share/icons/breeze/mimetypes/64/application-x-mplayer2.svg share/icons/breeze/mimetypes/64/application-x-ms-dos-executable.svg share/icons/breeze/mimetypes/64/application-x-ms-shortcut.svg share/icons/breeze/mimetypes/64/application-x-ms-wim.svg share/icons/breeze/mimetypes/64/application-x-msdownload.svg share/icons/breeze/mimetypes/64/application-x-mswinurl.svg share/icons/breeze/mimetypes/64/application-x-mswrite.svg share/icons/breeze/mimetypes/64/application-x-n64-rom.svg share/icons/breeze/mimetypes/64/application-x-nes-rom.svg share/icons/breeze/mimetypes/64/application-x-nintendo-ds-rom.svg share/icons/breeze/mimetypes/64/application-x-nzb.svg share/icons/breeze/mimetypes/64/application-x-object.svg share/icons/breeze/mimetypes/64/application-x-pak.svg share/icons/breeze/mimetypes/64/application-x-partial-download.svg share/icons/breeze/mimetypes/64/application-x-pem-key.svg share/icons/breeze/mimetypes/64/application-x-perl.svg share/icons/breeze/mimetypes/64/application-x-php.svg share/icons/breeze/mimetypes/64/application-x-pkcs12.svg share/icons/breeze/mimetypes/64/application-x-pkcs7-certificates.svg share/icons/breeze/mimetypes/64/application-x-plasma.svg share/icons/breeze/mimetypes/64/application-x-python-bytecode.svg share/icons/breeze/mimetypes/64/application-x-qemu-disk.svg share/icons/breeze/mimetypes/64/application-x-qet-element.svg share/icons/breeze/mimetypes/64/application-x-qet-project.svg share/icons/breeze/mimetypes/64/application-x-quattropro.svg share/icons/breeze/mimetypes/64/application-x-rar.svg share/icons/breeze/mimetypes/64/application-x-raw-disk-image.svg share/icons/breeze/mimetypes/64/application-x-rdata.svg share/icons/breeze/mimetypes/64/application-x-root.svg share/icons/breeze/mimetypes/64/application-x-rpm.svg share/icons/breeze/mimetypes/64/application-x-ruby.svg share/icons/breeze/mimetypes/64/application-x-sami.svg share/icons/breeze/mimetypes/64/application-x-sharedlib.svg share/icons/breeze/mimetypes/64/application-x-shellscript.svg share/icons/breeze/mimetypes/64/application-x-shockwave-flash.svg share/icons/breeze/mimetypes/64/application-x-siag.svg share/icons/breeze/mimetypes/64/application-x-sif.svg share/icons/breeze/mimetypes/64/application-x-skg.svg share/icons/breeze/mimetypes/64/application-x-skgc.svg share/icons/breeze/mimetypes/64/application-x-smb-server.svg share/icons/breeze/mimetypes/64/application-x-smb-workgroup.svg share/icons/breeze/mimetypes/64/application-x-source-rpm.svg share/icons/breeze/mimetypes/64/application-x-sqlite2.svg share/icons/breeze/mimetypes/64/application-x-sqlite3.svg share/icons/breeze/mimetypes/64/application-x-srt.svg share/icons/breeze/mimetypes/64/application-x-srtrip.svg share/icons/breeze/mimetypes/64/application-x-subrip.svg share/icons/breeze/mimetypes/64/application-x-tar.svg share/icons/breeze/mimetypes/64/application-x-tarz.svg share/icons/breeze/mimetypes/64/application-x-tgif.svg share/icons/breeze/mimetypes/64/application-x-theme.svg share/icons/breeze/mimetypes/64/application-x-trash.svg share/icons/breeze/mimetypes/64/application-x-troff-man.svg share/icons/breeze/mimetypes/64/application-x-tzo.svg share/icons/breeze/mimetypes/64/application-x-vdi-disk.svg share/icons/breeze/mimetypes/64/application-x-wmf.svg share/icons/breeze/mimetypes/64/application-x-x509-ca-cert.svg share/icons/breeze/mimetypes/64/application-x-x509-user-cert.svg share/icons/breeze/mimetypes/64/application-x-xliff.svg share/icons/breeze/mimetypes/64/application-x-xpinstall.svg share/icons/breeze/mimetypes/64/application-x-xz-compressed-tar.svg share/icons/breeze/mimetypes/64/application-x-xz-pkg.svg share/icons/breeze/mimetypes/64/application-x-zerosize.svg share/icons/breeze/mimetypes/64/application-x-zip-compressed-fb2.svg share/icons/breeze/mimetypes/64/application-x-zoo.svg share/icons/breeze/mimetypes/64/application-xhtml+xml.svg share/icons/breeze/mimetypes/64/application-xmind.svg share/icons/breeze/mimetypes/64/application-xml.svg share/icons/breeze/mimetypes/64/application-xsd.svg share/icons/breeze/mimetypes/64/application-xslt+xml.svg share/icons/breeze/mimetypes/64/application-zip.svg share/icons/breeze/mimetypes/64/audio-ac3.svg share/icons/breeze/mimetypes/64/audio-flac.svg share/icons/breeze/mimetypes/64/audio-midi.svg share/icons/breeze/mimetypes/64/audio-mp2.svg share/icons/breeze/mimetypes/64/audio-mp3.svg share/icons/breeze/mimetypes/64/audio-mp4.svg share/icons/breeze/mimetypes/64/audio-mpeg.svg share/icons/breeze/mimetypes/64/audio-prs.sid.svg share/icons/breeze/mimetypes/64/audio-vn.rn-realmedia.svg share/icons/breeze/mimetypes/64/audio-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/64/audio-x-adpcm.svg share/icons/breeze/mimetypes/64/audio-x-aiff.svg share/icons/breeze/mimetypes/64/audio-x-flac+ogg.svg share/icons/breeze/mimetypes/64/audio-x-flac.svg share/icons/breeze/mimetypes/64/audio-x-generic.svg share/icons/breeze/mimetypes/64/audio-x-monkey.svg share/icons/breeze/mimetypes/64/audio-x-mp2.svg share/icons/breeze/mimetypes/64/audio-x-mpeg.svg share/icons/breeze/mimetypes/64/audio-x-speex+ogg.svg share/icons/breeze/mimetypes/64/audio-x-wav.svg share/icons/breeze/mimetypes/64/audiobook.svg share/icons/breeze/mimetypes/64/encrypted.svg share/icons/breeze/mimetypes/64/font-otf.svg share/icons/breeze/mimetypes/64/font-ttf.svg share/icons/breeze/mimetypes/64/fonts-package.svg share/icons/breeze/mimetypes/64/image-bmp.svg share/icons/breeze/mimetypes/64/image-gif.svg share/icons/breeze/mimetypes/64/image-ico.svg share/icons/breeze/mimetypes/64/image-jpeg.svg share/icons/breeze/mimetypes/64/image-jpeg2000.svg share/icons/breeze/mimetypes/64/image-png.svg share/icons/breeze/mimetypes/64/image-svg+xml-compressed.svg share/icons/breeze/mimetypes/64/image-svg+xml.svg share/icons/breeze/mimetypes/64/image-tiff.svg share/icons/breeze/mimetypes/64/image-vnd.dgn.svg share/icons/breeze/mimetypes/64/image-vnd.djvu.svg share/icons/breeze/mimetypes/64/image-vnd.dwg.svg share/icons/breeze/mimetypes/64/image-vnd.microsoft.icon.svg share/icons/breeze/mimetypes/64/image-x-adobe-dng.svg share/icons/breeze/mimetypes/64/image-x-compressed-xcf.svg share/icons/breeze/mimetypes/64/image-x-emf.svg share/icons/breeze/mimetypes/64/image-x-eps.svg share/icons/breeze/mimetypes/64/image-x-generic.svg share/icons/breeze/mimetypes/64/image-x-ico.svg share/icons/breeze/mimetypes/64/image-x-icon.svg share/icons/breeze/mimetypes/64/image-x-krita.svg share/icons/breeze/mimetypes/64/image-x-portable-bitmap.svg share/icons/breeze/mimetypes/64/image-x-psd.svg share/icons/breeze/mimetypes/64/image-x-psdimage-x-psd.svg share/icons/breeze/mimetypes/64/image-x-svg+xml.svg share/icons/breeze/mimetypes/64/image-x-tga.svg share/icons/breeze/mimetypes/64/image-x-vnd.trolltech.qpicture.svg share/icons/breeze/mimetypes/64/image-x-win-bitmap.svg share/icons/breeze/mimetypes/64/image-x-win-bmp.svg share/icons/breeze/mimetypes/64/image-x-wmf.svg share/icons/breeze/mimetypes/64/image-x-xcf.svg share/icons/breeze/mimetypes/64/image-x-xfig.svg share/icons/breeze/mimetypes/64/inode-directory.svg share/icons/breeze/mimetypes/64/libreoffice-database.svg share/icons/breeze/mimetypes/64/libreoffice-drawing-template.svg share/icons/breeze/mimetypes/64/libreoffice-drawing.svg share/icons/breeze/mimetypes/64/libreoffice-extension.svg share/icons/breeze/mimetypes/64/libreoffice-formula.svg share/icons/breeze/mimetypes/64/libreoffice-master-document.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-database.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-drawing-template.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-drawing.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-formula.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-master-document.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-presentation-template.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-presentation.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-spreadsheet-template.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-spreadsheet.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-text-template.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-text.svg share/icons/breeze/mimetypes/64/libreoffice-oasis-web-template.svg share/icons/breeze/mimetypes/64/libreoffice-presentation-template.svg share/icons/breeze/mimetypes/64/libreoffice-presentation.svg share/icons/breeze/mimetypes/64/libreoffice-spreadsheet-template.svg share/icons/breeze/mimetypes/64/libreoffice-spreadsheet.svg share/icons/breeze/mimetypes/64/libreoffice-text-template.svg share/icons/breeze/mimetypes/64/libreoffice-text.svg share/icons/breeze/mimetypes/64/message-news.svg share/icons/breeze/mimetypes/64/message-partial.svg share/icons/breeze/mimetypes/64/message-rfc822.svg share/icons/breeze/mimetypes/64/message-x-gnu-rmail.svg share/icons/breeze/mimetypes/64/message.svg share/icons/breeze/mimetypes/64/none.svg share/icons/breeze/mimetypes/64/odf.svg share/icons/breeze/mimetypes/64/package-x-generic.svg share/icons/breeze/mimetypes/64/podcast.svg share/icons/breeze/mimetypes/64/text-calendar.svg share/icons/breeze/mimetypes/64/text-csharp.svg share/icons/breeze/mimetypes/64/text-css.svg share/icons/breeze/mimetypes/64/text-csv.svg share/icons/breeze/mimetypes/64/text-directory.svg share/icons/breeze/mimetypes/64/text-dockerfile.svg share/icons/breeze/mimetypes/64/text-enriched.svg share/icons/breeze/mimetypes/64/text-html.svg share/icons/breeze/mimetypes/64/text-javascript.svg share/icons/breeze/mimetypes/64/text-markdown.svg share/icons/breeze/mimetypes/64/text-plain.svg share/icons/breeze/mimetypes/64/text-rdf+xml.svg share/icons/breeze/mimetypes/64/text-rdf.svg share/icons/breeze/mimetypes/64/text-rtf.svg share/icons/breeze/mimetypes/64/text-rust.svg share/icons/breeze/mimetypes/64/text-sgml.svg share/icons/breeze/mimetypes/64/text-troff.svg share/icons/breeze/mimetypes/64/text-vcalendar.svg share/icons/breeze/mimetypes/64/text-vnd.abc.svg share/icons/breeze/mimetypes/64/text-vnd.kde.kcrash-report.svg share/icons/breeze/mimetypes/64/text-vnd.trolltech.linguist.svg share/icons/breeze/mimetypes/64/text-vnd.wap.wml.svg share/icons/breeze/mimetypes/64/text-vtt.svg share/icons/breeze/mimetypes/64/text-wiki.svg share/icons/breeze/mimetypes/64/text-x-adasrc.svg share/icons/breeze/mimetypes/64/text-x-apport.svg share/icons/breeze/mimetypes/64/text-x-authors.svg share/icons/breeze/mimetypes/64/text-x-bibtex.svg share/icons/breeze/mimetypes/64/text-x-c++hdr.svg share/icons/breeze/mimetypes/64/text-x-c++src.svg share/icons/breeze/mimetypes/64/text-x-changelog.svg share/icons/breeze/mimetypes/64/text-x-chdr.svg share/icons/breeze/mimetypes/64/text-x-cmake.svg share/icons/breeze/mimetypes/64/text-x-copying.svg share/icons/breeze/mimetypes/64/text-x-credits.svg share/icons/breeze/mimetypes/64/text-x-csharp.svg share/icons/breeze/mimetypes/64/text-x-csrc.svg share/icons/breeze/mimetypes/64/text-x-dtd.svg share/icons/breeze/mimetypes/64/text-x-generic.svapplication-x-awk.svg share/icons/breeze/mimetypes/64/text-x-generic.svg share/icons/breeze/mimetypes/64/text-x-gettext-translation.svg share/icons/breeze/mimetypes/64/text-x-go.svg share/icons/breeze/mimetypes/64/text-x-haskell.svg share/icons/breeze/mimetypes/64/text-x-hex.svg share/icons/breeze/mimetypes/64/text-x-install.svg share/icons/breeze/mimetypes/64/text-x-java-source.svg share/icons/breeze/mimetypes/64/text-x-java.svg share/icons/breeze/mimetypes/64/text-x-javascript.svg share/icons/breeze/mimetypes/64/text-x-katefilelist.svg share/icons/breeze/mimetypes/64/text-x-kotlin.svg share/icons/breeze/mimetypes/64/text-x-ldif.svg share/icons/breeze/mimetypes/64/text-x-lilypond.svg share/icons/breeze/mimetypes/64/text-x-log.svg share/icons/breeze/mimetypes/64/text-x-lua.svg share/icons/breeze/mimetypes/64/text-x-makefile.svg share/icons/breeze/mimetypes/64/text-x-markdown.svg share/icons/breeze/mimetypes/64/text-x-microdvd.svg share/icons/breeze/mimetypes/64/text-x-mpsub.svg share/icons/breeze/mimetypes/64/text-x-nfo.svg share/icons/breeze/mimetypes/64/text-x-objchdr.svg share/icons/breeze/mimetypes/64/text-x-objcsrc.svg share/icons/breeze/mimetypes/64/text-x-opml+xml.svg share/icons/breeze/mimetypes/64/text-x-opml.svg share/icons/breeze/mimetypes/64/text-x-pascal.svg share/icons/breeze/mimetypes/64/text-x-patch.svg share/icons/breeze/mimetypes/64/text-x-plain.svg share/icons/breeze/mimetypes/64/text-x-po.svg share/icons/breeze/mimetypes/64/text-x-python.svg share/icons/breeze/mimetypes/64/text-x-python3.svg share/icons/breeze/mimetypes/64/text-x-qml.svg share/icons/breeze/mimetypes/64/text-x-r.svg share/icons/breeze/mimetypes/64/text-x-readme.svg share/icons/breeze/mimetypes/64/text-x-rpm-spec.svg share/icons/breeze/mimetypes/64/text-x-rust.svg share/icons/breeze/mimetypes/64/text-x-sass.svg share/icons/breeze/mimetypes/64/text-x-scala.svg share/icons/breeze/mimetypes/64/text-x-script.svg share/icons/breeze/mimetypes/64/text-x-scss.svg share/icons/breeze/mimetypes/64/text-x-sql.svg share/icons/breeze/mimetypes/64/text-x-ssa.svg share/icons/breeze/mimetypes/64/text-x-subviewer.svg share/icons/breeze/mimetypes/64/text-x-tcl.svg share/icons/breeze/mimetypes/64/text-x-tex.svg share/icons/breeze/mimetypes/64/text-x-texinfo.svg share/icons/breeze/mimetypes/64/text-x-vcard.svg share/icons/breeze/mimetypes/64/text-x-xslfo.svg share/icons/breeze/mimetypes/64/text-xmcd.svg share/icons/breeze/mimetypes/64/text-xml.svg share/icons/breeze/mimetypes/64/unknown.svg share/icons/breeze/mimetypes/64/uri-mms.svg share/icons/breeze/mimetypes/64/uri-mmst.svg share/icons/breeze/mimetypes/64/uri-pnm.svg share/icons/breeze/mimetypes/64/uri-rtspt.svg share/icons/breeze/mimetypes/64/uri-rtspu.svg share/icons/breeze/mimetypes/64/video-mlt-playlist.svg share/icons/breeze/mimetypes/64/video-mp2t.svg share/icons/breeze/mimetypes/64/video-mp4.svg share/icons/breeze/mimetypes/64/video-vivo.svg share/icons/breeze/mimetypes/64/video-vnd.rn-realvideo.svg share/icons/breeze/mimetypes/64/video-wavelet.svg share/icons/breeze/mimetypes/64/video-webm.svg share/icons/breeze/mimetypes/64/video-x-anim.svg share/icons/breeze/mimetypes/64/video-x-flic.svg share/icons/breeze/mimetypes/64/video-x-flv.svg share/icons/breeze/mimetypes/64/video-x-generic.svg share/icons/breeze/mimetypes/64/video-x-google-vlc-plugin.svg share/icons/breeze/mimetypes/64/video-x-javafx.svg share/icons/breeze/mimetypes/64/video-x-matroska.svg share/icons/breeze/mimetypes/64/video-x-mng.svg share/icons/breeze/mimetypes/64/video-x-ms-wmp.svg share/icons/breeze/mimetypes/64/video-x-ms-wmv.svg share/icons/breeze/mimetypes/64/video-x-msvideo.svg share/icons/breeze/mimetypes/64/video-x-ogm+ogg.svg share/icons/breeze/mimetypes/64/video-x-theora+ogg.svg share/icons/breeze/mimetypes/64/video-x-wmv.svg share/icons/breeze/mimetypes/64/viewbib.svg share/icons/breeze/mimetypes/64/viewdvi.svg share/icons/breeze/mimetypes/64/viewhtml.svg share/icons/breeze/mimetypes/64/viewpdf.svg share/icons/breeze/mimetypes/64/viewps.svg share/icons/breeze/mimetypes/64/virtualbox-hdd.svg share/icons/breeze/mimetypes/64/virtualbox-ova.svg share/icons/breeze/mimetypes/64/virtualbox-ovf.svg share/icons/breeze/mimetypes/64/virtualbox-vbox-extpack.svg share/icons/breeze/mimetypes/64/virtualbox-vbox.svg share/icons/breeze/mimetypes/64/virtualbox-vdi.svg share/icons/breeze/mimetypes/64/virtualbox-vhd.svg share/icons/breeze/mimetypes/64/virtualbox-vmdk.svg share/icons/breeze/mimetypes/64/vnd.ms-publisher.svg share/icons/breeze/mimetypes/64/x-kde-nsplugin-generated.svg share/icons/breeze/mimetypes/64/x-mail-distribution-list.svg share/icons/breeze/mimetypes/64/x-media-podcast.svg share/icons/breeze/mimetypes/64/x-office-address-book.svg share/icons/breeze/mimetypes/64/x-office-calendar.svg share/icons/breeze/mimetypes/64/x-office-contact.svg share/icons/breeze/mimetypes/64/x-office-document.svg share/icons/breeze/mimetypes/64/x-office-drawing.svg share/icons/breeze/mimetypes/64/x-office-presentation.svg share/icons/breeze/mimetypes/64/x-office-spreadsheet.svg share/icons/breeze/places/16/certificate-server.svg share/icons/breeze/places/16/desktop.svg share/icons/breeze/places/16/document-multiple.svg share/icons/breeze/places/16/favorites.svg share/icons/breeze/places/16/folder-activities.svg share/icons/breeze/places/16/folder-add.svg share/icons/breeze/places/16/folder-android.svg share/icons/breeze/places/16/folder-appimage.svg share/icons/breeze/places/16/folder-black.svg share/icons/breeze/places/16/folder-blender.svg share/icons/breeze/places/16/folder-blue.svg share/icons/breeze/places/16/folder-book.svg share/icons/breeze/places/16/folder-bookmark.svg share/icons/breeze/places/16/folder-brown.svg share/icons/breeze/places/16/folder-build.svg share/icons/breeze/places/16/folder-calculate.svg share/icons/breeze/places/16/folder-chart.svg share/icons/breeze/places/16/folder-cloud.svg share/icons/breeze/places/16/folder-comic.svg share/icons/breeze/places/16/folder-crash.svg share/icons/breeze/places/16/folder-cyan.svg share/icons/breeze/places/16/folder-database.svg share/icons/breeze/places/16/folder-deb.svg share/icons/breeze/places/16/folder-design.svg share/icons/breeze/places/16/folder-desktop.svg share/icons/breeze/places/16/folder-development.svg share/icons/breeze/places/16/folder-docker.svg share/icons/breeze/places/16/folder-documents.svg share/icons/breeze/places/16/folder-download.svg share/icons/breeze/places/16/folder-downloads.svg share/icons/breeze/places/16/folder-drawing.svg share/icons/breeze/places/16/folder-dropbox.svg share/icons/breeze/places/16/folder-extension.svg share/icons/breeze/places/16/folder-favorites.svg share/icons/breeze/places/16/folder-flatpak.svg share/icons/breeze/places/16/folder-games.svg share/icons/breeze/places/16/folder-gdrive.svg share/icons/breeze/places/16/folder-git.svg share/icons/breeze/places/16/folder-godot.svg share/icons/breeze/places/16/folder-green.svg share/icons/breeze/places/16/folder-grey.svg share/icons/breeze/places/16/folder-html.svg share/icons/breeze/places/16/folder-image-people.svg share/icons/breeze/places/16/folder-image.svg share/icons/breeze/places/16/folder-images.svg share/icons/breeze/places/16/folder-important.svg share/icons/breeze/places/16/folder-java.svg share/icons/breeze/places/16/folder-language.svg share/icons/breeze/places/16/folder-library.svg share/icons/breeze/places/16/folder-locked.svg share/icons/breeze/places/16/folder-log.svg share/icons/breeze/places/16/folder-mac.svg share/icons/breeze/places/16/folder-magenta.svg share/icons/breeze/places/16/folder-mail.svg share/icons/breeze/places/16/folder-music.svg share/icons/breeze/places/16/folder-network.svg share/icons/breeze/places/16/folder-notes.svg share/icons/breeze/places/16/folder-onedrive.svg share/icons/breeze/places/16/folder-open.svg share/icons/breeze/places/16/folder-orange.svg share/icons/breeze/places/16/folder-owncloud.svg share/icons/breeze/places/16/folder-paint.svg share/icons/breeze/places/16/folder-picture.svg share/icons/breeze/places/16/folder-pictures.svg share/icons/breeze/places/16/folder-podcast.svg share/icons/breeze/places/16/folder-presentation.svg share/icons/breeze/places/16/folder-print.svg share/icons/breeze/places/16/folder-public.svg share/icons/breeze/places/16/folder-publicshare.svg share/icons/breeze/places/16/folder-recent.svg share/icons/breeze/places/16/folder-red.svg share/icons/breeze/places/16/folder-remote.svg share/icons/breeze/places/16/folder-root.svg share/icons/breeze/places/16/folder-rpm.svg share/icons/breeze/places/16/folder-script.svg share/icons/breeze/places/16/folder-sign.svg share/icons/breeze/places/16/folder-snap.svg share/icons/breeze/places/16/folder-sound.svg share/icons/breeze/places/16/folder-table.svg share/icons/breeze/places/16/folder-tar.svg share/icons/breeze/places/16/folder-temp.svg share/icons/breeze/places/16/folder-templates.svg share/icons/breeze/places/16/folder-text.svg share/icons/breeze/places/16/folder-trash.svg share/icons/breeze/places/16/folder-txt.svg share/icons/breeze/places/16/folder-unlocked.svg share/icons/breeze/places/16/folder-video.svg share/icons/breeze/places/16/folder-videos.svg share/icons/breeze/places/16/folder-violet.svg share/icons/breeze/places/16/folder-windows.svg share/icons/breeze/places/16/folder-yellow.svg share/icons/breeze/places/16/folder.svg share/icons/breeze/places/16/folder_html.svg share/icons/breeze/places/16/mail-folder-inbox.svg share/icons/breeze/places/16/mail-folder-outbox.svg share/icons/breeze/places/16/mail-folder-sent.svg share/icons/breeze/places/16/mail-message.svg share/icons/breeze/places/16/network-server-database.svg share/icons/breeze/places/16/network-server.svg share/icons/breeze/places/16/network-workgroup.svg share/icons/breeze/places/16/org.xfce.gigolo.svg share/icons/breeze/places/16/repository.svg share/icons/breeze/places/16/server-database.svg share/icons/breeze/places/16/start-here-kde-plasma.svg share/icons/breeze/places/16/start-here-kde.svg share/icons/breeze/places/16/stock_folder.svg share/icons/breeze/places/16/user-desktop.svg share/icons/breeze/places/16/user-home.svg share/icons/breeze/places/16/user-identity.svg share/icons/breeze/places/16/user-trash-full.svg share/icons/breeze/places/16/user-trash.svg share/icons/breeze/places/16@2x share/icons/breeze/places/16@3x share/icons/breeze/places/22/certificate-server.svg share/icons/breeze/places/22/desktop.svg share/icons/breeze/places/22/document-multiple.svg share/icons/breeze/places/22/favorites.svg share/icons/breeze/places/22/folder-activities.svg share/icons/breeze/places/22/folder-add.svg share/icons/breeze/places/22/folder-android.svg share/icons/breeze/places/22/folder-appimage.svg share/icons/breeze/places/22/folder-black.svg share/icons/breeze/places/22/folder-blender.svg share/icons/breeze/places/22/folder-blue.svg share/icons/breeze/places/22/folder-book.svg share/icons/breeze/places/22/folder-bookmark.svg share/icons/breeze/places/22/folder-brown.svg share/icons/breeze/places/22/folder-build.svg share/icons/breeze/places/22/folder-calculate.svg share/icons/breeze/places/22/folder-chart.svg share/icons/breeze/places/22/folder-cloud.svg share/icons/breeze/places/22/folder-comic.svg share/icons/breeze/places/22/folder-crash.svg share/icons/breeze/places/22/folder-cyan.svg share/icons/breeze/places/22/folder-database.svg share/icons/breeze/places/22/folder-deb.svg share/icons/breeze/places/22/folder-design.svg share/icons/breeze/places/22/folder-desktop.svg share/icons/breeze/places/22/folder-development.svg share/icons/breeze/places/22/folder-docker.svg share/icons/breeze/places/22/folder-documents.svg share/icons/breeze/places/22/folder-download.svg share/icons/breeze/places/22/folder-downloads.svg share/icons/breeze/places/22/folder-drawing.svg share/icons/breeze/places/22/folder-dropbox.svg share/icons/breeze/places/22/folder-extension.svg share/icons/breeze/places/22/folder-favorites.svg share/icons/breeze/places/22/folder-flatpak.svg share/icons/breeze/places/22/folder-games.svg share/icons/breeze/places/22/folder-gdrive.svg share/icons/breeze/places/22/folder-git.svg share/icons/breeze/places/22/folder-godot.svg share/icons/breeze/places/22/folder-green.svg share/icons/breeze/places/22/folder-grey.svg share/icons/breeze/places/22/folder-html.svg share/icons/breeze/places/22/folder-image-people.svg share/icons/breeze/places/22/folder-image.svg share/icons/breeze/places/22/folder-images.svg share/icons/breeze/places/22/folder-important.svg share/icons/breeze/places/22/folder-java.svg share/icons/breeze/places/22/folder-language.svg share/icons/breeze/places/22/folder-library.svg share/icons/breeze/places/22/folder-locked.svg share/icons/breeze/places/22/folder-log.svg share/icons/breeze/places/22/folder-mac.svg share/icons/breeze/places/22/folder-magenta.svg share/icons/breeze/places/22/folder-mail.svg share/icons/breeze/places/22/folder-music.svg share/icons/breeze/places/22/folder-network.svg share/icons/breeze/places/22/folder-notes.svg share/icons/breeze/places/22/folder-onedrive.svg share/icons/breeze/places/22/folder-open.svg share/icons/breeze/places/22/folder-orange.svg share/icons/breeze/places/22/folder-owncloud.svg share/icons/breeze/places/22/folder-paint.svg share/icons/breeze/places/22/folder-picture.svg share/icons/breeze/places/22/folder-pictures.svg share/icons/breeze/places/22/folder-podcast.svg share/icons/breeze/places/22/folder-presentation.svg share/icons/breeze/places/22/folder-print.svg share/icons/breeze/places/22/folder-public.svg share/icons/breeze/places/22/folder-publicshare.svg share/icons/breeze/places/22/folder-recent.svg share/icons/breeze/places/22/folder-red.svg share/icons/breeze/places/22/folder-remote.svg share/icons/breeze/places/22/folder-root.svg share/icons/breeze/places/22/folder-rpm.svg share/icons/breeze/places/22/folder-script.svg share/icons/breeze/places/22/folder-sign.svg share/icons/breeze/places/22/folder-snap.svg share/icons/breeze/places/22/folder-sound.svg share/icons/breeze/places/22/folder-table.svg share/icons/breeze/places/22/folder-tar.svg share/icons/breeze/places/22/folder-temp.svg share/icons/breeze/places/22/folder-templates.svg share/icons/breeze/places/22/folder-text.svg share/icons/breeze/places/22/folder-trash.svg share/icons/breeze/places/22/folder-txt.svg share/icons/breeze/places/22/folder-unlocked.svg share/icons/breeze/places/22/folder-video.svg share/icons/breeze/places/22/folder-videos.svg share/icons/breeze/places/22/folder-violet.svg share/icons/breeze/places/22/folder-windows.svg share/icons/breeze/places/22/folder-yellow.svg share/icons/breeze/places/22/folder.svg share/icons/breeze/places/22/folder_html.svg share/icons/breeze/places/22/mail-folder-inbox.svg share/icons/breeze/places/22/mail-folder-outbox.svg share/icons/breeze/places/22/mail-folder-sent.svg share/icons/breeze/places/22/mail-message.svg share/icons/breeze/places/22/network-server-database.svg share/icons/breeze/places/22/network-server.svg share/icons/breeze/places/22/network-workgroup.svg share/icons/breeze/places/22/org.xfce.gigolo.svg share/icons/breeze/places/22/repository.svg share/icons/breeze/places/22/server-database.svg share/icons/breeze/places/22/start-here-kde-plasma.svg share/icons/breeze/places/22/start-here-kde.svg share/icons/breeze/places/22/stock_folder.svg share/icons/breeze/places/22/user-desktop.svg share/icons/breeze/places/22/user-home.svg share/icons/breeze/places/22/user-identity.svg share/icons/breeze/places/22/user-trash-full.svg share/icons/breeze/places/22/user-trash.svg share/icons/breeze/places/22@2x share/icons/breeze/places/22@3x share/icons/breeze/places/24/certificate-server.svg share/icons/breeze/places/24/desktop.svg share/icons/breeze/places/24/document-multiple.svg share/icons/breeze/places/24/favorites.svg share/icons/breeze/places/24/folder-activities.svg share/icons/breeze/places/24/folder-add.svg share/icons/breeze/places/24/folder-android.svg share/icons/breeze/places/24/folder-appimage.svg share/icons/breeze/places/24/folder-black.svg share/icons/breeze/places/24/folder-blender.svg share/icons/breeze/places/24/folder-blue.svg share/icons/breeze/places/24/folder-book.svg share/icons/breeze/places/24/folder-bookmark.svg share/icons/breeze/places/24/folder-brown.svg share/icons/breeze/places/24/folder-build.svg share/icons/breeze/places/24/folder-calculate.svg share/icons/breeze/places/24/folder-chart.svg share/icons/breeze/places/24/folder-cloud.svg share/icons/breeze/places/24/folder-comic.svg share/icons/breeze/places/24/folder-crash.svg share/icons/breeze/places/24/folder-cyan.svg share/icons/breeze/places/24/folder-database.svg share/icons/breeze/places/24/folder-deb.svg share/icons/breeze/places/24/folder-design.svg share/icons/breeze/places/24/folder-desktop.svg share/icons/breeze/places/24/folder-development.svg share/icons/breeze/places/24/folder-docker.svg share/icons/breeze/places/24/folder-documents.svg share/icons/breeze/places/24/folder-download.svg share/icons/breeze/places/24/folder-downloads.svg share/icons/breeze/places/24/folder-drawing.svg share/icons/breeze/places/24/folder-dropbox.svg share/icons/breeze/places/24/folder-extension.svg share/icons/breeze/places/24/folder-favorites.svg share/icons/breeze/places/24/folder-flatpak.svg share/icons/breeze/places/24/folder-games.svg share/icons/breeze/places/24/folder-gdrive.svg share/icons/breeze/places/24/folder-git.svg share/icons/breeze/places/24/folder-godot.svg share/icons/breeze/places/24/folder-green.svg share/icons/breeze/places/24/folder-grey.svg share/icons/breeze/places/24/folder-html.svg share/icons/breeze/places/24/folder-image-people.svg share/icons/breeze/places/24/folder-image.svg share/icons/breeze/places/24/folder-images.svg share/icons/breeze/places/24/folder-important.svg share/icons/breeze/places/24/folder-java.svg share/icons/breeze/places/24/folder-language.svg share/icons/breeze/places/24/folder-library.svg share/icons/breeze/places/24/folder-locked.svg share/icons/breeze/places/24/folder-log.svg share/icons/breeze/places/24/folder-mac.svg share/icons/breeze/places/24/folder-magenta.svg share/icons/breeze/places/24/folder-mail.svg share/icons/breeze/places/24/folder-music.svg share/icons/breeze/places/24/folder-network.svg share/icons/breeze/places/24/folder-notes.svg share/icons/breeze/places/24/folder-onedrive.svg share/icons/breeze/places/24/folder-open.svg share/icons/breeze/places/24/folder-orange.svg share/icons/breeze/places/24/folder-owncloud.svg share/icons/breeze/places/24/folder-paint.svg share/icons/breeze/places/24/folder-picture.svg share/icons/breeze/places/24/folder-pictures.svg share/icons/breeze/places/24/folder-podcast.svg share/icons/breeze/places/24/folder-presentation.svg share/icons/breeze/places/24/folder-print.svg share/icons/breeze/places/24/folder-public.svg share/icons/breeze/places/24/folder-publicshare.svg share/icons/breeze/places/24/folder-recent.svg share/icons/breeze/places/24/folder-red.svg share/icons/breeze/places/24/folder-remote.svg share/icons/breeze/places/24/folder-root.svg share/icons/breeze/places/24/folder-rpm.svg share/icons/breeze/places/24/folder-script.svg share/icons/breeze/places/24/folder-sign.svg share/icons/breeze/places/24/folder-snap.svg share/icons/breeze/places/24/folder-sound.svg share/icons/breeze/places/24/folder-table.svg share/icons/breeze/places/24/folder-tar.svg share/icons/breeze/places/24/folder-temp.svg share/icons/breeze/places/24/folder-templates.svg share/icons/breeze/places/24/folder-text.svg share/icons/breeze/places/24/folder-trash.svg share/icons/breeze/places/24/folder-txt.svg share/icons/breeze/places/24/folder-unlocked.svg share/icons/breeze/places/24/folder-video.svg share/icons/breeze/places/24/folder-videos.svg share/icons/breeze/places/24/folder-violet.svg share/icons/breeze/places/24/folder-windows.svg share/icons/breeze/places/24/folder-yellow.svg share/icons/breeze/places/24/folder.svg share/icons/breeze/places/24/folder_html.svg share/icons/breeze/places/24/mail-folder-inbox.svg share/icons/breeze/places/24/mail-folder-outbox.svg share/icons/breeze/places/24/mail-folder-sent.svg share/icons/breeze/places/24/mail-message.svg share/icons/breeze/places/24/network-server-database.svg share/icons/breeze/places/24/network-server.svg share/icons/breeze/places/24/network-workgroup.svg share/icons/breeze/places/24/org.xfce.gigolo.svg share/icons/breeze/places/24/repository.svg share/icons/breeze/places/24/server-database.svg share/icons/breeze/places/24/start-here-kde-plasma.svg share/icons/breeze/places/24/start-here-kde.svg share/icons/breeze/places/24/stock_folder.svg share/icons/breeze/places/24/user-desktop.svg share/icons/breeze/places/24/user-home.svg share/icons/breeze/places/24/user-identity.svg share/icons/breeze/places/24/user-trash-full.svg share/icons/breeze/places/24/user-trash.svg share/icons/breeze/places/24@2x share/icons/breeze/places/24@3x share/icons/breeze/places/32/certificate-server.svg share/icons/breeze/places/32/desktop.svg share/icons/breeze/places/32/favorites.svg share/icons/breeze/places/32/folder-activities.svg share/icons/breeze/places/32/folder-android.svg share/icons/breeze/places/32/folder-appimage.svg share/icons/breeze/places/32/folder-black.svg share/icons/breeze/places/32/folder-blender.svg share/icons/breeze/places/32/folder-blue.svg share/icons/breeze/places/32/folder-book.svg share/icons/breeze/places/32/folder-bookmark.svg share/icons/breeze/places/32/folder-brown.svg share/icons/breeze/places/32/folder-build.svg share/icons/breeze/places/32/folder-calculate.svg share/icons/breeze/places/32/folder-chart.svg share/icons/breeze/places/32/folder-cloud.svg share/icons/breeze/places/32/folder-comic.svg share/icons/breeze/places/32/folder-crash.svg share/icons/breeze/places/32/folder-cyan.svg share/icons/breeze/places/32/folder-database.svg share/icons/breeze/places/32/folder-deb.svg share/icons/breeze/places/32/folder-decrypted.svg share/icons/breeze/places/32/folder-design.svg share/icons/breeze/places/32/folder-desktop.svg share/icons/breeze/places/32/folder-development.svg share/icons/breeze/places/32/folder-docker.svg share/icons/breeze/places/32/folder-documents.svg share/icons/breeze/places/32/folder-download.svg share/icons/breeze/places/32/folder-downloads.svg share/icons/breeze/places/32/folder-drawing.svg share/icons/breeze/places/32/folder-dropbox.svg share/icons/breeze/places/32/folder-encrypted.svg share/icons/breeze/places/32/folder-extension.svg share/icons/breeze/places/32/folder-favorites.svg share/icons/breeze/places/32/folder-flatpak.svg share/icons/breeze/places/32/folder-games.svg share/icons/breeze/places/32/folder-gdrive.svg share/icons/breeze/places/32/folder-git.svg share/icons/breeze/places/32/folder-godot.svg share/icons/breeze/places/32/folder-green.svg share/icons/breeze/places/32/folder-grey.svg share/icons/breeze/places/32/folder-html.svg share/icons/breeze/places/32/folder-image-people.svg share/icons/breeze/places/32/folder-image.svg share/icons/breeze/places/32/folder-images.svg share/icons/breeze/places/32/folder-important.svg share/icons/breeze/places/32/folder-java.svg share/icons/breeze/places/32/folder-language.svg share/icons/breeze/places/32/folder-library.svg share/icons/breeze/places/32/folder-locked.svg share/icons/breeze/places/32/folder-log.svg share/icons/breeze/places/32/folder-mac.svg share/icons/breeze/places/32/folder-magenta.svg share/icons/breeze/places/32/folder-mail.svg share/icons/breeze/places/32/folder-music.svg share/icons/breeze/places/32/folder-network.svg share/icons/breeze/places/32/folder-notes.svg share/icons/breeze/places/32/folder-onedrive.svg share/icons/breeze/places/32/folder-open.svg share/icons/breeze/places/32/folder-orange.svg share/icons/breeze/places/32/folder-owncloud.svg share/icons/breeze/places/32/folder-paint.svg share/icons/breeze/places/32/folder-picture.svg share/icons/breeze/places/32/folder-pictures.svg share/icons/breeze/places/32/folder-podcast.svg share/icons/breeze/places/32/folder-presentation.svg share/icons/breeze/places/32/folder-print.svg share/icons/breeze/places/32/folder-public.svg share/icons/breeze/places/32/folder-publicshare.svg share/icons/breeze/places/32/folder-recent.svg share/icons/breeze/places/32/folder-red.svg share/icons/breeze/places/32/folder-remote.svg share/icons/breeze/places/32/folder-root.svg share/icons/breeze/places/32/folder-rpm.svg share/icons/breeze/places/32/folder-script.svg share/icons/breeze/places/32/folder-sign.svg share/icons/breeze/places/32/folder-snap.svg share/icons/breeze/places/32/folder-sound.svg share/icons/breeze/places/32/folder-table.svg share/icons/breeze/places/32/folder-tar.svg share/icons/breeze/places/32/folder-temp.svg share/icons/breeze/places/32/folder-templates.svg share/icons/breeze/places/32/folder-text.svg share/icons/breeze/places/32/folder-trash.svg share/icons/breeze/places/32/folder-txt.svg share/icons/breeze/places/32/folder-unlocked.svg share/icons/breeze/places/32/folder-video.svg share/icons/breeze/places/32/folder-videos.svg share/icons/breeze/places/32/folder-violet.svg share/icons/breeze/places/32/folder-windows.svg share/icons/breeze/places/32/folder-yellow.svg share/icons/breeze/places/32/folder.svg share/icons/breeze/places/32/folder_html.svg share/icons/breeze/places/32/library-music.svg share/icons/breeze/places/32/network-server.svg share/icons/breeze/places/32/network-workgroup.svg share/icons/breeze/places/32/stock_folder.svg share/icons/breeze/places/32/user-desktop.svg share/icons/breeze/places/32/user-home.svg share/icons/breeze/places/32/user-trash-full.svg share/icons/breeze/places/32/user-trash.svg share/icons/breeze/places/48/certificate-server.svg share/icons/breeze/places/48/desktop.svg share/icons/breeze/places/48/favorites.svg share/icons/breeze/places/48/folder-activities.svg share/icons/breeze/places/48/folder-black.svg share/icons/breeze/places/48/folder-blue.svg share/icons/breeze/places/48/folder-book.svg share/icons/breeze/places/48/folder-bookmark.svg share/icons/breeze/places/48/folder-brown.svg share/icons/breeze/places/48/folder-cloud.svg share/icons/breeze/places/48/folder-comic.svg share/icons/breeze/places/48/folder-cyan.svg share/icons/breeze/places/48/folder-decrypted.svg share/icons/breeze/places/48/folder-development.svg share/icons/breeze/places/48/folder-documents.svg share/icons/breeze/places/48/folder-download.svg share/icons/breeze/places/48/folder-downloads.svg share/icons/breeze/places/48/folder-dropbox.svg share/icons/breeze/places/48/folder-encrypted.svg share/icons/breeze/places/48/folder-favorites.svg share/icons/breeze/places/48/folder-games.svg share/icons/breeze/places/48/folder-gdrive.svg share/icons/breeze/places/48/folder-green.svg share/icons/breeze/places/48/folder-grey.svg share/icons/breeze/places/48/folder-html.svg share/icons/breeze/places/48/folder-image-people.svg share/icons/breeze/places/48/folder-image.svg share/icons/breeze/places/48/folder-images.svg share/icons/breeze/places/48/folder-important.svg share/icons/breeze/places/48/folder-library.svg share/icons/breeze/places/48/folder-locked.svg share/icons/breeze/places/48/folder-magenta.svg share/icons/breeze/places/48/folder-mail.svg share/icons/breeze/places/48/folder-music.svg share/icons/breeze/places/48/folder-network.svg share/icons/breeze/places/48/folder-onedrive.svg share/icons/breeze/places/48/folder-open.svg share/icons/breeze/places/48/folder-orange.svg share/icons/breeze/places/48/folder-owncloud.svg share/icons/breeze/places/48/folder-picture.svg share/icons/breeze/places/48/folder-pictures.svg share/icons/breeze/places/48/folder-print.svg share/icons/breeze/places/48/folder-public.svg share/icons/breeze/places/48/folder-publicshare.svg share/icons/breeze/places/48/folder-recent.svg share/icons/breeze/places/48/folder-red.svg share/icons/breeze/places/48/folder-remote.svg share/icons/breeze/places/48/folder-root.svg share/icons/breeze/places/48/folder-script.svg share/icons/breeze/places/48/folder-sound.svg share/icons/breeze/places/48/folder-tar.svg share/icons/breeze/places/48/folder-temp.svg share/icons/breeze/places/48/folder-templates.svg share/icons/breeze/places/48/folder-text.svg share/icons/breeze/places/48/folder-txt.svg share/icons/breeze/places/48/folder-unlocked.svg share/icons/breeze/places/48/folder-video.svg share/icons/breeze/places/48/folder-videos.svg share/icons/breeze/places/48/folder-violet.svg share/icons/breeze/places/48/folder-yellow.svg share/icons/breeze/places/48/folder.svg share/icons/breeze/places/48/folder_html.svg share/icons/breeze/places/48/library-music.svg share/icons/breeze/places/48/network-server.svg share/icons/breeze/places/48/network-workgroup.svg share/icons/breeze/places/48/stock_folder.svg share/icons/breeze/places/48/user-desktop.svg share/icons/breeze/places/48/user-home.svg share/icons/breeze/places/48/user-trash-full.svg share/icons/breeze/places/48/user-trash.svg share/icons/breeze/places/64/certificate-server.svg share/icons/breeze/places/64/desktop.svg share/icons/breeze/places/64/favorites.svg share/icons/breeze/places/64/folder-activities.svg share/icons/breeze/places/64/folder-android.svg share/icons/breeze/places/64/folder-appimage.svg share/icons/breeze/places/64/folder-black.svg share/icons/breeze/places/64/folder-blender.svg share/icons/breeze/places/64/folder-blue.svg share/icons/breeze/places/64/folder-book.svg share/icons/breeze/places/64/folder-bookmark.svg share/icons/breeze/places/64/folder-brown.svg share/icons/breeze/places/64/folder-build.svg share/icons/breeze/places/64/folder-calculate.svg share/icons/breeze/places/64/folder-chart.svg share/icons/breeze/places/64/folder-cloud.svg share/icons/breeze/places/64/folder-comic.svg share/icons/breeze/places/64/folder-crash.svg share/icons/breeze/places/64/folder-cyan.svg share/icons/breeze/places/64/folder-database.svg share/icons/breeze/places/64/folder-deb.svg share/icons/breeze/places/64/folder-decrypted.svg share/icons/breeze/places/64/folder-design.svg share/icons/breeze/places/64/folder-desktop.svg share/icons/breeze/places/64/folder-development.svg share/icons/breeze/places/64/folder-docker.svg share/icons/breeze/places/64/folder-documents.svg share/icons/breeze/places/64/folder-download.svg share/icons/breeze/places/64/folder-downloads.svg share/icons/breeze/places/64/folder-drawing.svg share/icons/breeze/places/64/folder-dropbox.svg share/icons/breeze/places/64/folder-encrypted.svg share/icons/breeze/places/64/folder-extension.svg share/icons/breeze/places/64/folder-favorites.svg share/icons/breeze/places/64/folder-flatpak.svg share/icons/breeze/places/64/folder-games.svg share/icons/breeze/places/64/folder-gdrive.svg share/icons/breeze/places/64/folder-git.svg share/icons/breeze/places/64/folder-godot.svg share/icons/breeze/places/64/folder-green.svg share/icons/breeze/places/64/folder-grey.svg share/icons/breeze/places/64/folder-html.svg share/icons/breeze/places/64/folder-image-people.svg share/icons/breeze/places/64/folder-image.svg share/icons/breeze/places/64/folder-images.svg share/icons/breeze/places/64/folder-important.svg share/icons/breeze/places/64/folder-java.svg share/icons/breeze/places/64/folder-language.svg share/icons/breeze/places/64/folder-library.svg share/icons/breeze/places/64/folder-locked.svg share/icons/breeze/places/64/folder-log.svg share/icons/breeze/places/64/folder-mac.svg share/icons/breeze/places/64/folder-magenta.svg share/icons/breeze/places/64/folder-mail.svg share/icons/breeze/places/64/folder-music.svg share/icons/breeze/places/64/folder-network.svg share/icons/breeze/places/64/folder-notes.svg share/icons/breeze/places/64/folder-onedrive.svg share/icons/breeze/places/64/folder-open.svg share/icons/breeze/places/64/folder-orange.svg share/icons/breeze/places/64/folder-owncloud.svg share/icons/breeze/places/64/folder-paint.svg share/icons/breeze/places/64/folder-picture.svg share/icons/breeze/places/64/folder-pictures.svg share/icons/breeze/places/64/folder-podcast.svg share/icons/breeze/places/64/folder-presentation.svg share/icons/breeze/places/64/folder-print.svg share/icons/breeze/places/64/folder-public.svg share/icons/breeze/places/64/folder-publicshare.svg share/icons/breeze/places/64/folder-recent.svg share/icons/breeze/places/64/folder-red.svg share/icons/breeze/places/64/folder-remote.svg share/icons/breeze/places/64/folder-root.svg share/icons/breeze/places/64/folder-rpm.svg share/icons/breeze/places/64/folder-script.svg share/icons/breeze/places/64/folder-sign.svg share/icons/breeze/places/64/folder-snap.svg share/icons/breeze/places/64/folder-sound.svg share/icons/breeze/places/64/folder-table.svg share/icons/breeze/places/64/folder-tar.svg share/icons/breeze/places/64/folder-temp.svg share/icons/breeze/places/64/folder-templates.svg share/icons/breeze/places/64/folder-text.svg share/icons/breeze/places/64/folder-trash.svg share/icons/breeze/places/64/folder-txt.svg share/icons/breeze/places/64/folder-unlocked.svg share/icons/breeze/places/64/folder-video.svg share/icons/breeze/places/64/folder-videos.svg share/icons/breeze/places/64/folder-violet.svg share/icons/breeze/places/64/folder-windows.svg share/icons/breeze/places/64/folder-yellow.svg share/icons/breeze/places/64/folder.svg share/icons/breeze/places/64/folder_html.svg share/icons/breeze/places/64/library-music.svg share/icons/breeze/places/64/network-server.svg share/icons/breeze/places/64/network-workgroup.svg share/icons/breeze/places/64/start-here-kde-plasma.svg share/icons/breeze/places/64/start-here-kde.svg share/icons/breeze/places/64/stock_folder.svg share/icons/breeze/places/64/user-desktop.svg share/icons/breeze/places/64/user-home.svg share/icons/breeze/places/64/user-trash-full.svg share/icons/breeze/places/64/user-trash.svg share/icons/breeze/places/96/certificate-server.svg share/icons/breeze/places/96/desktop.svg share/icons/breeze/places/96/favorites.svg share/icons/breeze/places/96/folder-activities.svg share/icons/breeze/places/96/folder-black.svg share/icons/breeze/places/96/folder-blue.svg share/icons/breeze/places/96/folder-book.svg share/icons/breeze/places/96/folder-bookmark.svg share/icons/breeze/places/96/folder-brown.svg share/icons/breeze/places/96/folder-cloud.svg share/icons/breeze/places/96/folder-comic.svg share/icons/breeze/places/96/folder-cyan.svg share/icons/breeze/places/96/folder-decrypted.svg share/icons/breeze/places/96/folder-development.svg share/icons/breeze/places/96/folder-documents.svg share/icons/breeze/places/96/folder-download.svg share/icons/breeze/places/96/folder-downloads.svg share/icons/breeze/places/96/folder-dropbox.svg share/icons/breeze/places/96/folder-encrypted.svg share/icons/breeze/places/96/folder-favorites.svg share/icons/breeze/places/96/folder-games.svg share/icons/breeze/places/96/folder-gdrive.svg share/icons/breeze/places/96/folder-green.svg share/icons/breeze/places/96/folder-grey.svg share/icons/breeze/places/96/folder-html.svg share/icons/breeze/places/96/folder-image-people.svg share/icons/breeze/places/96/folder-image.svg share/icons/breeze/places/96/folder-images.svg share/icons/breeze/places/96/folder-important.svg share/icons/breeze/places/96/folder-library.svg share/icons/breeze/places/96/folder-locked.svg share/icons/breeze/places/96/folder-magenta.svg share/icons/breeze/places/96/folder-mail.svg share/icons/breeze/places/96/folder-music.svg share/icons/breeze/places/96/folder-network.svg share/icons/breeze/places/96/folder-onedrive.svg share/icons/breeze/places/96/folder-open.svg share/icons/breeze/places/96/folder-orange.svg share/icons/breeze/places/96/folder-owncloud.svg share/icons/breeze/places/96/folder-picture.svg share/icons/breeze/places/96/folder-pictures.svg share/icons/breeze/places/96/folder-print.svg share/icons/breeze/places/96/folder-public.svg share/icons/breeze/places/96/folder-publicshare.svg share/icons/breeze/places/96/folder-recent.svg share/icons/breeze/places/96/folder-red.svg share/icons/breeze/places/96/folder-remote.svg share/icons/breeze/places/96/folder-root.svg share/icons/breeze/places/96/folder-script.svg share/icons/breeze/places/96/folder-sound.svg share/icons/breeze/places/96/folder-tar.svg share/icons/breeze/places/96/folder-temp.svg share/icons/breeze/places/96/folder-templates.svg share/icons/breeze/places/96/folder-text.svg share/icons/breeze/places/96/folder-txt.svg share/icons/breeze/places/96/folder-unlocked.svg share/icons/breeze/places/96/folder-video.svg share/icons/breeze/places/96/folder-videos.svg share/icons/breeze/places/96/folder-violet.svg share/icons/breeze/places/96/folder-yellow.svg share/icons/breeze/places/96/folder.svg share/icons/breeze/places/96/folder_html.svg share/icons/breeze/places/96/library-music.svg share/icons/breeze/places/96/network-server.svg share/icons/breeze/places/96/network-workgroup.svg share/icons/breeze/places/96/start-here-kde-plasma.svg share/icons/breeze/places/96/start-here-kde.svg share/icons/breeze/places/96/stock_folder.svg share/icons/breeze/places/96/user-desktop.svg share/icons/breeze/places/96/user-home.svg share/icons/breeze/places/96/user-trash-full.svg share/icons/breeze/places/96/user-trash.svg share/icons/breeze/places/symbolic/folder-documents-symbolic.svg share/icons/breeze/places/symbolic/folder-download-symbolic.svg share/icons/breeze/places/symbolic/folder-games-symbolic.svg share/icons/breeze/places/symbolic/folder-music-symbolic.svg share/icons/breeze/places/symbolic/folder-pictures-symbolic.svg share/icons/breeze/places/symbolic/folder-publicshare-symbolic.svg share/icons/breeze/places/symbolic/folder-remote-symbolic.svg share/icons/breeze/places/symbolic/folder-root-symbolic.svg share/icons/breeze/places/symbolic/folder-saved-search-symbolic.svg share/icons/breeze/places/symbolic/folder-symbolic.svg share/icons/breeze/places/symbolic/folder-templates-symbolic.svg share/icons/breeze/places/symbolic/folder-videos-symbolic.svg share/icons/breeze/places/symbolic/network-server-symbolic.svg share/icons/breeze/places/symbolic/network-workgroup-symbolic.svg share/icons/breeze/places/symbolic/start-here-symbolic.svg share/icons/breeze/places/symbolic/user-bookmarks-symbolic.svg share/icons/breeze/places/symbolic/user-desktop-symbolic.svg share/icons/breeze/places/symbolic/user-home-symbolic.svg share/icons/breeze/places/symbolic/user-trash-symbolic.svg share/icons/breeze/preferences/22/device-notifier.svg share/icons/breeze/preferences/22/drive-removable-media.svg share/icons/breeze/preferences/22/plasma-search.svg share/icons/breeze/preferences/22/podcast-amarok.svg share/icons/breeze/preferences/22/preferences-desktop-accessibility.svg share/icons/breeze/preferences/22/preferences-desktop-activities.svg share/icons/breeze/preferences/22/preferences-desktop-baloo.svg share/icons/breeze/preferences/22/preferences-desktop-color.svg share/icons/breeze/preferences/22/preferences-desktop-cryptography.svg share/icons/breeze/preferences/22/preferences-desktop-cursors.svg share/icons/breeze/preferences/22/preferences-desktop-default-applications.svg share/icons/breeze/preferences/22/preferences-desktop-display-color.svg share/icons/breeze/preferences/22/preferences-desktop-display.svg share/icons/breeze/preferences/22/preferences-desktop-effects.svg share/icons/breeze/preferences/22/preferences-desktop-emoticons.svg share/icons/breeze/preferences/22/preferences-desktop-filetype-association.svg share/icons/breeze/preferences/22/preferences-desktop-filter.svg share/icons/breeze/preferences/22/preferences-desktop-font.svg share/icons/breeze/preferences/22/preferences-desktop-gestures-screenedges.svg share/icons/breeze/preferences/22/preferences-desktop-gestures-touch.svg share/icons/breeze/preferences/22/preferences-desktop-icons.svg share/icons/breeze/preferences/22/preferences-desktop-keyboard.svg share/icons/breeze/preferences/22/preferences-desktop-launch-feedback.svg share/icons/breeze/preferences/22/preferences-desktop-locale.svg share/icons/breeze/preferences/22/preferences-desktop-multimedia.svg share/icons/breeze/preferences/22/preferences-desktop-navigation.svg share/icons/breeze/preferences/22/preferences-desktop-notification-bell.svg share/icons/breeze/preferences/22/preferences-desktop-plasma-theme.svg share/icons/breeze/preferences/22/preferences-desktop-plasma.svg share/icons/breeze/preferences/22/preferences-desktop-screensaver.svg share/icons/breeze/preferences/22/preferences-desktop-search.svg share/icons/breeze/preferences/22/preferences-desktop-sound.svg share/icons/breeze/preferences/22/preferences-desktop-tablet.svg share/icons/breeze/preferences/22/preferences-desktop-text-to-speech.svg share/icons/breeze/preferences/22/preferences-desktop-theme-applications.svg share/icons/breeze/preferences/22/preferences-desktop-theme-global.svg share/icons/breeze/preferences/22/preferences-desktop-theme-windowdecorations.svg share/icons/breeze/preferences/22/preferences-desktop-thunderbolt.svg share/icons/breeze/preferences/22/preferences-desktop-touchpad.svg share/icons/breeze/preferences/22/preferences-desktop-user-password.svg share/icons/breeze/preferences/22/preferences-desktop-user.svg share/icons/breeze/preferences/22/preferences-desktop-virtual.svg share/icons/breeze/preferences/22/preferences-desktop-wallpaper.svg share/icons/breeze/preferences/22/preferences-desktop.svg share/icons/breeze/preferences/22/preferences-devices-cpu.svg share/icons/breeze/preferences/22/preferences-devices-drive-optical-check.svg share/icons/breeze/preferences/22/preferences-devices-printer.svg share/icons/breeze/preferences/22/preferences-devices-scanner.svg share/icons/breeze/preferences/22/preferences-devices-tree.svg share/icons/breeze/preferences/22/preferences-gtk-config.svg share/icons/breeze/preferences/22/preferences-kde-connect.svg share/icons/breeze/preferences/22/preferences-online-accounts.svg share/icons/breeze/preferences/22/preferences-other.svg share/icons/breeze/preferences/22/preferences-plugin.svg share/icons/breeze/preferences/22/preferences-security-kerberos.svg share/icons/breeze/preferences/22/preferences-security.svg share/icons/breeze/preferences/22/preferences-smart-status.svg share/icons/breeze/preferences/22/preferences-system-bluetooth.svg share/icons/breeze/preferences/22/preferences-system-linux.svg share/icons/breeze/preferences/22/preferences-system-login.svg share/icons/breeze/preferences/22/preferences-system-network-dsl.svg share/icons/breeze/preferences/22/preferences-system-network-ethernet.svg share/icons/breeze/preferences/22/preferences-system-network-ldap.svg share/icons/breeze/preferences/22/preferences-system-network-nis.svg share/icons/breeze/preferences/22/preferences-system-network-proxy.svg share/icons/breeze/preferences/22/preferences-system-network-share-windows.svg share/icons/breeze/preferences/22/preferences-system-network-sharing.svg share/icons/breeze/preferences/22/preferences-system-network-vpn.svg share/icons/breeze/preferences/22/preferences-system-network-wakeonlan.svg share/icons/breeze/preferences/22/preferences-system-power-management.svg share/icons/breeze/preferences/22/preferences-system-services.svg share/icons/breeze/preferences/22/preferences-system-session-services.svg share/icons/breeze/preferences/22/preferences-system-splash.svg share/icons/breeze/preferences/22/preferences-system-startup.svg share/icons/breeze/preferences/22/preferences-system-time.svg share/icons/breeze/preferences/22/preferences-system-user-sudo.svg share/icons/breeze/preferences/22/preferences-system-windows-actions.svg share/icons/breeze/preferences/22/preferences-system-windows-behavior.svg share/icons/breeze/preferences/22/preferences-system-windows-move.svg share/icons/breeze/preferences/22/preferences-system-windows.svg share/icons/breeze/preferences/22/preferences-virtualization-container.svg share/icons/breeze/preferences/22/preferences-web-browser-cache.svg share/icons/breeze/preferences/22/preferences-web-browser-cookies.svg share/icons/breeze/preferences/22/preferences-web-browser-identification.svg share/icons/breeze/preferences/22/preferences-web-browser-shortcuts.svg share/icons/breeze/preferences/22/preferences-web-browser-ssl.svg share/icons/breeze/preferences/22/preferences-web-browser-stylesheets.svg share/icons/breeze/preferences/22/system-users.svg share/icons/breeze/preferences/22/window-duplicate.svg share/icons/breeze/preferences/22/yast-disk.svg share/icons/breeze/preferences/24/device-notifier.svg share/icons/breeze/preferences/24/drive-removable-media.svg share/icons/breeze/preferences/24/plasma-search.svg share/icons/breeze/preferences/24/podcast-amarok.svg share/icons/breeze/preferences/24/preferences-desktop-accessibility.svg share/icons/breeze/preferences/24/preferences-desktop-activities.svg share/icons/breeze/preferences/24/preferences-desktop-baloo.svg share/icons/breeze/preferences/24/preferences-desktop-color.svg share/icons/breeze/preferences/24/preferences-desktop-cryptography.svg share/icons/breeze/preferences/24/preferences-desktop-cursors.svg share/icons/breeze/preferences/24/preferences-desktop-default-applications.svg share/icons/breeze/preferences/24/preferences-desktop-display-color.svg share/icons/breeze/preferences/24/preferences-desktop-display.svg share/icons/breeze/preferences/24/preferences-desktop-effects.svg share/icons/breeze/preferences/24/preferences-desktop-emoticons.svg share/icons/breeze/preferences/24/preferences-desktop-filetype-association.svg share/icons/breeze/preferences/24/preferences-desktop-filter.svg share/icons/breeze/preferences/24/preferences-desktop-font.svg share/icons/breeze/preferences/24/preferences-desktop-gestures-screenedges.svg share/icons/breeze/preferences/24/preferences-desktop-gestures-touch.svg share/icons/breeze/preferences/24/preferences-desktop-icons.svg share/icons/breeze/preferences/24/preferences-desktop-keyboard.svg share/icons/breeze/preferences/24/preferences-desktop-launch-feedback.svg share/icons/breeze/preferences/24/preferences-desktop-locale.svg share/icons/breeze/preferences/24/preferences-desktop-multimedia.svg share/icons/breeze/preferences/24/preferences-desktop-navigation.svg share/icons/breeze/preferences/24/preferences-desktop-notification-bell.svg share/icons/breeze/preferences/24/preferences-desktop-plasma-theme.svg share/icons/breeze/preferences/24/preferences-desktop-plasma.svg share/icons/breeze/preferences/24/preferences-desktop-screensaver.svg share/icons/breeze/preferences/24/preferences-desktop-search.svg share/icons/breeze/preferences/24/preferences-desktop-sound.svg share/icons/breeze/preferences/24/preferences-desktop-tablet.svg share/icons/breeze/preferences/24/preferences-desktop-text-to-speech.svg share/icons/breeze/preferences/24/preferences-desktop-theme-applications.svg share/icons/breeze/preferences/24/preferences-desktop-theme-global.svg share/icons/breeze/preferences/24/preferences-desktop-theme-windowdecorations.svg share/icons/breeze/preferences/24/preferences-desktop-thunderbolt.svg share/icons/breeze/preferences/24/preferences-desktop-touchpad.svg share/icons/breeze/preferences/24/preferences-desktop-user-password.svg share/icons/breeze/preferences/24/preferences-desktop-user.svg share/icons/breeze/preferences/24/preferences-desktop-virtual.svg share/icons/breeze/preferences/24/preferences-desktop-wallpaper.svg share/icons/breeze/preferences/24/preferences-desktop.svg share/icons/breeze/preferences/24/preferences-devices-cpu.svg share/icons/breeze/preferences/24/preferences-devices-drive-optical-check.svg share/icons/breeze/preferences/24/preferences-devices-printer.svg share/icons/breeze/preferences/24/preferences-devices-scanner.svg share/icons/breeze/preferences/24/preferences-devices-tree.svg share/icons/breeze/preferences/24/preferences-gtk-config.svg share/icons/breeze/preferences/24/preferences-kde-connect.svg share/icons/breeze/preferences/24/preferences-online-accounts.svg share/icons/breeze/preferences/24/preferences-other.svg share/icons/breeze/preferences/24/preferences-plugin.svg share/icons/breeze/preferences/24/preferences-security-kerberos.svg share/icons/breeze/preferences/24/preferences-security.svg share/icons/breeze/preferences/24/preferences-smart-status.svg share/icons/breeze/preferences/24/preferences-system-bluetooth.svg share/icons/breeze/preferences/24/preferences-system-linux.svg share/icons/breeze/preferences/24/preferences-system-login.svg share/icons/breeze/preferences/24/preferences-system-network-dsl.svg share/icons/breeze/preferences/24/preferences-system-network-ldap.svg share/icons/breeze/preferences/24/preferences-system-network-nis.svg share/icons/breeze/preferences/24/preferences-system-network-proxy.svg share/icons/breeze/preferences/24/preferences-system-network-share-windows.svg share/icons/breeze/preferences/24/preferences-system-network-sharing.svg share/icons/breeze/preferences/24/preferences-system-network-vpn.svg share/icons/breeze/preferences/24/preferences-system-network-wakeonlan.svg share/icons/breeze/preferences/24/preferences-system-power-management.svg share/icons/breeze/preferences/24/preferences-system-services.svg share/icons/breeze/preferences/24/preferences-system-session-services.svg share/icons/breeze/preferences/24/preferences-system-splash.svg share/icons/breeze/preferences/24/preferences-system-startup.svg share/icons/breeze/preferences/24/preferences-system-time.svg share/icons/breeze/preferences/24/preferences-system-user-sudo.svg share/icons/breeze/preferences/24/preferences-system-windows-actions.svg share/icons/breeze/preferences/24/preferences-system-windows-behavior.svg share/icons/breeze/preferences/24/preferences-system-windows-move.svg share/icons/breeze/preferences/24/preferences-system-windows.svg share/icons/breeze/preferences/24/preferences-virtualization-container.svg share/icons/breeze/preferences/24/preferences-web-browser-cache.svg share/icons/breeze/preferences/24/preferences-web-browser-cookies.svg share/icons/breeze/preferences/24/preferences-web-browser-identification.svg share/icons/breeze/preferences/24/preferences-web-browser-shortcuts.svg share/icons/breeze/preferences/24/preferences-web-browser-ssl.svg share/icons/breeze/preferences/24/preferences-web-browser-stylesheets.svg share/icons/breeze/preferences/24/system-users.svg share/icons/breeze/preferences/24/window-duplicate.svg share/icons/breeze/preferences/24/yast-disk.svg share/icons/breeze/preferences/24@2x share/icons/breeze/preferences/24@3x share/icons/breeze/preferences/32/amarok_change_language.svg share/icons/breeze/preferences/32/device-notifier.svg share/icons/breeze/preferences/32/drive-removable-media.svg share/icons/breeze/preferences/32/face-smile.svg share/icons/breeze/preferences/32/financial-schedule.svg share/icons/breeze/preferences/32/gtkconfig.svg share/icons/breeze/preferences/32/kaccess.svg share/icons/breeze/preferences/32/kde-gtk-config.svg share/icons/breeze/preferences/32/kdeconnect.svg share/icons/breeze/preferences/32/kded5.svg share/icons/breeze/preferences/32/krunner.svg share/icons/breeze/preferences/32/ksmserver.svg share/icons/breeze/preferences/32/mediacontrol.svg share/icons/breeze/preferences/32/plasma-search.svg share/icons/breeze/preferences/32/plasma.svg share/icons/breeze/preferences/32/plasmagik.svg share/icons/breeze/preferences/32/plasmashell.svg share/icons/breeze/preferences/32/podcast-amarok.svg share/icons/breeze/preferences/32/preferences-desktop-accessibility.svg share/icons/breeze/preferences/32/preferences-desktop-activities.svg share/icons/breeze/preferences/32/preferences-desktop-baloo.svg share/icons/breeze/preferences/32/preferences-desktop-color.svg share/icons/breeze/preferences/32/preferences-desktop-cryptography.svg share/icons/breeze/preferences/32/preferences-desktop-cursors.svg share/icons/breeze/preferences/32/preferences-desktop-default-applications.svg share/icons/breeze/preferences/32/preferences-desktop-display-color.svg share/icons/breeze/preferences/32/preferences-desktop-display.svg share/icons/breeze/preferences/32/preferences-desktop-effects.svg share/icons/breeze/preferences/32/preferences-desktop-emoticons.svg share/icons/breeze/preferences/32/preferences-desktop-feedback.svg share/icons/breeze/preferences/32/preferences-desktop-filetype-association.svg share/icons/breeze/preferences/32/preferences-desktop-filter.svg share/icons/breeze/preferences/32/preferences-desktop-font.svg share/icons/breeze/preferences/32/preferences-desktop-gaming.svg share/icons/breeze/preferences/32/preferences-desktop-gestures-screenedges.svg share/icons/breeze/preferences/32/preferences-desktop-gestures-touch.svg share/icons/breeze/preferences/32/preferences-desktop-icons.svg share/icons/breeze/preferences/32/preferences-desktop-keyboard.svg share/icons/breeze/preferences/32/preferences-desktop-launch-feedback.svg share/icons/breeze/preferences/32/preferences-desktop-locale.svg share/icons/breeze/preferences/32/preferences-desktop-menu-edit.svg share/icons/breeze/preferences/32/preferences-desktop-mouse.svg share/icons/breeze/preferences/32/preferences-desktop-multimedia.svg share/icons/breeze/preferences/32/preferences-desktop-navigation.svg share/icons/breeze/preferences/32/preferences-desktop-notification-bell.svg share/icons/breeze/preferences/32/preferences-desktop-notification.svg share/icons/breeze/preferences/32/preferences-desktop-peripherals.svg share/icons/breeze/preferences/32/preferences-desktop-plasma-theme.svg share/icons/breeze/preferences/32/preferences-desktop-plasma.svg share/icons/breeze/preferences/32/preferences-desktop-screensaver.svg share/icons/breeze/preferences/32/preferences-desktop-search.svg share/icons/breeze/preferences/32/preferences-desktop-sound.svg share/icons/breeze/preferences/32/preferences-desktop-tablet.svg share/icons/breeze/preferences/32/preferences-desktop-text-to-speech.svg share/icons/breeze/preferences/32/preferences-desktop-theme-applications.svg share/icons/breeze/preferences/32/preferences-desktop-theme-global.svg share/icons/breeze/preferences/32/preferences-desktop-theme-windowdecorations.svg share/icons/breeze/preferences/32/preferences-desktop-theme.svg share/icons/breeze/preferences/32/preferences-desktop-thunderbolt.svg share/icons/breeze/preferences/32/preferences-desktop-touchpad.svg share/icons/breeze/preferences/32/preferences-desktop-user-password.svg share/icons/breeze/preferences/32/preferences-desktop-user.svg share/icons/breeze/preferences/32/preferences-desktop-virtual.svg share/icons/breeze/preferences/32/preferences-desktop-wallpaper.svg share/icons/breeze/preferences/32/preferences-desktop.svg share/icons/breeze/preferences/32/preferences-devices-cpu.svg share/icons/breeze/preferences/32/preferences-devices-drive-optical-check.svg share/icons/breeze/preferences/32/preferences-devices-printer.svg share/icons/breeze/preferences/32/preferences-devices-scanner.svg share/icons/breeze/preferences/32/preferences-devices-tree.svg share/icons/breeze/preferences/32/preferences-document.svg share/icons/breeze/preferences/32/preferences-git.svg share/icons/breeze/preferences/32/preferences-gtk-config.svg share/icons/breeze/preferences/32/preferences-kde-connect.svg share/icons/breeze/preferences/32/preferences-log.svg share/icons/breeze/preferences/32/preferences-online-accounts.svg share/icons/breeze/preferences/32/preferences-other.svg share/icons/breeze/preferences/32/preferences-plugin.svg share/icons/breeze/preferences/32/preferences-%%CMAKE_BUILD_TYPE%%notes.svg share/icons/breeze/preferences/32/preferences-scroll.svg share/icons/breeze/preferences/32/preferences-security-apparmor.svg share/icons/breeze/preferences/32/preferences-security-firewall.svg share/icons/breeze/preferences/32/preferences-security-kerberos.svg share/icons/breeze/preferences/32/preferences-security.svg share/icons/breeze/preferences/32/preferences-smart-status.svg share/icons/breeze/preferences/32/preferences-system-backup.svg share/icons/breeze/preferences/32/preferences-system-bluetooth.svg share/icons/breeze/preferences/32/preferences-system-linux.svg share/icons/breeze/preferences/32/preferences-system-login.svg share/icons/breeze/preferences/32/preferences-system-network-dsl.svg share/icons/breeze/preferences/32/preferences-system-network-ethernet.svg share/icons/breeze/preferences/32/preferences-system-network-iscsi.svg share/icons/breeze/preferences/32/preferences-system-network-ldap.svg share/icons/breeze/preferences/32/preferences-system-network-nis.svg share/icons/breeze/preferences/32/preferences-system-network-ntp.svg share/icons/breeze/preferences/32/preferences-system-network-proxy.svg share/icons/breeze/preferences/32/preferences-system-network-remote.svg share/icons/breeze/preferences/32/preferences-system-network-server-boot.svg share/icons/breeze/preferences/32/preferences-system-network-server-dhcp.svg share/icons/breeze/preferences/32/preferences-system-network-server-dns.svg share/icons/breeze/preferences/32/preferences-system-network-server-ftp.svg share/icons/breeze/preferences/32/preferences-system-network-server-installation.svg share/icons/breeze/preferences/32/preferences-system-network-server-iscsi.svg share/icons/breeze/preferences/32/preferences-system-network-server-kerberos.svg share/icons/breeze/preferences/32/preferences-system-network-server-ldap.svg share/icons/breeze/preferences/32/preferences-system-network-server-mail.svg share/icons/breeze/preferences/32/preferences-system-network-server-nis.svg share/icons/breeze/preferences/32/preferences-system-network-server-share-windows.svg share/icons/breeze/preferences/32/preferences-system-network-server-share.svg share/icons/breeze/preferences/32/preferences-system-network-server-slp.svg share/icons/breeze/preferences/32/preferences-system-network-server-web.svg share/icons/breeze/preferences/32/preferences-system-network-server.svg share/icons/breeze/preferences/32/preferences-system-network-share-windows.svg share/icons/breeze/preferences/32/preferences-system-network-share.svg share/icons/breeze/preferences/32/preferences-system-network-sharing.svg share/icons/breeze/preferences/32/preferences-system-network-vpn.svg share/icons/breeze/preferences/32/preferences-system-network-wakeonlan.svg share/icons/breeze/preferences/32/preferences-system-network.svg share/icons/breeze/preferences/32/preferences-system-performance.svg share/icons/breeze/preferences/32/preferences-system-power-management.svg share/icons/breeze/preferences/32/preferences-system-services.svg share/icons/breeze/preferences/32/preferences-system-session-services.svg share/icons/breeze/preferences/32/preferences-system-splash.svg share/icons/breeze/preferences/32/preferences-system-startup.svg share/icons/breeze/preferences/32/preferences-system-time.svg share/icons/breeze/preferences/32/preferences-system-user-sudo.svg share/icons/breeze/preferences/32/preferences-system-users.svg share/icons/breeze/preferences/32/preferences-system-windows-actions.svg share/icons/breeze/preferences/32/preferences-system-windows-behavior.svg share/icons/breeze/preferences/32/preferences-system-windows-move.svg share/icons/breeze/preferences/32/preferences-system-windows.svg share/icons/breeze/preferences/32/preferences-tabs.svg share/icons/breeze/preferences/32/preferences-virtualization-container.svg share/icons/breeze/preferences/32/preferences-virtualization-vm-install.svg share/icons/breeze/preferences/32/preferences-virtualization-vm-migrate.svg share/icons/breeze/preferences/32/preferences-virtualization-vm-new.svg share/icons/breeze/preferences/32/preferences-virtualization-vm.svg share/icons/breeze/preferences/32/preferences-web-browser-adblock.svg share/icons/breeze/preferences/32/preferences-web-browser-cache.svg share/icons/breeze/preferences/32/preferences-web-browser-cookies.svg share/icons/breeze/preferences/32/preferences-web-browser-identification.svg share/icons/breeze/preferences/32/preferences-web-browser-shortcuts.svg share/icons/breeze/preferences/32/preferences-web-browser-ssl.svg share/icons/breeze/preferences/32/preferences-web-browser-stylesheets.svg share/icons/breeze/preferences/32/preferences.svg share/icons/breeze/preferences/32/system-lock-screen.svg share/icons/breeze/preferences/32/system-users.svg share/icons/breeze/preferences/32/window-duplicate.svg share/icons/breeze/preferences/32/yast-addon-extension.svg share/icons/breeze/preferences/32/yast-addon.svg share/icons/breeze/preferences/32/yast-alternatives.svg share/icons/breeze/preferences/32/yast-apparmor.svg share/icons/breeze/preferences/32/yast-auth-client.svg share/icons/breeze/preferences/32/yast-autoyast.svg share/icons/breeze/preferences/32/yast-bootloader.svg share/icons/breeze/preferences/32/yast-checkmedia.svg share/icons/breeze/preferences/32/yast-create-new-vm.svg share/icons/breeze/preferences/32/yast-device-tree.svg share/icons/breeze/preferences/32/yast-dhcp-server.svg share/icons/breeze/preferences/32/yast-disk.svg share/icons/breeze/preferences/32/yast-dns-server.svg share/icons/breeze/preferences/32/yast-docker.svg share/icons/breeze/preferences/32/yast-dsl.svg share/icons/breeze/preferences/32/yast-fcoe.svg share/icons/breeze/preferences/32/yast-firewall.svg share/icons/breeze/preferences/32/yast-fonts.svg share/icons/breeze/preferences/32/yast-ftp-server.svg share/icons/breeze/preferences/32/yast-hardware-group.svg share/icons/breeze/preferences/32/yast-host.svg share/icons/breeze/preferences/32/yast-http-server.svg share/icons/breeze/preferences/32/yast-hwinfo.svg share/icons/breeze/preferences/32/yast-instserver.svg share/icons/breeze/preferences/32/yast-iscsi-client.svg share/icons/breeze/preferences/32/yast-iscsi-server.svg share/icons/breeze/preferences/32/yast-journal.svg share/icons/breeze/preferences/32/yast-kerberos-server.svg share/icons/breeze/preferences/32/yast-kernel.svg share/icons/breeze/preferences/32/yast-keyboard.svg share/icons/breeze/preferences/32/yast-lan.svg share/icons/breeze/preferences/32/yast-language.svg share/icons/breeze/preferences/32/yast-ldap-kerberos.svg share/icons/breeze/preferences/32/yast-ldap-server.svg share/icons/breeze/preferences/32/yast-mail.svg share/icons/breeze/preferences/32/yast-messages.svg share/icons/breeze/preferences/32/yast-misc-group.svg share/icons/breeze/preferences/32/yast-network-group.svg share/icons/breeze/preferences/32/yast-nfs-server.svg share/icons/breeze/preferences/32/yast-nfs.svg share/icons/breeze/preferences/32/yast-nis-server.svg share/icons/breeze/preferences/32/yast-nis.svg share/icons/breeze/preferences/32/yast-ntp-client.svg share/icons/breeze/preferences/32/yast-printer.svg share/icons/breeze/preferences/32/yast-proxy.svg share/icons/breeze/preferences/32/yast-%%CMAKE_BUILD_TYPE%%-notes.svg share/icons/breeze/preferences/32/yast-remote.svg share/icons/breeze/preferences/32/yast-samba-client.svg share/icons/breeze/preferences/32/yast-samba-server.svg share/icons/breeze/preferences/32/yast-scanner.svg share/icons/breeze/preferences/32/yast-security-group.svg share/icons/breeze/preferences/32/yast-security.svg share/icons/breeze/preferences/32/yast-services-manager.svg share/icons/breeze/preferences/32/yast-slp-server.svg share/icons/breeze/preferences/32/yast-snapper.svg share/icons/breeze/preferences/32/yast-software-group.svg share/icons/breeze/preferences/32/yast-sound.svg share/icons/breeze/preferences/32/yast-sudo.svg share/icons/breeze/preferences/32/yast-support-group.svg share/icons/breeze/preferences/32/yast-support.svg share/icons/breeze/preferences/32/yast-sw_source.svg share/icons/breeze/preferences/32/yast-sysconfig.svg share/icons/breeze/preferences/32/yast-system-group.svg share/icons/breeze/preferences/32/yast-tftp-server.svg share/icons/breeze/preferences/32/yast-timezone.svg share/icons/breeze/preferences/32/yast-update-online-configuration.svg share/icons/breeze/preferences/32/yast-update-online.svg share/icons/breeze/preferences/32/yast-update.svg share/icons/breeze/preferences/32/yast-users.svg share/icons/breeze/preferences/32/yast-vm-group.svg share/icons/breeze/preferences/32/yast-vm-install.svg share/icons/breeze/preferences/32/yast-vm-migrate.svg share/icons/breeze/preferences/32/yast-vpn.svg share/icons/breeze/preferences/32/yast-wol.svg share/icons/breeze/status/16/appointment-recurring.svg share/icons/breeze/status/16/appointment-reminder.svg share/icons/breeze/status/16/audio-off.svg share/icons/breeze/status/16/audio-on.svg share/icons/breeze/status/16/audio-ready.svg share/icons/breeze/status/16/audio-volume-high.svg share/icons/breeze/status/16/audio-volume-low.svg share/icons/breeze/status/16/audio-volume-medium.svg share/icons/breeze/status/16/audio-volume-muted.svg share/icons/breeze/status/16/auth-sim-locked.svg share/icons/breeze/status/16/auth-sim-missing.svg share/icons/breeze/status/16/battery-000-charging.svg share/icons/breeze/status/16/battery-000.svg share/icons/breeze/status/16/battery-010-charging.svg share/icons/breeze/status/16/battery-010.svg share/icons/breeze/status/16/battery-020-charging.svg share/icons/breeze/status/16/battery-020.svg share/icons/breeze/status/16/battery-030-charging.svg share/icons/breeze/status/16/battery-030.svg share/icons/breeze/status/16/battery-040-charging.svg share/icons/breeze/status/16/battery-040.svg share/icons/breeze/status/16/battery-050-charging.svg share/icons/breeze/status/16/battery-050.svg share/icons/breeze/status/16/battery-060-charging.svg share/icons/breeze/status/16/battery-060.svg share/icons/breeze/status/16/battery-070-charging.svg share/icons/breeze/status/16/battery-070.svg share/icons/breeze/status/16/battery-080-charging.svg share/icons/breeze/status/16/battery-080.svg share/icons/breeze/status/16/battery-090-charging.svg share/icons/breeze/status/16/battery-090.svg share/icons/breeze/status/16/battery-100-charging.svg share/icons/breeze/status/16/battery-100.svg share/icons/breeze/status/16/battery-caution-charging.svg share/icons/breeze/status/16/battery-caution.svg share/icons/breeze/status/16/battery-empty-charging.svg share/icons/breeze/status/16/battery-empty.svg share/icons/breeze/status/16/battery-full-charging.svg share/icons/breeze/status/16/battery-full.svg share/icons/breeze/status/16/battery-good-charging.svg share/icons/breeze/status/16/battery-good.svg share/icons/breeze/status/16/battery-low-charging.svg share/icons/breeze/status/16/battery-low.svg share/icons/breeze/status/16/battery-missing.svg share/icons/breeze/status/16/call-incoming.svg share/icons/breeze/status/16/call-missed.svg share/icons/breeze/status/16/call-outgoing.svg share/icons/breeze/status/16/camera-off.svg share/icons/breeze/status/16/camera-on.svg share/icons/breeze/status/16/camera-ready.svg share/icons/breeze/status/16/cloudstatus.svg share/icons/breeze/status/16/crow-translate-tray.svg share/icons/breeze/status/16/data-error.svg share/icons/breeze/status/16/data-information.svg share/icons/breeze/status/16/data-warning.svg share/icons/breeze/status/16/dialog-information.svg share/icons/breeze/status/16/dialog-warning.svg share/icons/breeze/status/16/firewall-applet-error.svg share/icons/breeze/status/16/firewall-applet-panic.svg share/icons/breeze/status/16/firewall-applet-shields_up.svg share/icons/breeze/status/16/firewall-applet.svg share/icons/breeze/status/16/image-missing.svg share/icons/breeze/status/16/input-caps-on.svg share/icons/breeze/status/16/irc-channel-joined.svg share/icons/breeze/status/16/irc-channel-parted.svg share/icons/breeze/status/16/kdeconnect-tray.svg share/icons/breeze/status/16/media-playback-paused.svg share/icons/breeze/status/16/media-playback-playing.svg share/icons/breeze/status/16/media-playback-stopped.svg share/icons/breeze/status/16/meeting-organizer.svg share/icons/breeze/status/16/mic-off.svg share/icons/breeze/status/16/mic-on.svg share/icons/breeze/status/16/mic-ready.svg share/icons/breeze/status/16/microphone-sensitivity-high.svg share/icons/breeze/status/16/microphone-sensitivity-low.svg share/icons/breeze/status/16/microphone-sensitivity-medium.svg share/icons/breeze/status/16/microphone-sensitivity-muted.svg share/icons/breeze/status/16/pidgin-tray-available.svg share/icons/breeze/status/16/pidgin-tray-away.svg share/icons/breeze/status/16/pidgin-tray-busy.svg share/icons/breeze/status/16/pidgin-tray-email.svg share/icons/breeze/status/16/pidgin-tray-invisible.svg share/icons/breeze/status/16/pidgin-tray-offline.svg share/icons/breeze/status/16/pidgin-tray-pending.svg share/icons/breeze/status/16/pidgin-tray-xa.svg share/icons/breeze/status/16/rotation-allowed.svg share/icons/breeze/status/16/rotation-locked-landscape.svg share/icons/breeze/status/16/rotation-locked-portrait.svg share/icons/breeze/status/16/security-high.svg share/icons/breeze/status/16/security-low.svg share/icons/breeze/status/16/security-medium.svg share/icons/breeze/status/16/state-download.svg share/icons/breeze/status/16/state-error.svg share/icons/breeze/status/16/state-information.svg share/icons/breeze/status/16/state-offline.svg share/icons/breeze/status/16/state-ok.svg share/icons/breeze/status/16/state-pause.svg share/icons/breeze/status/16/state-sync.svg share/icons/breeze/status/16/state-warning.svg share/icons/breeze/status/16/task-complete.svg share/icons/breeze/status/16/task-process-0.svg share/icons/breeze/status/16/task-process-1.svg share/icons/breeze/status/16/task-process-2.svg share/icons/breeze/status/16/task-process-3.svg share/icons/breeze/status/16/task-process-4.svg share/icons/breeze/status/16/task-recurring.svg share/icons/breeze/status/16/task-reminder.svg share/icons/breeze/status/16/temperature-cold.svg share/icons/breeze/status/16/temperature-normal.svg share/icons/breeze/status/16/temperature-warm.svg share/icons/breeze/status/16/user-available.svg share/icons/breeze/status/16/user-away-extended.svg share/icons/breeze/status/16/user-away.svg share/icons/breeze/status/16/user-busy.svg share/icons/breeze/status/16/user-idle.svg share/icons/breeze/status/16/user-invisible.svg share/icons/breeze/status/16/user-offline.svg share/icons/breeze/status/16/user-online.svg share/icons/breeze/status/16@2x share/icons/breeze/status/16@3x share/icons/breeze/status/22/TeamViewer.svg share/icons/breeze/status/22/appointment-recurring.svg share/icons/breeze/status/22/appointment-reminder.svg share/icons/breeze/status/22/audio-off.svg share/icons/breeze/status/22/audio-on.svg share/icons/breeze/status/22/audio-ready.svg share/icons/breeze/status/22/audio-volume-high.svg share/icons/breeze/status/22/audio-volume-low.svg share/icons/breeze/status/22/audio-volume-medium.svg share/icons/breeze/status/22/audio-volume-muted.svg share/icons/breeze/status/22/auth-sim-locked.svg share/icons/breeze/status/22/auth-sim-missing.svg share/icons/breeze/status/22/battery-000-charging.svg share/icons/breeze/status/22/battery-000.svg share/icons/breeze/status/22/battery-010-charging.svg share/icons/breeze/status/22/battery-010.svg share/icons/breeze/status/22/battery-020-charging.svg share/icons/breeze/status/22/battery-020.svg share/icons/breeze/status/22/battery-030-charging.svg share/icons/breeze/status/22/battery-030.svg share/icons/breeze/status/22/battery-040-charging.svg share/icons/breeze/status/22/battery-040.svg share/icons/breeze/status/22/battery-050-charging.svg share/icons/breeze/status/22/battery-050.svg share/icons/breeze/status/22/battery-060-charging.svg share/icons/breeze/status/22/battery-060.svg share/icons/breeze/status/22/battery-070-charging.svg share/icons/breeze/status/22/battery-070.svg share/icons/breeze/status/22/battery-080-charging.svg share/icons/breeze/status/22/battery-080.svg share/icons/breeze/status/22/battery-090-charging.svg share/icons/breeze/status/22/battery-090.svg share/icons/breeze/status/22/battery-100-charging.svg share/icons/breeze/status/22/battery-100.svg share/icons/breeze/status/22/battery-caution-charging.svg share/icons/breeze/status/22/battery-caution.svg share/icons/breeze/status/22/battery-empty-charging.svg share/icons/breeze/status/22/battery-empty.svg share/icons/breeze/status/22/battery-full-charging.svg share/icons/breeze/status/22/battery-full.svg share/icons/breeze/status/22/battery-good-charging.svg share/icons/breeze/status/22/battery-good.svg share/icons/breeze/status/22/battery-low-charging.svg share/icons/breeze/status/22/battery-low.svg share/icons/breeze/status/22/battery-missing.svg share/icons/breeze/status/22/call-incoming.svg share/icons/breeze/status/22/call-missed.svg share/icons/breeze/status/22/call-outgoing.svg share/icons/breeze/status/22/camera-off.svg share/icons/breeze/status/22/camera-on.svg share/icons/breeze/status/22/camera-ready.svg share/icons/breeze/status/22/cloudstatus.svg share/icons/breeze/status/22/com.github.ztefn.haguichi-connected.svg share/icons/breeze/status/22/com.github.ztefn.haguichi-connecting-1.svg share/icons/breeze/status/22/com.github.ztefn.haguichi-connecting-2.svg share/icons/breeze/status/22/com.github.ztefn.haguichi-connecting-3.svg share/icons/breeze/status/22/com.github.ztefn.haguichi-disconnected.svg share/icons/breeze/status/22/data-error.svg share/icons/breeze/status/22/data-information.svg +share/icons/breeze/status/22/data-success.svg share/icons/breeze/status/22/data-warning.svg share/icons/breeze/status/22/dialog-error.svg share/icons/breeze/status/22/dialog-information.svg share/icons/breeze/status/22/dialog-password.svg share/icons/breeze/status/22/dialog-positive.svg share/icons/breeze/status/22/dialog-question.svg share/icons/breeze/status/22/dialog-warning.svg share/icons/breeze/status/22/disk-quota-critical.svg share/icons/breeze/status/22/disk-quota-high.svg share/icons/breeze/status/22/disk-quota-low.svg share/icons/breeze/status/22/disk-quota.svg share/icons/breeze/status/22/dropboxstatus-busy.svg share/icons/breeze/status/22/dropboxstatus-busy2.svg share/icons/breeze/status/22/dropboxstatus-idle.svg share/icons/breeze/status/22/dropboxstatus-logo.svg share/icons/breeze/status/22/dropboxstatus-x.svg share/icons/breeze/status/22/fcitx-googlepinyin.svg share/icons/breeze/status/22/fcitx-pinyin-libpinyin.svg share/icons/breeze/status/22/fcitx-pinyin.svg share/icons/breeze/status/22/fcitx-shuangpin-libpinyin.svg share/icons/breeze/status/22/fcitx-shuangpin.svg share/icons/breeze/status/22/fcitx-sunpinyin.svg share/icons/breeze/status/22/fcitx-wubi.svg share/icons/breeze/status/22/firewall-applet-error.svg share/icons/breeze/status/22/firewall-applet-panic.svg share/icons/breeze/status/22/firewall-applet-shields_up.svg share/icons/breeze/status/22/firewall-applet.svg share/icons/breeze/status/22/flameshot-tray.svg share/icons/breeze/status/22/haguichi-connected.svg share/icons/breeze/status/22/haguichi-connecting-1.svg share/icons/breeze/status/22/haguichi-connecting-2.svg share/icons/breeze/status/22/haguichi-connecting-3.svg share/icons/breeze/status/22/haguichi-disconnected.svg share/icons/breeze/status/22/image-missing.svg share/icons/breeze/status/22/input-caps-on.svg share/icons/breeze/status/22/input-keyboard-virtual-off.svg share/icons/breeze/status/22/input-keyboard-virtual-on.svg share/icons/breeze/status/22/input-touchpad-off.svg share/icons/breeze/status/22/input-touchpad-on.svg share/icons/breeze/status/22/install.svg share/icons/breeze/status/22/irc-channel-joined.svg share/icons/breeze/status/22/irc-channel-parted.svg share/icons/breeze/status/22/kdeconnect-tray.svg share/icons/breeze/status/22/media-playback-paused.svg share/icons/breeze/status/22/media-playback-playing.svg share/icons/breeze/status/22/media-playback-stopped.svg share/icons/breeze/status/22/meeting-organizer.svg share/icons/breeze/status/22/mic-off.svg share/icons/breeze/status/22/mic-on.svg share/icons/breeze/status/22/mic-ready.svg share/icons/breeze/status/22/microphone-sensitivity-high.svg share/icons/breeze/status/22/microphone-sensitivity-low.svg share/icons/breeze/status/22/microphone-sensitivity-medium.svg share/icons/breeze/status/22/microphone-sensitivity-muted.svg share/icons/breeze/status/22/network-bluetooth-activated-locked.svg share/icons/breeze/status/22/network-bluetooth-activated.svg share/icons/breeze/status/22/network-bluetooth.svg share/icons/breeze/status/22/network-flightmode-off.svg share/icons/breeze/status/22/network-flightmode-on.svg share/icons/breeze/status/22/network-limited.svg share/icons/breeze/status/22/network-mobile-0-edge-locked.svg share/icons/breeze/status/22/network-mobile-0-edge.svg share/icons/breeze/status/22/network-mobile-0-gprs-locked.svg share/icons/breeze/status/22/network-mobile-0-gprs.svg share/icons/breeze/status/22/network-mobile-0-hsdpa-locked.svg share/icons/breeze/status/22/network-mobile-0-hsdpa.svg share/icons/breeze/status/22/network-mobile-0-hspa-locked.svg share/icons/breeze/status/22/network-mobile-0-hspa.svg share/icons/breeze/status/22/network-mobile-0-hsupa-locked.svg share/icons/breeze/status/22/network-mobile-0-hsupa.svg share/icons/breeze/status/22/network-mobile-0-locked.svg share/icons/breeze/status/22/network-mobile-0-lte-locked.svg share/icons/breeze/status/22/network-mobile-0-lte.svg share/icons/breeze/status/22/network-mobile-0-umts-locked.svg share/icons/breeze/status/22/network-mobile-0-umts.svg share/icons/breeze/status/22/network-mobile-0.svg share/icons/breeze/status/22/network-mobile-100-edge-locked.svg share/icons/breeze/status/22/network-mobile-100-edge.svg share/icons/breeze/status/22/network-mobile-100-gprs-locked.svg share/icons/breeze/status/22/network-mobile-100-gprs.svg share/icons/breeze/status/22/network-mobile-100-hsdpa-locked.svg share/icons/breeze/status/22/network-mobile-100-hsdpa.svg share/icons/breeze/status/22/network-mobile-100-hspa-locked.svg share/icons/breeze/status/22/network-mobile-100-hspa.svg share/icons/breeze/status/22/network-mobile-100-hsupa-locked.svg share/icons/breeze/status/22/network-mobile-100-hsupa.svg share/icons/breeze/status/22/network-mobile-100-locked.svg share/icons/breeze/status/22/network-mobile-100-lte-locked.svg share/icons/breeze/status/22/network-mobile-100-lte.svg share/icons/breeze/status/22/network-mobile-100-umts-locked.svg share/icons/breeze/status/22/network-mobile-100-umts.svg share/icons/breeze/status/22/network-mobile-100.svg share/icons/breeze/status/22/network-mobile-20-edge-locked.svg share/icons/breeze/status/22/network-mobile-20-edge.svg share/icons/breeze/status/22/network-mobile-20-gprs-locked.svg share/icons/breeze/status/22/network-mobile-20-gprs.svg share/icons/breeze/status/22/network-mobile-20-hsdpa-locked.svg share/icons/breeze/status/22/network-mobile-20-hsdpa.svg share/icons/breeze/status/22/network-mobile-20-hspa-locked.svg share/icons/breeze/status/22/network-mobile-20-hspa.svg share/icons/breeze/status/22/network-mobile-20-hsupa-locked.svg share/icons/breeze/status/22/network-mobile-20-hsupa.svg share/icons/breeze/status/22/network-mobile-20-locked.svg share/icons/breeze/status/22/network-mobile-20-lte-locked.svg share/icons/breeze/status/22/network-mobile-20-lte.svg share/icons/breeze/status/22/network-mobile-20-umts-locked.svg share/icons/breeze/status/22/network-mobile-20-umts.svg share/icons/breeze/status/22/network-mobile-20.svg share/icons/breeze/status/22/network-mobile-40-edge-locked.svg share/icons/breeze/status/22/network-mobile-40-edge.svg share/icons/breeze/status/22/network-mobile-40-gprs-locked.svg share/icons/breeze/status/22/network-mobile-40-gprs.svg share/icons/breeze/status/22/network-mobile-40-hsdpa-locked.svg share/icons/breeze/status/22/network-mobile-40-hsdpa.svg share/icons/breeze/status/22/network-mobile-40-hspa-locked.svg share/icons/breeze/status/22/network-mobile-40-hspa.svg share/icons/breeze/status/22/network-mobile-40-hsupa-locked.svg share/icons/breeze/status/22/network-mobile-40-hsupa.svg share/icons/breeze/status/22/network-mobile-40-locked.svg share/icons/breeze/status/22/network-mobile-40-lte-locked.svg share/icons/breeze/status/22/network-mobile-40-lte.svg share/icons/breeze/status/22/network-mobile-40-umts-locked.svg share/icons/breeze/status/22/network-mobile-40-umts.svg share/icons/breeze/status/22/network-mobile-40.svg share/icons/breeze/status/22/network-mobile-60-edge-locked.svg share/icons/breeze/status/22/network-mobile-60-edge.svg share/icons/breeze/status/22/network-mobile-60-gprs-locked.svg share/icons/breeze/status/22/network-mobile-60-gprs.svg share/icons/breeze/status/22/network-mobile-60-hsdpa-locked.svg share/icons/breeze/status/22/network-mobile-60-hsdpa.svg share/icons/breeze/status/22/network-mobile-60-hspa-locked.svg share/icons/breeze/status/22/network-mobile-60-hspa.svg share/icons/breeze/status/22/network-mobile-60-hsupa-locked.svg share/icons/breeze/status/22/network-mobile-60-hsupa.svg share/icons/breeze/status/22/network-mobile-60-locked.svg share/icons/breeze/status/22/network-mobile-60-lte-locked.svg share/icons/breeze/status/22/network-mobile-60-lte.svg share/icons/breeze/status/22/network-mobile-60-umts-locked.svg share/icons/breeze/status/22/network-mobile-60-umts.svg share/icons/breeze/status/22/network-mobile-60.svg share/icons/breeze/status/22/network-mobile-80-edge-locked.svg share/icons/breeze/status/22/network-mobile-80-edge.svg share/icons/breeze/status/22/network-mobile-80-gprs-locked.svg share/icons/breeze/status/22/network-mobile-80-gprs.svg share/icons/breeze/status/22/network-mobile-80-hsdpa-locked.svg share/icons/breeze/status/22/network-mobile-80-hsdpa.svg share/icons/breeze/status/22/network-mobile-80-hspa-locked.svg share/icons/breeze/status/22/network-mobile-80-hspa.svg share/icons/breeze/status/22/network-mobile-80-hsupa-locked.svg share/icons/breeze/status/22/network-mobile-80-hsupa.svg share/icons/breeze/status/22/network-mobile-80-locked.svg share/icons/breeze/status/22/network-mobile-80-lte-locked.svg share/icons/breeze/status/22/network-mobile-80-lte.svg share/icons/breeze/status/22/network-mobile-80-umts-locked.svg share/icons/breeze/status/22/network-mobile-80-umts.svg share/icons/breeze/status/22/network-mobile-80.svg share/icons/breeze/status/22/network-mobile-available.svg share/icons/breeze/status/22/network-mobile-off.svg share/icons/breeze/status/22/network-mobile-on.svg share/icons/breeze/status/22/network-offline.svg share/icons/breeze/status/22/network-wired-activated.svg share/icons/breeze/status/22/network-wired-disconnected.svg share/icons/breeze/status/22/network-wired-unavailable.svg share/icons/breeze/status/22/network-wireless-acquiring.svg share/icons/breeze/status/22/network-wireless-connected-00.svg share/icons/breeze/status/22/network-wireless-connected-100.svg share/icons/breeze/status/22/network-wireless-connected-25.svg share/icons/breeze/status/22/network-wireless-connected-50.svg share/icons/breeze/status/22/network-wireless-connected-75.svg share/icons/breeze/status/22/network-wireless-disconnected.svg share/icons/breeze/status/22/network-wireless-signal-excellent.svg share/icons/breeze/status/22/network-wireless-signal-good.svg share/icons/breeze/status/22/network-wireless-signal-none.svg share/icons/breeze/status/22/network-wireless-signal-ok.svg share/icons/breeze/status/22/network-wireless-signal-weak.svg share/icons/breeze/status/22/nm-device-wired.svg share/icons/breeze/status/22/nm-nm-signal-00.svg share/icons/breeze/status/22/nm-nm-signal-100.svg share/icons/breeze/status/22/nm-nm-signal-25.svg share/icons/breeze/status/22/nm-nm-signal-50.svg share/icons/breeze/status/22/nm-nm-signal-75.svg share/icons/breeze/status/22/nm-no-connection.svg share/icons/breeze/status/22/redshift-status-off.svg share/icons/breeze/status/22/redshift-status-on.svg share/icons/breeze/status/22/rotation-allowed.svg share/icons/breeze/status/22/rotation-locked-landscape.svg share/icons/breeze/status/22/rotation-locked-portrait.svg share/icons/breeze/status/22/script-error.svg share/icons/breeze/status/22/security-high.svg share/icons/breeze/status/22/security-low.svg share/icons/breeze/status/22/security-medium.svg share/icons/breeze/status/22/state-download.svg share/icons/breeze/status/22/state-error.svg share/icons/breeze/status/22/state-information.svg share/icons/breeze/status/22/state-offline.svg share/icons/breeze/status/22/state-ok.svg share/icons/breeze/status/22/state-pause.svg share/icons/breeze/status/22/state-sync.svg share/icons/breeze/status/22/state-warning.svg share/icons/breeze/status/22/task-complete.svg share/icons/breeze/status/22/task-process-0.svg share/icons/breeze/status/22/task-process-1.svg share/icons/breeze/status/22/task-process-2.svg share/icons/breeze/status/22/task-process-3.svg share/icons/breeze/status/22/task-process-4.svg share/icons/breeze/status/22/task-recurring.svg share/icons/breeze/status/22/task-reminder.svg share/icons/breeze/status/22/telegram-attention-panel.svg share/icons/breeze/status/22/telegram-mute-panel.svg share/icons/breeze/status/22/telegram-panel.svg share/icons/breeze/status/22/temperature-cold.svg share/icons/breeze/status/22/temperature-normal.svg share/icons/breeze/status/22/temperature-warm.svg share/icons/breeze/status/22/transmission-tray-icon.svg share/icons/breeze/status/22/uninstall.svg share/icons/breeze/status/22/update-high.svg share/icons/breeze/status/22/update-low.svg share/icons/breeze/status/22/update-medium.svg share/icons/breeze/status/22/update-none.svg share/icons/breeze/status/22/user-available.svg share/icons/breeze/status/22/user-away-extended.svg share/icons/breeze/status/22/user-away.svg share/icons/breeze/status/22/user-busy.svg share/icons/breeze/status/22/user-idle.svg share/icons/breeze/status/22/user-invisible.svg share/icons/breeze/status/22/user-offline.svg share/icons/breeze/status/22/user-online.svg share/icons/breeze/status/22/video-card-inactive.svg share/icons/breeze/status/22@2x share/icons/breeze/status/22@3x share/icons/breeze/status/24/TeamViewer.svg share/icons/breeze/status/24/appointment-recurring.svg share/icons/breeze/status/24/appointment-reminder.svg share/icons/breeze/status/24/audio-off.svg share/icons/breeze/status/24/audio-on.svg share/icons/breeze/status/24/audio-ready.svg share/icons/breeze/status/24/audio-volume-high.svg share/icons/breeze/status/24/audio-volume-low.svg share/icons/breeze/status/24/audio-volume-medium.svg share/icons/breeze/status/24/audio-volume-muted.svg share/icons/breeze/status/24/auth-sim-locked.svg share/icons/breeze/status/24/auth-sim-missing.svg share/icons/breeze/status/24/battery-000-charging.svg share/icons/breeze/status/24/battery-000.svg share/icons/breeze/status/24/battery-010-charging.svg share/icons/breeze/status/24/battery-010.svg share/icons/breeze/status/24/battery-020-charging.svg share/icons/breeze/status/24/battery-020.svg share/icons/breeze/status/24/battery-030-charging.svg share/icons/breeze/status/24/battery-030.svg share/icons/breeze/status/24/battery-040-charging.svg share/icons/breeze/status/24/battery-040.svg share/icons/breeze/status/24/battery-050-charging.svg share/icons/breeze/status/24/battery-050.svg share/icons/breeze/status/24/battery-060-charging.svg share/icons/breeze/status/24/battery-060.svg share/icons/breeze/status/24/battery-070-charging.svg share/icons/breeze/status/24/battery-070.svg share/icons/breeze/status/24/battery-080-charging.svg share/icons/breeze/status/24/battery-080.svg share/icons/breeze/status/24/battery-090-charging.svg share/icons/breeze/status/24/battery-090.svg share/icons/breeze/status/24/battery-100-charging.svg share/icons/breeze/status/24/battery-100.svg share/icons/breeze/status/24/battery-caution-charging.svg share/icons/breeze/status/24/battery-caution.svg share/icons/breeze/status/24/battery-empty-charging.svg share/icons/breeze/status/24/battery-empty.svg share/icons/breeze/status/24/battery-full-charging.svg share/icons/breeze/status/24/battery-full.svg share/icons/breeze/status/24/battery-good-charging.svg share/icons/breeze/status/24/battery-good.svg share/icons/breeze/status/24/battery-low-charging.svg share/icons/breeze/status/24/battery-low.svg share/icons/breeze/status/24/battery-missing.svg share/icons/breeze/status/24/call-incoming.svg share/icons/breeze/status/24/call-missed.svg share/icons/breeze/status/24/call-outgoing.svg share/icons/breeze/status/24/camera-off.svg share/icons/breeze/status/24/camera-on.svg share/icons/breeze/status/24/camera-ready.svg share/icons/breeze/status/24/cloudstatus.svg share/icons/breeze/status/24/com.github.ztefn.haguichi-connected.svg share/icons/breeze/status/24/com.github.ztefn.haguichi-connecting-1.svg share/icons/breeze/status/24/com.github.ztefn.haguichi-connecting-2.svg share/icons/breeze/status/24/com.github.ztefn.haguichi-connecting-3.svg share/icons/breeze/status/24/com.github.ztefn.haguichi-disconnected.svg share/icons/breeze/status/24/data-error.svg share/icons/breeze/status/24/data-information.svg +share/icons/breeze/status/24/data-success.svg share/icons/breeze/status/24/data-warning.svg share/icons/breeze/status/24/dialog-error.svg share/icons/breeze/status/24/dialog-information.svg share/icons/breeze/status/24/dialog-password.svg share/icons/breeze/status/24/dialog-positive.svg share/icons/breeze/status/24/dialog-question.svg share/icons/breeze/status/24/dialog-warning.svg share/icons/breeze/status/24/disk-quota-critical.svg share/icons/breeze/status/24/disk-quota-high.svg share/icons/breeze/status/24/disk-quota-low.svg share/icons/breeze/status/24/disk-quota.svg share/icons/breeze/status/24/dropboxstatus-busy.svg share/icons/breeze/status/24/dropboxstatus-busy2.svg share/icons/breeze/status/24/dropboxstatus-idle.svg share/icons/breeze/status/24/dropboxstatus-logo.svg share/icons/breeze/status/24/dropboxstatus-x.svg share/icons/breeze/status/24/fcitx-googlepinyin.svg share/icons/breeze/status/24/fcitx-pinyin-libpinyin.svg share/icons/breeze/status/24/fcitx-pinyin.svg share/icons/breeze/status/24/fcitx-shuangpin-libpinyin.svg share/icons/breeze/status/24/fcitx-shuangpin.svg share/icons/breeze/status/24/fcitx-sunpinyin.svg share/icons/breeze/status/24/fcitx-wubi.svg share/icons/breeze/status/24/firewall-applet-error.svg share/icons/breeze/status/24/firewall-applet-panic.svg share/icons/breeze/status/24/firewall-applet-shields_up.svg share/icons/breeze/status/24/firewall-applet.svg share/icons/breeze/status/24/flameshot-tray.svg share/icons/breeze/status/24/haguichi-connected.svg share/icons/breeze/status/24/haguichi-connecting-1.svg share/icons/breeze/status/24/haguichi-connecting-2.svg share/icons/breeze/status/24/haguichi-connecting-3.svg share/icons/breeze/status/24/haguichi-disconnected.svg share/icons/breeze/status/24/image-missing.svg share/icons/breeze/status/24/input-caps-on.svg share/icons/breeze/status/24/input-keyboard-virtual-off.svg share/icons/breeze/status/24/input-keyboard-virtual-on.svg share/icons/breeze/status/24/input-touchpad-off.svg share/icons/breeze/status/24/input-touchpad-on.svg share/icons/breeze/status/24/install.svg share/icons/breeze/status/24/irc-channel-joined.svg share/icons/breeze/status/24/irc-channel-parted.svg share/icons/breeze/status/24/kdeconnect-tray.svg share/icons/breeze/status/24/media-playback-paused.svg share/icons/breeze/status/24/media-playback-playing.svg share/icons/breeze/status/24/media-playback-stopped.svg share/icons/breeze/status/24/meeting-organizer.svg share/icons/breeze/status/24/mic-off.svg share/icons/breeze/status/24/mic-on.svg share/icons/breeze/status/24/mic-ready.svg share/icons/breeze/status/24/microphone-sensitivity-high.svg share/icons/breeze/status/24/microphone-sensitivity-low.svg share/icons/breeze/status/24/microphone-sensitivity-medium.svg share/icons/breeze/status/24/microphone-sensitivity-muted.svg share/icons/breeze/status/24/network-bluetooth-activated-locked.svg share/icons/breeze/status/24/network-bluetooth-activated.svg share/icons/breeze/status/24/network-bluetooth.svg share/icons/breeze/status/24/network-flightmode-off.svg share/icons/breeze/status/24/network-flightmode-on.svg share/icons/breeze/status/24/network-limited.svg share/icons/breeze/status/24/network-mobile-0-edge-locked.svg share/icons/breeze/status/24/network-mobile-0-edge.svg share/icons/breeze/status/24/network-mobile-0-gprs-locked.svg share/icons/breeze/status/24/network-mobile-0-gprs.svg share/icons/breeze/status/24/network-mobile-0-hsdpa-locked.svg share/icons/breeze/status/24/network-mobile-0-hsdpa.svg share/icons/breeze/status/24/network-mobile-0-hspa-locked.svg share/icons/breeze/status/24/network-mobile-0-hspa.svg share/icons/breeze/status/24/network-mobile-0-hsupa-locked.svg share/icons/breeze/status/24/network-mobile-0-hsupa.svg share/icons/breeze/status/24/network-mobile-0-locked.svg share/icons/breeze/status/24/network-mobile-0-lte-locked.svg share/icons/breeze/status/24/network-mobile-0-lte.svg share/icons/breeze/status/24/network-mobile-0-umts-locked.svg share/icons/breeze/status/24/network-mobile-0-umts.svg share/icons/breeze/status/24/network-mobile-0.svg share/icons/breeze/status/24/network-mobile-100-edge-locked.svg share/icons/breeze/status/24/network-mobile-100-edge.svg share/icons/breeze/status/24/network-mobile-100-gprs-locked.svg share/icons/breeze/status/24/network-mobile-100-gprs.svg share/icons/breeze/status/24/network-mobile-100-hsdpa-locked.svg share/icons/breeze/status/24/network-mobile-100-hsdpa.svg share/icons/breeze/status/24/network-mobile-100-hspa-locked.svg share/icons/breeze/status/24/network-mobile-100-hspa.svg share/icons/breeze/status/24/network-mobile-100-hsupa-locked.svg share/icons/breeze/status/24/network-mobile-100-hsupa.svg share/icons/breeze/status/24/network-mobile-100-locked.svg share/icons/breeze/status/24/network-mobile-100-lte-locked.svg share/icons/breeze/status/24/network-mobile-100-lte.svg share/icons/breeze/status/24/network-mobile-100-umts-locked.svg share/icons/breeze/status/24/network-mobile-100-umts.svg share/icons/breeze/status/24/network-mobile-100.svg share/icons/breeze/status/24/network-mobile-20-edge-locked.svg share/icons/breeze/status/24/network-mobile-20-edge.svg share/icons/breeze/status/24/network-mobile-20-gprs-locked.svg share/icons/breeze/status/24/network-mobile-20-gprs.svg share/icons/breeze/status/24/network-mobile-20-hsdpa-locked.svg share/icons/breeze/status/24/network-mobile-20-hsdpa.svg share/icons/breeze/status/24/network-mobile-20-hspa-locked.svg share/icons/breeze/status/24/network-mobile-20-hspa.svg share/icons/breeze/status/24/network-mobile-20-hsupa-locked.svg share/icons/breeze/status/24/network-mobile-20-hsupa.svg share/icons/breeze/status/24/network-mobile-20-locked.svg share/icons/breeze/status/24/network-mobile-20-lte-locked.svg share/icons/breeze/status/24/network-mobile-20-lte.svg share/icons/breeze/status/24/network-mobile-20-umts-locked.svg share/icons/breeze/status/24/network-mobile-20-umts.svg share/icons/breeze/status/24/network-mobile-20.svg share/icons/breeze/status/24/network-mobile-40-edge-locked.svg share/icons/breeze/status/24/network-mobile-40-edge.svg share/icons/breeze/status/24/network-mobile-40-gprs-locked.svg share/icons/breeze/status/24/network-mobile-40-gprs.svg share/icons/breeze/status/24/network-mobile-40-hsdpa-locked.svg share/icons/breeze/status/24/network-mobile-40-hsdpa.svg share/icons/breeze/status/24/network-mobile-40-hspa-locked.svg share/icons/breeze/status/24/network-mobile-40-hspa.svg share/icons/breeze/status/24/network-mobile-40-hsupa-locked.svg share/icons/breeze/status/24/network-mobile-40-hsupa.svg share/icons/breeze/status/24/network-mobile-40-locked.svg share/icons/breeze/status/24/network-mobile-40-lte-locked.svg share/icons/breeze/status/24/network-mobile-40-lte.svg share/icons/breeze/status/24/network-mobile-40-umts-locked.svg share/icons/breeze/status/24/network-mobile-40-umts.svg share/icons/breeze/status/24/network-mobile-40.svg share/icons/breeze/status/24/network-mobile-60-edge-locked.svg share/icons/breeze/status/24/network-mobile-60-edge.svg share/icons/breeze/status/24/network-mobile-60-gprs-locked.svg share/icons/breeze/status/24/network-mobile-60-gprs.svg share/icons/breeze/status/24/network-mobile-60-hsdpa-locked.svg share/icons/breeze/status/24/network-mobile-60-hsdpa.svg share/icons/breeze/status/24/network-mobile-60-hspa-locked.svg share/icons/breeze/status/24/network-mobile-60-hspa.svg share/icons/breeze/status/24/network-mobile-60-hsupa-locked.svg share/icons/breeze/status/24/network-mobile-60-hsupa.svg share/icons/breeze/status/24/network-mobile-60-locked.svg share/icons/breeze/status/24/network-mobile-60-lte-locked.svg share/icons/breeze/status/24/network-mobile-60-lte.svg share/icons/breeze/status/24/network-mobile-60-umts-locked.svg share/icons/breeze/status/24/network-mobile-60-umts.svg share/icons/breeze/status/24/network-mobile-60.svg share/icons/breeze/status/24/network-mobile-80-edge-locked.svg share/icons/breeze/status/24/network-mobile-80-edge.svg share/icons/breeze/status/24/network-mobile-80-gprs-locked.svg share/icons/breeze/status/24/network-mobile-80-gprs.svg share/icons/breeze/status/24/network-mobile-80-hsdpa-locked.svg share/icons/breeze/status/24/network-mobile-80-hsdpa.svg share/icons/breeze/status/24/network-mobile-80-hspa-locked.svg share/icons/breeze/status/24/network-mobile-80-hspa.svg share/icons/breeze/status/24/network-mobile-80-hsupa-locked.svg share/icons/breeze/status/24/network-mobile-80-hsupa.svg share/icons/breeze/status/24/network-mobile-80-locked.svg share/icons/breeze/status/24/network-mobile-80-lte-locked.svg share/icons/breeze/status/24/network-mobile-80-lte.svg share/icons/breeze/status/24/network-mobile-80-umts-locked.svg share/icons/breeze/status/24/network-mobile-80-umts.svg share/icons/breeze/status/24/network-mobile-80.svg share/icons/breeze/status/24/network-mobile-available.svg share/icons/breeze/status/24/network-mobile-off.svg share/icons/breeze/status/24/network-mobile-on.svg share/icons/breeze/status/24/network-offline.svg share/icons/breeze/status/24/network-wired-activated.svg share/icons/breeze/status/24/network-wired-disconnected.svg share/icons/breeze/status/24/network-wired-unavailable.svg share/icons/breeze/status/24/network-wireless-acquiring.svg share/icons/breeze/status/24/network-wireless-connected-00.svg share/icons/breeze/status/24/network-wireless-connected-100.svg share/icons/breeze/status/24/network-wireless-connected-25.svg share/icons/breeze/status/24/network-wireless-connected-50.svg share/icons/breeze/status/24/network-wireless-connected-75.svg share/icons/breeze/status/24/network-wireless-disconnected.svg share/icons/breeze/status/24/network-wireless-signal-excellent.svg share/icons/breeze/status/24/network-wireless-signal-good.svg share/icons/breeze/status/24/network-wireless-signal-none.svg share/icons/breeze/status/24/network-wireless-signal-ok.svg share/icons/breeze/status/24/network-wireless-signal-weak.svg share/icons/breeze/status/24/nm-device-wired.svg share/icons/breeze/status/24/nm-nm-signal-00.svg share/icons/breeze/status/24/nm-nm-signal-100.svg share/icons/breeze/status/24/nm-nm-signal-25.svg share/icons/breeze/status/24/nm-nm-signal-50.svg share/icons/breeze/status/24/nm-nm-signal-75.svg share/icons/breeze/status/24/nm-no-connection.svg share/icons/breeze/status/24/redshift-status-off.svg share/icons/breeze/status/24/redshift-status-on.svg share/icons/breeze/status/24/rotation-allowed.svg share/icons/breeze/status/24/rotation-locked-landscape.svg share/icons/breeze/status/24/rotation-locked-portrait.svg share/icons/breeze/status/24/script-error.svg share/icons/breeze/status/24/security-high.svg share/icons/breeze/status/24/security-low.svg share/icons/breeze/status/24/security-medium.svg share/icons/breeze/status/24/state-download.svg share/icons/breeze/status/24/state-error.svg share/icons/breeze/status/24/state-information.svg share/icons/breeze/status/24/state-offline.svg share/icons/breeze/status/24/state-ok.svg share/icons/breeze/status/24/state-pause.svg share/icons/breeze/status/24/state-sync.svg share/icons/breeze/status/24/state-warning.svg share/icons/breeze/status/24/task-complete.svg share/icons/breeze/status/24/task-process-0.svg share/icons/breeze/status/24/task-process-1.svg share/icons/breeze/status/24/task-process-2.svg share/icons/breeze/status/24/task-process-3.svg share/icons/breeze/status/24/task-process-4.svg share/icons/breeze/status/24/task-recurring.svg share/icons/breeze/status/24/task-reminder.svg share/icons/breeze/status/24/telegram-attention-panel.svg share/icons/breeze/status/24/telegram-mute-panel.svg share/icons/breeze/status/24/telegram-panel.svg share/icons/breeze/status/24/temperature-cold.svg share/icons/breeze/status/24/temperature-normal.svg share/icons/breeze/status/24/temperature-warm.svg share/icons/breeze/status/24/transmission-tray-icon.svg share/icons/breeze/status/24/uninstall.svg share/icons/breeze/status/24/update-high.svg share/icons/breeze/status/24/update-low.svg share/icons/breeze/status/24/update-medium.svg share/icons/breeze/status/24/update-none.svg share/icons/breeze/status/24/user-available.svg share/icons/breeze/status/24/user-away-extended.svg share/icons/breeze/status/24/user-away.svg share/icons/breeze/status/24/user-busy.svg share/icons/breeze/status/24/user-idle.svg share/icons/breeze/status/24/user-invisible.svg share/icons/breeze/status/24/user-offline.svg share/icons/breeze/status/24/user-online.svg share/icons/breeze/status/24/video-card-inactive.svg share/icons/breeze/status/24@2x share/icons/breeze/status/24@3x share/icons/breeze/status/32/appointment-recurring.svg share/icons/breeze/status/32/battery-000-charging.svg share/icons/breeze/status/32/battery-000.svg share/icons/breeze/status/32/battery-010-charging.svg share/icons/breeze/status/32/battery-010.svg share/icons/breeze/status/32/battery-020-charging.svg share/icons/breeze/status/32/battery-020.svg share/icons/breeze/status/32/battery-030-charging.svg share/icons/breeze/status/32/battery-030.svg share/icons/breeze/status/32/battery-040-charging.svg share/icons/breeze/status/32/battery-040.svg share/icons/breeze/status/32/battery-050-charging.svg share/icons/breeze/status/32/battery-050.svg share/icons/breeze/status/32/battery-060-charging.svg share/icons/breeze/status/32/battery-060.svg share/icons/breeze/status/32/battery-070-charging.svg share/icons/breeze/status/32/battery-070.svg share/icons/breeze/status/32/battery-080-charging.svg share/icons/breeze/status/32/battery-080.svg share/icons/breeze/status/32/battery-090-charging.svg share/icons/breeze/status/32/battery-090.svg share/icons/breeze/status/32/battery-100-charging.svg share/icons/breeze/status/32/battery-100.svg share/icons/breeze/status/32/battery-caution-charging.svg share/icons/breeze/status/32/battery-caution.svg share/icons/breeze/status/32/battery-empty-charging.svg share/icons/breeze/status/32/battery-empty.svg share/icons/breeze/status/32/battery-full-charging.svg share/icons/breeze/status/32/battery-full.svg share/icons/breeze/status/32/battery-good-charging.svg share/icons/breeze/status/32/battery-good.svg share/icons/breeze/status/32/battery-low-charging.svg share/icons/breeze/status/32/battery-low.svg share/icons/breeze/status/32/battery-missing.svg share/icons/breeze/status/32/call-incoming.svg share/icons/breeze/status/32/call-missed.svg share/icons/breeze/status/32/call-outgoing.svg share/icons/breeze/status/32/dialog-warning.svg share/icons/breeze/status/32/rotation-allowed.svg share/icons/breeze/status/32/rotation-locked-landscape.svg share/icons/breeze/status/32/rotation-locked-portrait.svg share/icons/breeze/status/32/task-recurring.svg share/icons/breeze/status/48/dialog-warning.svg share/icons/breeze/status/64/dialog-error.svg share/icons/breeze/status/64/dialog-information.svg share/icons/breeze/status/64/dialog-password.svg share/icons/breeze/status/64/dialog-positive.svg share/icons/breeze/status/64/dialog-question.svg share/icons/breeze/status/64/dialog-warning.svg share/icons/breeze/status/64/image-missing.svg share/icons/breeze/status/64/security-high.svg share/icons/breeze/status/64/security-low.svg share/icons/breeze/status/64/security-medium.svg share/icons/breeze/status/symbolic/alarm-symbolic.svg share/icons/breeze/status/symbolic/appointment-missed-symbolic.svg share/icons/breeze/status/symbolic/appointment-soon-symbolic.svg share/icons/breeze/status/symbolic/audio-volume-high-symbolic.svg share/icons/breeze/status/symbolic/audio-volume-low-symbolic.svg share/icons/breeze/status/symbolic/audio-volume-medium-symbolic.svg share/icons/breeze/status/symbolic/audio-volume-muted-symbolic.svg share/icons/breeze/status/symbolic/auth-sim-locked-symbolic.svg share/icons/breeze/status/symbolic/auth-sim-missing-symbolic.svg share/icons/breeze/status/symbolic/avatar-default-symbolic.svg share/icons/breeze/status/symbolic/battery-caution-charging-symbolic.svg share/icons/breeze/status/symbolic/battery-caution-symbolic.svg share/icons/breeze/status/symbolic/battery-empty-charging-symbolic.svg share/icons/breeze/status/symbolic/battery-empty-symbolic.svg share/icons/breeze/status/symbolic/battery-full-charged-symbolic.svg share/icons/breeze/status/symbolic/battery-full-charging-symbolic.svg share/icons/breeze/status/symbolic/battery-full-symbolic.svg share/icons/breeze/status/symbolic/battery-good-charging-symbolic.svg share/icons/breeze/status/symbolic/battery-good-symbolic.svg share/icons/breeze/status/symbolic/battery-low-charging-symbolic.svg share/icons/breeze/status/symbolic/battery-low-symbolic.svg share/icons/breeze/status/symbolic/battery-missing-symbolic.svg share/icons/breeze/status/symbolic/call-incoming-symbolic.svg share/icons/breeze/status/symbolic/call-missed-symbolic.svg share/icons/breeze/status/symbolic/call-outgoing-symbolic.svg share/icons/breeze/status/symbolic/changes-allow-symbolic.svg share/icons/breeze/status/symbolic/changes-prevent-symbolic.svg share/icons/breeze/status/symbolic/channel-insecure-symbolic.svg share/icons/breeze/status/symbolic/channel-secure-symbolic.svg share/icons/breeze/status/symbolic/computer-fail-symbolic.svg share/icons/breeze/status/symbolic/content-loading-symbolic.svg share/icons/breeze/status/symbolic/dialog-error-symbolic.svg share/icons/breeze/status/symbolic/dialog-warning-symbolic.svg share/icons/breeze/status/symbolic/folder-open-symbolic.svg share/icons/breeze/status/symbolic/image-loading-symbolic.svg share/icons/breeze/status/symbolic/mail-attachment-symbolic.svg share/icons/breeze/status/symbolic/mail-read-symbolic.svg share/icons/breeze/status/symbolic/mail-replied-symbolic.svg share/icons/breeze/status/symbolic/mail-unread-symbolic.svg share/icons/breeze/status/symbolic/media-playlist-consecutive-symbolic-rtl.svg share/icons/breeze/status/symbolic/media-playlist-consecutive-symbolic.svg share/icons/breeze/status/symbolic/media-playlist-repeat-song-symbolic-rtl.svg share/icons/breeze/status/symbolic/media-playlist-repeat-song-symbolic.svg share/icons/breeze/status/symbolic/media-playlist-repeat-symbolic-rtl.svg share/icons/breeze/status/symbolic/media-playlist-repeat-symbolic.svg share/icons/breeze/status/symbolic/media-playlist-shuffle-symbolic-rtl.svg share/icons/breeze/status/symbolic/media-playlist-shuffle-symbolic.svg share/icons/breeze/status/symbolic/microphone-sensitivity-high-symbolic.svg share/icons/breeze/status/symbolic/microphone-sensitivity-low-symbolic.svg share/icons/breeze/status/symbolic/microphone-sensitivity-medium-symbolic.svg share/icons/breeze/status/symbolic/microphone-sensitivity-muted-symbolic.svg share/icons/breeze/status/symbolic/non-starred-symbolic.svg share/icons/breeze/status/symbolic/printer-error-symbolic.svg share/icons/breeze/status/symbolic/printer-printing-symbolic.svg share/icons/breeze/status/symbolic/printer-warning-symbolic.svg share/icons/breeze/status/symbolic/process-working-symbolic.svg share/icons/breeze/status/symbolic/rating-unrated.svg share/icons/breeze/status/symbolic/rotation-allowed-symbolic.svg share/icons/breeze/status/symbolic/rotation-locked-landscape-symbolic.svg share/icons/breeze/status/symbolic/rotation-locked-portrait-symbolic.svg share/icons/breeze/status/symbolic/rotation-locked-symbolic.svg share/icons/breeze/status/symbolic/security-high-symbolic.svg share/icons/breeze/status/symbolic/security-low-symbolic.svg share/icons/breeze/status/symbolic/security-medium-symbolic.svg share/icons/breeze/status/symbolic/semi-starred-symbolic-rtl.svg share/icons/breeze/status/symbolic/semi-starred-symbolic.svg share/icons/breeze/status/symbolic/starred-symbolic.svg share/icons/breeze/status/symbolic/system-lock-screen-symbolic.svg share/icons/breeze/status/symbolic/user-available-symbolic.svg share/icons/breeze/status/symbolic/user-away-symbolic.svg share/icons/breeze/status/symbolic/user-busy-symbolic.svg share/icons/breeze/status/symbolic/user-idle-symbolic.svg share/icons/breeze/status/symbolic/user-invisible-symbolic.svg share/icons/breeze/status/symbolic/user-not-tracked-symbolic.svg share/icons/breeze/status/symbolic/user-offline-symbolic.svg share/icons/breeze/status/symbolic/user-status-pending-symbolic.svg share/icons/breeze/status/symbolic/user-trash-full-symbolic.svg share/icons/breeze/status/symbolic/view-wrapped-symbolic-rtl.svg share/icons/breeze/status/symbolic/view-wrapped-symbolic.svg @dir share/icons/breeze-dark/animations/24 @dir share/icons/breeze/animations/24 @dir share/icons/breeze/emotes/24 diff --git a/x11-themes/kf5-kemoticons/distinfo b/x11-themes/kf5-kemoticons/distinfo index d6d085c81c04..9c11d4ef62f3 100644 --- a/x11-themes/kf5-kemoticons/distinfo +++ b/x11-themes/kf5-kemoticons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689151 -SHA256 (KDE/frameworks/5.99.0/kemoticons-5.99.0.tar.xz) = da6b220402c39636552aacb5f6c5cef667de6eab335aaedd218cc5c4c9d530ba -SIZE (KDE/frameworks/5.99.0/kemoticons-5.99.0.tar.xz) = 1700772 +TIMESTAMP = 1667804678 +SHA256 (KDE/frameworks/5.100.0/kemoticons-5.100.0.tar.xz) = c4137f696f5a5d98d404088cd86828cc783f93296022e0e98655d2c078e14563 +SIZE (KDE/frameworks/5.100.0/kemoticons-5.100.0.tar.xz) = 1700560 diff --git a/x11-themes/kf5-kiconthemes/distinfo b/x11-themes/kf5-kiconthemes/distinfo index 0f62a2fde78a..46419f45a75c 100644 --- a/x11-themes/kf5-kiconthemes/distinfo +++ b/x11-themes/kf5-kiconthemes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689152 -SHA256 (KDE/frameworks/5.99.0/kiconthemes-5.99.0.tar.xz) = a426ca5327997c136ca384306a751e6cf25245de237e09ce45cc680032073a05 -SIZE (KDE/frameworks/5.99.0/kiconthemes-5.99.0.tar.xz) = 228496 +TIMESTAMP = 1667804679 +SHA256 (KDE/frameworks/5.100.0/kiconthemes-5.100.0.tar.xz) = 902ecc3b61e7492d62a1a5fb6c9493a72507ade5d312c6633ce508b0437850b9 +SIZE (KDE/frameworks/5.100.0/kiconthemes-5.100.0.tar.xz) = 1330836 diff --git a/x11-themes/kf5-kiconthemes/pkg-plist b/x11-themes/kf5-kiconthemes/pkg-plist index af7eb0f0b7d6..ef964a9727a7 100644 --- a/x11-themes/kf5-kiconthemes/pkg-plist +++ b/x11-themes/kf5-kiconthemes/pkg-plist @@ -1,118 +1,117 @@ bin/kiconfinder5 include/KF5/KIconThemes/KIconButton include/KF5/KIconThemes/KIconColors include/KF5/KIconThemes/KIconDialog include/KF5/KIconThemes/KIconEffect include/KF5/KIconThemes/KIconEngine include/KF5/KIconThemes/KIconLoader include/KF5/KIconThemes/KIconTheme include/KF5/KIconThemes/KQuickIconProvider include/KF5/KIconThemes/kiconbutton.h include/KF5/KIconThemes/kiconcolors.h include/KF5/KIconThemes/kicondialog.h include/KF5/KIconThemes/kiconeffect.h include/KF5/KIconThemes/kiconengine.h include/KF5/KIconThemes/kiconloader.h include/KF5/KIconThemes/kicontheme.h include/KF5/KIconThemes/kiconthemes_export.h include/KF5/KIconThemes/kiconthemes_version.h include/KF5/KIconThemes/kquickiconprovider.h lib/cmake/KF5IconThemes/KF5IconThemesConfig.cmake lib/cmake/KF5IconThemes/KF5IconThemesConfigVersion.cmake lib/cmake/KF5IconThemes/KF5IconThemesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5IconThemes/KF5IconThemesTargets.cmake lib/libKF5IconThemes.so lib/libKF5IconThemes.so.5 lib/libKF5IconThemes.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KIconThemes.pri %%QT_PLUGINDIR%%/designer/kiconthemes5widgets.so %%QT_PLUGINDIR%%/iconengines/KIconEnginePlugin.so share/locale/af/LC_MESSAGES/kiconthemes5.mo share/locale/ar/LC_MESSAGES/kiconthemes5.mo -share/locale/ast/LC_MESSAGES/kiconthemes5.mo share/locale/az/LC_MESSAGES/kiconthemes5.mo share/locale/be/LC_MESSAGES/kiconthemes5.mo share/locale/be@latin/LC_MESSAGES/kiconthemes5.mo share/locale/bg/LC_MESSAGES/kiconthemes5.mo share/locale/bn/LC_MESSAGES/kiconthemes5.mo share/locale/br/LC_MESSAGES/kiconthemes5.mo share/locale/bs/LC_MESSAGES/kiconthemes5.mo share/locale/ca/LC_MESSAGES/kiconthemes5.mo share/locale/ca@valencia/LC_MESSAGES/kiconthemes5.mo share/locale/cs/LC_MESSAGES/kiconthemes5.mo share/locale/csb/LC_MESSAGES/kiconthemes5.mo share/locale/cy/LC_MESSAGES/kiconthemes5.mo share/locale/da/LC_MESSAGES/kiconthemes5.mo share/locale/de/LC_MESSAGES/kiconthemes5.mo share/locale/el/LC_MESSAGES/kiconthemes5.mo share/locale/en_GB/LC_MESSAGES/kiconthemes5.mo share/locale/eo/LC_MESSAGES/kiconthemes5.mo share/locale/es/LC_MESSAGES/kiconthemes5.mo share/locale/et/LC_MESSAGES/kiconthemes5.mo share/locale/eu/LC_MESSAGES/kiconthemes5.mo share/locale/fa/LC_MESSAGES/kiconthemes5.mo share/locale/fi/LC_MESSAGES/kiconthemes5.mo share/locale/fr/LC_MESSAGES/kiconthemes5.mo share/locale/fy/LC_MESSAGES/kiconthemes5.mo share/locale/ga/LC_MESSAGES/kiconthemes5.mo share/locale/gd/LC_MESSAGES/kiconthemes5.mo share/locale/gl/LC_MESSAGES/kiconthemes5.mo share/locale/gu/LC_MESSAGES/kiconthemes5.mo share/locale/he/LC_MESSAGES/kiconthemes5.mo share/locale/hi/LC_MESSAGES/kiconthemes5.mo share/locale/hr/LC_MESSAGES/kiconthemes5.mo share/locale/hsb/LC_MESSAGES/kiconthemes5.mo share/locale/hu/LC_MESSAGES/kiconthemes5.mo share/locale/ia/LC_MESSAGES/kiconthemes5.mo share/locale/id/LC_MESSAGES/kiconthemes5.mo share/locale/is/LC_MESSAGES/kiconthemes5.mo share/locale/it/LC_MESSAGES/kiconthemes5.mo share/locale/ja/LC_MESSAGES/kiconthemes5.mo share/locale/ka/LC_MESSAGES/kiconthemes5.mo share/locale/kk/LC_MESSAGES/kiconthemes5.mo share/locale/km/LC_MESSAGES/kiconthemes5.mo share/locale/ko/LC_MESSAGES/kiconthemes5.mo share/locale/ku/LC_MESSAGES/kiconthemes5.mo share/locale/lt/LC_MESSAGES/kiconthemes5.mo share/locale/lv/LC_MESSAGES/kiconthemes5.mo share/locale/mai/LC_MESSAGES/kiconthemes5.mo share/locale/mk/LC_MESSAGES/kiconthemes5.mo share/locale/ml/LC_MESSAGES/kiconthemes5.mo share/locale/mr/LC_MESSAGES/kiconthemes5.mo share/locale/ms/LC_MESSAGES/kiconthemes5.mo share/locale/nb/LC_MESSAGES/kiconthemes5.mo share/locale/nds/LC_MESSAGES/kiconthemes5.mo share/locale/ne/LC_MESSAGES/kiconthemes5.mo share/locale/nl/LC_MESSAGES/kiconthemes5.mo share/locale/nn/LC_MESSAGES/kiconthemes5.mo share/locale/oc/LC_MESSAGES/kiconthemes5.mo share/locale/pa/LC_MESSAGES/kiconthemes5.mo share/locale/pl/LC_MESSAGES/kiconthemes5.mo share/locale/pt/LC_MESSAGES/kiconthemes5.mo share/locale/pt_BR/LC_MESSAGES/kiconthemes5.mo share/locale/ro/LC_MESSAGES/kiconthemes5.mo share/locale/ru/LC_MESSAGES/kiconthemes5.mo share/locale/se/LC_MESSAGES/kiconthemes5.mo share/locale/sk/LC_MESSAGES/kiconthemes5.mo share/locale/sl/LC_MESSAGES/kiconthemes5.mo share/locale/sq/LC_MESSAGES/kiconthemes5.mo share/locale/sr/LC_MESSAGES/kiconthemes5.mo share/locale/sr@ijekavian/LC_MESSAGES/kiconthemes5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kiconthemes5.mo share/locale/sr@latin/LC_MESSAGES/kiconthemes5.mo share/locale/sv/LC_MESSAGES/kiconthemes5.mo share/locale/ta/LC_MESSAGES/kiconthemes5.mo share/locale/tg/LC_MESSAGES/kiconthemes5.mo share/locale/th/LC_MESSAGES/kiconthemes5.mo share/locale/tr/LC_MESSAGES/kiconthemes5.mo share/locale/ug/LC_MESSAGES/kiconthemes5.mo share/locale/uk/LC_MESSAGES/kiconthemes5.mo share/locale/uz/LC_MESSAGES/kiconthemes5.mo share/locale/uz@cyrillic/LC_MESSAGES/kiconthemes5.mo share/locale/vi/LC_MESSAGES/kiconthemes5.mo share/locale/wa/LC_MESSAGES/kiconthemes5.mo share/locale/xh/LC_MESSAGES/kiconthemes5.mo share/locale/zh_CN/LC_MESSAGES/kiconthemes5.mo share/locale/zh_TW/LC_MESSAGES/kiconthemes5.mo share/qlogging-categories5/kiconthemes.categories share/qlogging-categories5/kiconthemes.renamecategories diff --git a/x11-themes/kf5-oxygen-icons5/distinfo b/x11-themes/kf5-oxygen-icons5/distinfo index e1d53e63e712..0c3a8e0bed22 100644 --- a/x11-themes/kf5-oxygen-icons5/distinfo +++ b/x11-themes/kf5-oxygen-icons5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689155 -SHA256 (KDE/frameworks/5.99.0/oxygen-icons5-5.99.0.tar.xz) = 8ce6ab8a0158f6e3673961fe6a37830af11d776f722f968d66dc257d5b0253dd -SIZE (KDE/frameworks/5.99.0/oxygen-icons5-5.99.0.tar.xz) = 238633012 +TIMESTAMP = 1667804681 +SHA256 (KDE/frameworks/5.100.0/oxygen-icons5-5.100.0.tar.xz) = 0061d4cf29f37d336931267466505a39d6be78c932e8fb8eddfecb66d39701e9 +SIZE (KDE/frameworks/5.100.0/oxygen-icons5-5.100.0.tar.xz) = 238638684 diff --git a/x11-themes/kf5-qqc2-desktop-style/distinfo b/x11-themes/kf5-qqc2-desktop-style/distinfo index 20e5c81e507d..70ea4ec9c7b7 100644 --- a/x11-themes/kf5-qqc2-desktop-style/distinfo +++ b/x11-themes/kf5-qqc2-desktop-style/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689156 -SHA256 (KDE/frameworks/5.99.0/qqc2-desktop-style-5.99.0.tar.xz) = bd39f9765a2963a85f7083dfe8a55b615a89cc5aeda07220b4ceba98fc9efea6 -SIZE (KDE/frameworks/5.99.0/qqc2-desktop-style-5.99.0.tar.xz) = 66736 +TIMESTAMP = 1667804682 +SHA256 (KDE/frameworks/5.100.0/qqc2-desktop-style-5.100.0.tar.xz) = a97bbfeddd6915c6ba90bc5062308610631bf1fe3f15b1e3143b839dce6c2f26 +SIZE (KDE/frameworks/5.100.0/qqc2-desktop-style-5.100.0.tar.xz) = 66736 diff --git a/x11-toolkits/kf5-attica/distinfo b/x11-toolkits/kf5-attica/distinfo index b9395c862d38..541be24e01fc 100644 --- a/x11-toolkits/kf5-attica/distinfo +++ b/x11-toolkits/kf5-attica/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689157 -SHA256 (KDE/frameworks/5.99.0/attica-5.99.0.tar.xz) = 175ad3b299713b9c1cfcb6d5fe8ce4f86d3065fba4ab7728090d998d6c6363b1 -SIZE (KDE/frameworks/5.99.0/attica-5.99.0.tar.xz) = 69432 +TIMESTAMP = 1667804683 +SHA256 (KDE/frameworks/5.100.0/attica-5.100.0.tar.xz) = ae77669637f2c1c09666a5885d99ec7feaeeb51811dc61864556be6cf43d35c8 +SIZE (KDE/frameworks/5.100.0/attica-5.100.0.tar.xz) = 69416 diff --git a/x11-toolkits/kf5-kcompletion/distinfo b/x11-toolkits/kf5-kcompletion/distinfo index dde470f206ef..6e149defb223 100644 --- a/x11-toolkits/kf5-kcompletion/distinfo +++ b/x11-toolkits/kf5-kcompletion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689158 -SHA256 (KDE/frameworks/5.99.0/kcompletion-5.99.0.tar.xz) = 4b54b28cd3318aa403a15735d537739662b7397879a4f478545b444a75b54793 -SIZE (KDE/frameworks/5.99.0/kcompletion-5.99.0.tar.xz) = 124504 +TIMESTAMP = 1667804684 +SHA256 (KDE/frameworks/5.100.0/kcompletion-5.100.0.tar.xz) = 63689d9bad9c7320734e84c5b6434aa11c15b026c845ae05f5ce154afd0a4586 +SIZE (KDE/frameworks/5.100.0/kcompletion-5.100.0.tar.xz) = 2365972 diff --git a/x11-toolkits/kf5-kconfigwidgets/distinfo b/x11-toolkits/kf5-kconfigwidgets/distinfo index 85c4419d5cb3..61f42ee61ab9 100644 --- a/x11-toolkits/kf5-kconfigwidgets/distinfo +++ b/x11-toolkits/kf5-kconfigwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689159 -SHA256 (KDE/frameworks/5.99.0/kconfigwidgets-5.99.0.tar.xz) = 8579be2a4301071fb0485fccc733083b58330ac92d776be1b73e6f377a7dbf1f -SIZE (KDE/frameworks/5.99.0/kconfigwidgets-5.99.0.tar.xz) = 420128 +TIMESTAMP = 1667804685 +SHA256 (KDE/frameworks/5.100.0/kconfigwidgets-5.100.0.tar.xz) = e88187371127382778f246731e21e6a576ce8e358a3333e3d84d386f2de55091 +SIZE (KDE/frameworks/5.100.0/kconfigwidgets-5.100.0.tar.xz) = 2578144 diff --git a/x11-toolkits/kf5-kconfigwidgets/pkg-plist b/x11-toolkits/kf5-kconfigwidgets/pkg-plist index 872f969bda5d..3a47817546be 100644 --- a/x11-toolkits/kf5-kconfigwidgets/pkg-plist +++ b/x11-toolkits/kf5-kconfigwidgets/pkg-plist @@ -1,270 +1,167 @@ bin/preparetips5 include/KF5/KConfigWidgets/KCModule include/KF5/KConfigWidgets/KCodecAction include/KF5/KConfigWidgets/KColorScheme include/KF5/KConfigWidgets/KColorSchemeManager include/KF5/KConfigWidgets/KColorSchemeModel include/KF5/KConfigWidgets/KCommandBar include/KF5/KConfigWidgets/KConfigDialog include/KF5/KConfigWidgets/KConfigDialogManager include/KF5/KConfigWidgets/KConfigViewStateSaver include/KF5/KConfigWidgets/KHamburgerMenu include/KF5/KConfigWidgets/KHelpClient include/KF5/KConfigWidgets/KLanguageButton include/KF5/KConfigWidgets/KLanguageName include/KF5/KConfigWidgets/KPasteTextAction include/KF5/KConfigWidgets/KRecentFilesAction include/KF5/KConfigWidgets/KStandardAction include/KF5/KConfigWidgets/KStatefulBrush include/KF5/KConfigWidgets/KTipDialog include/KF5/KConfigWidgets/KViewStateMaintainer include/KF5/KConfigWidgets/kcmodule.h include/KF5/KConfigWidgets/kcodecaction.h include/KF5/KConfigWidgets/kcolorscheme.h include/KF5/KConfigWidgets/kcolorschememanager.h include/KF5/KConfigWidgets/kcolorschememodel.h include/KF5/KConfigWidgets/kcommandbar.h include/KF5/KConfigWidgets/kconfigdialog.h include/KF5/KConfigWidgets/kconfigdialogmanager.h include/KF5/KConfigWidgets/kconfigviewstatesaver.h include/KF5/KConfigWidgets/kconfigwidgets_export.h include/KF5/KConfigWidgets/kconfigwidgets_version.h include/KF5/KConfigWidgets/khamburgermenu.h include/KF5/KConfigWidgets/khelpclient.h include/KF5/KConfigWidgets/klanguagebutton.h include/KF5/KConfigWidgets/klanguagename.h include/KF5/KConfigWidgets/kpastetextaction.h include/KF5/KConfigWidgets/krecentfilesaction.h include/KF5/KConfigWidgets/kstandardaction.h include/KF5/KConfigWidgets/kstatefulbrush.h include/KF5/KConfigWidgets/ktip.h include/KF5/KConfigWidgets/ktipdialog.h include/KF5/KConfigWidgets/kviewstatemaintainer.h lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfig.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsConfigVersion.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5ConfigWidgets/KF5ConfigWidgetsTargets.cmake lib/libKF5ConfigWidgets.so lib/libKF5ConfigWidgets.so.5 lib/libKF5ConfigWidgets.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KConfigWidgets.pri %%QT_PLUGINDIR%%/designer/kconfigwidgets5widgets.so man/ca/man1/preparetips5.1.gz man/ca@valencia/man1/preparetips5.1.gz man/de/man1/preparetips5.1.gz man/es/man1/preparetips5.1.gz man/fr/man1/preparetips5.1.gz man/it/man1/preparetips5.1.gz man/man1/preparetips5.1.gz man/nl/man1/preparetips5.1.gz man/pt/man1/preparetips5.1.gz man/pt_BR/man1/preparetips5.1.gz man/ru/man1/preparetips5.1.gz man/sv/man1/preparetips5.1.gz man/uk/man1/preparetips5.1.gz share/locale/af/LC_MESSAGES/kconfigwidgets5.mo -share/locale/af/kf5_entry.desktop share/locale/ar/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ar/kf5_entry.desktop share/locale/as/LC_MESSAGES/kconfigwidgets5.mo -share/locale/as/kf5_entry.desktop -share/locale/ast/kf5_entry.desktop share/locale/az/LC_MESSAGES/kconfigwidgets5.mo -share/locale/az/kf5_entry.desktop share/locale/be/LC_MESSAGES/kconfigwidgets5.mo -share/locale/be/kf5_entry.desktop share/locale/be@latin/LC_MESSAGES/kconfigwidgets5.mo -share/locale/be@latin/kf5_entry.desktop share/locale/bg/LC_MESSAGES/kconfigwidgets5.mo -share/locale/bg/kf5_entry.desktop share/locale/bn/LC_MESSAGES/kconfigwidgets5.mo -share/locale/bn/kf5_entry.desktop share/locale/bn_IN/LC_MESSAGES/kconfigwidgets5.mo -share/locale/bn_IN/kf5_entry.desktop share/locale/br/LC_MESSAGES/kconfigwidgets5.mo -share/locale/br/kf5_entry.desktop share/locale/bs/LC_MESSAGES/kconfigwidgets5.mo -share/locale/bs/kf5_entry.desktop share/locale/ca/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ca/kf5_entry.desktop share/locale/ca@valencia/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ca@valencia/kf5_entry.desktop share/locale/crh/LC_MESSAGES/kconfigwidgets5.mo -share/locale/crh/kf5_entry.desktop share/locale/cs/LC_MESSAGES/kconfigwidgets5.mo -share/locale/cs/kf5_entry.desktop share/locale/csb/LC_MESSAGES/kconfigwidgets5.mo -share/locale/csb/kf5_entry.desktop share/locale/cy/LC_MESSAGES/kconfigwidgets5.mo -share/locale/cy/kf5_entry.desktop share/locale/da/LC_MESSAGES/kconfigwidgets5.mo -share/locale/da/kf5_entry.desktop share/locale/de/LC_MESSAGES/kconfigwidgets5.mo -share/locale/de/kf5_entry.desktop share/locale/el/LC_MESSAGES/kconfigwidgets5.mo -share/locale/el/kf5_entry.desktop share/locale/en_GB/LC_MESSAGES/kconfigwidgets5.mo -share/locale/en_GB/kf5_entry.desktop share/locale/en_US/kf5_entry.desktop share/locale/eo/LC_MESSAGES/kconfigwidgets5.mo -share/locale/eo/kf5_entry.desktop share/locale/es/LC_MESSAGES/kconfigwidgets5.mo -share/locale/es/kf5_entry.desktop share/locale/et/LC_MESSAGES/kconfigwidgets5.mo -share/locale/et/kf5_entry.desktop share/locale/eu/LC_MESSAGES/kconfigwidgets5.mo -share/locale/eu/kf5_entry.desktop share/locale/fa/LC_MESSAGES/kconfigwidgets5.mo -share/locale/fa/kf5_entry.desktop share/locale/fi/LC_MESSAGES/kconfigwidgets5.mo -share/locale/fi/kf5_entry.desktop share/locale/fr/LC_MESSAGES/kconfigwidgets5.mo -share/locale/fr/kf5_entry.desktop share/locale/fy/LC_MESSAGES/kconfigwidgets5.mo -share/locale/fy/kf5_entry.desktop share/locale/ga/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ga/kf5_entry.desktop share/locale/gd/LC_MESSAGES/kconfigwidgets5.mo -share/locale/gd/kf5_entry.desktop share/locale/gl/LC_MESSAGES/kconfigwidgets5.mo -share/locale/gl/kf5_entry.desktop share/locale/gu/LC_MESSAGES/kconfigwidgets5.mo -share/locale/gu/kf5_entry.desktop share/locale/ha/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ha/kf5_entry.desktop share/locale/he/LC_MESSAGES/kconfigwidgets5.mo -share/locale/he/kf5_entry.desktop share/locale/hi/LC_MESSAGES/kconfigwidgets5.mo -share/locale/hi/kf5_entry.desktop share/locale/hne/LC_MESSAGES/kconfigwidgets5.mo -share/locale/hne/kf5_entry.desktop share/locale/hr/LC_MESSAGES/kconfigwidgets5.mo -share/locale/hr/kf5_entry.desktop share/locale/hsb/LC_MESSAGES/kconfigwidgets5.mo -share/locale/hsb/kf5_entry.desktop share/locale/hu/LC_MESSAGES/kconfigwidgets5.mo -share/locale/hu/kf5_entry.desktop share/locale/hy/LC_MESSAGES/kconfigwidgets5.mo -share/locale/hy/kf5_entry.desktop share/locale/ia/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ia/kf5_entry.desktop share/locale/id/LC_MESSAGES/kconfigwidgets5.mo -share/locale/id/kf5_entry.desktop share/locale/is/LC_MESSAGES/kconfigwidgets5.mo -share/locale/is/kf5_entry.desktop share/locale/it/LC_MESSAGES/kconfigwidgets5.mo -share/locale/it/kf5_entry.desktop share/locale/ja/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ja/kf5_entry.desktop share/locale/ka/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ka/kf5_entry.desktop share/locale/kk/LC_MESSAGES/kconfigwidgets5.mo -share/locale/kk/kf5_entry.desktop share/locale/km/LC_MESSAGES/kconfigwidgets5.mo -share/locale/km/kf5_entry.desktop share/locale/kn/LC_MESSAGES/kconfigwidgets5.mo -share/locale/kn/kf5_entry.desktop share/locale/ko/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ko/kf5_entry.desktop share/locale/ku/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ku/kf5_entry.desktop share/locale/lb/LC_MESSAGES/kconfigwidgets5.mo -share/locale/lb/kf5_entry.desktop share/locale/lt/LC_MESSAGES/kconfigwidgets5.mo -share/locale/lt/kf5_entry.desktop share/locale/lv/LC_MESSAGES/kconfigwidgets5.mo -share/locale/lv/kf5_entry.desktop share/locale/mai/LC_MESSAGES/kconfigwidgets5.mo -share/locale/mai/kf5_entry.desktop share/locale/mk/LC_MESSAGES/kconfigwidgets5.mo -share/locale/mk/kf5_entry.desktop share/locale/ml/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ml/kf5_entry.desktop share/locale/mr/LC_MESSAGES/kconfigwidgets5.mo -share/locale/mr/kf5_entry.desktop share/locale/ms/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ms/kf5_entry.desktop -share/locale/my/kf5_entry.desktop share/locale/nb/LC_MESSAGES/kconfigwidgets5.mo -share/locale/nb/kf5_entry.desktop share/locale/nds/LC_MESSAGES/kconfigwidgets5.mo -share/locale/nds/kf5_entry.desktop share/locale/ne/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ne/kf5_entry.desktop share/locale/nl/LC_MESSAGES/kconfigwidgets5.mo -share/locale/nl/kf5_entry.desktop share/locale/nn/LC_MESSAGES/kconfigwidgets5.mo -share/locale/nn/kf5_entry.desktop share/locale/oc/LC_MESSAGES/kconfigwidgets5.mo -share/locale/oc/kf5_entry.desktop share/locale/or/LC_MESSAGES/kconfigwidgets5.mo -share/locale/or/kf5_entry.desktop share/locale/pa/LC_MESSAGES/kconfigwidgets5.mo -share/locale/pa/kf5_entry.desktop share/locale/pl/LC_MESSAGES/kconfigwidgets5.mo -share/locale/pl/kf5_entry.desktop share/locale/ps/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ps/kf5_entry.desktop share/locale/pt/LC_MESSAGES/kconfigwidgets5.mo -share/locale/pt/kf5_entry.desktop share/locale/pt_BR/LC_MESSAGES/kconfigwidgets5.mo -share/locale/pt_BR/kf5_entry.desktop share/locale/ro/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ro/kf5_entry.desktop share/locale/ru/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ru/kf5_entry.desktop share/locale/se/LC_MESSAGES/kconfigwidgets5.mo -share/locale/se/kf5_entry.desktop share/locale/si/LC_MESSAGES/kconfigwidgets5.mo -share/locale/si/kf5_entry.desktop share/locale/sk/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sk/kf5_entry.desktop share/locale/sl/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sl/kf5_entry.desktop share/locale/sq/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sq/kf5_entry.desktop share/locale/sr/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sr/kf5_entry.desktop share/locale/sr@ijekavian/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sr@ijekavian/kf5_entry.desktop share/locale/sr@ijekavianlatin/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sr@ijekavianlatin/kf5_entry.desktop share/locale/sr@latin/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sr@latin/kf5_entry.desktop share/locale/sv/LC_MESSAGES/kconfigwidgets5.mo -share/locale/sv/kf5_entry.desktop share/locale/ta/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ta/kf5_entry.desktop share/locale/te/LC_MESSAGES/kconfigwidgets5.mo -share/locale/te/kf5_entry.desktop share/locale/tg/LC_MESSAGES/kconfigwidgets5.mo -share/locale/tg/kf5_entry.desktop share/locale/th/LC_MESSAGES/kconfigwidgets5.mo -share/locale/th/kf5_entry.desktop -share/locale/tok/kf5_entry.desktop share/locale/tr/LC_MESSAGES/kconfigwidgets5.mo -share/locale/tr/kf5_entry.desktop share/locale/tt/LC_MESSAGES/kconfigwidgets5.mo -share/locale/tt/kf5_entry.desktop share/locale/ug/LC_MESSAGES/kconfigwidgets5.mo -share/locale/ug/kf5_entry.desktop share/locale/uk/LC_MESSAGES/kconfigwidgets5.mo -share/locale/uk/kf5_entry.desktop share/locale/uz/LC_MESSAGES/kconfigwidgets5.mo -share/locale/uz/kf5_entry.desktop share/locale/uz@cyrillic/LC_MESSAGES/kconfigwidgets5.mo -share/locale/uz@cyrillic/kf5_entry.desktop share/locale/vi/LC_MESSAGES/kconfigwidgets5.mo -share/locale/vi/kf5_entry.desktop share/locale/wa/LC_MESSAGES/kconfigwidgets5.mo -share/locale/wa/kf5_entry.desktop share/locale/xh/LC_MESSAGES/kconfigwidgets5.mo -share/locale/xh/kf5_entry.desktop share/locale/zh_CN/LC_MESSAGES/kconfigwidgets5.mo -share/locale/zh_CN/kf5_entry.desktop share/locale/zh_HK/LC_MESSAGES/kconfigwidgets5.mo -share/locale/zh_HK/kf5_entry.desktop share/locale/zh_TW/LC_MESSAGES/kconfigwidgets5.mo -share/locale/zh_TW/kf5_entry.desktop share/qlogging-categories5/kconfigwidgets.categories share/qlogging-categories5/kconfigwidgets.renamecategories diff --git a/x11-toolkits/kf5-kdesignerplugin/distinfo b/x11-toolkits/kf5-kdesignerplugin/distinfo index ed7425e5735b..923de63f67bf 100644 --- a/x11-toolkits/kf5-kdesignerplugin/distinfo +++ b/x11-toolkits/kf5-kdesignerplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689160 -SHA256 (KDE/frameworks/5.99.0/kdesignerplugin-5.99.0.tar.xz) = aee65abd481e2cb8d900b52b9e1bf6c74f71ff7eaa621f562c6285d06d497d73 -SIZE (KDE/frameworks/5.99.0/kdesignerplugin-5.99.0.tar.xz) = 75988 +TIMESTAMP = 1667804686 +SHA256 (KDE/frameworks/5.100.0/kdesignerplugin-5.100.0.tar.xz) = 0c61e5bc1d82e03202b7998429ec79e9bac6559639f3178adf6fc9fa516c0dc2 +SIZE (KDE/frameworks/5.100.0/kdesignerplugin-5.100.0.tar.xz) = 2315660 diff --git a/x11-toolkits/kf5-kdesignerplugin/pkg-plist b/x11-toolkits/kf5-kdesignerplugin/pkg-plist index 8f7d56949571..4d03f67f285f 100644 --- a/x11-toolkits/kf5-kdesignerplugin/pkg-plist +++ b/x11-toolkits/kf5-kdesignerplugin/pkg-plist @@ -1,117 +1,17 @@ bin/kgendesignerplugin lib/cmake/KF5DesignerPlugin/KF5DesignerPluginConfig.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginConfigVersion.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginMacros.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5DesignerPlugin/KF5DesignerPluginTargets.cmake man/ca/man1/kgendesignerplugin.1.gz man/ca@valencia/man1/kgendesignerplugin.1.gz man/de/man1/kgendesignerplugin.1.gz man/es/man1/kgendesignerplugin.1.gz man/it/man1/kgendesignerplugin.1.gz man/man1/kgendesignerplugin.1.gz man/nl/man1/kgendesignerplugin.1.gz man/pt/man1/kgendesignerplugin.1.gz man/pt_BR/man1/kgendesignerplugin.1.gz man/sv/man1/kgendesignerplugin.1.gz man/uk/man1/kgendesignerplugin.1.gz -share/locale/af/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ar/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/as/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/az/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/be/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/be@latin/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/bg/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/bn/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/bn_IN/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/br/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/bs/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ca/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ca@valencia/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/crh/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/cs/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/csb/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/cy/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/da/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/de/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/el/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/en_GB/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/eo/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/es/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/et/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/eu/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/fa/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/fi/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/fr/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/fy/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ga/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/gd/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/gl/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/gu/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ha/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/he/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/hi/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/hne/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/hr/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/hsb/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/hu/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/hy/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ia/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/id/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/is/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/it/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ja/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ka/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/kk/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/km/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/kn/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ko/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ku/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/lb/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/lt/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/lv/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/mai/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/mk/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ml/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/mr/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ms/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/nb/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/nds/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ne/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/nl/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/nn/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/oc/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/or/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/pa/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/pl/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ps/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/pt/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/pt_BR/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ro/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ru/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/se/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/si/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sk/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sl/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sq/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sr/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sr@ijekavian/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sr@ijekavianlatin/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sr@latin/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/sv/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ta/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/te/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/tg/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/th/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/tr/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/tt/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/ug/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/uk/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/uz/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/uz@cyrillic/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/vi/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/wa/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/xh/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/zh_CN/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/zh_HK/LC_MESSAGES/kdesignerplugin5_qt.qm -share/locale/zh_TW/LC_MESSAGES/kdesignerplugin5_qt.qm diff --git a/x11-toolkits/kf5-kguiaddons/distinfo b/x11-toolkits/kf5-kguiaddons/distinfo index c49ac62a65f5..3576b79a803b 100644 --- a/x11-toolkits/kf5-kguiaddons/distinfo +++ b/x11-toolkits/kf5-kguiaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689161 -SHA256 (KDE/frameworks/5.99.0/kguiaddons-5.99.0.tar.xz) = ee87ea65b7a3cdcc0fe9798db8c02b028c194fd48a3b56f1d30b3494e0711b4f -SIZE (KDE/frameworks/5.99.0/kguiaddons-5.99.0.tar.xz) = 74324 +TIMESTAMP = 1667804687 +SHA256 (KDE/frameworks/5.100.0/kguiaddons-5.100.0.tar.xz) = 5ce16343ed9d881ebb2b5e5ff4b8bd886dd95778910d27308197b072dd3b3d02 +SIZE (KDE/frameworks/5.100.0/kguiaddons-5.100.0.tar.xz) = 76748 diff --git a/x11-toolkits/kf5-kguiaddons/pkg-plist b/x11-toolkits/kf5-kguiaddons/pkg-plist index b1caeeb32b90..58a94cc4d88b 100644 --- a/x11-toolkits/kf5-kguiaddons/pkg-plist +++ b/x11-toolkits/kf5-kguiaddons/pkg-plist @@ -1,42 +1,44 @@ bin/kde-geo-uri-handler include/KF5/KGuiAddons/KColorCollection include/KF5/KGuiAddons/KColorMimeData +include/KF5/KGuiAddons/KColorSchemeWatcher include/KF5/KGuiAddons/KColorUtils include/KF5/KGuiAddons/KCursorSaver include/KF5/KGuiAddons/KDateValidator include/KF5/KGuiAddons/KFontUtils include/KF5/KGuiAddons/KIconUtils include/KF5/KGuiAddons/KImageCache include/KF5/KGuiAddons/KModifierKeyInfo include/KF5/KGuiAddons/KSystemClipboard include/KF5/KGuiAddons/KWordWrap include/KF5/KGuiAddons/KeySequenceRecorder include/KF5/KGuiAddons/kcolorcollection.h include/KF5/KGuiAddons/kcolormimedata.h +include/KF5/KGuiAddons/kcolorschemewatcher.h include/KF5/KGuiAddons/kcolorutils.h include/KF5/KGuiAddons/kcursorsaver.h include/KF5/KGuiAddons/kdatevalidator.h include/KF5/KGuiAddons/keysequencerecorder.h include/KF5/KGuiAddons/kfontutils.h include/KF5/KGuiAddons/kguiaddons_export.h include/KF5/KGuiAddons/kguiaddons_version.h include/KF5/KGuiAddons/kiconutils.h include/KF5/KGuiAddons/kimagecache.h include/KF5/KGuiAddons/klocalimagecacheimpl.h include/KF5/KGuiAddons/kmodifierkeyinfo.h include/KF5/KGuiAddons/kmodifierkeyinfoprovider_p.h include/KF5/KGuiAddons/ksystemclipboard.h include/KF5/KGuiAddons/kwordwrap.h lib/cmake/KF5GuiAddons/KF5GuiAddonsConfig.cmake lib/cmake/KF5GuiAddons/KF5GuiAddonsConfigVersion.cmake lib/cmake/KF5GuiAddons/KF5GuiAddonsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5GuiAddons/KF5GuiAddonsTargets.cmake lib/libKF5GuiAddons.so lib/libKF5GuiAddons.so.5 lib/libKF5GuiAddons.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KGuiAddons.pri share/applications/google-maps-geo-handler.desktop share/applications/openstreetmap-geo-handler.desktop share/applications/qwant-maps-geo-handler.desktop share/applications/wheelmap-geo-handler.desktop share/qlogging-categories5/kguiaddons.categories diff --git a/x11-toolkits/kf5-kirigami2/distinfo b/x11-toolkits/kf5-kirigami2/distinfo index 4449fed8226b..84f7a547e1c5 100644 --- a/x11-toolkits/kf5-kirigami2/distinfo +++ b/x11-toolkits/kf5-kirigami2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689162 -SHA256 (KDE/frameworks/5.99.0/kirigami2-5.99.0.tar.xz) = b988ebaf93271951aa91ad28cd849d2496a5bb1ef07d425213a81cc0d4dd03e2 -SIZE (KDE/frameworks/5.99.0/kirigami2-5.99.0.tar.xz) = 365032 +TIMESTAMP = 1667804688 +SHA256 (KDE/frameworks/5.100.0/kirigami2-5.100.0.tar.xz) = d6080af0c5cece525fcf261e3f71562f7f7a654599c602d530e99d99cc3501df +SIZE (KDE/frameworks/5.100.0/kirigami2-5.100.0.tar.xz) = 368144 diff --git a/x11-toolkits/kf5-kirigami2/pkg-plist b/x11-toolkits/kf5-kirigami2/pkg-plist index 4d31d8e93aab..d29c251349e0 100644 --- a/x11-toolkits/kf5-kirigami2/pkg-plist +++ b/x11-toolkits/kf5-kirigami2/pkg-plist @@ -1,199 +1,198 @@ include/KF5/Kirigami2/Kirigami/KirigamiPluginFactory include/KF5/Kirigami2/Kirigami/PlatformTheme include/KF5/Kirigami2/Kirigami/TabletModeWatcher include/KF5/Kirigami2/Kirigami/Units include/KF5/Kirigami2/Kirigami/VirtualKeyboardWatcher include/KF5/Kirigami2/KirigamiPluginFactory include/KF5/Kirigami2/PlatformTheme include/KF5/Kirigami2/TabletModeWatcher include/KF5/Kirigami2/Units include/KF5/Kirigami2/kirigami/kirigami2_export.h include/KF5/Kirigami2/kirigami/kirigamipluginfactory.h include/KF5/Kirigami2/kirigami/platformtheme.h include/KF5/Kirigami2/kirigami/tabletmodewatcher.h include/KF5/Kirigami2/kirigami/units.h include/KF5/Kirigami2/kirigami/virtualkeyboardwatcher.h include/KF5/Kirigami2/kirigamipluginfactory.h include/KF5/Kirigami2/platformtheme.h include/KF5/Kirigami2/tabletmodewatcher.h include/KF5/Kirigami2/units.h lib/cmake/KF5Kirigami2/KF5Kirigami2Config.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2ConfigVersion.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2Macros.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Kirigami2/KF5Kirigami2Targets.cmake lib/libKF5Kirigami2.so lib/libKF5Kirigami2.so.5 lib/libKF5Kirigami2.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_Kirigami2.pri %%QT_QMLDIR%%/org/kde/kirigami.2/AboutItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AboutPage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractApplicationWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractCard.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractChip.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractItemViewHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Action.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ActionTextField.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ActionToolBar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ApplicationWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Avatar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/BasicListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Card.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CardsGridView.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CardsLayout.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CardsListView.qml %%QT_QMLDIR%%/org/kde/kirigami.2/CheckableListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Chip.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ContextDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Dialog.qml %%QT_QMLDIR%%/org/kde/kirigami.2/FlexColumn.qml %%QT_QMLDIR%%/org/kde/kirigami.2/FormLayout.qml %%QT_QMLDIR%%/org/kde/kirigami.2/GlobalDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Heading.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Hero.qml %%QT_QMLDIR%%/org/kde/kirigami.2/InlineMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ItemViewHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Label.qml %%QT_QMLDIR%%/org/kde/kirigami.2/LinkButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ListItemDragHandle.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ListSectionHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/LoadingPlaceholder.qml %%QT_QMLDIR%%/org/kde/kirigami.2/MenuDialog.qml %%QT_QMLDIR%%/org/kde/kirigami.2/NavigationTabBar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/NavigationTabButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/OverlayDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/OverlaySheet.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Page.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PagePoolAction.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PageRow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PasswordField.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PlaceholderMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/PromptDialog.qml %%QT_QMLDIR%%/org/kde/kirigami.2/RouterWindow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ScrollablePage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/SearchField.qml %%QT_QMLDIR%%/org/kde/kirigami.2/SelectableLabel.qml %%QT_QMLDIR%%/org/kde/kirigami.2/Separator.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ShadowedImage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/ToolBarApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/UrlButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/libKirigamiPlugin.so %%QT_QMLDIR%%/org/kde/kirigami.2/plugins.qmltypes %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionIconGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionMenuItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ActionsMenu.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/BannerImage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/CardsGridViewPrivate.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/ContextDrawerActionItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/CornerShadow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultCardBackground.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultChipBackground.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/DefaultListItemBackground.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/EdgeShadow.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/GlobalDrawerActionItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/PageActionPropertyGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/PrivateActionToolButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/SwipeItemEventFilter.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/AbstractPageHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/BreadcrumbControl.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/PageRowGlobalToolBarStyleGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/PageRowGlobalToolBarUI.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/TabBarControl.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/TitlesPageHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/private/globaltoolbar/ToolBarPageHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/qmldir %%QT_QMLDIR%%/org/kde/kirigami.2/settingscomponents/CategorizedSettings.qml %%QT_QMLDIR%%/org/kde/kirigami.2/settingscomponents/SettingAction.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/InlineMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/Label.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Material/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/org.kde.desktop/Theme.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PageTab.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeHighlight.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeProgress.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeStack.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeTab.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/PrivateSwipeTabBar.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/SwipeNavigator.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/TabViewLayout.qml %%QT_QMLDIR%%/org/kde/kirigami.2/swipenavigator/templates/PageTab.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractCard.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractChip.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/AbstractListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/ApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/InlineMessage.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/OverlayDrawer.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/OverlaySheet.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/SingletonHeaderSizeGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/SwipeListItem.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/BackButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/BorderPropertiesGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/ContextIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/ForwardButton.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/GenericDrawerIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/IconPropertiesGroup.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/MenuIcon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/private/PassiveNotification.qml %%QT_QMLDIR%%/org/kde/kirigami.2/templates/qmldir share/kdevappwizard/templates/kirigami.tar.bz2 share/locale/ar/LC_MESSAGES/libkirigami2plugin_qt.qm -share/locale/ast/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/az/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/bg/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ca/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/cs/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/da/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/de/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/el/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/en_GB/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/es/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/et/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/eu/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/fi/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/fr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/gl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/hi/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/hu/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ia/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/id/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/it/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ja/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ka/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ko/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/lt/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ml/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/nl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/nn/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pa/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pt/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/pt_BR/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ro/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ru/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sk/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sl/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sr@latin/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/sv/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/ta/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/tg/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/tr/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/uk/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/zh_CN/LC_MESSAGES/libkirigami2plugin_qt.qm share/locale/zh_TW/LC_MESSAGES/libkirigami2plugin_qt.qm diff --git a/x11-toolkits/kf5-kitemviews/distinfo b/x11-toolkits/kf5-kitemviews/distinfo index 9c26862df8b3..3cd232d3c411 100644 --- a/x11-toolkits/kf5-kitemviews/distinfo +++ b/x11-toolkits/kf5-kitemviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689163 -SHA256 (KDE/frameworks/5.99.0/kitemviews-5.99.0.tar.xz) = 1161d0ed34142fcaf6bc15d26dd91f2d593e4094023570c6fb13df253548f98d -SIZE (KDE/frameworks/5.99.0/kitemviews-5.99.0.tar.xz) = 77340 +TIMESTAMP = 1667804689 +SHA256 (KDE/frameworks/5.100.0/kitemviews-5.100.0.tar.xz) = 9c6d1109e956ded4950fd791d1895c421dda85db35c7d8d08550b92533a3ff1a +SIZE (KDE/frameworks/5.100.0/kitemviews-5.100.0.tar.xz) = 2293472 diff --git a/x11-toolkits/kf5-kjobwidgets/distinfo b/x11-toolkits/kf5-kjobwidgets/distinfo index 074793a5ab26..7f69cc3646fb 100644 --- a/x11-toolkits/kf5-kjobwidgets/distinfo +++ b/x11-toolkits/kf5-kjobwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689164 -SHA256 (KDE/frameworks/5.99.0/kjobwidgets-5.99.0.tar.xz) = 06f7e9cdb082f093e3451dbe2a801d95e822396c7b5e9c190d94179138bb98fb -SIZE (KDE/frameworks/5.99.0/kjobwidgets-5.99.0.tar.xz) = 101840 +TIMESTAMP = 1667804690 +SHA256 (KDE/frameworks/5.100.0/kjobwidgets-5.100.0.tar.xz) = d362f99928a49a8a5a75e68248a18249cd8c2904667eb7921485c2b574a73103 +SIZE (KDE/frameworks/5.100.0/kjobwidgets-5.100.0.tar.xz) = 2329668 diff --git a/x11-toolkits/kf5-ktextwidgets/distinfo b/x11-toolkits/kf5-ktextwidgets/distinfo index 2c25ea5d5fd1..d0fca8ce3ed2 100644 --- a/x11-toolkits/kf5-ktextwidgets/distinfo +++ b/x11-toolkits/kf5-ktextwidgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689166 -SHA256 (KDE/frameworks/5.99.0/ktextwidgets-5.99.0.tar.xz) = 31e8dff053f866f0972febd7f78b680e8a015d0e17cef4e2dfdc446892b469a8 -SIZE (KDE/frameworks/5.99.0/ktextwidgets-5.99.0.tar.xz) = 328264 +TIMESTAMP = 1667804691 +SHA256 (KDE/frameworks/5.100.0/ktextwidgets-5.100.0.tar.xz) = 760bc46c42c54c6e84511c12b56931db7f76281e940a98158089c76bef473281 +SIZE (KDE/frameworks/5.100.0/ktextwidgets-5.100.0.tar.xz) = 2578228 diff --git a/x11-toolkits/kf5-kwidgetsaddons/distinfo b/x11-toolkits/kf5-kwidgetsaddons/distinfo index d1e8a0c316eb..7f592339f0d5 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/distinfo +++ b/x11-toolkits/kf5-kwidgetsaddons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689167 -SHA256 (KDE/frameworks/5.99.0/kwidgetsaddons-5.99.0.tar.xz) = 5acda26e2e5bec52b563d1507b706ea5bbe341ab4ae9bdfa84e892bbf8cd9269 -SIZE (KDE/frameworks/5.99.0/kwidgetsaddons-5.99.0.tar.xz) = 2312272 +TIMESTAMP = 1667804692 +SHA256 (KDE/frameworks/5.100.0/kwidgetsaddons-5.100.0.tar.xz) = c71913964fa66cc03d9faafeb91efd397095ecfc369f3cd60235cfda49484a1f +SIZE (KDE/frameworks/5.100.0/kwidgetsaddons-5.100.0.tar.xz) = 4291252 diff --git a/x11-toolkits/kf5-kwidgetsaddons/pkg-plist b/x11-toolkits/kf5-kwidgetsaddons/pkg-plist index 6b0ec73c7fae..ca6f6c1d13fa 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/pkg-plist +++ b/x11-toolkits/kf5-kwidgetsaddons/pkg-plist @@ -1,271 +1,270 @@ include/KF5/KWidgetsAddons/KAcceleratorManager include/KF5/KWidgetsAddons/KActionMenu include/KF5/KWidgetsAddons/KActionSelector include/KF5/KWidgetsAddons/KAnimatedButton include/KF5/KWidgetsAddons/KAssistantDialog include/KF5/KWidgetsAddons/KBusyIndicatorWidget include/KF5/KWidgetsAddons/KCapacityBar include/KF5/KWidgetsAddons/KCharSelect include/KF5/KWidgetsAddons/KCollapsibleGroupBox include/KF5/KWidgetsAddons/KColorButton include/KF5/KWidgetsAddons/KColorCombo include/KF5/KWidgetsAddons/KColumnResizer include/KF5/KWidgetsAddons/KCursor include/KF5/KWidgetsAddons/KDateComboBox include/KF5/KWidgetsAddons/KDatePicker include/KF5/KWidgetsAddons/KDatePickerPopup include/KF5/KWidgetsAddons/KDateTimeEdit include/KF5/KWidgetsAddons/KDragWidgetDecorator include/KF5/KWidgetsAddons/KDualAction include/KF5/KWidgetsAddons/KEditListWidget include/KF5/KWidgetsAddons/KFontAction include/KF5/KWidgetsAddons/KFontChooser include/KF5/KWidgetsAddons/KFontChooserDialog include/KF5/KWidgetsAddons/KFontRequester include/KF5/KWidgetsAddons/KFontSizeAction include/KF5/KWidgetsAddons/KGradientSelector include/KF5/KWidgetsAddons/KGuiItem include/KF5/KWidgetsAddons/KLed include/KF5/KWidgetsAddons/KMessageBox include/KF5/KWidgetsAddons/KMessageBoxDontAskAgainInterface include/KF5/KWidgetsAddons/KMessageBoxNotifyInterface include/KF5/KWidgetsAddons/KMessageDialog include/KF5/KWidgetsAddons/KMessageWidget include/KF5/KWidgetsAddons/KMimeTypeChooser include/KF5/KWidgetsAddons/KMimeTypeChooserDialog include/KF5/KWidgetsAddons/KMimeTypeEditor include/KF5/KWidgetsAddons/KMultiTabBar include/KF5/KWidgetsAddons/KMultiTabBarButton include/KF5/KWidgetsAddons/KMultiTabBarTab include/KF5/KWidgetsAddons/KNewPasswordDialog include/KF5/KWidgetsAddons/KNewPasswordWidget include/KF5/KWidgetsAddons/KPageDialog include/KF5/KWidgetsAddons/KPageModel include/KF5/KWidgetsAddons/KPageView include/KF5/KWidgetsAddons/KPageWidget include/KF5/KWidgetsAddons/KPageWidgetItem include/KF5/KWidgetsAddons/KPageWidgetModel include/KF5/KWidgetsAddons/KPasswordDialog include/KF5/KWidgetsAddons/KPasswordLineEdit include/KF5/KWidgetsAddons/KPixmapRegionSelectorDialog include/KF5/KWidgetsAddons/KPixmapRegionSelectorWidget include/KF5/KWidgetsAddons/KPixmapSequence include/KF5/KWidgetsAddons/KPixmapSequenceOverlayPainter include/KF5/KWidgetsAddons/KPixmapSequenceWidget include/KF5/KWidgetsAddons/KPopupFrame include/KF5/KWidgetsAddons/KRatingPainter include/KF5/KWidgetsAddons/KRatingWidget include/KF5/KWidgetsAddons/KRecentFilesMenu include/KF5/KWidgetsAddons/KRuler include/KF5/KWidgetsAddons/KSelectAction include/KF5/KWidgetsAddons/KSelector include/KF5/KWidgetsAddons/KSeparator include/KF5/KWidgetsAddons/KSplitterCollapserButton include/KF5/KWidgetsAddons/KSqueezedTextLabel include/KF5/KWidgetsAddons/KStandardGuiItem include/KF5/KWidgetsAddons/KStyleExtensions include/KF5/KWidgetsAddons/KTimeComboBox include/KF5/KWidgetsAddons/KTitleWidget include/KF5/KWidgetsAddons/KToggleAction include/KF5/KWidgetsAddons/KToggleFullScreenAction include/KF5/KWidgetsAddons/KToolBarLabelAction include/KF5/KWidgetsAddons/KToolBarPopupAction include/KF5/KWidgetsAddons/KToolBarSpacerAction include/KF5/KWidgetsAddons/KToolTipWidget include/KF5/KWidgetsAddons/KTwoFingerSwipe include/KF5/KWidgetsAddons/KTwoFingerTap include/KF5/KWidgetsAddons/KUrlLabel include/KF5/KWidgetsAddons/KViewStateMaintainerBase include/KF5/KWidgetsAddons/KViewStateSerializer include/KF5/KWidgetsAddons/KXYSelector include/KF5/KWidgetsAddons/LineEditUrlDropEventFilter include/KF5/KWidgetsAddons/kacceleratormanager.h include/KF5/KWidgetsAddons/kactionmenu.h include/KF5/KWidgetsAddons/kactionselector.h include/KF5/KWidgetsAddons/kanimatedbutton.h include/KF5/KWidgetsAddons/kassistantdialog.h include/KF5/KWidgetsAddons/kbusyindicatorwidget.h include/KF5/KWidgetsAddons/kcapacitybar.h include/KF5/KWidgetsAddons/kcharselect.h include/KF5/KWidgetsAddons/kcollapsiblegroupbox.h include/KF5/KWidgetsAddons/kcolorbutton.h include/KF5/KWidgetsAddons/kcolorcombo.h include/KF5/KWidgetsAddons/kcolumnresizer.h include/KF5/KWidgetsAddons/kcursor.h include/KF5/KWidgetsAddons/kdatecombobox.h include/KF5/KWidgetsAddons/kdatepicker.h include/KF5/KWidgetsAddons/kdatepickerpopup.h include/KF5/KWidgetsAddons/kdatetimeedit.h include/KF5/KWidgetsAddons/kdragwidgetdecorator.h include/KF5/KWidgetsAddons/kdualaction.h include/KF5/KWidgetsAddons/keditlistwidget.h include/KF5/KWidgetsAddons/kfontaction.h include/KF5/KWidgetsAddons/kfontchooser.h include/KF5/KWidgetsAddons/kfontchooserdialog.h include/KF5/KWidgetsAddons/kfontrequester.h include/KF5/KWidgetsAddons/kfontsizeaction.h include/KF5/KWidgetsAddons/kguiitem.h include/KF5/KWidgetsAddons/kled.h include/KF5/KWidgetsAddons/kmessagebox.h include/KF5/KWidgetsAddons/kmessageboxdontaskagaininterface.h include/KF5/KWidgetsAddons/kmessageboxnotifyinterface.h include/KF5/KWidgetsAddons/kmessagedialog.h include/KF5/KWidgetsAddons/kmessagewidget.h include/KF5/KWidgetsAddons/kmimetypechooser.h include/KF5/KWidgetsAddons/kmimetypeeditor.h include/KF5/KWidgetsAddons/kmultitabbar.h include/KF5/KWidgetsAddons/knewpassworddialog.h include/KF5/KWidgetsAddons/knewpasswordwidget.h include/KF5/KWidgetsAddons/kpagedialog.h include/KF5/KWidgetsAddons/kpagemodel.h include/KF5/KWidgetsAddons/kpageview.h include/KF5/KWidgetsAddons/kpagewidget.h include/KF5/KWidgetsAddons/kpagewidgetmodel.h include/KF5/KWidgetsAddons/kpassworddialog.h include/KF5/KWidgetsAddons/kpasswordlineedit.h include/KF5/KWidgetsAddons/kpixmapregionselectordialog.h include/KF5/KWidgetsAddons/kpixmapregionselectorwidget.h include/KF5/KWidgetsAddons/kpixmapsequence.h include/KF5/KWidgetsAddons/kpixmapsequenceoverlaypainter.h include/KF5/KWidgetsAddons/kpixmapsequencewidget.h include/KF5/KWidgetsAddons/kpopupframe.h include/KF5/KWidgetsAddons/kratingpainter.h include/KF5/KWidgetsAddons/kratingwidget.h include/KF5/KWidgetsAddons/krecentfilesmenu.h include/KF5/KWidgetsAddons/kruler.h include/KF5/KWidgetsAddons/kselectaction.h include/KF5/KWidgetsAddons/kselector.h include/KF5/KWidgetsAddons/kseparator.h include/KF5/KWidgetsAddons/ksplittercollapserbutton.h include/KF5/KWidgetsAddons/ksqueezedtextlabel.h include/KF5/KWidgetsAddons/kstandardguiitem.h include/KF5/KWidgetsAddons/kstyleextensions.h include/KF5/KWidgetsAddons/ktimecombobox.h include/KF5/KWidgetsAddons/ktitlewidget.h include/KF5/KWidgetsAddons/ktoggleaction.h include/KF5/KWidgetsAddons/ktogglefullscreenaction.h include/KF5/KWidgetsAddons/ktoolbarlabelaction.h include/KF5/KWidgetsAddons/ktoolbarpopupaction.h include/KF5/KWidgetsAddons/ktoolbarspaceraction.h include/KF5/KWidgetsAddons/ktooltipwidget.h include/KF5/KWidgetsAddons/ktwofingerswipe.h include/KF5/KWidgetsAddons/ktwofingertap.h include/KF5/KWidgetsAddons/kurllabel.h include/KF5/KWidgetsAddons/kviewstatemaintainerbase.h include/KF5/KWidgetsAddons/kviewstateserializer.h include/KF5/KWidgetsAddons/kwidgetsaddons_export.h include/KF5/KWidgetsAddons/kwidgetsaddons_version.h include/KF5/KWidgetsAddons/kxyselector.h include/KF5/KWidgetsAddons/lineediturldropeventfilter.h lib/cmake/KF5WidgetsAddons/KF5WidgetsAddonsConfig.cmake lib/cmake/KF5WidgetsAddons/KF5WidgetsAddonsConfigVersion.cmake lib/cmake/KF5WidgetsAddons/KF5WidgetsAddonsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5WidgetsAddons/KF5WidgetsAddonsTargets.cmake lib/libKF5WidgetsAddons.so lib/libKF5WidgetsAddons.so.5 lib/libKF5WidgetsAddons.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KWidgetsAddons.pri %%QT_PLUGINDIR%%/designer/kwidgetsaddons5widgets.so share/kf5/kcharselect/kcharselect-data share/locale/af/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ar/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/as/LC_MESSAGES/kwidgetsaddons5_qt.qm -share/locale/ast/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/az/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/be/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/be@latin/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/bg/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/bn/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/bn_IN/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/br/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/bs/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ca/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/crh/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/cs/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/csb/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/cy/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/da/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/de/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/el/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/en/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/en_GB/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/eo/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/es/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/et/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/eu/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/fa/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/fi/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/fr/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/fy/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ga/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/gl/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/gu/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ha/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/he/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/hi/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/hne/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/hr/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/hsb/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/hu/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/hy/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ia/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/id/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/is/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/it/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ja/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ka/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/kk/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/km/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/kn/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ko/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ku/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/lb/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/lt/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/lv/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/mai/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/mk/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ml/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/mr/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ms/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/nb/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/nds/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ne/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/nl/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/nn/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/oc/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/or/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/pa/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/pl/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ps/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/pt/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/pt_BR/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ro/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ru/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/se/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/si/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sk/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sl/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sq/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sr/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sr@latin/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/sv/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ta/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/te/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/tg/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/th/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/tr/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/tt/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/ug/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/uk/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/uz/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/vi/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/wa/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/xh/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/zh_CN/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/zh_HK/LC_MESSAGES/kwidgetsaddons5_qt.qm share/locale/zh_TW/LC_MESSAGES/kwidgetsaddons5_qt.qm share/qlogging-categories5/kwidgetsaddons.categories diff --git a/x11-toolkits/kf5-kxmlgui/distinfo b/x11-toolkits/kf5-kxmlgui/distinfo index ed4845ae067d..93f75457be91 100644 --- a/x11-toolkits/kf5-kxmlgui/distinfo +++ b/x11-toolkits/kf5-kxmlgui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689168 -SHA256 (KDE/frameworks/5.99.0/kxmlgui-5.99.0.tar.xz) = 2c92c6cfffe57ccb9ccfda5fcfc60798e9138b0f639de5bf63a3c2e960f04adc -SIZE (KDE/frameworks/5.99.0/kxmlgui-5.99.0.tar.xz) = 899568 +TIMESTAMP = 1667804692 +SHA256 (KDE/frameworks/5.100.0/kxmlgui-5.100.0.tar.xz) = 7eee0553056d033d95cd2a04259585d789746f011a8c5bd89fc6632cdc568ea5 +SIZE (KDE/frameworks/5.100.0/kxmlgui-5.100.0.tar.xz) = 2975916 diff --git a/x11-toolkits/kf5-kxmlgui/pkg-plist b/x11-toolkits/kf5-kxmlgui/pkg-plist index 4c3bab333417..ed4429084ef8 100644 --- a/x11-toolkits/kf5-kxmlgui/pkg-plist +++ b/x11-toolkits/kf5-kxmlgui/pkg-plist @@ -1,157 +1,159 @@ etc/xdg/ui/ui_standards.rc include/KF5/KXmlGui/KAboutApplicationDialog include/KF5/KXmlGui/KAboutPluginDialog include/KF5/KXmlGui/KActionCategory include/KF5/KXmlGui/KActionCollection include/KF5/KXmlGui/KBugReport include/KF5/KXmlGui/KEditToolBar include/KF5/KXmlGui/KHelpMenu include/KF5/KXmlGui/KKeySequenceWidget include/KF5/KXmlGui/KMainWindow include/KF5/KXmlGui/KShortcutWidget include/KF5/KXmlGui/KShortcutsDialog include/KF5/KXmlGui/KShortcutsEditor include/KF5/KXmlGui/KToggleToolBarAction include/KF5/KXmlGui/KToolBar include/KF5/KXmlGui/KToolTipHelper include/KF5/KXmlGui/KUndoActions include/KF5/KXmlGui/KXMLGUIBuilder include/KF5/KXmlGui/KXMLGUIClient include/KF5/KXmlGui/KXMLGUIFactory include/KF5/KXmlGui/KXmlGuiWindow include/KF5/KXmlGui/kaboutapplicationdialog.h include/KF5/KXmlGui/kaboutplugindialog.h include/KF5/KXmlGui/kactioncategory.h include/KF5/KXmlGui/kactioncollection.h include/KF5/KXmlGui/kbugreport.h include/KF5/KXmlGui/kedittoolbar.h include/KF5/KXmlGui/khelpmenu.h include/KF5/KXmlGui/kkeysequencewidget.h include/KF5/KXmlGui/kmainwindow.h include/KF5/KXmlGui/kshortcutsdialog.h include/KF5/KXmlGui/kshortcutseditor.h include/KF5/KXmlGui/kshortcutwidget.h include/KF5/KXmlGui/ktoggletoolbaraction.h include/KF5/KXmlGui/ktoolbar.h include/KF5/KXmlGui/ktooltiphelper.h include/KF5/KXmlGui/kundoactions.h include/KF5/KXmlGui/kxmlgui_export.h include/KF5/KXmlGui/kxmlgui_version.h include/KF5/KXmlGui/kxmlguibuilder.h include/KF5/KXmlGui/kxmlguiclient.h include/KF5/KXmlGui/kxmlguifactory.h include/KF5/KXmlGui/kxmlguiwindow.h lib/cmake/KF5XmlGui/KF5XmlGuiConfig.cmake lib/cmake/KF5XmlGui/KF5XmlGuiConfigVersion.cmake lib/cmake/KF5XmlGui/KF5XmlGuiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5XmlGui/KF5XmlGuiTargets.cmake lib/libKF5XmlGui.so lib/libKF5XmlGui.so.5 lib/libKF5XmlGui.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/ksendbugmail %%QT_MKSPECDIR%%/modules/qt_KXmlGui.pri %%QT_PLUGINDIR%%/designer/kxmlgui5widgets.so share/locale/af/LC_MESSAGES/kxmlgui5.mo share/locale/ar/LC_MESSAGES/kxmlgui5.mo share/locale/as/LC_MESSAGES/kxmlgui5.mo share/locale/ast/LC_MESSAGES/kxmlgui5.mo share/locale/az/LC_MESSAGES/kxmlgui5.mo share/locale/be/LC_MESSAGES/kxmlgui5.mo share/locale/be@latin/LC_MESSAGES/kxmlgui5.mo share/locale/bg/LC_MESSAGES/kxmlgui5.mo share/locale/bn/LC_MESSAGES/kxmlgui5.mo share/locale/bn_IN/LC_MESSAGES/kxmlgui5.mo share/locale/br/LC_MESSAGES/kxmlgui5.mo share/locale/bs/LC_MESSAGES/kxmlgui5.mo share/locale/ca/LC_MESSAGES/kxmlgui5.mo share/locale/ca@valencia/LC_MESSAGES/kxmlgui5.mo share/locale/crh/LC_MESSAGES/kxmlgui5.mo share/locale/cs/LC_MESSAGES/kxmlgui5.mo share/locale/csb/LC_MESSAGES/kxmlgui5.mo share/locale/cy/LC_MESSAGES/kxmlgui5.mo share/locale/da/LC_MESSAGES/kxmlgui5.mo share/locale/de/LC_MESSAGES/kxmlgui5.mo share/locale/el/LC_MESSAGES/kxmlgui5.mo share/locale/en_GB/LC_MESSAGES/kxmlgui5.mo share/locale/eo/LC_MESSAGES/kxmlgui5.mo share/locale/es/LC_MESSAGES/kxmlgui5.mo share/locale/et/LC_MESSAGES/kxmlgui5.mo share/locale/eu/LC_MESSAGES/kxmlgui5.mo share/locale/fa/LC_MESSAGES/kxmlgui5.mo share/locale/fi/LC_MESSAGES/kxmlgui5.mo share/locale/fr/LC_MESSAGES/kxmlgui5.mo share/locale/fy/LC_MESSAGES/kxmlgui5.mo share/locale/ga/LC_MESSAGES/kxmlgui5.mo share/locale/gd/LC_MESSAGES/kxmlgui5.mo share/locale/gl/LC_MESSAGES/kxmlgui5.mo share/locale/gu/LC_MESSAGES/kxmlgui5.mo share/locale/ha/LC_MESSAGES/kxmlgui5.mo share/locale/he/LC_MESSAGES/kxmlgui5.mo share/locale/hi/LC_MESSAGES/kxmlgui5.mo share/locale/hne/LC_MESSAGES/kxmlgui5.mo share/locale/hr/LC_MESSAGES/kxmlgui5.mo share/locale/hsb/LC_MESSAGES/kxmlgui5.mo share/locale/hu/LC_MESSAGES/kxmlgui5.mo share/locale/hy/LC_MESSAGES/kxmlgui5.mo share/locale/ia/LC_MESSAGES/kxmlgui5.mo share/locale/id/LC_MESSAGES/kxmlgui5.mo +share/locale/ie/LC_MESSAGES/kxmlgui5.mo share/locale/is/LC_MESSAGES/kxmlgui5.mo share/locale/it/LC_MESSAGES/kxmlgui5.mo share/locale/ja/LC_MESSAGES/kxmlgui5.mo share/locale/ka/LC_MESSAGES/kxmlgui5.mo share/locale/kk/LC_MESSAGES/kxmlgui5.mo share/locale/km/LC_MESSAGES/kxmlgui5.mo share/locale/kn/LC_MESSAGES/kxmlgui5.mo share/locale/ko/LC_MESSAGES/kxmlgui5.mo share/locale/ku/LC_MESSAGES/kxmlgui5.mo share/locale/lb/LC_MESSAGES/kxmlgui5.mo share/locale/lt/LC_MESSAGES/kxmlgui5.mo share/locale/lv/LC_MESSAGES/kxmlgui5.mo share/locale/mai/LC_MESSAGES/kxmlgui5.mo share/locale/mk/LC_MESSAGES/kxmlgui5.mo share/locale/ml/LC_MESSAGES/kxmlgui5.mo share/locale/mr/LC_MESSAGES/kxmlgui5.mo share/locale/ms/LC_MESSAGES/kxmlgui5.mo share/locale/my/LC_MESSAGES/kxmlgui5.mo share/locale/nb/LC_MESSAGES/kxmlgui5.mo share/locale/nds/LC_MESSAGES/kxmlgui5.mo share/locale/ne/LC_MESSAGES/kxmlgui5.mo share/locale/nl/LC_MESSAGES/kxmlgui5.mo share/locale/nn/LC_MESSAGES/kxmlgui5.mo share/locale/oc/LC_MESSAGES/kxmlgui5.mo share/locale/or/LC_MESSAGES/kxmlgui5.mo share/locale/pa/LC_MESSAGES/kxmlgui5.mo share/locale/pl/LC_MESSAGES/kxmlgui5.mo share/locale/ps/LC_MESSAGES/kxmlgui5.mo share/locale/pt/LC_MESSAGES/kxmlgui5.mo share/locale/pt_BR/LC_MESSAGES/kxmlgui5.mo share/locale/ro/LC_MESSAGES/kxmlgui5.mo share/locale/ru/LC_MESSAGES/kxmlgui5.mo share/locale/se/LC_MESSAGES/kxmlgui5.mo share/locale/si/LC_MESSAGES/kxmlgui5.mo share/locale/sk/LC_MESSAGES/kxmlgui5.mo share/locale/sl/LC_MESSAGES/kxmlgui5.mo share/locale/sq/LC_MESSAGES/kxmlgui5.mo share/locale/sr/LC_MESSAGES/kxmlgui5.mo share/locale/sr@ijekavian/LC_MESSAGES/kxmlgui5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kxmlgui5.mo share/locale/sr@latin/LC_MESSAGES/kxmlgui5.mo share/locale/sv/LC_MESSAGES/kxmlgui5.mo share/locale/ta/LC_MESSAGES/kxmlgui5.mo share/locale/te/LC_MESSAGES/kxmlgui5.mo share/locale/tg/LC_MESSAGES/kxmlgui5.mo share/locale/th/LC_MESSAGES/kxmlgui5.mo +share/locale/tok/LC_MESSAGES/kxmlgui5.mo share/locale/tr/LC_MESSAGES/kxmlgui5.mo share/locale/tt/LC_MESSAGES/kxmlgui5.mo share/locale/ug/LC_MESSAGES/kxmlgui5.mo share/locale/uk/LC_MESSAGES/kxmlgui5.mo share/locale/uz/LC_MESSAGES/kxmlgui5.mo share/locale/uz@cyrillic/LC_MESSAGES/kxmlgui5.mo share/locale/vi/LC_MESSAGES/kxmlgui5.mo share/locale/wa/LC_MESSAGES/kxmlgui5.mo share/locale/xh/LC_MESSAGES/kxmlgui5.mo share/locale/zh_CN/LC_MESSAGES/kxmlgui5.mo share/locale/zh_HK/LC_MESSAGES/kxmlgui5.mo share/locale/zh_TW/LC_MESSAGES/kxmlgui5.mo share/qlogging-categories5/kxmlgui.categories share/qlogging-categories5/kxmlgui.renamecategories diff --git a/x11/kf5-frameworkintegration/distinfo b/x11/kf5-frameworkintegration/distinfo index 8881506c2c54..b956fe47be56 100644 --- a/x11/kf5-frameworkintegration/distinfo +++ b/x11/kf5-frameworkintegration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689169 -SHA256 (KDE/frameworks/5.99.0/frameworkintegration-5.99.0.tar.xz) = 33fdcfa6c32625348d9a4a99d79f3d0d316efca98f0dd48ab366b1b73b30bd91 -SIZE (KDE/frameworks/5.99.0/frameworkintegration-5.99.0.tar.xz) = 1760344 +TIMESTAMP = 1667804693 +SHA256 (KDE/frameworks/5.100.0/frameworkintegration-5.100.0.tar.xz) = 959d54e508b5d285d3f8e4c35d0cea3a0eb7687ae2bb6f9e4918e441412ee5a0 +SIZE (KDE/frameworks/5.100.0/frameworkintegration-5.100.0.tar.xz) = 1759992 diff --git a/x11/kf5-kactivities-stats/distinfo b/x11/kf5-kactivities-stats/distinfo index 7a58d85d5aba..b10e77e434a8 100644 --- a/x11/kf5-kactivities-stats/distinfo +++ b/x11/kf5-kactivities-stats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689172 -SHA256 (KDE/frameworks/5.99.0/kactivities-stats-5.99.0.tar.xz) = 933056fe0be56025f661cb37754d4f790cedf8615d6858b7fc63f31ca6d42033 -SIZE (KDE/frameworks/5.99.0/kactivities-stats-5.99.0.tar.xz) = 84504 +TIMESTAMP = 1667804696 +SHA256 (KDE/frameworks/5.100.0/kactivities-stats-5.100.0.tar.xz) = 25c51ffce2a83c691771ccae02a5dd91b1991bc197aca67879d61cac36f03996 +SIZE (KDE/frameworks/5.100.0/kactivities-stats-5.100.0.tar.xz) = 84500 diff --git a/x11/kf5-kactivities/distinfo b/x11/kf5-kactivities/distinfo index 62dc9d652c99..2c3a94a9faf5 100644 --- a/x11/kf5-kactivities/distinfo +++ b/x11/kf5-kactivities/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689170 -SHA256 (KDE/frameworks/5.99.0/kactivities-5.99.0.tar.xz) = 69e8859509564a5993241cd6e6b7480c344dfe7c691710705cd5316d87fcf2d0 -SIZE (KDE/frameworks/5.99.0/kactivities-5.99.0.tar.xz) = 73528 +TIMESTAMP = 1667804695 +SHA256 (KDE/frameworks/5.100.0/kactivities-5.100.0.tar.xz) = 13b1dd81fafaa926e37a63c8896f0ceb272d88e225c7833695ad5363ef6aa892 +SIZE (KDE/frameworks/5.100.0/kactivities-5.100.0.tar.xz) = 73500 diff --git a/x11/kf5-kded/distinfo b/x11/kf5-kded/distinfo index b20bdd84dc51..789e0e38e53b 100644 --- a/x11/kf5-kded/distinfo +++ b/x11/kf5-kded/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689173 -SHA256 (KDE/frameworks/5.99.0/kded-5.99.0.tar.xz) = 02c1d8354dbf4e3f47a8ae9d8bdbd1c7942d46acd966bdd7d73fd971834870cd -SIZE (KDE/frameworks/5.99.0/kded-5.99.0.tar.xz) = 40800 +TIMESTAMP = 1667804697 +SHA256 (KDE/frameworks/5.100.0/kded-5.100.0.tar.xz) = d2581a5fc79ef9e74d96162d796937a6b13bc62ba2bf705b714d4d16684d9bce +SIZE (KDE/frameworks/5.100.0/kded-5.100.0.tar.xz) = 40788 diff --git a/x11/kf5-kdelibs4support/distinfo b/x11/kf5-kdelibs4support/distinfo index 527bdf7915d7..c66ce844066a 100644 --- a/x11/kf5-kdelibs4support/distinfo +++ b/x11/kf5-kdelibs4support/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689174 -SHA256 (KDE/frameworks/5.99.0/kdelibs4support-5.99.0.tar.xz) = 0535c7ca1184e7d75e28c630911b640e533782120691510217b293a8143e8d1c -SIZE (KDE/frameworks/5.99.0/kdelibs4support-5.99.0.tar.xz) = 3667732 +TIMESTAMP = 1667804697 +SHA256 (KDE/frameworks/5.100.0/kdelibs4support-5.100.0.tar.xz) = 82a902bc9e817f28f31b1610664b59401c4d556342bcd2de4a473df2bee373b2 +SIZE (KDE/frameworks/5.100.0/kdelibs4support-5.100.0.tar.xz) = 3719636 diff --git a/x11/kf5-kdelibs4support/pkg-plist b/x11/kf5-kdelibs4support/pkg-plist index b31e4e05cf82..69076c490d96 100644 --- a/x11/kf5-kdelibs4support/pkg-plist +++ b/x11/kf5-kdelibs4support/pkg-plist @@ -1,1931 +1,1930 @@ bin/kdebugdialog5 bin/kf5-config etc/xdg/colors/40.colors etc/xdg/colors/Oxygen.colors etc/xdg/colors/Rainbow.colors etc/xdg/colors/Royal.colors etc/xdg/colors/Web.colors etc/xdg/kdebug.areas etc/xdg/kdebugrc etc/xdg/ksslcalist include/KF5/KDELibs4Support/KDE/ConversionCheck/QVconvertible include/KF5/KDELibs4Support/KDE/ConversionCheck/type_toQString include/KF5/KDELibs4Support/KDE/ConversionCheck/type_toQVariant include/KF5/KDELibs4Support/KDE/DOM/AbstractView include/KF5/KDELibs4Support/KDE/DOM/Attr include/KF5/KDELibs4Support/KDE/DOM/CDATASection include/KF5/KDELibs4Support/KDE/DOM/CSSCharsetRule include/KF5/KDELibs4Support/KDE/DOM/CSSException include/KF5/KDELibs4Support/KDE/DOM/CSSFontFaceRule include/KF5/KDELibs4Support/KDE/DOM/CSSImportRule include/KF5/KDELibs4Support/KDE/DOM/CSSMediaRule include/KF5/KDELibs4Support/KDE/DOM/CSSPageRule include/KF5/KDELibs4Support/KDE/DOM/CSSPrimitiveValue include/KF5/KDELibs4Support/KDE/DOM/CSSRule include/KF5/KDELibs4Support/KDE/DOM/CSSRuleList include/KF5/KDELibs4Support/KDE/DOM/CSSStyleDeclaration include/KF5/KDELibs4Support/KDE/DOM/CSSStyleRule include/KF5/KDELibs4Support/KDE/DOM/CSSStyleSheet include/KF5/KDELibs4Support/KDE/DOM/CSSUnknownRule include/KF5/KDELibs4Support/KDE/DOM/CSSValue include/KF5/KDELibs4Support/KDE/DOM/CSSValueList include/KF5/KDELibs4Support/KDE/DOM/CharacterData include/KF5/KDELibs4Support/KDE/DOM/Comment include/KF5/KDELibs4Support/KDE/DOM/Counter include/KF5/KDELibs4Support/KDE/DOM/CustomNodeFilter include/KF5/KDELibs4Support/KDE/DOM/DOMException include/KF5/KDELibs4Support/KDE/DOM/DOMImplementation include/KF5/KDELibs4Support/KDE/DOM/DOMString include/KF5/KDELibs4Support/KDE/DOM/Document include/KF5/KDELibs4Support/KDE/DOM/DocumentFragment include/KF5/KDELibs4Support/KDE/DOM/DocumentStyle include/KF5/KDELibs4Support/KDE/DOM/DocumentType include/KF5/KDELibs4Support/KDE/DOM/DomShared include/KF5/KDELibs4Support/KDE/DOM/Element include/KF5/KDELibs4Support/KDE/DOM/Entity include/KF5/KDELibs4Support/KDE/DOM/EntityReference include/KF5/KDELibs4Support/KDE/DOM/Event include/KF5/KDELibs4Support/KDE/DOM/EventException include/KF5/KDELibs4Support/KDE/DOM/EventListener include/KF5/KDELibs4Support/KDE/DOM/HTMLAnchorElement include/KF5/KDELibs4Support/KDE/DOM/HTMLAppletElement include/KF5/KDELibs4Support/KDE/DOM/HTMLAreaElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBRElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBaseElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBaseFontElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBlockquoteElement include/KF5/KDELibs4Support/KDE/DOM/HTMLBodyElement include/KF5/KDELibs4Support/KDE/DOM/HTMLButtonElement include/KF5/KDELibs4Support/KDE/DOM/HTMLCollection include/KF5/KDELibs4Support/KDE/DOM/HTMLDListElement include/KF5/KDELibs4Support/KDE/DOM/HTMLDirectoryElement include/KF5/KDELibs4Support/KDE/DOM/HTMLDivElement include/KF5/KDELibs4Support/KDE/DOM/HTMLDocument include/KF5/KDELibs4Support/KDE/DOM/HTMLElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFieldSetElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFontElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFormCollection include/KF5/KDELibs4Support/KDE/DOM/HTMLFormElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFrameElement include/KF5/KDELibs4Support/KDE/DOM/HTMLFrameSetElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHRElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHeadElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHeadingElement include/KF5/KDELibs4Support/KDE/DOM/HTMLHtmlElement include/KF5/KDELibs4Support/KDE/DOM/HTMLIFrameElement include/KF5/KDELibs4Support/KDE/DOM/HTMLImageElement include/KF5/KDELibs4Support/KDE/DOM/HTMLInputElement include/KF5/KDELibs4Support/KDE/DOM/HTMLIsIndexElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLIElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLabelElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLayerElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLegendElement include/KF5/KDELibs4Support/KDE/DOM/HTMLLinkElement include/KF5/KDELibs4Support/KDE/DOM/HTMLMapElement include/KF5/KDELibs4Support/KDE/DOM/HTMLMenuElement include/KF5/KDELibs4Support/KDE/DOM/HTMLMetaElement include/KF5/KDELibs4Support/KDE/DOM/HTMLModElement include/KF5/KDELibs4Support/KDE/DOM/HTMLOListElement include/KF5/KDELibs4Support/KDE/DOM/HTMLObjectElement include/KF5/KDELibs4Support/KDE/DOM/HTMLOptGroupElement include/KF5/KDELibs4Support/KDE/DOM/HTMLOptionElement include/KF5/KDELibs4Support/KDE/DOM/HTMLParagraphElement include/KF5/KDELibs4Support/KDE/DOM/HTMLParamElement include/KF5/KDELibs4Support/KDE/DOM/HTMLPreElement include/KF5/KDELibs4Support/KDE/DOM/HTMLQuoteElement include/KF5/KDELibs4Support/KDE/DOM/HTMLScriptElement include/KF5/KDELibs4Support/KDE/DOM/HTMLSelectElement include/KF5/KDELibs4Support/KDE/DOM/HTMLStyleElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableCaptionElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableCellElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableColElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableRowElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTableSectionElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTextAreaElement include/KF5/KDELibs4Support/KDE/DOM/HTMLTitleElement include/KF5/KDELibs4Support/KDE/DOM/HTMLUListElement include/KF5/KDELibs4Support/KDE/DOM/KeyboardEvent include/KF5/KDELibs4Support/KDE/DOM/LinkStyle include/KF5/KDELibs4Support/KDE/DOM/MediaList include/KF5/KDELibs4Support/KDE/DOM/MouseEvent include/KF5/KDELibs4Support/KDE/DOM/MutationEvent include/KF5/KDELibs4Support/KDE/DOM/NamedNodeMap include/KF5/KDELibs4Support/KDE/DOM/Node include/KF5/KDELibs4Support/KDE/DOM/NodeFilter include/KF5/KDELibs4Support/KDE/DOM/NodeIterator include/KF5/KDELibs4Support/KDE/DOM/NodeList include/KF5/KDELibs4Support/KDE/DOM/Notation include/KF5/KDELibs4Support/KDE/DOM/ProcessingInstruction include/KF5/KDELibs4Support/KDE/DOM/RGBColor include/KF5/KDELibs4Support/KDE/DOM/Range include/KF5/KDELibs4Support/KDE/DOM/RangeException include/KF5/KDELibs4Support/KDE/DOM/Rect include/KF5/KDELibs4Support/KDE/DOM/StyleSheet include/KF5/KDELibs4Support/KDE/DOM/StyleSheetList include/KF5/KDELibs4Support/KDE/DOM/Text include/KF5/KDELibs4Support/KDE/DOM/TextEvent include/KF5/KDELibs4Support/KDE/DOM/TreeWalker include/KF5/KDELibs4Support/KDE/DOM/UIEvent include/KF5/KDELibs4Support/KDE/K4AboutData include/KF5/KDELibs4Support/KDE/KACL include/KF5/KDELibs4Support/KDE/KAboutApplicationDialog include/KF5/KDELibs4Support/KDE/KAboutData include/KF5/KDELibs4Support/KDE/KAboutPerson include/KF5/KDELibs4Support/KDE/KAccelGen/Deref include/KF5/KDELibs4Support/KDE/KAccelGen/Deref_Key include/KF5/KDELibs4Support/KDE/KAcceleratorManager include/KF5/KDELibs4Support/KDE/KAction include/KF5/KDELibs4Support/KDE/KActionCategory include/KF5/KDELibs4Support/KDE/KActionCollection include/KF5/KDELibs4Support/KDE/KActionMenu include/KF5/KDELibs4Support/KDE/KActionSelector include/KF5/KDELibs4Support/KDE/KAnimatedButton include/KF5/KDELibs4Support/KDE/KApplication include/KF5/KDELibs4Support/KDE/KAr include/KF5/KDELibs4Support/KDE/KArchive include/KF5/KDELibs4Support/KDE/KArchiveDirectory include/KF5/KDELibs4Support/KDE/KArchiveEntry include/KF5/KDELibs4Support/KDE/KArchiveFile include/KF5/KDELibs4Support/KDE/KArrowButton include/KF5/KDELibs4Support/KDE/KAscii include/KF5/KDELibs4Support/KDE/KAssistantDialog include/KF5/KDELibs4Support/KDE/KAuth/Action include/KF5/KDELibs4Support/KDE/KAuth/ActionReply include/KF5/KDELibs4Support/KDE/KAuth/ActionWatcher include/KF5/KDELibs4Support/KDE/KAuth/HelperSupport include/KF5/KDELibs4Support/KDE/KAuthorized include/KF5/KDELibs4Support/KDE/KAutoMount include/KF5/KDELibs4Support/KDE/KAutoSaveFile include/KF5/KDELibs4Support/KDE/KAutoUnmount include/KF5/KDELibs4Support/KDE/KAutostart include/KF5/KDELibs4Support/KDE/KBookmark include/KF5/KDELibs4Support/KDE/KBookmarkAction include/KF5/KDELibs4Support/KDE/KBookmarkActionInterface include/KF5/KDELibs4Support/KDE/KBookmarkActionMenu include/KF5/KDELibs4Support/KDE/KBookmarkDialog include/KF5/KDELibs4Support/KDE/KBookmarkDomBuilder include/KF5/KDELibs4Support/KDE/KBookmarkExporterBase include/KF5/KDELibs4Support/KDE/KBookmarkGroup include/KF5/KDELibs4Support/KDE/KBookmarkGroupTraverser include/KF5/KDELibs4Support/KDE/KBookmarkImporterBase include/KF5/KDELibs4Support/KDE/KBookmarkManager include/KF5/KDELibs4Support/KDE/KBookmarkMenu include/KF5/KDELibs4Support/KDE/KBookmarkOwner include/KF5/KDELibs4Support/KDE/KBreadcrumbSelectionModel include/KF5/KDELibs4Support/KDE/KBugReport include/KF5/KDELibs4Support/KDE/KBuildSycocaProgressDialog include/KF5/KDELibs4Support/KDE/KButtonGroup include/KF5/KDELibs4Support/KDE/KCModule include/KF5/KDELibs4Support/KDE/KCModuleContainer include/KF5/KDELibs4Support/KDE/KCModuleInfo include/KF5/KDELibs4Support/KDE/KCModuleLoader include/KF5/KDELibs4Support/KDE/KCModuleProxy include/KF5/KDELibs4Support/KDE/KCMultiDialog include/KF5/KDELibs4Support/KDE/KCalendarSystem include/KF5/KDELibs4Support/KDE/KCalendarSystemFactory include/KF5/KDELibs4Support/KDE/KCapacityBar include/KF5/KDELibs4Support/KDE/KCategorizedSortFilterProxyModel include/KF5/KDELibs4Support/KDE/KCategorizedView include/KF5/KDELibs4Support/KDE/KCategoryDrawer include/KF5/KDELibs4Support/KDE/KCharMacroExpander include/KF5/KDELibs4Support/KDE/KCharSelect include/KF5/KDELibs4Support/KDE/KCharsets include/KF5/KDELibs4Support/KDE/KCheckableProxyModel include/KF5/KDELibs4Support/KDE/KCmdLineArgs include/KF5/KDELibs4Support/KDE/KCmdLineOptions include/KF5/KDELibs4Support/KDE/KCodecAction include/KF5/KDELibs4Support/KDE/KCodecs include/KF5/KDELibs4Support/KDE/KColor include/KF5/KDELibs4Support/KDE/KColorButton include/KF5/KDELibs4Support/KDE/KColorCells include/KF5/KDELibs4Support/KDE/KColorCollection include/KF5/KDELibs4Support/KDE/KColorCombo include/KF5/KDELibs4Support/KDE/KColorDialog include/KF5/KDELibs4Support/KDE/KColorMimeData include/KF5/KDELibs4Support/KDE/KColorPatch include/KF5/KDELibs4Support/KDE/KColorScheme include/KF5/KDELibs4Support/KDE/KColorTable include/KF5/KDELibs4Support/KDE/KColorUtils include/KF5/KDELibs4Support/KDE/KColorValueSelector include/KF5/KDELibs4Support/KDE/KComboBox include/KF5/KDELibs4Support/KDE/KCompletion include/KF5/KDELibs4Support/KDE/KCompletionBase include/KF5/KDELibs4Support/KDE/KCompletionBox include/KF5/KDELibs4Support/KDE/KCompletionMatches include/KF5/KDELibs4Support/KDE/KComponentData include/KF5/KDELibs4Support/KDE/KCompositeJob include/KF5/KDELibs4Support/KDE/KConfig include/KF5/KDELibs4Support/KDE/KConfigBase include/KF5/KDELibs4Support/KDE/KConfigDialog include/KF5/KDELibs4Support/KDE/KConfigDialogManager include/KF5/KDELibs4Support/KDE/KConfigGroup include/KF5/KDELibs4Support/KDE/KConfigSkeleton include/KF5/KDELibs4Support/KDE/KConfigSkeletonGenericItem include/KF5/KDELibs4Support/KDE/KConfigSkeletonItem include/KF5/KDELibs4Support/KDE/KCrash include/KF5/KDELibs4Support/KDE/KCrashBookmarkImporter include/KF5/KDELibs4Support/KDE/KCrashBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KCurrencyCode include/KF5/KDELibs4Support/KDE/KCursor include/KF5/KDELibs4Support/KDE/KDBusServiceStarter include/KF5/KDELibs4Support/KDE/KDEDModule include/KF5/KDELibs4Support/KDE/KDEPrintDialog include/KF5/KDELibs4Support/KDE/KDEsuClient include/KF5/KDELibs4Support/KDE/KDNSSD/Configuration include/KF5/KDELibs4Support/KDE/KDNSSD/DomainBrowser include/KF5/KDELibs4Support/KDE/KDNSSD/DomainModel include/KF5/KDELibs4Support/KDE/KDNSSD/PublicService include/KF5/KDELibs4Support/KDE/KDNSSD/RemoteService include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceBase include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceBrowser include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceModel include/KF5/KDELibs4Support/KDE/KDNSSD/ServiceTypeBrowser include/KF5/KDELibs4Support/KDE/KDataTool include/KF5/KDELibs4Support/KDE/KDataToolAction include/KF5/KDELibs4Support/KDE/KDataToolInfo include/KF5/KDELibs4Support/KDE/KDateComboBox include/KF5/KDELibs4Support/KDE/KDatePicker include/KF5/KDELibs4Support/KDE/KDateTable include/KF5/KDELibs4Support/KDE/KDateTime include/KF5/KDELibs4Support/KDE/KDateTimeEdit include/KF5/KDELibs4Support/KDE/KDateTimeWidget include/KF5/KDELibs4Support/KDE/KDateValidator include/KF5/KDELibs4Support/KDE/KDateWidget include/KF5/KDELibs4Support/KDE/KDebug include/KF5/KDELibs4Support/KDE/KDescendantsProxyModel include/KF5/KDELibs4Support/KDE/KDesktopFile include/KF5/KDELibs4Support/KDE/KDeviceListModel include/KF5/KDELibs4Support/KDE/KDialog include/KF5/KDELibs4Support/KDE/KDialogButtonBox include/KF5/KDELibs4Support/KDE/KDialogJobUiDelegate include/KF5/KDELibs4Support/KDE/KDirLister include/KF5/KDELibs4Support/KDE/KDirModel include/KF5/KDELibs4Support/KDE/KDirNotify include/KF5/KDELibs4Support/KDE/KDirOperator include/KF5/KDELibs4Support/KDE/KDirSelectDialog include/KF5/KDELibs4Support/KDE/KDirSortFilterProxyModel include/KF5/KDELibs4Support/KDE/KDirWatch include/KF5/KDELibs4Support/KDE/KDiskFreeSpace include/KF5/KDELibs4Support/KDE/KDiskFreeSpaceInfo include/KF5/KDELibs4Support/KDE/KDoubleNumInput include/KF5/KDELibs4Support/KDE/KDoubleValidator include/KF5/KDELibs4Support/KDE/KDualAction include/KF5/KDELibs4Support/KDE/KEMailSettings include/KF5/KDELibs4Support/KDE/KEditListBox include/KF5/KDELibs4Support/KDE/KEditListWidget include/KF5/KDELibs4Support/KDE/KEditToolBar include/KF5/KDELibs4Support/KDE/KEmoticons include/KF5/KDELibs4Support/KDE/KEmoticonsProvider include/KF5/KDELibs4Support/KDE/KEmoticonsTheme include/KF5/KDELibs4Support/KDE/KEncodingFileDialog include/KF5/KDELibs4Support/KDE/KEncodingProber include/KF5/KDELibs4Support/KDE/KExtendableItemDelegate include/KF5/KDELibs4Support/KDE/KFadeWidgetEffect include/KF5/KDELibs4Support/KDE/KFile include/KF5/KDELibs4Support/KDE/KFileDialog include/KF5/KDELibs4Support/KDE/KFileFilterCombo include/KF5/KDELibs4Support/KDE/KFileItem include/KF5/KDELibs4Support/KDE/KFileItemActions include/KF5/KDELibs4Support/KDE/KFileItemDelegate include/KF5/KDELibs4Support/KDE/KFileItemList include/KF5/KDELibs4Support/KDE/KFileItemListProperties include/KF5/KDELibs4Support/KDE/KFileMetaDataWidget include/KF5/KDELibs4Support/KDE/KFileMetaInfo include/KF5/KDELibs4Support/KDE/KFileMetaInfoGroup include/KF5/KDELibs4Support/KDE/KFileMetaInfoItem include/KF5/KDELibs4Support/KDE/KFilePlacesModel include/KF5/KDELibs4Support/KDE/KFilePlacesView include/KF5/KDELibs4Support/KDE/KFilePreviewGenerator include/KF5/KDELibs4Support/KDE/KFileShare include/KF5/KDELibs4Support/KDE/KFileSharePropsPlugin include/KF5/KDELibs4Support/KDE/KFileTreeBranch include/KF5/KDELibs4Support/KDE/KFileTreeView include/KF5/KDELibs4Support/KDE/KFileWidget include/KF5/KDELibs4Support/KDE/KFileWritePlugin include/KF5/KDELibs4Support/KDE/KFilterBase include/KF5/KDELibs4Support/KDE/KFilterDev include/KF5/KDELibs4Support/KDE/KFilterProxySearchLine include/KF5/KDELibs4Support/KDE/KFind include/KF5/KDELibs4Support/KDE/KFindDialog include/KF5/KDELibs4Support/KDE/KFontAction include/KF5/KDELibs4Support/KDE/KFontChooser include/KF5/KDELibs4Support/KDE/KFontComboBox include/KF5/KDELibs4Support/KDE/KFontDialog include/KF5/KDELibs4Support/KDE/KFontRequester include/KF5/KDELibs4Support/KDE/KFontSizeAction include/KF5/KDELibs4Support/KDE/KFontUtils include/KF5/KDELibs4Support/KDE/KGenericFactory include/KF5/KDELibs4Support/KDE/KGenericFactoryBase include/KF5/KDELibs4Support/KDE/KGlobal include/KF5/KDELibs4Support/KDE/KGlobalAccel include/KF5/KDELibs4Support/KDE/KGlobalSettings include/KF5/KDELibs4Support/KDE/KGlobalShortcutInfo include/KF5/KDELibs4Support/KDE/KGradientSelector include/KF5/KDELibs4Support/KDE/KGraphicsWebView include/KF5/KDELibs4Support/KDE/KGuiItem include/KF5/KDELibs4Support/KDE/KHBox include/KF5/KDELibs4Support/KDE/KHTMLPart include/KF5/KDELibs4Support/KDE/KHTMLSettings include/KF5/KDELibs4Support/KDE/KHTMLView include/KF5/KDELibs4Support/KDE/KHelpMenu include/KF5/KDELibs4Support/KDE/KHistoryComboBox include/KF5/KDELibs4Support/KDE/KHueSaturationSelector include/KF5/KDELibs4Support/KDE/KIEBookmarkExporterImpl include/KF5/KDELibs4Support/KDE/KIEBookmarkImporter include/KF5/KDELibs4Support/KDE/KIEBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KIMProxy include/KF5/KDELibs4Support/KDE/KIO/AccessManager include/KF5/KDELibs4Support/KDE/KIO/AuthInfo include/KF5/KDELibs4Support/KDE/KIO/ChmodJob include/KF5/KDELibs4Support/KDE/KIO/Connection include/KF5/KDELibs4Support/KDE/KIO/CopyInfo include/KF5/KDELibs4Support/KDE/KIO/CopyJob include/KF5/KDELibs4Support/KDE/KIO/DavJob include/KF5/KDELibs4Support/KDE/KIO/DeleteJob include/KF5/KDELibs4Support/KDE/KIO/FileCopyJob include/KF5/KDELibs4Support/KDE/KIO/FileJob include/KF5/KDELibs4Support/KDE/KIO/ForwardingSlaveBase include/KF5/KDELibs4Support/KDE/KIO/Job include/KF5/KDELibs4Support/KDE/KIO/JobClasses include/KF5/KDELibs4Support/KDE/KIO/JobUiDelegate include/KF5/KDELibs4Support/KDE/KIO/ListJob include/KF5/KDELibs4Support/KDE/KIO/MetaData include/KF5/KDELibs4Support/KDE/KIO/MetaInfoJob include/KF5/KDELibs4Support/KDE/KIO/MimetypeJob include/KF5/KDELibs4Support/KDE/KIO/MultiGetJob include/KF5/KDELibs4Support/KDE/KIO/NetAccess include/KF5/KDELibs4Support/KDE/KIO/NetRC include/KF5/KDELibs4Support/KDE/KIO/PasswordDialog include/KF5/KDELibs4Support/KDE/KIO/PreviewJob include/KF5/KDELibs4Support/KDE/KIO/RenameDialog include/KF5/KDELibs4Support/KDE/KIO/Scheduler include/KF5/KDELibs4Support/KDE/KIO/SessionData include/KF5/KDELibs4Support/KDE/KIO/SimpleJob include/KF5/KDELibs4Support/KDE/KIO/SkipDialog include/KF5/KDELibs4Support/KDE/KIO/Slave include/KF5/KDELibs4Support/KDE/KIO/SlaveBase include/KF5/KDELibs4Support/KDE/KIO/SlaveConfig include/KF5/KDELibs4Support/KDE/KIO/SlaveInterface include/KF5/KDELibs4Support/KDE/KIO/StatJob include/KF5/KDELibs4Support/KDE/KIO/StoredTransferJob include/KF5/KDELibs4Support/KDE/KIO/TCPSlaveBase include/KF5/KDELibs4Support/KDE/KIO/Task include/KF5/KDELibs4Support/KDE/KIO/TransferJob include/KF5/KDELibs4Support/KDE/KIcon include/KF5/KDELibs4Support/KDE/KIconButton include/KF5/KDELibs4Support/KDE/KIconDialog include/KF5/KDELibs4Support/KDE/KIconEffect include/KF5/KDELibs4Support/KDE/KIconLoader include/KF5/KDELibs4Support/KDE/KIconTheme include/KF5/KDELibs4Support/KDE/KIdentityProxyModel include/KF5/KDELibs4Support/KDE/KIdleTime include/KF5/KDELibs4Support/KDE/KImageCache include/KF5/KDELibs4Support/KDE/KImageFilePreview include/KF5/KDELibs4Support/KDE/KImageIO include/KF5/KDELibs4Support/KDE/KInputDialog include/KF5/KDELibs4Support/KDE/KIntNumInput include/KF5/KDELibs4Support/KDE/KIntSpinBox include/KF5/KDELibs4Support/KDE/KIntValidator include/KF5/KDELibs4Support/KDE/KJob include/KF5/KDELibs4Support/KDE/KJobTrackerInterface include/KF5/KDELibs4Support/KDE/KJobUiDelegate include/KF5/KDELibs4Support/KDE/KKeySequenceWidget include/KF5/KDELibs4Support/KDE/KLanguageButton include/KF5/KDELibs4Support/KDE/KLed include/KF5/KDELibs4Support/KDE/KLibLoader include/KF5/KDELibs4Support/KDE/KLibrary include/KF5/KDELibs4Support/KDE/KLineEdit include/KF5/KDELibs4Support/KDE/KLinkItemSelectionModel include/KF5/KDELibs4Support/KDE/KListWidget include/KF5/KDELibs4Support/KDE/KListWidgetSearchLine include/KF5/KDELibs4Support/KDE/KLocale include/KF5/KDELibs4Support/KDE/KLocalizedDate include/KF5/KDELibs4Support/KDE/KLocalizedString include/KF5/KDELibs4Support/KDE/KLockFile include/KF5/KDELibs4Support/KDE/KMD5 include/KF5/KDELibs4Support/KDE/KMacroExpanderBase include/KF5/KDELibs4Support/KDE/KMainWindow include/KF5/KDELibs4Support/KDE/KMakeTypeList include/KF5/KDELibs4Support/KDE/KMediaPlayer/Player include/KF5/KDELibs4Support/KDE/KMediaPlayer/View include/KF5/KDELibs4Support/KDE/KMenu include/KF5/KDELibs4Support/KDE/KMenuBar include/KF5/KDELibs4Support/KDE/KMessage include/KF5/KDELibs4Support/KDE/KMessageBox include/KF5/KDELibs4Support/KDE/KMessageBoxMessageHandler include/KF5/KDELibs4Support/KDE/KMessageHandler include/KF5/KDELibs4Support/KDE/KMessageWidget include/KF5/KDELibs4Support/KDE/KMimeType include/KF5/KDELibs4Support/KDE/KMimeTypeChooser include/KF5/KDELibs4Support/KDE/KMimeTypeChooserDialog include/KF5/KDELibs4Support/KDE/KMimeTypeResolver include/KF5/KDELibs4Support/KDE/KMimeTypeTrader include/KF5/KDELibs4Support/KDE/KModelIndexProxyMapper include/KF5/KDELibs4Support/KDE/KModifierKeyInfo include/KF5/KDELibs4Support/KDE/KMountPoint include/KF5/KDELibs4Support/KDE/KMozillaBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KMultiTabBar include/KF5/KDELibs4Support/KDE/KMultiTabBarButton include/KF5/KDELibs4Support/KDE/KMultiTabBarTab include/KF5/KDELibs4Support/KDE/KNFSShare include/KF5/KDELibs4Support/KDE/KNS/Author include/KF5/KDELibs4Support/KDE/KNS/Category include/KF5/KDELibs4Support/KDE/KNS/Engine include/KF5/KDELibs4Support/KDE/KNS/Entry include/KF5/KDELibs4Support/KDE/KNS/Installation include/KF5/KDELibs4Support/KDE/KNS/KTranslatable include/KF5/KDELibs4Support/KDE/KNS3/DownloadDialog include/KF5/KDELibs4Support/KDE/KNS3/Entry include/KF5/KDELibs4Support/KDE/KNS3/KNewStuffAction include/KF5/KDELibs4Support/KDE/KNS3/KNewStuffButton include/KF5/KDELibs4Support/KDE/KNSBookmarkExporter include/KF5/KDELibs4Support/KDE/KNSBookmarkExporterImpl include/KF5/KDELibs4Support/KDE/KNSBookmarkImporter include/KF5/KDELibs4Support/KDE/KNSBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KNTLM include/KF5/KDELibs4Support/KDE/KNameAndUrlInputDialog include/KF5/KDELibs4Support/KDE/KNetwork/KActiveSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KBufferedSocket include/KF5/KDELibs4Support/KDE/KNetwork/KClientSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KInetSocketAddress include/KF5/KDELibs4Support/KDE/KNetwork/KIpAddress include/KF5/KDELibs4Support/KDE/KNetwork/KPassiveSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KResolver include/KF5/KDELibs4Support/KDE/KNetwork/KResolverEntry include/KF5/KDELibs4Support/KDE/KNetwork/KResolverResults include/KF5/KDELibs4Support/KDE/KNetwork/KReverseResolver include/KF5/KDELibs4Support/KDE/KNetwork/KServerSocket include/KF5/KDELibs4Support/KDE/KNetwork/KSocketAddress include/KF5/KDELibs4Support/KDE/KNetwork/KSocketBase include/KF5/KDELibs4Support/KDE/KNetwork/KSocketDevice include/KF5/KDELibs4Support/KDE/KNetwork/KSocketDeviceFactory include/KF5/KDELibs4Support/KDE/KNetwork/KStreamSocket include/KF5/KDELibs4Support/KDE/KNetwork/KUnixSocketAddress include/KF5/KDELibs4Support/KDE/KNewFileMenu include/KF5/KDELibs4Support/KDE/KNewPasswordDialog include/KF5/KDELibs4Support/KDE/KNotification include/KF5/KDELibs4Support/KDE/KNotificationRestrictions include/KF5/KDELibs4Support/KDE/KNotifyConfigWidget include/KF5/KDELibs4Support/KDE/KNumInput include/KF5/KDELibs4Support/KDE/KOCRDialog include/KF5/KDELibs4Support/KDE/KOpenWithDialog include/KF5/KDELibs4Support/KDE/KOperaBookmarkExporterImpl include/KF5/KDELibs4Support/KDE/KOperaBookmarkImporter include/KF5/KDELibs4Support/KDE/KOperaBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KPageDialog include/KF5/KDELibs4Support/KDE/KPageModel include/KF5/KDELibs4Support/KDE/KPageView include/KF5/KDELibs4Support/KDE/KPageWidget include/KF5/KDELibs4Support/KDE/KPageWidgetItem include/KF5/KDELibs4Support/KDE/KPageWidgetModel include/KF5/KDELibs4Support/KDE/KParts/BrowserExtension include/KF5/KDELibs4Support/KDE/KParts/BrowserHostExtension include/KF5/KDELibs4Support/KDE/KParts/BrowserInterface include/KF5/KDELibs4Support/KDE/KParts/BrowserRun include/KF5/KDELibs4Support/KDE/KParts/DockMainWindow3 include/KF5/KDELibs4Support/KDE/KParts/Event include/KF5/KDELibs4Support/KDE/KParts/Factory include/KF5/KDELibs4Support/KDE/KParts/FileInfoExtension include/KF5/KDELibs4Support/KDE/KParts/GUIActivateEvent include/KF5/KDELibs4Support/KDE/KParts/GenericFactory include/KF5/KDELibs4Support/KDE/KParts/GenericFactoryBase include/KF5/KDELibs4Support/KDE/KParts/HistoryProvider include/KF5/KDELibs4Support/KDE/KParts/HtmlExtension include/KF5/KDELibs4Support/KDE/KParts/ListingExtension include/KF5/KDELibs4Support/KDE/KParts/LiveConnectExtension include/KF5/KDELibs4Support/KDE/KParts/MainWindow include/KF5/KDELibs4Support/KDE/KParts/OpenUrlEvent include/KF5/KDELibs4Support/KDE/KParts/Part include/KF5/KDELibs4Support/KDE/KParts/PartActivateEvent include/KF5/KDELibs4Support/KDE/KParts/PartBase include/KF5/KDELibs4Support/KDE/KParts/PartManager include/KF5/KDELibs4Support/KDE/KParts/PartSelectEvent include/KF5/KDELibs4Support/KDE/KParts/Plugin include/KF5/KDELibs4Support/KDE/KParts/ReadOnlyPart include/KF5/KDELibs4Support/KDE/KParts/ReadWritePart include/KF5/KDELibs4Support/KDE/KParts/StatusBarExtension include/KF5/KDELibs4Support/KDE/KParts/TextExtension include/KF5/KDELibs4Support/KDE/KParts/WindowArgs include/KF5/KDELibs4Support/KDE/KPassivePopup include/KF5/KDELibs4Support/KDE/KPassivePopupMessageHandler include/KF5/KDELibs4Support/KDE/KPasswordDialog include/KF5/KDELibs4Support/KDE/KPasteTextAction include/KF5/KDELibs4Support/KDE/KPixmapCache include/KF5/KDELibs4Support/KDE/KPixmapProvider include/KF5/KDELibs4Support/KDE/KPixmapRegionSelectorDialog include/KF5/KDELibs4Support/KDE/KPixmapRegionSelectorWidget include/KF5/KDELibs4Support/KDE/KPixmapSequence include/KF5/KDELibs4Support/KDE/KPixmapSequenceOverlayPainter include/KF5/KDELibs4Support/KDE/KPixmapSequenceWidget include/KF5/KDELibs4Support/KDE/KPlotAxis include/KF5/KDELibs4Support/KDE/KPlotObject include/KF5/KDELibs4Support/KDE/KPlotPoint include/KF5/KDELibs4Support/KDE/KPlotWidget include/KF5/KDELibs4Support/KDE/KPluginFactory include/KF5/KDELibs4Support/KDE/KPluginInfo include/KF5/KDELibs4Support/KDE/KPluginLoader include/KF5/KDELibs4Support/KDE/KPluginSelector include/KF5/KDELibs4Support/KDE/KPopupFrame include/KF5/KDELibs4Support/KDE/KPreviewWidgetBase include/KF5/KDELibs4Support/KDE/KPrintPreview include/KF5/KDELibs4Support/KDE/KProcess include/KF5/KDELibs4Support/KDE/KProgressDialog include/KF5/KDELibs4Support/KDE/KPropertiesDialog include/KF5/KDELibs4Support/KDE/KProtocolInfo include/KF5/KDELibs4Support/KDE/KProtocolManager include/KF5/KDELibs4Support/KDE/KPty include/KF5/KDELibs4Support/KDE/KPtyDevice include/KF5/KDELibs4Support/KDE/KPtyProcess include/KF5/KDELibs4Support/KDE/KPushButton include/KF5/KDELibs4Support/KDE/KRandom include/KF5/KDELibs4Support/KDE/KRandomSequence include/KF5/KDELibs4Support/KDE/KRatingPainter include/KF5/KDELibs4Support/KDE/KRatingWidget include/KF5/KDELibs4Support/KDE/KRecentDocument include/KF5/KDELibs4Support/KDE/KRecentFilesAction include/KF5/KDELibs4Support/KDE/KRecursiveFilterProxyModel include/KF5/KDELibs4Support/KDE/KRegExpEditorInterface include/KF5/KDELibs4Support/KDE/KRemoteEncoding include/KF5/KDELibs4Support/KDE/KReplace include/KF5/KDELibs4Support/KDE/KReplaceDialog include/KF5/KDELibs4Support/KDE/KRestrictedLine include/KF5/KDELibs4Support/KDE/KRichTextEdit include/KF5/KDELibs4Support/KDE/KRichTextWidget include/KF5/KDELibs4Support/KDE/KRuler include/KF5/KDELibs4Support/KDE/KRun include/KF5/KDELibs4Support/KDE/KSambaShare include/KF5/KDELibs4Support/KDE/KSambaShareData include/KF5/KDELibs4Support/KDE/KSaveFile include/KF5/KDELibs4Support/KDE/KScanDialog include/KF5/KDELibs4Support/KDE/KSelectAction include/KF5/KDELibs4Support/KDE/KSelectionOwner include/KF5/KDELibs4Support/KDE/KSelectionProxyModel include/KF5/KDELibs4Support/KDE/KSelectionWatcher include/KF5/KDELibs4Support/KDE/KSelector include/KF5/KDELibs4Support/KDE/KSeparator include/KF5/KDELibs4Support/KDE/KService include/KF5/KDELibs4Support/KDE/KServiceAction include/KF5/KDELibs4Support/KDE/KServiceGroup include/KF5/KDELibs4Support/KDE/KServiceType include/KF5/KDELibs4Support/KDE/KServiceTypeProfile include/KF5/KDELibs4Support/KDE/KServiceTypeTrader include/KF5/KDELibs4Support/KDE/KSessionManager include/KF5/KDELibs4Support/KDE/KSettings/Dialog include/KF5/KDELibs4Support/KDE/KSettings/Dispatcher include/KF5/KDELibs4Support/KDE/KSettings/PluginPage include/KF5/KDELibs4Support/KDE/KSharedConfig include/KF5/KDELibs4Support/KDE/KSharedConfigPtr include/KF5/KDELibs4Support/KDE/KSharedDataCache include/KF5/KDELibs4Support/KDE/KSharedPtr include/KF5/KDELibs4Support/KDE/KShell include/KF5/KDELibs4Support/KDE/KShellCompletion include/KF5/KDELibs4Support/KDE/KShortcut include/KF5/KDELibs4Support/KDE/KShortcutWidget include/KF5/KDELibs4Support/KDE/KShortcutsDialog include/KF5/KDELibs4Support/KDE/KShortcutsEditor include/KF5/KDELibs4Support/KDE/KSortableItem include/KF5/KDELibs4Support/KDE/KSortableList include/KF5/KDELibs4Support/KDE/KSplashScreen include/KF5/KDELibs4Support/KDE/KSqueezedTextLabel include/KF5/KDELibs4Support/KDE/KStandardAction include/KF5/KDELibs4Support/KDE/KStandardDirs include/KF5/KDELibs4Support/KDE/KStandardGuiItem include/KF5/KDELibs4Support/KDE/KStandardShortcut include/KF5/KDELibs4Support/KDE/KStartupInfo include/KF5/KDELibs4Support/KDE/KStartupInfoData include/KF5/KDELibs4Support/KDE/KStartupInfoId include/KF5/KDELibs4Support/KDE/KStatusBar include/KF5/KDELibs4Support/KDE/KStatusBarJobTracker include/KF5/KDELibs4Support/KDE/KStatusBarOfflineIndicator include/KF5/KDELibs4Support/KDE/KStatusNotifierItem include/KF5/KDELibs4Support/KDE/KStringHandler include/KF5/KDELibs4Support/KDE/KStringListValidator include/KF5/KDELibs4Support/KDE/KStyle include/KF5/KDELibs4Support/KDE/KStyleFactory include/KF5/KDELibs4Support/KDE/KSycoca include/KF5/KDELibs4Support/KDE/KSycocaEntry include/KF5/KDELibs4Support/KDE/KSystemEventFilter include/KF5/KDELibs4Support/KDE/KSystemTimeZone include/KF5/KDELibs4Support/KDE/KSystemTimeZoneSource include/KF5/KDELibs4Support/KDE/KSystemTimeZones include/KF5/KDELibs4Support/KDE/KSystemTrayIcon include/KF5/KDELibs4Support/KDE/KTabBar include/KF5/KDELibs4Support/KDE/KTabWidget include/KF5/KDELibs4Support/KDE/KTar include/KF5/KDELibs4Support/KDE/KTempDir include/KF5/KDELibs4Support/KDE/KTemporaryFile include/KF5/KDELibs4Support/KDE/KTextBrowser include/KF5/KDELibs4Support/KDE/KTextEdit include/KF5/KDELibs4Support/KDE/KTimeComboBox include/KF5/KDELibs4Support/KDE/KTimeZone include/KF5/KDELibs4Support/KDE/KTimeZoneData include/KF5/KDELibs4Support/KDE/KTimeZoneSource include/KF5/KDELibs4Support/KDE/KTimeZoneWidget include/KF5/KDELibs4Support/KDE/KTimeZones include/KF5/KDELibs4Support/KDE/KTipDatabase include/KF5/KDELibs4Support/KDE/KTipDialog include/KF5/KDELibs4Support/KDE/KTitleWidget include/KF5/KDELibs4Support/KDE/KToggleAction include/KF5/KDELibs4Support/KDE/KToggleFullScreenAction include/KF5/KDELibs4Support/KDE/KToggleToolBarAction include/KF5/KDELibs4Support/KDE/KToolBar include/KF5/KDELibs4Support/KDE/KToolBarLabelAction include/KF5/KDELibs4Support/KDE/KToolBarPopupAction include/KF5/KDELibs4Support/KDE/KToolBarSpacerAction include/KF5/KDELibs4Support/KDE/KToolInvocation include/KF5/KDELibs4Support/KDE/KTreeWidgetSearchLine include/KF5/KDELibs4Support/KDE/KTreeWidgetSearchLineWidget include/KF5/KDELibs4Support/KDE/KTypeList include/KF5/KDELibs4Support/KDE/KTypeListIndexOf include/KF5/KDELibs4Support/KDE/KTypeListLength include/KF5/KDELibs4Support/KDE/KTzfileTimeZone include/KF5/KDELibs4Support/KDE/KTzfileTimeZoneSource include/KF5/KDELibs4Support/KDE/KUndoActions include/KF5/KDELibs4Support/KDE/KUniqueApplication include/KF5/KDELibs4Support/KDE/KUnitConversion/Converter include/KF5/KDELibs4Support/KDE/KUnitConversion/Unit include/KF5/KDELibs4Support/KDE/KUnitConversion/UnitCategory include/KF5/KDELibs4Support/KDE/KUnitConversion/Value include/KF5/KDELibs4Support/KDE/KUnitTest/Runner include/KF5/KDELibs4Support/KDE/KUnitTest/SlotTester include/KF5/KDELibs4Support/KDE/KUnitTest/TestResults include/KF5/KDELibs4Support/KDE/KUnitTest/Tester include/KF5/KDELibs4Support/KDE/KUriFilter include/KF5/KDELibs4Support/KDE/KUriFilterData include/KF5/KDELibs4Support/KDE/KUriFilterPlugin include/KF5/KDELibs4Support/KDE/KUrl include/KF5/KDELibs4Support/KDE/KUrlAuthorized include/KF5/KDELibs4Support/KDE/KUrlComboBox include/KF5/KDELibs4Support/KDE/KUrlComboRequester include/KF5/KDELibs4Support/KDE/KUrlCompletion include/KF5/KDELibs4Support/KDE/KUrlLabel include/KF5/KDELibs4Support/KDE/KUrlNavigator include/KF5/KDELibs4Support/KDE/KUrlPixmapProvider include/KF5/KDELibs4Support/KDE/KUrlRequester include/KF5/KDELibs4Support/KDE/KUrlRequesterDialog include/KF5/KDELibs4Support/KDE/KUser include/KF5/KDELibs4Support/KDE/KUserGroup include/KF5/KDELibs4Support/KDE/KVBox include/KF5/KDELibs4Support/KDE/KViewStateMaintainer include/KF5/KDELibs4Support/KDE/KViewStateSaver include/KF5/KDELibs4Support/KDE/KWallet/Wallet include/KF5/KDELibs4Support/KDE/KWebPage include/KF5/KDELibs4Support/KDE/KWebPluginFactory include/KF5/KDELibs4Support/KDE/KWebView include/KF5/KDELibs4Support/KDE/KWebWallet include/KF5/KDELibs4Support/KDE/KWidgetItemDelegate include/KF5/KDELibs4Support/KDE/KWidgetJobTracker include/KF5/KDELibs4Support/KDE/KWindowInfo include/KF5/KDELibs4Support/KDE/KWindowSystem include/KF5/KDELibs4Support/KDE/KWordMacroExpander include/KF5/KDELibs4Support/KDE/KWordWrap include/KF5/KDELibs4Support/KDE/KXBELBookmarkImporterImpl include/KF5/KDELibs4Support/KDE/KXErrorHandler include/KF5/KDELibs4Support/KDE/KXMLGUIBuilder include/KF5/KDELibs4Support/KDE/KXMLGUIClient include/KF5/KDELibs4Support/KDE/KXMLGUIFactory include/KF5/KDELibs4Support/KDE/KXMessages include/KF5/KDELibs4Support/KDE/KXYSelector include/KF5/KDELibs4Support/KDE/KXmlGuiWindow include/KF5/KDELibs4Support/KDE/KZip include/KF5/KDELibs4Support/KDE/KZipFileEntry include/KF5/KDELibs4Support/KDE/KonqBookmarkMenu include/KF5/KDELibs4Support/KDE/KonqBookmarkOwner include/KF5/KDELibs4Support/KDE/Kross/Action include/KF5/KDELibs4Support/KDE/Kross/ActionCollection include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionEditor include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionModel include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionProxyModel include/KF5/KDELibs4Support/KDE/Kross/ActionCollectionView include/KF5/KDELibs4Support/KDE/Kross/ChildrenInterface include/KF5/KDELibs4Support/KDE/Kross/ErrorInterface include/KF5/KDELibs4Support/KDE/Kross/Interpreter include/KF5/KDELibs4Support/KDE/Kross/InterpreterInfo include/KF5/KDELibs4Support/KDE/Kross/Manager include/KF5/KDELibs4Support/KDE/Kross/MetaFunction include/KF5/KDELibs4Support/KDE/Kross/MetaType include/KF5/KDELibs4Support/KDE/Kross/MetaTypeHandler include/KF5/KDELibs4Support/KDE/Kross/MetaTypeImpl include/KF5/KDELibs4Support/KDE/Kross/MetaTypeVariant include/KF5/KDELibs4Support/KDE/Kross/MetaTypeVoidStar include/KF5/KDELibs4Support/KDE/Kross/Object include/KF5/KDELibs4Support/KDE/Kross/Script include/KF5/KDELibs4Support/KDE/Kross/ScriptingPlugin include/KF5/KDELibs4Support/KDE/Kross/WrapperInterface include/KF5/KDELibs4Support/KDE/NET include/KF5/KDELibs4Support/KDE/NETRootInfo include/KF5/KDELibs4Support/KDE/NETWinInfo include/KF5/KDELibs4Support/KDE/OrgKdeKDirNotifyInterface include/KF5/KDELibs4Support/KDE/PtyProcess include/KF5/KDELibs4Support/KDE/Solid/Battery include/KF5/KDELibs4Support/KDE/Solid/Block include/KF5/KDELibs4Support/KDE/Solid/Camera include/KF5/KDELibs4Support/KDE/Solid/Device include/KF5/KDELibs4Support/KDE/Solid/DeviceInterface include/KF5/KDELibs4Support/KDE/Solid/DeviceNotifier include/KF5/KDELibs4Support/KDE/Solid/GenericInterface include/KF5/KDELibs4Support/KDE/Solid/NetworkShare include/KF5/KDELibs4Support/KDE/Solid/Networking include/KF5/KDELibs4Support/KDE/Solid/OpticalDisc include/KF5/KDELibs4Support/KDE/Solid/OpticalDrive include/KF5/KDELibs4Support/KDE/Solid/PortableMediaPlayer include/KF5/KDELibs4Support/KDE/Solid/PowerManagement include/KF5/KDELibs4Support/KDE/Solid/Predicate include/KF5/KDELibs4Support/KDE/Solid/Processor include/KF5/KDELibs4Support/KDE/Solid/StorageAccess include/KF5/KDELibs4Support/KDE/Solid/StorageDrive include/KF5/KDELibs4Support/KDE/Solid/StorageVolume include/KF5/KDELibs4Support/KDE/Sonnet/ConfigDialog include/KF5/KDELibs4Support/KDE/Sonnet/ConfigWidget include/KF5/KDELibs4Support/KDE/Sonnet/Dialog include/KF5/KDELibs4Support/KDE/Sonnet/DictionaryComboBox include/KF5/KDELibs4Support/KDE/Sonnet/Highlighter include/KF5/KDELibs4Support/KDE/SshProcess include/KF5/KDELibs4Support/KDE/StubProcess include/KF5/KDELibs4Support/KDE/SuProcess include/KF5/KDELibs4Support/KDE/ThreadWeaver/DependencyPolicy include/KF5/KDELibs4Support/KDE/ThreadWeaver/Job include/KF5/KDELibs4Support/KDE/ThreadWeaver/JobCollection include/KF5/KDELibs4Support/KDE/ThreadWeaver/JobSequence include/KF5/KDELibs4Support/KDE/ThreadWeaver/QueuePolicy include/KF5/KDELibs4Support/KDE/ThreadWeaver/ResourceRestrictionPolicy include/KF5/KDELibs4Support/KDE/ThreadWeaver/State include/KF5/KDELibs4Support/KDE/ThreadWeaver/Thread include/KF5/KDELibs4Support/KDE/ThreadWeaver/Weaver include/KF5/KDELibs4Support/KDE/ThreadWeaver/WeaverInterface include/KF5/KDELibs4Support/KDE/ThreadWeaver/WeaverObserver include/KF5/KDELibs4Support/KDE/ThumbCreator include/KF5/KDELibs4Support/KDE/kdbgstream include/KF5/KDELibs4Support/KDE/khtml/DrawContentsEvent include/KF5/KDELibs4Support/KDE/khtml/MouseDoubleClickEvent include/KF5/KDELibs4Support/KDE/khtml/MouseEvent include/KF5/KDELibs4Support/KDE/khtml/MouseMoveEvent include/KF5/KDELibs4Support/KDE/khtml/MousePressEvent include/KF5/KDELibs4Support/KDE/khtml/MouseReleaseEvent include/KF5/KDELibs4Support/KDE/kndbgstream include/KF5/KDELibs4Support/k3bufferedsocket.h include/KF5/KDELibs4Support/k3clientsocketbase.h include/KF5/KDELibs4Support/k3resolver.h include/KF5/KDELibs4Support/k3reverseresolver.h include/KF5/KDELibs4Support/k3serversocket.h include/KF5/KDELibs4Support/k3socketaddress.h include/KF5/KDELibs4Support/k3socketbase.h include/KF5/KDELibs4Support/k3socketdevice.h include/KF5/KDELibs4Support/k3streamsocket.h include/KF5/KDELibs4Support/k4aboutdata.h include/KF5/KDELibs4Support/k4style.h include/KF5/KDELibs4Support/k4timezonewidget.h include/KF5/KDELibs4Support/kaccelgen.h include/KF5/KDELibs4Support/kaction.h include/KF5/KDELibs4Support/kapplication.h include/KF5/KDELibs4Support/karrowbutton.h include/KF5/KDELibs4Support/kascii.h include/KF5/KDELibs4Support/kbuttongroup.h include/KF5/KDELibs4Support/kcalendarsystem.h include/KF5/KDELibs4Support/kcmdlineargs.h include/KF5/KDELibs4Support/kcolorchoosermode.h include/KF5/KDELibs4Support/kcolordialog.h include/KF5/KDELibs4Support/kcolorvalueselector.h include/KF5/KDELibs4Support/kcomponentdata.h include/KF5/KDELibs4Support/kconfiggroup_kurl.h include/KF5/KDELibs4Support/kcurrencycode.h include/KF5/KDELibs4Support/kdatatool.h include/KF5/KDELibs4Support/kdatetime.h include/KF5/KDELibs4Support/kdatetimewidget.h include/KF5/KDELibs4Support/kdatewidget.h include/KF5/KDELibs4Support/kde_file.h include/KF5/KDELibs4Support/kdebug.h include/KF5/KDELibs4Support/kdefakes.h include/KF5/KDELibs4Support/kdelibs4support_export.h include/KF5/KDELibs4Support/kdelibs4support_export_internal.h include/KF5/KDELibs4Support/kdelibs4support_version.h include/KF5/KDELibs4Support/kdemacros.h include/KF5/KDELibs4Support/kdeprintdialog.h include/KF5/KDELibs4Support/kdeversion.h include/KF5/KDELibs4Support/kdevicelistmodel.h include/KF5/KDELibs4Support/kdialog.h include/KF5/KDELibs4Support/kdialogbuttonbox.h include/KF5/KDELibs4Support/kdirselectdialog.h include/KF5/KDELibs4Support/kdiskfreespace.h include/KF5/KDELibs4Support/keditlistbox.h include/KF5/KDELibs4Support/kfadewidgeteffect.h include/KF5/KDELibs4Support/kfiledialog.h include/KF5/KDELibs4Support/kfileitemactionplugin.h include/KF5/KDELibs4Support/kfilemetadataconfigurationwidget.h include/KF5/KDELibs4Support/kfilemetadatawidget.h include/KF5/KDELibs4Support/kfilemetainfo.h include/KF5/KDELibs4Support/kfilemetainfoitem.h include/KF5/KDELibs4Support/kfilemetainfowidget.h include/KF5/KDELibs4Support/kfileshare.h include/KF5/KDELibs4Support/kfilewriteplugin.h include/KF5/KDELibs4Support/kfontcombobox.h include/KF5/KDELibs4Support/kfontdialog.h include/KF5/KDELibs4Support/kgenericfactory.h include/KF5/KDELibs4Support/kgenericfactory.tcc include/KF5/KDELibs4Support/kglobal.h include/KF5/KDELibs4Support/kglobalsettings.h include/KF5/KDELibs4Support/khbox.h include/KF5/KDELibs4Support/khuesaturationselect.h include/KF5/KDELibs4Support/kicon.h include/KF5/KDELibs4Support/kimageio.h include/KF5/KDELibs4Support/kinputdialog.h include/KF5/KDELibs4Support/kio/metainfojob.h include/KF5/KDELibs4Support/kio/netaccess.h include/KF5/KDELibs4Support/kio/passworddialog.h include/KF5/KDELibs4Support/klibloader.h include/KF5/KDELibs4Support/klibrary.h include/KF5/KDELibs4Support/klistwidget.h include/KF5/KDELibs4Support/klocale.h include/KF5/KDELibs4Support/klocalizeddate.h include/KF5/KDELibs4Support/klockfile.h include/KF5/KDELibs4Support/kmd5.h include/KF5/KDELibs4Support/kmenu.h include/KF5/KDELibs4Support/kmenubar.h include/KF5/KDELibs4Support/kmessagebox_queued.h include/KF5/KDELibs4Support/kmessageboxmessagehandler.h include/KF5/KDELibs4Support/kmimetype.h include/KF5/KDELibs4Support/knewstuff3/downloaddialog.h include/KF5/KDELibs4Support/knewstuff3/downloadmanager.h include/KF5/KDELibs4Support/knewstuff3/downloadwidget.h include/KF5/KDELibs4Support/knewstuff3/entry.h include/KF5/KDELibs4Support/knewstuff3/knewstuffaction.h include/KF5/KDELibs4Support/knewstuff3/knewstuffbutton.h include/KF5/KDELibs4Support/knewstuff3/uploaddialog.h include/KF5/KDELibs4Support/knuminput.h include/KF5/KDELibs4Support/knumvalidator.h include/KF5/KDELibs4Support/kparts/factory.h include/KF5/KDELibs4Support/kparts/genericfactory.h include/KF5/KDELibs4Support/kparts/listingextension.h include/KF5/KDELibs4Support/kpassivepopupmessagehandler.h include/KF5/KDELibs4Support/kpixmapcache.h include/KF5/KDELibs4Support/kprintpreview.h include/KF5/KDELibs4Support/kprogressdialog.h include/KF5/KDELibs4Support/kpropsdialog.h include/KF5/KDELibs4Support/kpushbutton.h include/KF5/KDELibs4Support/krestrictedline.h include/KF5/KDELibs4Support/ksavefile.h include/KF5/KDELibs4Support/kscan.h include/KF5/KDELibs4Support/ksessionmanager.h include/KF5/KDELibs4Support/ksharedptr.h include/KF5/KDELibs4Support/kshortcut.h include/KF5/KDELibs4Support/ksocketfactory.h include/KF5/KDELibs4Support/ksplashscreen.h include/KF5/KDELibs4Support/kssl.h include/KF5/KDELibs4Support/ksslcertchain.h include/KF5/KDELibs4Support/ksslcertificate.h include/KF5/KDELibs4Support/ksslconfig.h include/KF5/KDELibs4Support/ksslutils.h include/KF5/KDELibs4Support/ksslx509v3.h include/KF5/KDELibs4Support/kstandarddirs.h include/KF5/KDELibs4Support/kstatusbar.h include/KF5/KDELibs4Support/kstringhandler_deprecated.h include/KF5/KDELibs4Support/kstringvalidator.h include/KF5/KDELibs4Support/ksystemtimezone.h include/KF5/KDELibs4Support/ksystemtrayicon.h include/KF5/KDELibs4Support/ktabbar.h include/KF5/KDELibs4Support/ktabwidget.h include/KF5/KDELibs4Support/ktempdir.h include/KF5/KDELibs4Support/ktemporaryfile.h include/KF5/KDELibs4Support/ktextbrowser.h include/KF5/KDELibs4Support/ktimezone.h include/KF5/KDELibs4Support/ktypelist.h include/KF5/KDELibs4Support/ktzfiletimezone.h include/KF5/KDELibs4Support/kundostack.h include/KF5/KDELibs4Support/kuniqueapplication.h include/KF5/KDELibs4Support/kurl.h include/KF5/KDELibs4Support/kvbox.h include/KF5/KDELibs4Support/kviewstatesaver.h include/KF5/KDELibs4Support/kxerrorhandler.h include/KF5/KDELibs4Support/predicateproperties.h include/KF5/KDELibs4Support/qtest_kde.h include/KF5/KDELibs4Support/solid/networking.h include/KF5/KDELibs4Support/solid/powermanagement.h lib/cmake/KDELibs4/KDELibsDependencies.cmake lib/cmake/KDELibs4/KF5KDELibs4LibraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDELibs4/KF5KDELibs4LibraryTargets.cmake lib/cmake/KDELibs4/Win32.Manifest.in lib/cmake/KDELibs4/kde4_cmake_uninstall.cmake.in lib/cmake/KF5KDE4Support/KF5KDE4SupportConfig.cmake lib/cmake/KF5KDE4Support/KF5KDE4SupportConfigVersion.cmake lib/cmake/KF5KDELibs4Support/BasicFindPackageVersion.cmake.in lib/cmake/KF5KDELibs4Support/CheckPointerMember.cmake lib/cmake/KF5KDELibs4Support/CheckPrototypeExists.cmake lib/cmake/KF5KDELibs4Support/CheckStructMember.cmake lib/cmake/KF5KDELibs4Support/ECMQt4To5Porting.cmake lib/cmake/KF5KDELibs4Support/FindACL.cmake lib/cmake/KF5KDELibs4Support/FindAGG.cmake lib/cmake/KF5KDELibs4Support/FindAkode.cmake lib/cmake/KF5KDELibs4Support/FindAlsa.cmake lib/cmake/KF5KDELibs4Support/FindBerkeleyDB.cmake lib/cmake/KF5KDELibs4Support/FindBlitz.cmake lib/cmake/KF5KDELibs4Support/FindBlueZ.cmake lib/cmake/KF5KDELibs4Support/FindCarbon.cmake lib/cmake/KF5KDELibs4Support/FindENCHANT.cmake lib/cmake/KF5KDELibs4Support/FindEigen.cmake lib/cmake/KF5KDELibs4Support/FindEigen2.cmake lib/cmake/KF5KDELibs4Support/FindExiv2.cmake lib/cmake/KF5KDELibs4Support/FindFFmpeg.cmake lib/cmake/KF5KDELibs4Support/FindFlac.cmake lib/cmake/KF5KDELibs4Support/FindGMP.cmake lib/cmake/KF5KDELibs4Support/FindGObject.cmake lib/cmake/KF5KDELibs4Support/FindGStreamer.cmake lib/cmake/KF5KDELibs4Support/FindGettext.cmake lib/cmake/KF5KDELibs4Support/FindGphoto2.cmake lib/cmake/KF5KDELibs4Support/FindIOKit.cmake lib/cmake/KF5KDELibs4Support/FindKDE4Workspace.cmake lib/cmake/KF5KDELibs4Support/FindKDevPlatform.cmake lib/cmake/KF5KDELibs4Support/FindKF5Transitional.cmake lib/cmake/KF5KDELibs4Support/FindKdcraw.cmake lib/cmake/KF5KDELibs4Support/FindKdeMultimedia.cmake lib/cmake/KF5KDELibs4Support/FindKexiv2.cmake lib/cmake/KF5KDELibs4Support/FindKipi.cmake lib/cmake/KF5KDELibs4Support/FindKopete.cmake lib/cmake/KF5KDELibs4Support/FindKorundum.cmake lib/cmake/KF5KDELibs4Support/FindLCMS.cmake lib/cmake/KF5KDELibs4Support/FindLibArt.cmake lib/cmake/KF5KDELibs4Support/FindLibKonq.cmake lib/cmake/KF5KDELibs4Support/FindLibLZMA.cmake lib/cmake/KF5KDELibs4Support/FindLibPython.py lib/cmake/KF5KDELibs4Support/FindLibraryWithDebug.cmake lib/cmake/KF5KDELibs4Support/FindLinuxWirelesstools.cmake lib/cmake/KF5KDELibs4Support/FindMusicBrainz.cmake lib/cmake/KF5KDELibs4Support/FindMySQL.cmake lib/cmake/KF5KDELibs4Support/FindNepomuk.cmake lib/cmake/KF5KDELibs4Support/FindNetworkManager.cmake lib/cmake/KF5KDELibs4Support/FindOggVorbis.cmake lib/cmake/KF5KDELibs4Support/FindPlasma.cmake lib/cmake/KF5KDELibs4Support/FindPopplerQt4.cmake lib/cmake/KF5KDELibs4Support/FindPythonLibrary.cmake lib/cmake/KF5KDELibs4Support/FindQImageBlitz.cmake lib/cmake/KF5KDELibs4Support/FindQt5Transitional.cmake lib/cmake/KF5KDELibs4Support/FindSIP.cmake lib/cmake/KF5KDELibs4Support/FindSIP.py lib/cmake/KF5KDELibs4Support/FindSamba.cmake lib/cmake/KF5KDELibs4Support/FindSane.cmake lib/cmake/KF5KDELibs4Support/FindSasl2.cmake lib/cmake/KF5KDELibs4Support/FindSharedDesktopOntologies.cmake lib/cmake/KF5KDELibs4Support/FindSqlite.cmake lib/cmake/KF5KDELibs4Support/FindTaglib.cmake lib/cmake/KF5KDELibs4Support/FindUSB.cmake lib/cmake/KF5KDELibs4Support/FindWcecompat.cmake lib/cmake/KF5KDELibs4Support/FindXKB.cmake lib/cmake/KF5KDELibs4Support/FindXine.cmake lib/cmake/KF5KDELibs4Support/FindXmms.cmake lib/cmake/KF5KDELibs4Support/HandleImportedTargetsInCMakeRequiredLibraries.cmake lib/cmake/KF5KDELibs4Support/KDE4Defaults.cmake lib/cmake/KF5KDELibs4Support/KDE4Macros.cmake lib/cmake/KF5KDELibs4Support/KDECoreMacros.cmake lib/cmake/KF5KDELibs4Support/KDEUIMacros.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportConfig.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportConfigVersion.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KDELibs4Support/KF5KDELibs4SupportTargets.cmake lib/cmake/KF5KDELibs4Support/MacroAppendIf.cmake lib/cmake/KF5KDELibs4Support/MacroBoolTo01.cmake lib/cmake/KF5KDELibs4Support/MacroEnsureOutOfSourceBuild.cmake lib/cmake/KF5KDELibs4Support/MacroKAuth.cmake lib/cmake/KF5KDELibs4Support/MacroLibrary.cmake lib/cmake/KF5KDELibs4Support/NepomukAddOntologyClasses.cmake lib/cmake/KF5KDELibs4Support/NepomukMacros.cmake lib/cmake/KF5KDELibs4Support/PythonCompile.py lib/cmake/KF5KDELibs4Support/PythonMacros.cmake lib/cmake/KF5KDELibs4Support/SIPMacros.cmake lib/cmake/KF5KDELibs4Support/Win32Macros.cmake lib/cmake/KF5KDELibs4Support/check_installed_exports_file.cmake lib/cmake/KF5KDELibs4Support/cmake-modules-styleguide.txt lib/cmake/KF5KDELibs4Support/config-alsa.h.cmake lib/cmake/KF5KDELibs4Support/create_exe_symlink.cmake lib/cmake/KF5KDELibs4Support/kde4_exec_via_sh.cmake lib/cmake/KF5KDELibs4Support/kde4uic.cmake lib/libKF5KDELibs4Support.so lib/libKF5KDELibs4Support.so.5 lib/libKF5KDELibs4Support.so.%%KDE_FRAMEWORKS_VERSION%% lib/libexec/kf5/filesharelist lib/libexec/kf5/fileshareset %%QT_PLUGINDIR%%/designer/kf5deprecatedwidgets.so %%QT_PLUGINDIR%%/kcm_ssl.so %%QT_PLUGINDIR%%/kf5/kded/networkstatus.so %%QT_PLUGINDIR%%/kf5/kio/metainfo.so man/ca/man1/kf5-config.1.gz man/ca@valencia/man1/kf5-config.1.gz man/de/man1/kf5-config.1.gz man/es/man1/kf5-config.1.gz man/fr/man1/kf5-config.1.gz man/it/man1/kf5-config.1.gz man/man1/kf5-config.1.gz man/nl/man1/kf5-config.1.gz man/pt/man1/kf5-config.1.gz man/pt_BR/man1/kf5-config.1.gz man/sv/man1/kf5-config.1.gz man/uk/man1/kf5-config.1.gz share/dbus-1/interfaces/kf5_org.freedesktop.PowerManagement.Inhibit.xml share/dbus-1/interfaces/kf5_org.freedesktop.PowerManagement.xml share/dbus-1/interfaces/kf5_org.kde.Solid.Networking.Client.xml share/dbus-1/interfaces/kf5_org.kde.Solid.PowerManagement.PolicyAgent.xml share/doc/HTML/ca/kcontrol5/kcm_ssl/details.png share/doc/HTML/ca/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/ca/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/ca/kcontrol5/kcm_ssl/module.png share/doc/HTML/ca/kdebugdialog5/index.cache.bz2 share/doc/HTML/ca/kdebugdialog5/index.docbook share/doc/HTML/ca@valencia/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/ca@valencia/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/ca@valencia/kdebugdialog5/index.cache.bz2 share/doc/HTML/ca@valencia/kdebugdialog5/index.docbook share/doc/HTML/de/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/de/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/de/kdebugdialog5/index.cache.bz2 share/doc/HTML/de/kdebugdialog5/index.docbook share/doc/HTML/en/kcontrol5/kcm_ssl/details.png share/doc/HTML/en/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/en/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/en/kcontrol5/kcm_ssl/module.png share/doc/HTML/en/kdebugdialog5/index.cache.bz2 share/doc/HTML/en/kdebugdialog5/index.docbook share/doc/HTML/es/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/es/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/es/kdebugdialog5/index.cache.bz2 share/doc/HTML/es/kdebugdialog5/index.docbook share/doc/HTML/fr/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/fr/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/fr/kdebugdialog5/index.cache.bz2 share/doc/HTML/fr/kdebugdialog5/index.docbook share/doc/HTML/it/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/it/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/it/kdebugdialog5/index.cache.bz2 share/doc/HTML/it/kdebugdialog5/index.docbook share/doc/HTML/nl/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/nl/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/nl/kdebugdialog5/index.cache.bz2 share/doc/HTML/nl/kdebugdialog5/index.docbook share/doc/HTML/pt/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/pt/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/pt/kdebugdialog5/index.cache.bz2 share/doc/HTML/pt/kdebugdialog5/index.docbook share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/details.png share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/pt_BR/kcontrol5/kcm_ssl/module.png share/doc/HTML/pt_BR/kdebugdialog5/index.cache.bz2 share/doc/HTML/pt_BR/kdebugdialog5/index.docbook share/doc/HTML/ru/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/ru/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/sr/kdebugdialog5/index.cache.bz2 share/doc/HTML/sr/kdebugdialog5/index.docbook share/doc/HTML/sr@latin/kdebugdialog5/index.cache.bz2 share/doc/HTML/sr@latin/kdebugdialog5/index.docbook share/doc/HTML/sv/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/sv/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/sv/kdebugdialog5/index.cache.bz2 share/doc/HTML/sv/kdebugdialog5/index.docbook share/doc/HTML/uk/kcontrol5/kcm_ssl/index.cache.bz2 share/doc/HTML/uk/kcontrol5/kcm_ssl/index.docbook share/doc/HTML/uk/kdebugdialog5/index.cache.bz2 share/doc/HTML/uk/kdebugdialog5/index.docbook share/kf5/kdoctools/customization/catalog4.xml share/kf5/kdoctools/customization/dtd/kdex.dtd share/kf5/kssl/ca-bundle.crt share/kf5/locale/countries/C/country.desktop share/kf5/locale/countries/C/flag.png share/kf5/locale/countries/ad/country.desktop share/kf5/locale/countries/ad/flag.png share/kf5/locale/countries/ae/country.desktop share/kf5/locale/countries/ae/flag.png share/kf5/locale/countries/af/country.desktop share/kf5/locale/countries/af/flag.png share/kf5/locale/countries/ag/country.desktop share/kf5/locale/countries/ag/flag.png share/kf5/locale/countries/ai/country.desktop share/kf5/locale/countries/ai/flag.png share/kf5/locale/countries/al/country.desktop share/kf5/locale/countries/al/flag.png share/kf5/locale/countries/am/country.desktop share/kf5/locale/countries/am/flag.png share/kf5/locale/countries/an/country.desktop share/kf5/locale/countries/an/flag.png share/kf5/locale/countries/ao/country.desktop share/kf5/locale/countries/ao/flag.png share/kf5/locale/countries/ar/country.desktop share/kf5/locale/countries/ar/flag.png share/kf5/locale/countries/as/country.desktop share/kf5/locale/countries/as/flag.png share/kf5/locale/countries/at/country.desktop share/kf5/locale/countries/at/flag.png share/kf5/locale/countries/au/country.desktop share/kf5/locale/countries/au/flag.png share/kf5/locale/countries/aw/country.desktop share/kf5/locale/countries/aw/flag.png share/kf5/locale/countries/ax/country.desktop share/kf5/locale/countries/ax/flag.png share/kf5/locale/countries/az/country.desktop share/kf5/locale/countries/az/flag.png share/kf5/locale/countries/ba/country.desktop share/kf5/locale/countries/ba/flag.png share/kf5/locale/countries/bb/country.desktop share/kf5/locale/countries/bb/flag.png share/kf5/locale/countries/bd/country.desktop share/kf5/locale/countries/bd/flag.png share/kf5/locale/countries/be/country.desktop share/kf5/locale/countries/be/flag.png share/kf5/locale/countries/bf/country.desktop share/kf5/locale/countries/bf/flag.png share/kf5/locale/countries/bg/country.desktop share/kf5/locale/countries/bg/flag.png share/kf5/locale/countries/bh/country.desktop share/kf5/locale/countries/bh/flag.png share/kf5/locale/countries/bi/country.desktop share/kf5/locale/countries/bi/flag.png share/kf5/locale/countries/bj/country.desktop share/kf5/locale/countries/bj/flag.png share/kf5/locale/countries/bl/country.desktop share/kf5/locale/countries/bl/flag.png share/kf5/locale/countries/bm/country.desktop share/kf5/locale/countries/bm/flag.png share/kf5/locale/countries/bn/country.desktop share/kf5/locale/countries/bn/flag.png share/kf5/locale/countries/bo/country.desktop share/kf5/locale/countries/bo/flag.png share/kf5/locale/countries/br/country.desktop share/kf5/locale/countries/br/flag.png share/kf5/locale/countries/bs/country.desktop share/kf5/locale/countries/bs/flag.png share/kf5/locale/countries/bt/country.desktop share/kf5/locale/countries/bt/flag.png share/kf5/locale/countries/bw/country.desktop share/kf5/locale/countries/bw/flag.png share/kf5/locale/countries/by/country.desktop share/kf5/locale/countries/by/flag.png share/kf5/locale/countries/bz/country.desktop share/kf5/locale/countries/bz/flag.png share/kf5/locale/countries/ca/country.desktop share/kf5/locale/countries/ca/flag.png share/kf5/locale/countries/caribbean.desktop share/kf5/locale/countries/cc/country.desktop share/kf5/locale/countries/cc/flag.png share/kf5/locale/countries/cd/country.desktop share/kf5/locale/countries/cd/flag.png share/kf5/locale/countries/centralafrica.desktop share/kf5/locale/countries/centralamerica.desktop share/kf5/locale/countries/centralasia.desktop share/kf5/locale/countries/centraleurope.desktop share/kf5/locale/countries/cf/country.desktop share/kf5/locale/countries/cf/flag.png share/kf5/locale/countries/cg/country.desktop share/kf5/locale/countries/cg/flag.png share/kf5/locale/countries/ch/country.desktop share/kf5/locale/countries/ch/flag.png share/kf5/locale/countries/ci/country.desktop share/kf5/locale/countries/ci/flag.png share/kf5/locale/countries/ck/country.desktop share/kf5/locale/countries/ck/flag.png share/kf5/locale/countries/cl/country.desktop share/kf5/locale/countries/cl/flag.png share/kf5/locale/countries/cm/country.desktop share/kf5/locale/countries/cm/flag.png share/kf5/locale/countries/cn/country.desktop share/kf5/locale/countries/cn/flag.png share/kf5/locale/countries/co/country.desktop share/kf5/locale/countries/co/flag.png share/kf5/locale/countries/cr/country.desktop share/kf5/locale/countries/cr/flag.png share/kf5/locale/countries/cu/country.desktop share/kf5/locale/countries/cu/flag.png share/kf5/locale/countries/cv/country.desktop share/kf5/locale/countries/cv/flag.png share/kf5/locale/countries/cx/country.desktop share/kf5/locale/countries/cx/flag.png share/kf5/locale/countries/cy/country.desktop share/kf5/locale/countries/cy/flag.png share/kf5/locale/countries/cz/country.desktop share/kf5/locale/countries/cz/flag.png share/kf5/locale/countries/de/country.desktop share/kf5/locale/countries/de/flag.png share/kf5/locale/countries/dj/country.desktop share/kf5/locale/countries/dj/flag.png share/kf5/locale/countries/dk/country.desktop share/kf5/locale/countries/dk/flag.png share/kf5/locale/countries/dm/country.desktop share/kf5/locale/countries/dm/flag.png share/kf5/locale/countries/do/country.desktop share/kf5/locale/countries/do/flag.png share/kf5/locale/countries/dz/country.desktop share/kf5/locale/countries/dz/flag.png share/kf5/locale/countries/eastafrica.desktop share/kf5/locale/countries/eastasia.desktop share/kf5/locale/countries/easteurope.desktop share/kf5/locale/countries/ec/country.desktop share/kf5/locale/countries/ec/flag.png share/kf5/locale/countries/ee/country.desktop share/kf5/locale/countries/ee/flag.png share/kf5/locale/countries/eg/country.desktop share/kf5/locale/countries/eg/flag.png share/kf5/locale/countries/eh/country.desktop share/kf5/locale/countries/eh/flag.png share/kf5/locale/countries/epo/country.desktop share/kf5/locale/countries/epo/flag.png share/kf5/locale/countries/er/country.desktop share/kf5/locale/countries/er/flag.png share/kf5/locale/countries/es/country.desktop share/kf5/locale/countries/es/flag.png share/kf5/locale/countries/et/country.desktop share/kf5/locale/countries/et/flag.png share/kf5/locale/countries/fi/country.desktop share/kf5/locale/countries/fi/flag.png share/kf5/locale/countries/fj/country.desktop share/kf5/locale/countries/fj/flag.png share/kf5/locale/countries/fk/country.desktop share/kf5/locale/countries/fk/flag.png share/kf5/locale/countries/fm/country.desktop share/kf5/locale/countries/fm/flag.png share/kf5/locale/countries/fo/country.desktop share/kf5/locale/countries/fo/flag.png share/kf5/locale/countries/fr/country.desktop share/kf5/locale/countries/fr/flag.png share/kf5/locale/countries/ga/country.desktop share/kf5/locale/countries/ga/flag.png share/kf5/locale/countries/gb/country.desktop share/kf5/locale/countries/gb/flag.png share/kf5/locale/countries/gd/country.desktop share/kf5/locale/countries/gd/flag.png share/kf5/locale/countries/ge/country.desktop share/kf5/locale/countries/ge/flag.png share/kf5/locale/countries/gf/country.desktop share/kf5/locale/countries/gf/flag.png share/kf5/locale/countries/gg/country.desktop share/kf5/locale/countries/gg/flag.png share/kf5/locale/countries/gh/country.desktop share/kf5/locale/countries/gh/flag.png share/kf5/locale/countries/gi/country.desktop share/kf5/locale/countries/gi/flag.png share/kf5/locale/countries/gl/country.desktop share/kf5/locale/countries/gl/flag.png share/kf5/locale/countries/gm/country.desktop share/kf5/locale/countries/gm/flag.png share/kf5/locale/countries/gn/country.desktop share/kf5/locale/countries/gn/flag.png share/kf5/locale/countries/gp/country.desktop share/kf5/locale/countries/gp/flag.png share/kf5/locale/countries/gq/country.desktop share/kf5/locale/countries/gq/flag.png share/kf5/locale/countries/gr/country.desktop share/kf5/locale/countries/gr/flag.png share/kf5/locale/countries/gt/country.desktop share/kf5/locale/countries/gt/flag.png share/kf5/locale/countries/gu/country.desktop share/kf5/locale/countries/gu/flag.png share/kf5/locale/countries/gw/country.desktop share/kf5/locale/countries/gw/flag.png share/kf5/locale/countries/gy/country.desktop share/kf5/locale/countries/gy/flag.png share/kf5/locale/countries/hk/country.desktop share/kf5/locale/countries/hk/flag.png share/kf5/locale/countries/hn/country.desktop share/kf5/locale/countries/hn/flag.png share/kf5/locale/countries/hr/country.desktop share/kf5/locale/countries/hr/flag.png share/kf5/locale/countries/ht/country.desktop share/kf5/locale/countries/ht/flag.png share/kf5/locale/countries/hu/country.desktop share/kf5/locale/countries/hu/flag.png share/kf5/locale/countries/id/country.desktop share/kf5/locale/countries/id/flag.png share/kf5/locale/countries/ie/country.desktop share/kf5/locale/countries/ie/flag.png share/kf5/locale/countries/il/country.desktop share/kf5/locale/countries/il/flag.png share/kf5/locale/countries/im/country.desktop share/kf5/locale/countries/im/flag.png share/kf5/locale/countries/in/country.desktop share/kf5/locale/countries/in/flag.png share/kf5/locale/countries/iq/country.desktop share/kf5/locale/countries/iq/flag.png share/kf5/locale/countries/ir/country.desktop share/kf5/locale/countries/ir/flag.png share/kf5/locale/countries/is/country.desktop share/kf5/locale/countries/is/flag.png share/kf5/locale/countries/it/country.desktop share/kf5/locale/countries/it/flag.png share/kf5/locale/countries/je/country.desktop share/kf5/locale/countries/je/flag.png share/kf5/locale/countries/jm/country.desktop share/kf5/locale/countries/jm/flag.png share/kf5/locale/countries/jo/country.desktop share/kf5/locale/countries/jo/flag.png share/kf5/locale/countries/jp/country.desktop share/kf5/locale/countries/jp/flag.png share/kf5/locale/countries/ke/country.desktop share/kf5/locale/countries/ke/flag.png share/kf5/locale/countries/kg/country.desktop share/kf5/locale/countries/kg/flag.png share/kf5/locale/countries/kh/country.desktop share/kf5/locale/countries/kh/flag.png share/kf5/locale/countries/ki/country.desktop share/kf5/locale/countries/ki/flag.png share/kf5/locale/countries/km/country.desktop share/kf5/locale/countries/km/flag.png share/kf5/locale/countries/kn/country.desktop share/kf5/locale/countries/kn/flag.png share/kf5/locale/countries/kp/country.desktop share/kf5/locale/countries/kp/flag.png share/kf5/locale/countries/kr/country.desktop share/kf5/locale/countries/kr/flag.png share/kf5/locale/countries/kw/country.desktop share/kf5/locale/countries/kw/flag.png share/kf5/locale/countries/ky/country.desktop share/kf5/locale/countries/ky/flag.png share/kf5/locale/countries/kz/country.desktop share/kf5/locale/countries/kz/flag.png share/kf5/locale/countries/la/country.desktop share/kf5/locale/countries/la/flag.png share/kf5/locale/countries/lb/country.desktop share/kf5/locale/countries/lb/flag.png share/kf5/locale/countries/lc/country.desktop share/kf5/locale/countries/lc/flag.png share/kf5/locale/countries/li/country.desktop share/kf5/locale/countries/li/flag.png share/kf5/locale/countries/lk/country.desktop share/kf5/locale/countries/lk/flag.png share/kf5/locale/countries/lr/country.desktop share/kf5/locale/countries/lr/flag.png share/kf5/locale/countries/ls/country.desktop share/kf5/locale/countries/ls/flag.png share/kf5/locale/countries/lt/country.desktop share/kf5/locale/countries/lt/flag.png share/kf5/locale/countries/lu/country.desktop share/kf5/locale/countries/lu/flag.png share/kf5/locale/countries/lv/country.desktop share/kf5/locale/countries/lv/flag.png share/kf5/locale/countries/ly/country.desktop share/kf5/locale/countries/ly/flag.png share/kf5/locale/countries/ma/country.desktop share/kf5/locale/countries/ma/flag.png share/kf5/locale/countries/mc/country.desktop share/kf5/locale/countries/mc/flag.png share/kf5/locale/countries/md/country.desktop share/kf5/locale/countries/md/flag.png share/kf5/locale/countries/me/country.desktop share/kf5/locale/countries/me/flag.png share/kf5/locale/countries/mf/country.desktop share/kf5/locale/countries/mf/flag.png share/kf5/locale/countries/mg/country.desktop share/kf5/locale/countries/mg/flag.png share/kf5/locale/countries/mh/country.desktop share/kf5/locale/countries/mh/flag.png share/kf5/locale/countries/middleeast.desktop share/kf5/locale/countries/mk/country.desktop share/kf5/locale/countries/mk/flag.png share/kf5/locale/countries/ml/country.desktop share/kf5/locale/countries/ml/flag.png share/kf5/locale/countries/mm/country.desktop share/kf5/locale/countries/mm/flag.png share/kf5/locale/countries/mn/country.desktop share/kf5/locale/countries/mn/flag.png share/kf5/locale/countries/mo/country.desktop share/kf5/locale/countries/mo/flag.png share/kf5/locale/countries/mp/country.desktop share/kf5/locale/countries/mp/flag.png share/kf5/locale/countries/mq/country.desktop share/kf5/locale/countries/mq/flag.png share/kf5/locale/countries/mr/country.desktop share/kf5/locale/countries/mr/flag.png share/kf5/locale/countries/ms/country.desktop share/kf5/locale/countries/ms/flag.png share/kf5/locale/countries/mt/country.desktop share/kf5/locale/countries/mt/flag.png share/kf5/locale/countries/mu/country.desktop share/kf5/locale/countries/mu/flag.png share/kf5/locale/countries/mv/country.desktop share/kf5/locale/countries/mv/flag.png share/kf5/locale/countries/mw/country.desktop share/kf5/locale/countries/mw/flag.png share/kf5/locale/countries/mx/country.desktop share/kf5/locale/countries/mx/flag.png share/kf5/locale/countries/my/country.desktop share/kf5/locale/countries/my/flag.png share/kf5/locale/countries/mz/country.desktop share/kf5/locale/countries/mz/flag.png share/kf5/locale/countries/na/country.desktop share/kf5/locale/countries/na/flag.png share/kf5/locale/countries/nc/country.desktop share/kf5/locale/countries/nc/flag.png share/kf5/locale/countries/ne/country.desktop share/kf5/locale/countries/ne/flag.png share/kf5/locale/countries/nf/country.desktop share/kf5/locale/countries/nf/flag.png share/kf5/locale/countries/ng/country.desktop share/kf5/locale/countries/ng/flag.png share/kf5/locale/countries/ni/country.desktop share/kf5/locale/countries/ni/flag.png share/kf5/locale/countries/nl/country.desktop share/kf5/locale/countries/nl/flag.png share/kf5/locale/countries/no/country.desktop share/kf5/locale/countries/no/flag.png share/kf5/locale/countries/northafrica.desktop share/kf5/locale/countries/northamerica.desktop share/kf5/locale/countries/northeurope.desktop share/kf5/locale/countries/np/country.desktop share/kf5/locale/countries/np/flag.png share/kf5/locale/countries/nr/country.desktop share/kf5/locale/countries/nr/flag.png share/kf5/locale/countries/nu/country.desktop share/kf5/locale/countries/nu/flag.png share/kf5/locale/countries/nz/country.desktop share/kf5/locale/countries/nz/flag.png share/kf5/locale/countries/oceania.desktop share/kf5/locale/countries/om/country.desktop share/kf5/locale/countries/om/flag.png share/kf5/locale/countries/pa/country.desktop share/kf5/locale/countries/pa/flag.png share/kf5/locale/countries/pe/country.desktop share/kf5/locale/countries/pe/flag.png share/kf5/locale/countries/pf/country.desktop share/kf5/locale/countries/pf/flag.png share/kf5/locale/countries/pg/country.desktop share/kf5/locale/countries/pg/flag.png share/kf5/locale/countries/ph/country.desktop share/kf5/locale/countries/ph/flag.png share/kf5/locale/countries/pk/country.desktop share/kf5/locale/countries/pk/flag.png share/kf5/locale/countries/pl/country.desktop share/kf5/locale/countries/pl/flag.png share/kf5/locale/countries/pm/country.desktop share/kf5/locale/countries/pm/flag.png share/kf5/locale/countries/pn/country.desktop share/kf5/locale/countries/pn/flag.png share/kf5/locale/countries/pr/country.desktop share/kf5/locale/countries/pr/flag.png share/kf5/locale/countries/ps/country.desktop share/kf5/locale/countries/ps/flag.png share/kf5/locale/countries/pt/country.desktop share/kf5/locale/countries/pt/flag.png share/kf5/locale/countries/pw/country.desktop share/kf5/locale/countries/pw/flag.png share/kf5/locale/countries/py/country.desktop share/kf5/locale/countries/py/flag.png share/kf5/locale/countries/qa/country.desktop share/kf5/locale/countries/qa/flag.png share/kf5/locale/countries/re/country.desktop share/kf5/locale/countries/re/flag.png share/kf5/locale/countries/ro/country.desktop share/kf5/locale/countries/ro/flag.png share/kf5/locale/countries/rs/country.desktop share/kf5/locale/countries/rs/flag.png share/kf5/locale/countries/ru/country.desktop share/kf5/locale/countries/ru/flag.png share/kf5/locale/countries/rw/country.desktop share/kf5/locale/countries/rw/flag.png share/kf5/locale/countries/sa/country.desktop share/kf5/locale/countries/sa/flag.png share/kf5/locale/countries/sb/country.desktop share/kf5/locale/countries/sb/flag.png share/kf5/locale/countries/sc/country.desktop share/kf5/locale/countries/sc/flag.png share/kf5/locale/countries/sd/country.desktop share/kf5/locale/countries/sd/flag.png share/kf5/locale/countries/se/country.desktop share/kf5/locale/countries/se/flag.png share/kf5/locale/countries/sg/country.desktop share/kf5/locale/countries/sg/flag.png share/kf5/locale/countries/sh/country.desktop share/kf5/locale/countries/sh/flag.png share/kf5/locale/countries/si/country.desktop share/kf5/locale/countries/si/flag.png share/kf5/locale/countries/sk/country.desktop share/kf5/locale/countries/sk/flag.png share/kf5/locale/countries/sl/country.desktop share/kf5/locale/countries/sl/flag.png share/kf5/locale/countries/sm/country.desktop share/kf5/locale/countries/sm/flag.png share/kf5/locale/countries/sn/country.desktop share/kf5/locale/countries/sn/flag.png share/kf5/locale/countries/so/country.desktop share/kf5/locale/countries/so/flag.png share/kf5/locale/countries/southafrica.desktop share/kf5/locale/countries/southamerica.desktop share/kf5/locale/countries/southasia.desktop share/kf5/locale/countries/southeastasia.desktop share/kf5/locale/countries/southeurope.desktop share/kf5/locale/countries/sr/country.desktop share/kf5/locale/countries/sr/flag.png share/kf5/locale/countries/ss/country.desktop share/kf5/locale/countries/ss/flag.png share/kf5/locale/countries/st/country.desktop share/kf5/locale/countries/st/flag.png share/kf5/locale/countries/sv/country.desktop share/kf5/locale/countries/sv/flag.png share/kf5/locale/countries/sy/country.desktop share/kf5/locale/countries/sy/flag.png share/kf5/locale/countries/sz/country.desktop share/kf5/locale/countries/sz/flag.png share/kf5/locale/countries/tc/country.desktop share/kf5/locale/countries/tc/flag.png share/kf5/locale/countries/td/country.desktop share/kf5/locale/countries/td/flag.png share/kf5/locale/countries/tg/country.desktop share/kf5/locale/countries/tg/flag.png share/kf5/locale/countries/th/country.desktop share/kf5/locale/countries/th/flag.png share/kf5/locale/countries/tj/country.desktop share/kf5/locale/countries/tj/flag.png share/kf5/locale/countries/tk/country.desktop share/kf5/locale/countries/tk/flag.png share/kf5/locale/countries/tl/country.desktop share/kf5/locale/countries/tl/flag.png share/kf5/locale/countries/tm/country.desktop share/kf5/locale/countries/tm/flag.png share/kf5/locale/countries/tn/country.desktop share/kf5/locale/countries/tn/flag.png share/kf5/locale/countries/to/country.desktop share/kf5/locale/countries/to/flag.png share/kf5/locale/countries/tp/country.desktop share/kf5/locale/countries/tp/flag.png share/kf5/locale/countries/tr/country.desktop share/kf5/locale/countries/tr/flag.png share/kf5/locale/countries/tt/country.desktop share/kf5/locale/countries/tt/flag.png share/kf5/locale/countries/tv/country.desktop share/kf5/locale/countries/tv/flag.png share/kf5/locale/countries/tw/country.desktop share/kf5/locale/countries/tw/flag.png share/kf5/locale/countries/tz/country.desktop share/kf5/locale/countries/tz/flag.png share/kf5/locale/countries/ua/country.desktop share/kf5/locale/countries/ua/flag.png share/kf5/locale/countries/ug/country.desktop share/kf5/locale/countries/ug/flag.png share/kf5/locale/countries/us/country.desktop share/kf5/locale/countries/us/flag.png share/kf5/locale/countries/uy/country.desktop share/kf5/locale/countries/uy/flag.png share/kf5/locale/countries/uz/country.desktop share/kf5/locale/countries/uz/flag.png share/kf5/locale/countries/va/country.desktop share/kf5/locale/countries/va/flag.png share/kf5/locale/countries/vc/country.desktop share/kf5/locale/countries/vc/flag.png share/kf5/locale/countries/ve/country.desktop share/kf5/locale/countries/ve/flag.png share/kf5/locale/countries/vg/country.desktop share/kf5/locale/countries/vg/flag.png share/kf5/locale/countries/vi/country.desktop share/kf5/locale/countries/vi/flag.png share/kf5/locale/countries/vn/country.desktop share/kf5/locale/countries/vn/flag.png share/kf5/locale/countries/vu/country.desktop share/kf5/locale/countries/vu/flag.png share/kf5/locale/countries/westafrica.desktop share/kf5/locale/countries/westeurope.desktop share/kf5/locale/countries/wf/country.desktop share/kf5/locale/countries/wf/flag.png share/kf5/locale/countries/ws/country.desktop share/kf5/locale/countries/ws/flag.png share/kf5/locale/countries/ye/country.desktop share/kf5/locale/countries/ye/flag.png share/kf5/locale/countries/yt/country.desktop share/kf5/locale/countries/yt/flag.png share/kf5/locale/countries/za/country.desktop share/kf5/locale/countries/za/flag.png share/kf5/locale/countries/zm/country.desktop share/kf5/locale/countries/zm/flag.png share/kf5/locale/countries/zw/country.desktop share/kf5/locale/countries/zw/flag.png share/kf5/locale/currency/adf.desktop share/kf5/locale/currency/adp.desktop share/kf5/locale/currency/aed.desktop share/kf5/locale/currency/afa.desktop share/kf5/locale/currency/afn.desktop share/kf5/locale/currency/all.desktop share/kf5/locale/currency/amd.desktop share/kf5/locale/currency/ang.desktop share/kf5/locale/currency/aoa.desktop share/kf5/locale/currency/aon.desktop share/kf5/locale/currency/ars.desktop share/kf5/locale/currency/ats.desktop share/kf5/locale/currency/aud.desktop share/kf5/locale/currency/awg.desktop share/kf5/locale/currency/azm.desktop share/kf5/locale/currency/azn.desktop share/kf5/locale/currency/bam.desktop share/kf5/locale/currency/bbd.desktop share/kf5/locale/currency/bdt.desktop share/kf5/locale/currency/bef.desktop share/kf5/locale/currency/bgl.desktop share/kf5/locale/currency/bgn.desktop share/kf5/locale/currency/bhd.desktop share/kf5/locale/currency/bif.desktop share/kf5/locale/currency/bmd.desktop share/kf5/locale/currency/bnd.desktop share/kf5/locale/currency/bob.desktop share/kf5/locale/currency/bov.desktop share/kf5/locale/currency/brl.desktop share/kf5/locale/currency/bsd.desktop share/kf5/locale/currency/btn.desktop share/kf5/locale/currency/bwp.desktop share/kf5/locale/currency/byr.desktop share/kf5/locale/currency/bzd.desktop share/kf5/locale/currency/cad.desktop share/kf5/locale/currency/cdf.desktop share/kf5/locale/currency/chf.desktop share/kf5/locale/currency/clf.desktop share/kf5/locale/currency/clp.desktop share/kf5/locale/currency/cny.desktop share/kf5/locale/currency/cop.desktop share/kf5/locale/currency/cou.desktop share/kf5/locale/currency/crc.desktop share/kf5/locale/currency/cuc.desktop share/kf5/locale/currency/cup.desktop share/kf5/locale/currency/cve.desktop share/kf5/locale/currency/cyp.desktop share/kf5/locale/currency/czk.desktop share/kf5/locale/currency/dem.desktop share/kf5/locale/currency/djf.desktop share/kf5/locale/currency/dkk.desktop share/kf5/locale/currency/dop.desktop share/kf5/locale/currency/dzd.desktop share/kf5/locale/currency/eek.desktop share/kf5/locale/currency/egp.desktop share/kf5/locale/currency/ern.desktop share/kf5/locale/currency/esp.desktop share/kf5/locale/currency/etb.desktop share/kf5/locale/currency/eur.desktop share/kf5/locale/currency/fim.desktop share/kf5/locale/currency/fjd.desktop share/kf5/locale/currency/fkp.desktop share/kf5/locale/currency/frf.desktop share/kf5/locale/currency/gbp.desktop share/kf5/locale/currency/gel.desktop share/kf5/locale/currency/ghc.desktop share/kf5/locale/currency/ghs.desktop share/kf5/locale/currency/gip.desktop share/kf5/locale/currency/gmd.desktop share/kf5/locale/currency/gnf.desktop share/kf5/locale/currency/grd.desktop share/kf5/locale/currency/gtq.desktop share/kf5/locale/currency/gwp.desktop share/kf5/locale/currency/gyd.desktop share/kf5/locale/currency/hkd.desktop share/kf5/locale/currency/hnl.desktop share/kf5/locale/currency/hrk.desktop share/kf5/locale/currency/htg.desktop share/kf5/locale/currency/huf.desktop share/kf5/locale/currency/idr.desktop share/kf5/locale/currency/iep.desktop share/kf5/locale/currency/ils.desktop share/kf5/locale/currency/inr.desktop share/kf5/locale/currency/iqd.desktop share/kf5/locale/currency/irr.desktop share/kf5/locale/currency/isk.desktop share/kf5/locale/currency/itl.desktop share/kf5/locale/currency/jmd.desktop share/kf5/locale/currency/jod.desktop share/kf5/locale/currency/jpy.desktop share/kf5/locale/currency/kes.desktop share/kf5/locale/currency/kgs.desktop share/kf5/locale/currency/khr.desktop share/kf5/locale/currency/kmf.desktop share/kf5/locale/currency/kpw.desktop share/kf5/locale/currency/krw.desktop share/kf5/locale/currency/kwd.desktop share/kf5/locale/currency/kyd.desktop share/kf5/locale/currency/kzt.desktop share/kf5/locale/currency/lak.desktop share/kf5/locale/currency/lbp.desktop share/kf5/locale/currency/lkr.desktop share/kf5/locale/currency/lrd.desktop share/kf5/locale/currency/lsl.desktop share/kf5/locale/currency/ltl.desktop share/kf5/locale/currency/luf.desktop share/kf5/locale/currency/lvl.desktop share/kf5/locale/currency/lyd.desktop share/kf5/locale/currency/mad.desktop share/kf5/locale/currency/mdl.desktop share/kf5/locale/currency/mga.desktop share/kf5/locale/currency/mgf.desktop share/kf5/locale/currency/mkd.desktop share/kf5/locale/currency/mlf.desktop share/kf5/locale/currency/mmk.desktop share/kf5/locale/currency/mnt.desktop share/kf5/locale/currency/mop.desktop share/kf5/locale/currency/mro.desktop share/kf5/locale/currency/mtl.desktop share/kf5/locale/currency/mur.desktop share/kf5/locale/currency/mvr.desktop share/kf5/locale/currency/mwk.desktop share/kf5/locale/currency/mxn.desktop share/kf5/locale/currency/mxv.desktop share/kf5/locale/currency/myr.desktop share/kf5/locale/currency/mzm.desktop share/kf5/locale/currency/mzn.desktop share/kf5/locale/currency/nad.desktop share/kf5/locale/currency/ngn.desktop share/kf5/locale/currency/nio.desktop share/kf5/locale/currency/nlg.desktop share/kf5/locale/currency/nok.desktop share/kf5/locale/currency/npr.desktop share/kf5/locale/currency/nzd.desktop share/kf5/locale/currency/omr.desktop share/kf5/locale/currency/pab.desktop share/kf5/locale/currency/pen.desktop share/kf5/locale/currency/pgk.desktop share/kf5/locale/currency/php.desktop share/kf5/locale/currency/pkr.desktop share/kf5/locale/currency/pln.desktop share/kf5/locale/currency/pte.desktop share/kf5/locale/currency/pyg.desktop share/kf5/locale/currency/qar.desktop share/kf5/locale/currency/rol.desktop share/kf5/locale/currency/ron.desktop share/kf5/locale/currency/rsd.desktop share/kf5/locale/currency/rub.desktop share/kf5/locale/currency/rur.desktop share/kf5/locale/currency/rwf.desktop share/kf5/locale/currency/sar.desktop share/kf5/locale/currency/sbd.desktop share/kf5/locale/currency/scr.desktop share/kf5/locale/currency/sdd.desktop share/kf5/locale/currency/sdg.desktop share/kf5/locale/currency/sek.desktop share/kf5/locale/currency/sgd.desktop share/kf5/locale/currency/shp.desktop share/kf5/locale/currency/sit.desktop share/kf5/locale/currency/skk.desktop share/kf5/locale/currency/sll.desktop share/kf5/locale/currency/sos.desktop share/kf5/locale/currency/srd.desktop share/kf5/locale/currency/srg.desktop share/kf5/locale/currency/ssp.desktop share/kf5/locale/currency/std.desktop share/kf5/locale/currency/svc.desktop share/kf5/locale/currency/syp.desktop share/kf5/locale/currency/szl.desktop share/kf5/locale/currency/thb.desktop share/kf5/locale/currency/tjs.desktop share/kf5/locale/currency/tmm.desktop share/kf5/locale/currency/tmt.desktop share/kf5/locale/currency/tnd.desktop share/kf5/locale/currency/top.desktop share/kf5/locale/currency/tpe.desktop share/kf5/locale/currency/trl.desktop share/kf5/locale/currency/try.desktop share/kf5/locale/currency/ttd.desktop share/kf5/locale/currency/twd.desktop share/kf5/locale/currency/tzs.desktop share/kf5/locale/currency/uah.desktop share/kf5/locale/currency/ugx.desktop share/kf5/locale/currency/usd.desktop share/kf5/locale/currency/usn.desktop share/kf5/locale/currency/uss.desktop share/kf5/locale/currency/uyu.desktop share/kf5/locale/currency/uzs.desktop share/kf5/locale/currency/veb.desktop share/kf5/locale/currency/vnd.desktop share/kf5/locale/currency/vuv.desktop share/kf5/locale/currency/wst.desktop share/kf5/locale/currency/xaf.desktop share/kf5/locale/currency/xag.desktop share/kf5/locale/currency/xau.desktop share/kf5/locale/currency/xcd.desktop share/kf5/locale/currency/xof.desktop share/kf5/locale/currency/xpd.desktop share/kf5/locale/currency/xpf.desktop share/kf5/locale/currency/xpt.desktop share/kf5/locale/currency/yer.desktop share/kf5/locale/currency/yum.desktop share/kf5/locale/currency/zar.desktop share/kf5/locale/currency/zmk.desktop share/kf5/locale/currency/zwd.desktop share/kf5/locale/currency/zwl.desktop share/kf5/widgets/pics/kdatetimewidget.png share/kf5/widgets/pics/kdatewidget.png share/kf5/widgets/pics/kdialog.png share/kf5/widgets/pics/kdoublenuminput.png share/kf5/widgets/pics/keditlistbox.png share/kf5/widgets/pics/kintnuminput.png share/kf5/widgets/pics/kintspinbox.png share/kf5/widgets/pics/kpushbutton.png share/kf5/widgets/pics/krestrictedline.png share/kf5/widgets/pics/ktextbrowser.png share/kservices5/kcm_ssl.desktop share/kservices5/qimageioplugins/bmp.desktop share/kservices5/qimageioplugins/gif.desktop share/kservices5/qimageioplugins/ico.desktop share/kservices5/qimageioplugins/jpeg.desktop share/kservices5/qimageioplugins/mng.desktop share/kservices5/qimageioplugins/pbm.desktop share/kservices5/qimageioplugins/pgm.desktop share/kservices5/qimageioplugins/png.desktop share/kservices5/qimageioplugins/ppm.desktop share/kservices5/qimageioplugins/svg+xml-compressed.desktop share/kservices5/qimageioplugins/svg+xml.desktop share/kservices5/qimageioplugins/tiff.desktop share/kservices5/qimageioplugins/wbmp.desktop share/kservices5/qimageioplugins/webp.desktop share/kservices5/qimageioplugins/xbm.desktop share/kservices5/qimageioplugins/xpm.desktop share/kservicetypes5/kdatatool.desktop share/kservicetypes5/kfilewrite.desktop share/kservicetypes5/kscan.desktop share/kservicetypes5/qimageio_plugin.desktop share/locale/af/LC_MESSAGES/kdelibs4support.mo share/locale/ar/LC_MESSAGES/kdelibs4support.mo share/locale/as/LC_MESSAGES/kdelibs4support.mo -share/locale/ast/LC_MESSAGES/kdelibs4support.mo share/locale/az/LC_MESSAGES/kdelibs4support.mo share/locale/be/LC_MESSAGES/kdelibs4support.mo share/locale/be@latin/LC_MESSAGES/kdelibs4support.mo share/locale/bg/LC_MESSAGES/kdelibs4support.mo share/locale/bn/LC_MESSAGES/kdelibs4support.mo share/locale/bn_IN/LC_MESSAGES/kdelibs4support.mo share/locale/br/LC_MESSAGES/kdelibs4support.mo share/locale/bs/LC_MESSAGES/kdelibs4support.mo share/locale/ca/LC_MESSAGES/kdelibs4support.mo share/locale/ca@valencia/LC_MESSAGES/kdelibs4support.mo share/locale/crh/LC_MESSAGES/kdelibs4support.mo share/locale/cs/LC_MESSAGES/kdelibs4support.mo share/locale/csb/LC_MESSAGES/kdelibs4support.mo share/locale/cy/LC_MESSAGES/kdelibs4support.mo share/locale/da/LC_MESSAGES/kdelibs4support.mo share/locale/de/LC_MESSAGES/kdelibs4support.mo share/locale/el/LC_MESSAGES/kdelibs4support.mo share/locale/en_GB/LC_MESSAGES/kdelibs4support.mo share/locale/eo/LC_MESSAGES/kdelibs4support.mo share/locale/es/LC_MESSAGES/kdelibs4support.mo share/locale/et/LC_MESSAGES/kdelibs4support.mo share/locale/eu/LC_MESSAGES/kdelibs4support.mo share/locale/fa/LC_MESSAGES/kdelibs4support.mo share/locale/fi/LC_MESSAGES/kdelibs4support.mo share/locale/fr/LC_MESSAGES/kdelibs4support.mo share/locale/fy/LC_MESSAGES/kdelibs4support.mo share/locale/ga/LC_MESSAGES/kdelibs4support.mo share/locale/gd/LC_MESSAGES/kdelibs4support.mo share/locale/gl/LC_MESSAGES/kdelibs4support.mo share/locale/gu/LC_MESSAGES/kdelibs4support.mo share/locale/ha/LC_MESSAGES/kdelibs4support.mo share/locale/he/LC_MESSAGES/kdelibs4support.mo share/locale/hi/LC_MESSAGES/kdelibs4support.mo share/locale/hne/LC_MESSAGES/kdelibs4support.mo share/locale/hr/LC_MESSAGES/kdelibs4support.mo share/locale/hsb/LC_MESSAGES/kdelibs4support.mo share/locale/hu/LC_MESSAGES/kdelibs4support.mo share/locale/hy/LC_MESSAGES/kdelibs4support.mo share/locale/ia/LC_MESSAGES/kdelibs4support.mo share/locale/id/LC_MESSAGES/kdelibs4support.mo share/locale/is/LC_MESSAGES/kdelibs4support.mo share/locale/it/LC_MESSAGES/kdelibs4support.mo share/locale/ja/LC_MESSAGES/kdelibs4support.mo share/locale/ka/LC_MESSAGES/kdelibs4support.mo share/locale/kf5_all_languages share/locale/kk/LC_MESSAGES/kdelibs4support.mo share/locale/km/LC_MESSAGES/kdelibs4support.mo share/locale/kn/LC_MESSAGES/kdelibs4support.mo share/locale/ko/LC_MESSAGES/kdelibs4support.mo share/locale/ku/LC_MESSAGES/kdelibs4support.mo share/locale/lb/LC_MESSAGES/kdelibs4support.mo share/locale/lt/LC_MESSAGES/kdelibs4support.mo share/locale/lv/LC_MESSAGES/kdelibs4support.mo share/locale/mai/LC_MESSAGES/kdelibs4support.mo share/locale/mk/LC_MESSAGES/kdelibs4support.mo share/locale/ml/LC_MESSAGES/kdelibs4support.mo share/locale/mr/LC_MESSAGES/kdelibs4support.mo share/locale/ms/LC_MESSAGES/kdelibs4support.mo share/locale/nb/LC_MESSAGES/kdelibs4support.mo share/locale/nds/LC_MESSAGES/kdelibs4support.mo share/locale/ne/LC_MESSAGES/kdelibs4support.mo share/locale/nl/LC_MESSAGES/kdelibs4support.mo share/locale/nn/LC_MESSAGES/kdelibs4support.mo share/locale/oc/LC_MESSAGES/kdelibs4support.mo share/locale/or/LC_MESSAGES/kdelibs4support.mo share/locale/pa/LC_MESSAGES/kdelibs4support.mo share/locale/pl/LC_MESSAGES/kdelibs4support.mo share/locale/ps/LC_MESSAGES/kdelibs4support.mo share/locale/pt/LC_MESSAGES/kdelibs4support.mo share/locale/pt_BR/LC_MESSAGES/kdelibs4support.mo share/locale/ro/LC_MESSAGES/kdelibs4support.mo share/locale/ru/LC_MESSAGES/kdelibs4support.mo share/locale/se/LC_MESSAGES/kdelibs4support.mo share/locale/si/LC_MESSAGES/kdelibs4support.mo share/locale/sk/LC_MESSAGES/kdelibs4support.mo share/locale/sl/LC_MESSAGES/kdelibs4support.mo share/locale/sq/LC_MESSAGES/kdelibs4support.mo share/locale/sr/LC_MESSAGES/kdelibs4support.mo share/locale/sr@ijekavian/LC_MESSAGES/kdelibs4support.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdelibs4support.mo share/locale/sr@latin/LC_MESSAGES/kdelibs4support.mo share/locale/sv/LC_MESSAGES/kdelibs4support.mo share/locale/ta/LC_MESSAGES/kdelibs4support.mo share/locale/te/LC_MESSAGES/kdelibs4support.mo share/locale/tg/LC_MESSAGES/kdelibs4support.mo share/locale/th/LC_MESSAGES/kdelibs4support.mo share/locale/tr/LC_MESSAGES/kdelibs4support.mo share/locale/tt/LC_MESSAGES/kdelibs4support.mo share/locale/ug/LC_MESSAGES/kdelibs4support.mo share/locale/uk/LC_MESSAGES/kdelibs4support.mo share/locale/uz/LC_MESSAGES/kdelibs4support.mo share/locale/uz@cyrillic/LC_MESSAGES/kdelibs4support.mo share/locale/vi/LC_MESSAGES/kdelibs4support.mo share/locale/wa/LC_MESSAGES/kdelibs4support.mo share/locale/xh/LC_MESSAGES/kdelibs4support.mo share/locale/zh_CN/LC_MESSAGES/kdelibs4support.mo share/locale/zh_HK/LC_MESSAGES/kdelibs4support.mo share/locale/zh_TW/LC_MESSAGES/kdelibs4support.mo diff --git a/x11/kf5-kglobalaccel/distinfo b/x11/kf5-kglobalaccel/distinfo index 3e7e0cd55c92..31bb9a2772c2 100644 --- a/x11/kf5-kglobalaccel/distinfo +++ b/x11/kf5-kglobalaccel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689175 -SHA256 (KDE/frameworks/5.99.0/kglobalaccel-5.99.0.tar.xz) = 471d7ded850440716659e93e790a237b4aa4e30a4e04a937e764a87ca7899c30 -SIZE (KDE/frameworks/5.99.0/kglobalaccel-5.99.0.tar.xz) = 97124 +TIMESTAMP = 1667804698 +SHA256 (KDE/frameworks/5.100.0/kglobalaccel-5.100.0.tar.xz) = c39b4ef33e4c80a6478b6f5a162839d3523c5e4e14c44af647d7f1a72192a2f2 +SIZE (KDE/frameworks/5.100.0/kglobalaccel-5.100.0.tar.xz) = 2367228 diff --git a/x11/kf5-kinit/distinfo b/x11/kf5-kinit/distinfo index 2e6b4219958b..f9c915dc4cbf 100644 --- a/x11/kf5-kinit/distinfo +++ b/x11/kf5-kinit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689176 -SHA256 (KDE/frameworks/5.99.0/kinit-5.99.0.tar.xz) = 2302add7e43a9a32aa9a3d5a73e52757e0b321efea6b15a565bf9f683dd60177 -SIZE (KDE/frameworks/5.99.0/kinit-5.99.0.tar.xz) = 119504 +TIMESTAMP = 1667804699 +SHA256 (KDE/frameworks/5.100.0/kinit-5.100.0.tar.xz) = 89112dd9cebba4c917b915b839afbc01dbfdb80bb71c61d9575fec06445bf2ce +SIZE (KDE/frameworks/5.100.0/kinit-5.100.0.tar.xz) = 2433276 diff --git a/x11/kf5-kinit/pkg-plist b/x11/kf5-kinit/pkg-plist index fe623f2c390b..68760f8ebed3 100644 --- a/x11/kf5-kinit/pkg-plist +++ b/x11/kf5-kinit/pkg-plist @@ -1,129 +1,128 @@ bin/kdeinit5 bin/kdeinit5_shutdown bin/kdeinit5_wrapper bin/kshell5 bin/kwrapper5 lib/cmake/KF5Init/KF5InitConfig.cmake lib/cmake/KF5Init/KF5InitConfigVersion.cmake lib/cmake/KF5Init/KF5InitMacros.cmake lib/cmake/KF5Init/kde5init_dummy.cpp.in lib/libexec/kf5/klauncher lib/libexec/kf5/start_kdeinit lib/libexec/kf5/start_kdeinit_wrapper lib/libkdeinit5_klauncher.so man/ca/man8/kdeinit5.8.gz man/ca@valencia/man8/kdeinit5.8.gz man/de/man8/kdeinit5.8.gz man/es/man8/kdeinit5.8.gz man/fr/man8/kdeinit5.8.gz man/it/man8/kdeinit5.8.gz man/man8/kdeinit5.8.gz man/nl/man8/kdeinit5.8.gz man/pt/man8/kdeinit5.8.gz man/pt_BR/man8/kdeinit5.8.gz man/sv/man8/kdeinit5.8.gz man/uk/man8/kdeinit5.8.gz share/dbus-1/interfaces/kf5_org.kde.KLauncher.xml share/locale/af/LC_MESSAGES/kinit5.mo share/locale/ar/LC_MESSAGES/kinit5.mo share/locale/as/LC_MESSAGES/kinit5.mo -share/locale/ast/LC_MESSAGES/kinit5.mo share/locale/az/LC_MESSAGES/kinit5.mo share/locale/be/LC_MESSAGES/kinit5.mo share/locale/be@latin/LC_MESSAGES/kinit5.mo share/locale/bg/LC_MESSAGES/kinit5.mo share/locale/bn/LC_MESSAGES/kinit5.mo share/locale/bn_IN/LC_MESSAGES/kinit5.mo share/locale/br/LC_MESSAGES/kinit5.mo share/locale/bs/LC_MESSAGES/kinit5.mo share/locale/ca/LC_MESSAGES/kinit5.mo share/locale/ca@valencia/LC_MESSAGES/kinit5.mo share/locale/crh/LC_MESSAGES/kinit5.mo share/locale/cs/LC_MESSAGES/kinit5.mo share/locale/csb/LC_MESSAGES/kinit5.mo share/locale/cy/LC_MESSAGES/kinit5.mo share/locale/da/LC_MESSAGES/kinit5.mo share/locale/de/LC_MESSAGES/kinit5.mo share/locale/el/LC_MESSAGES/kinit5.mo share/locale/en_GB/LC_MESSAGES/kinit5.mo share/locale/eo/LC_MESSAGES/kinit5.mo share/locale/es/LC_MESSAGES/kinit5.mo share/locale/et/LC_MESSAGES/kinit5.mo share/locale/eu/LC_MESSAGES/kinit5.mo share/locale/fa/LC_MESSAGES/kinit5.mo share/locale/fi/LC_MESSAGES/kinit5.mo share/locale/fr/LC_MESSAGES/kinit5.mo share/locale/fy/LC_MESSAGES/kinit5.mo share/locale/ga/LC_MESSAGES/kinit5.mo share/locale/gd/LC_MESSAGES/kinit5.mo share/locale/gl/LC_MESSAGES/kinit5.mo share/locale/gu/LC_MESSAGES/kinit5.mo share/locale/ha/LC_MESSAGES/kinit5.mo share/locale/he/LC_MESSAGES/kinit5.mo share/locale/hi/LC_MESSAGES/kinit5.mo share/locale/hne/LC_MESSAGES/kinit5.mo share/locale/hr/LC_MESSAGES/kinit5.mo share/locale/hsb/LC_MESSAGES/kinit5.mo share/locale/hu/LC_MESSAGES/kinit5.mo share/locale/hy/LC_MESSAGES/kinit5.mo share/locale/ia/LC_MESSAGES/kinit5.mo share/locale/id/LC_MESSAGES/kinit5.mo share/locale/is/LC_MESSAGES/kinit5.mo share/locale/it/LC_MESSAGES/kinit5.mo share/locale/ja/LC_MESSAGES/kinit5.mo share/locale/ka/LC_MESSAGES/kinit5.mo share/locale/kk/LC_MESSAGES/kinit5.mo share/locale/km/LC_MESSAGES/kinit5.mo share/locale/kn/LC_MESSAGES/kinit5.mo share/locale/ko/LC_MESSAGES/kinit5.mo share/locale/ku/LC_MESSAGES/kinit5.mo share/locale/lb/LC_MESSAGES/kinit5.mo share/locale/lt/LC_MESSAGES/kinit5.mo share/locale/lv/LC_MESSAGES/kinit5.mo share/locale/mai/LC_MESSAGES/kinit5.mo share/locale/mk/LC_MESSAGES/kinit5.mo share/locale/ml/LC_MESSAGES/kinit5.mo share/locale/mr/LC_MESSAGES/kinit5.mo share/locale/ms/LC_MESSAGES/kinit5.mo share/locale/nb/LC_MESSAGES/kinit5.mo share/locale/nds/LC_MESSAGES/kinit5.mo share/locale/ne/LC_MESSAGES/kinit5.mo share/locale/nl/LC_MESSAGES/kinit5.mo share/locale/nn/LC_MESSAGES/kinit5.mo share/locale/oc/LC_MESSAGES/kinit5.mo share/locale/or/LC_MESSAGES/kinit5.mo share/locale/pa/LC_MESSAGES/kinit5.mo share/locale/pl/LC_MESSAGES/kinit5.mo share/locale/ps/LC_MESSAGES/kinit5.mo share/locale/pt/LC_MESSAGES/kinit5.mo share/locale/pt_BR/LC_MESSAGES/kinit5.mo share/locale/ro/LC_MESSAGES/kinit5.mo share/locale/ru/LC_MESSAGES/kinit5.mo share/locale/se/LC_MESSAGES/kinit5.mo share/locale/si/LC_MESSAGES/kinit5.mo share/locale/sk/LC_MESSAGES/kinit5.mo share/locale/sl/LC_MESSAGES/kinit5.mo share/locale/sq/LC_MESSAGES/kinit5.mo share/locale/sr/LC_MESSAGES/kinit5.mo share/locale/sr@ijekavian/LC_MESSAGES/kinit5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kinit5.mo share/locale/sr@latin/LC_MESSAGES/kinit5.mo share/locale/sv/LC_MESSAGES/kinit5.mo share/locale/ta/LC_MESSAGES/kinit5.mo share/locale/te/LC_MESSAGES/kinit5.mo share/locale/tg/LC_MESSAGES/kinit5.mo share/locale/th/LC_MESSAGES/kinit5.mo share/locale/tr/LC_MESSAGES/kinit5.mo share/locale/tt/LC_MESSAGES/kinit5.mo share/locale/ug/LC_MESSAGES/kinit5.mo share/locale/uk/LC_MESSAGES/kinit5.mo share/locale/uz/LC_MESSAGES/kinit5.mo share/locale/uz@cyrillic/LC_MESSAGES/kinit5.mo share/locale/vi/LC_MESSAGES/kinit5.mo share/locale/wa/LC_MESSAGES/kinit5.mo share/locale/xh/LC_MESSAGES/kinit5.mo share/locale/zh_CN/LC_MESSAGES/kinit5.mo share/locale/zh_HK/LC_MESSAGES/kinit5.mo share/locale/zh_TW/LC_MESSAGES/kinit5.mo share/qlogging-categories5/kinit.categories share/qlogging-categories5/kinit.renamecategories diff --git a/x11/kf5-krunner/distinfo b/x11/kf5-krunner/distinfo index 5d21ade281c9..f9a1286a4fa3 100644 --- a/x11/kf5-krunner/distinfo +++ b/x11/kf5-krunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689177 -SHA256 (KDE/frameworks/5.99.0/krunner-5.99.0.tar.xz) = 2521878b156c6f4f8b50e8b575fdffe170310ca32316f76ab45ebdb5ff66c8d9 -SIZE (KDE/frameworks/5.99.0/krunner-5.99.0.tar.xz) = 87872 +TIMESTAMP = 1667804700 +SHA256 (KDE/frameworks/5.100.0/krunner-5.100.0.tar.xz) = 7850553326de3d89108f7a5ab9d37a65b18a5c88bd13bb07390cacb9b358c056 +SIZE (KDE/frameworks/5.100.0/krunner-5.100.0.tar.xz) = 87952 diff --git a/x11/kf5-kwayland/distinfo b/x11/kf5-kwayland/distinfo index c83acfc246ca..ad19658c8091 100644 --- a/x11/kf5-kwayland/distinfo +++ b/x11/kf5-kwayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689178 -SHA256 (KDE/frameworks/5.99.0/kwayland-5.99.0.tar.xz) = a7be2125e3a833e99ad9405a03d4f9bec0d4c83c23898406da1daaf068dd65a2 -SIZE (KDE/frameworks/5.99.0/kwayland-5.99.0.tar.xz) = 336592 +TIMESTAMP = 1667804701 +SHA256 (KDE/frameworks/5.100.0/kwayland-5.100.0.tar.xz) = 213d09eb67bc9ecaeecd04cb02838b3ca900e032fd3412c52fa697e0ed7e2f85 +SIZE (KDE/frameworks/5.100.0/kwayland-5.100.0.tar.xz) = 336548 diff --git a/x11/kf5-kwindowsystem/distinfo b/x11/kf5-kwindowsystem/distinfo index f38e48c3738f..b6a1e6965072 100644 --- a/x11/kf5-kwindowsystem/distinfo +++ b/x11/kf5-kwindowsystem/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1664689179 -SHA256 (KDE/frameworks/5.99.0/kwindowsystem-5.99.0.tar.xz) = f4d13fbf562c05075bb59f997a0de567f96c008a379b7c796d2ca26c01a7f877 -SIZE (KDE/frameworks/5.99.0/kwindowsystem-5.99.0.tar.xz) = 182540 +TIMESTAMP = 1667804702 +SHA256 (KDE/frameworks/5.100.0/kwindowsystem-5.100.0.tar.xz) = 69b24ebaa5c94aa040c46dc1270a8fc9e44ed35d497c16b9b3244bb200834fb3 +SIZE (KDE/frameworks/5.100.0/kwindowsystem-5.100.0.tar.xz) = 2433288 diff --git a/x11/kf5-kwindowsystem/pkg-plist b/x11/kf5-kwindowsystem/pkg-plist index 6597dd3176b8..2f39a5320919 100644 --- a/x11/kf5-kwindowsystem/pkg-plist +++ b/x11/kf5-kwindowsystem/pkg-plist @@ -1,147 +1,146 @@ include/KF5/KWindowSystem/KKeyServer include/KF5/KWindowSystem/KSelectionOwner include/KF5/KWindowSystem/KSelectionWatcher include/KF5/KWindowSystem/KStartupInfo include/KF5/KWindowSystem/KUserTimestamp include/KF5/KWindowSystem/KWindowEffects include/KF5/KWindowSystem/KWindowInfo include/KF5/KWindowSystem/KWindowShadow include/KF5/KWindowSystem/KWindowShadowTile include/KF5/KWindowSystem/KWindowSystem include/KF5/KWindowSystem/KXMessages include/KF5/KWindowSystem/NETWM include/KF5/KWindowSystem/config-kwindowsystem.h include/KF5/KWindowSystem/fixx11h.h include/KF5/KWindowSystem/kkeyserver.h include/KF5/KWindowSystem/kkeyserver_x11.h include/KF5/KWindowSystem/kmanagerselection.h include/KF5/KWindowSystem/kselectionowner.h include/KF5/KWindowSystem/kselectionwatcher.h include/KF5/KWindowSystem/kstartupinfo.h include/KF5/KWindowSystem/kusertimestamp.h include/KF5/KWindowSystem/kwindoweffects.h include/KF5/KWindowSystem/kwindowinfo.h include/KF5/KWindowSystem/kwindowshadow.h include/KF5/KWindowSystem/kwindowsystem.h include/KF5/KWindowSystem/kwindowsystem_export.h include/KF5/KWindowSystem/kwindowsystem_version.h include/KF5/KWindowSystem/kxmessages.h include/KF5/KWindowSystem/netwm.h include/KF5/KWindowSystem/netwm_def.h include/KF5/KWindowSystem/private/kwindoweffects_p.h include/KF5/KWindowSystem/private/kwindowinfo_p.h include/KF5/KWindowSystem/private/kwindowshadow_p.h include/KF5/KWindowSystem/private/kwindowsystem_p.h include/KF5/KWindowSystem/private/kwindowsystemplugininterface_p.h lib/cmake/KF5WindowSystem/KF5WindowSystemConfig.cmake lib/cmake/KF5WindowSystem/KF5WindowSystemConfigVersion.cmake lib/cmake/KF5WindowSystem/KF5WindowSystemTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5WindowSystem/KF5WindowSystemTargets.cmake lib/libKF5WindowSystem.so lib/libKF5WindowSystem.so.5 lib/libKF5WindowSystem.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_MKSPECDIR%%/modules/qt_KWindowSystem.pri %%QT_PLUGINDIR%%/kf5/kwindowsystem/KF5WindowSystemX11Plugin.so share/locale/af/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ar/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/as/LC_MESSAGES/kwindowsystem5_qt.qm -share/locale/ast/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/az/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/be/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/be@latin/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/bg/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/bn/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/bn_IN/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/br/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/bs/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ca/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ca@valencia/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/crh/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/cs/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/csb/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/cy/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/da/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/de/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/el/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/en_GB/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/eo/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/es/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/et/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/eu/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/fa/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/fi/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/fr/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/fy/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ga/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/gd/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/gl/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/gu/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ha/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/he/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/hi/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/hne/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/hr/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/hsb/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/hu/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/hy/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ia/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/id/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/is/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/it/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ja/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ka/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/kk/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/km/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/kn/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ko/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ku/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/lb/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/lt/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/lv/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/mai/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/mk/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ml/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/mr/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ms/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/nb/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/nds/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ne/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/nl/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/nn/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/oc/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/or/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/pa/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/pl/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ps/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/pt/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/pt_BR/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ro/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ru/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/se/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/si/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sk/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sl/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sq/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sr/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sr@latin/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/sv/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ta/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/te/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/tg/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/th/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/tr/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/tt/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/ug/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/uk/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/uz/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/uz@cyrillic/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/vi/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/wa/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/xh/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/zh_CN/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/zh_HK/LC_MESSAGES/kwindowsystem5_qt.qm share/locale/zh_TW/LC_MESSAGES/kwindowsystem5_qt.qm share/qlogging-categories5/kwindowsystem.categories share/qlogging-categories5/kwindowsystem.renamecategories diff --git a/x11/kf5-plasma-framework/Makefile b/x11/kf5-plasma-framework/Makefile index f017fb5c53db..b414ff577f34 100644 --- a/x11/kf5-plasma-framework/Makefile +++ b/x11/kf5-plasma-framework/Makefile @@ -1,19 +1,19 @@ PORTNAME= plasma-framework -DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +DISTVERSION= 5.100.1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 plugin based UI runtime used to write user interfaces USES= cmake compiler:c++11-lib gettext gl kde:5 pkgconfig qt:5 tar:xz xorg USE_GL= egl gl USE_KDE= activities archive auth codecs completion config \ configwidgets coreaddons dbusaddons doctools:build globalaccel \ guiaddons i18n iconthemes jobwidgets kirigami2 kio package \ notifications service solid wayland windowsystem xmlgui kdeclarative \ widgetsaddons USE_QT= buildtools:build concurrent core dbus declarative gui network qmake:build \ script sql svg widgets x11extras xml USE_XORG= ice sm x11 xcb xext xrandr .include diff --git a/x11/kf5-plasma-framework/distinfo b/x11/kf5-plasma-framework/distinfo index 23af9c74aa1e..6916782f4b35 100644 --- a/x11/kf5-plasma-framework/distinfo +++ b/x11/kf5-plasma-framework/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1665405634 -SHA256 (KDE/frameworks/5.99.0/plasma-framework-5.99.0.tar.xz) = 93eda884a00380b07ebdd5eedd6423ab48ffa031fbe16b1e239b550b7412a0ab -SIZE (KDE/frameworks/5.99.0/plasma-framework-5.99.0.tar.xz) = 3141664 +TIMESTAMP = 1669099417 +SHA256 (KDE/frameworks/5.100.0/plasma-framework-5.100.1.tar.xz) = 53940a920773a105df0af9dd3dbf7afcebc6e1eb66404cc77f46c80563b4ada1 +SIZE (KDE/frameworks/5.100.0/plasma-framework-5.100.1.tar.xz) = 3302224 diff --git a/x11/kf5-plasma-framework/pkg-plist b/x11/kf5-plasma-framework/pkg-plist index 6d628b0f72fb..dc6a2a75b798 100644 --- a/x11/kf5-plasma-framework/pkg-plist +++ b/x11/kf5-plasma-framework/pkg-plist @@ -1,703 +1,702 @@ bin/plasmapkg2 include/KF5/Plasma/Applet include/KF5/Plasma/Containment include/KF5/Plasma/ContainmentActions include/KF5/Plasma/Corona include/KF5/Plasma/DataContainer include/KF5/Plasma/DataEngine include/KF5/Plasma/DataEngineConsumer include/KF5/Plasma/FrameSvg include/KF5/Plasma/Package include/KF5/Plasma/PackageStructure include/KF5/Plasma/Plasma include/KF5/Plasma/PluginLoader include/KF5/Plasma/Service include/KF5/Plasma/ServiceJob include/KF5/Plasma/Svg include/KF5/Plasma/Theme include/KF5/Plasma/plasma_version.h include/KF5/PlasmaQuick/AppletQuickItem include/KF5/PlasmaQuick/ConfigModel include/KF5/PlasmaQuick/ConfigView include/KF5/PlasmaQuick/ContainmentView include/KF5/PlasmaQuick/Dialog include/KF5/plasma/applet.h include/KF5/plasma/containment.h include/KF5/plasma/containmentactions.h include/KF5/plasma/corona.h include/KF5/plasma/datacontainer.h include/KF5/plasma/dataengine.h include/KF5/plasma/dataengineconsumer.h include/KF5/plasma/framesvg.h include/KF5/plasma/package.h include/KF5/plasma/packagestructure.h include/KF5/plasma/plasma.h include/KF5/plasma/plasma_export.h include/KF5/plasma/pluginloader.h include/KF5/plasma/scripting/appletscript.h include/KF5/plasma/scripting/dataenginescript.h include/KF5/plasma/scripting/scriptengine.h include/KF5/plasma/service.h include/KF5/plasma/servicejob.h include/KF5/plasma/svg.h include/KF5/plasma/theme.h include/KF5/plasma/version.h include/KF5/plasmaquick/appletquickitem.h include/KF5/plasmaquick/configmodel.h include/KF5/plasmaquick/configview.h include/KF5/plasmaquick/containmentview.h include/KF5/plasmaquick/dialog.h include/KF5/plasmaquick/packageurlinterceptor.h include/KF5/plasmaquick/plasmaquick_export.h lib/cmake/KF5Plasma/KF5PlasmaConfig.cmake lib/cmake/KF5Plasma/KF5PlasmaConfigVersion.cmake lib/cmake/KF5Plasma/KF5PlasmaMacros.cmake lib/cmake/KF5Plasma/KF5PlasmaTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Plasma/KF5PlasmaTargets.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickConfig.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickConfigVersion.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PlasmaQuick/KF5PlasmaQuickTargets.cmake lib/libKF5Plasma.so lib/libKF5Plasma.so.5 lib/libKF5Plasma.so.%%KDE_FRAMEWORKS_VERSION%% lib/libKF5PlasmaQuick.so lib/libKF5PlasmaQuick.so.5 lib/libKF5PlasmaQuick.so.%%KDE_FRAMEWORKS_VERSION%% %%QT_PLUGINDIR%%/kf5/kirigami/KirigamiPlasmaStyle.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_applet.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_containmentactions.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_dataengine.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_generic.so %%QT_PLUGINDIR%%/kpackage/packagestructure/plasma_theme.so %%QT_PLUGINDIR%%/plasma/scriptengines/plasma_appletscript_declarative.so %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/AbstractButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/BusyIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Button.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/CheckIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ComboBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Container.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Control.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Dial.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Dialog.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/DialogButtonBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Drawer.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Frame.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/GroupBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ItemDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Label.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Menu.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/MenuItem.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/MenuSeparator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Page.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/PageIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Pane.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Popup.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ProgressBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/README.md %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RadioIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RangeSlider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/RoundButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ScrollBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ScrollView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Slider.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SpinBox.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwipeView.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/Switch.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwitchDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/SwitchIndicator.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TabBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TabButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TextArea.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/TextField.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolButton.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/ToolTip.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/MobileCursor.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/MobileTextActionsToolBar.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/mobiletextselection/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonContent.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonFocus.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonHover.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/ButtonShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/DefaultListItemBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/FlatButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/IconLabel.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/RaisedButtonBackground.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/RoundShadow.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/TextFieldFocus.qml %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/private/qmldir %%QT_QMLDIR%%/QtQuick/Controls.2/Plasma/qmldir %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ApplicationWindowStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/BusyIndicatorStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CalendarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CheckBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ComboBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CursorDelegate.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/CursorHandleStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/EditMenuTouch.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/FocusFrameStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/GroupBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/MenuBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/MenuStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ProgressBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/RadioButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ScrollViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SelectionHandleStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SliderStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SpinBoxStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/StatusBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/SwitchStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TabViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TableViewStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TextAreaStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/TextFieldStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ToolBarStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/ButtonShadow.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/RoundShadow.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/TextFieldFocus.qml %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/private/Util.js %%QT_QMLDIR%%/QtQuick/Controls/Styles/Plasma/qmldir %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/AbstractApplicationHeader.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/Icon.qml %%QT_QMLDIR%%/org/kde/kirigami.2/styles/Plasma/Theme.qml %%QT_QMLDIR%%/org/kde/plasma/accessdenied/qmldir %%QT_QMLDIR%%/org/kde/plasma/calendar/CalendarToolbar.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/DayDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/DaysCalendar.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/MonthMenu.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/MonthView.qml %%QT_QMLDIR%%/org/kde/plasma/calendar/libcalendarplugin.so %%QT_QMLDIR%%/org/kde/plasma/calendar/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/calendar/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/AbstractButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/BusyIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Button.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/CheckIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ComboBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Container.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Control.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Dial.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Dialog.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/DialogButtonBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Drawer.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Frame.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/GroupBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ItemDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Label.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Menu.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/MenuItem.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/MenuSeparator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Page.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/PageIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Pane.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Popup.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ProgressBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/README.md %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RadioIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RangeSlider.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/RoundButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ScrollBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ScrollView.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Slider.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SpinBox.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwipeView.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/Switch.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwitchDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/SwitchIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TabBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TabButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TextArea.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/TextField.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolButton.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/ToolTip.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/MobileCursor.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/MobileTextActionsToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/mobiletextselection/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonContent.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonFocus.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonHover.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/ButtonShadow.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/DefaultListItemBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/FlatButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/IconLabel.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/RaisedButtonBackground.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/RoundShadow.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/TextFieldFocus.qml %%QT_QMLDIR%%/org/kde/plasma/components.3/private/qmldir %%QT_QMLDIR%%/org/kde/plasma/components.3/qmldir %%QT_QMLDIR%%/org/kde/plasma/components/BusyIndicator.qml %%QT_QMLDIR%%/org/kde/plasma/components/Button.qml %%QT_QMLDIR%%/org/kde/plasma/components/ButtonColumn.qml %%QT_QMLDIR%%/org/kde/plasma/components/ButtonGroup.js %%QT_QMLDIR%%/org/kde/plasma/components/ButtonRow.qml %%QT_QMLDIR%%/org/kde/plasma/components/CheckBox.qml %%QT_QMLDIR%%/org/kde/plasma/components/ComboBox.qml %%QT_QMLDIR%%/org/kde/plasma/components/CommonDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/ContextMenu.qml %%QT_QMLDIR%%/org/kde/plasma/components/Dialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/Highlight.qml %%QT_QMLDIR%%/org/kde/plasma/components/Label.qml %%QT_QMLDIR%%/org/kde/plasma/components/ListItem.qml %%QT_QMLDIR%%/org/kde/plasma/components/ModelContextMenu.qml %%QT_QMLDIR%%/org/kde/plasma/components/Page.qml %%QT_QMLDIR%%/org/kde/plasma/components/PageStack.qml %%QT_QMLDIR%%/org/kde/plasma/components/ProgressBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/QueryDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/RadioButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/ScrollBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/SectionScroller.qml %%QT_QMLDIR%%/org/kde/plasma/components/SelectionDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/Sheet.qml %%QT_QMLDIR%%/org/kde/plasma/components/Slider.qml %%QT_QMLDIR%%/org/kde/plasma/components/Switch.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/TabGroup.qml %%QT_QMLDIR%%/org/kde/plasma/components/TextArea.qml %%QT_QMLDIR%%/org/kde/plasma/components/TextField.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolBar.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolBarLayout.qml %%QT_QMLDIR%%/org/kde/plasma/components/ToolButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/libplasmacomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/components/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/components/private/AppManager.js %%QT_QMLDIR%%/org/kde/plasma/components/private/DualStateButton.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/InlineDialog.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/PageStack.js %%QT_QMLDIR%%/org/kde/plasma/components/private/ScrollBarDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/ScrollDecoratorDelegate.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/SectionScroller.js %%QT_QMLDIR%%/org/kde/plasma/components/private/TabBarLayout.qml %%QT_QMLDIR%%/org/kde/plasma/components/private/TabGroup.js %%QT_QMLDIR%%/org/kde/plasma/components/qmldir %%QT_QMLDIR%%/org/kde/plasma/core/libcorebindingsplugin.so %%QT_QMLDIR%%/org/kde/plasma/core/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/core/private/DefaultToolTip.qml %%QT_QMLDIR%%/org/kde/plasma/core/qmldir %%QT_QMLDIR%%/org/kde/plasma/extras/ActionTextField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/App.qml %%QT_QMLDIR%%/org/kde/plasma/extras/BasicPlasmoidHeading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ConditionalLoader.qml %%QT_QMLDIR%%/org/kde/plasma/extras/DescriptiveLabel.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ExpandableListItem.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Heading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Highlight.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ListItem.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PageRow.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Paragraph.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PasswordField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PlaceholderMessage.qml %%QT_QMLDIR%%/org/kde/plasma/extras/PlasmoidHeading.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Representation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/ScrollArea.qml %%QT_QMLDIR%%/org/kde/plasma/extras/SearchField.qml %%QT_QMLDIR%%/org/kde/plasma/extras/Title.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/ActivateAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/AppearAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/DisappearAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/PressedAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/animations/ReleasedAnimation.qml %%QT_QMLDIR%%/org/kde/plasma/extras/libplasmaextracomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/extras/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/extras/private/BackgroundMetrics.qml %%QT_QMLDIR%%/org/kde/plasma/extras/private/qmldir %%QT_QMLDIR%%/org/kde/plasma/extras/qmldir %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/libplatformcomponentsplugin.so %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/plugins.qmltypes %%QT_QMLDIR%%/org/kde/plasma/platformcomponents/qmldir man/ca/man1/plasmapkg2.1.gz man/ca@valencia/man1/plasmapkg2.1.gz man/de/man1/plasmapkg2.1.gz man/es/man1/plasmapkg2.1.gz man/fr/man1/plasmapkg2.1.gz man/it/man1/plasmapkg2.1.gz man/man1/plasmapkg2.1.gz man/nl/man1/plasmapkg2.1.gz man/pt/man1/plasmapkg2.1.gz man/pt_BR/man1/plasmapkg2.1.gz man/sv/man1/plasmapkg2.1.gz man/uk/man1/plasmapkg2.1.gz share/kdevappwizard/templates/cpp-plasmoid.tar.bz2 share/kdevappwizard/templates/plasma-wallpaper-with-qml-extension.tar.bz2 share/kdevappwizard/templates/plasma-wallpaper.tar.bz2 share/kdevappwizard/templates/qml-plasmoid-with-qml-extension.tar.bz2 share/kdevappwizard/templates/qml-plasmoid.tar.bz2 share/kservicetypes5/plasma-applet.desktop share/kservicetypes5/plasma-containment.desktop share/kservicetypes5/plasma-containmentactions.desktop share/kservicetypes5/plasma-dataengine.desktop share/kservicetypes5/plasma-generic.desktop share/kservicetypes5/plasma-lookandfeel.desktop share/kservicetypes5/plasma-packagestructure.desktop share/kservicetypes5/plasma-scriptengine.desktop share/kservicetypes5/plasma-service.desktop share/kservicetypes5/plasma-shell.desktop share/kservicetypes5/plasma-wallpaper.desktop share/locale/ar/LC_MESSAGES/libplasma5.mo -share/locale/ast/LC_MESSAGES/libplasma5.mo share/locale/az/LC_MESSAGES/libplasma5.mo share/locale/bg/LC_MESSAGES/libplasma5.mo share/locale/bs/LC_MESSAGES/libplasma5.mo share/locale/ca/LC_MESSAGES/libplasma5.mo share/locale/ca@valencia/LC_MESSAGES/libplasma5.mo share/locale/cs/LC_MESSAGES/libplasma5.mo share/locale/da/LC_MESSAGES/libplasma5.mo share/locale/de/LC_MESSAGES/libplasma5.mo share/locale/el/LC_MESSAGES/libplasma5.mo share/locale/en_GB/LC_MESSAGES/libplasma5.mo share/locale/es/LC_MESSAGES/libplasma5.mo share/locale/et/LC_MESSAGES/libplasma5.mo share/locale/eu/LC_MESSAGES/libplasma5.mo share/locale/fi/LC_MESSAGES/libplasma5.mo share/locale/fr/LC_MESSAGES/libplasma5.mo share/locale/gd/LC_MESSAGES/libplasma5.mo share/locale/gl/LC_MESSAGES/libplasma5.mo share/locale/he/LC_MESSAGES/libplasma5.mo share/locale/hu/LC_MESSAGES/libplasma5.mo share/locale/ia/LC_MESSAGES/libplasma5.mo share/locale/id/LC_MESSAGES/libplasma5.mo share/locale/it/LC_MESSAGES/libplasma5.mo share/locale/ja/LC_MESSAGES/libplasma5.mo share/locale/ka/LC_MESSAGES/libplasma5.mo share/locale/ko/LC_MESSAGES/libplasma5.mo share/locale/lt/LC_MESSAGES/libplasma5.mo share/locale/lt/LC_SCRIPTS/libplasma5/libplasma5.js share/locale/lt/LC_SCRIPTS/libplasma5/plasmoids.js share/locale/lv/LC_MESSAGES/libplasma5.mo share/locale/ml/LC_MESSAGES/libplasma5.mo share/locale/mr/LC_MESSAGES/libplasma5.mo share/locale/nb/LC_MESSAGES/libplasma5.mo share/locale/nds/LC_MESSAGES/libplasma5.mo share/locale/nl/LC_MESSAGES/libplasma5.mo share/locale/nn/LC_MESSAGES/libplasma5.mo share/locale/pa/LC_MESSAGES/libplasma5.mo share/locale/pl/LC_MESSAGES/libplasma5.mo share/locale/pt/LC_MESSAGES/libplasma5.mo share/locale/pt_BR/LC_MESSAGES/libplasma5.mo share/locale/ro/LC_MESSAGES/libplasma5.mo share/locale/ru/LC_MESSAGES/libplasma5.mo share/locale/sk/LC_MESSAGES/libplasma5.mo share/locale/sl/LC_MESSAGES/libplasma5.mo share/locale/sr/LC_MESSAGES/libplasma5.mo share/locale/sr@ijekavian/LC_MESSAGES/libplasma5.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libplasma5.mo share/locale/sr@latin/LC_MESSAGES/libplasma5.mo share/locale/sv/LC_MESSAGES/libplasma5.mo share/locale/ta/LC_MESSAGES/libplasma5.mo share/locale/tg/LC_MESSAGES/libplasma5.mo share/locale/tr/LC_MESSAGES/libplasma5.mo share/locale/ug/LC_MESSAGES/libplasma5.mo share/locale/uk/LC_MESSAGES/libplasma5.mo share/locale/vi/LC_MESSAGES/libplasma5.mo share/locale/zh_CN/LC_MESSAGES/libplasma5.mo share/locale/zh_TW/LC_MESSAGES/libplasma5.mo share/plasma/desktoptheme/air/colors share/plasma/desktoptheme/air/dialogs/background.svgz share/plasma/desktoptheme/air/dialogs/kickoff.svgz share/plasma/desktoptheme/air/dialogs/krunner.svgz share/plasma/desktoptheme/air/icons/akonadi.svgz share/plasma/desktoptheme/air/icons/akregator.svgz share/plasma/desktoptheme/air/icons/amarok.svgz share/plasma/desktoptheme/air/icons/applications.svgz share/plasma/desktoptheme/air/icons/apport.svgz share/plasma/desktoptheme/air/icons/audio.svgz share/plasma/desktoptheme/air/icons/battery.svgz share/plasma/desktoptheme/air/icons/bookmarks.svgz share/plasma/desktoptheme/air/icons/computer.svgz share/plasma/desktoptheme/air/icons/configure.svgz share/plasma/desktoptheme/air/icons/device.svgz share/plasma/desktoptheme/air/icons/edit.svgz share/plasma/desktoptheme/air/icons/kdeconnect.svgz share/plasma/desktoptheme/air/icons/keyboard.svgz share/plasma/desktoptheme/air/icons/kget.svgz share/plasma/desktoptheme/air/icons/klipper.svgz share/plasma/desktoptheme/air/icons/konv_message.svgz share/plasma/desktoptheme/air/icons/konversation.svgz share/plasma/desktoptheme/air/icons/kopete.svgz share/plasma/desktoptheme/air/icons/korgac.svgz share/plasma/desktoptheme/air/icons/kpackagekit.svgz share/plasma/desktoptheme/air/icons/ktorrent.svgz share/plasma/desktoptheme/air/icons/nepomuk.svgz share/plasma/desktoptheme/air/icons/network.svgz share/plasma/desktoptheme/air/icons/notification.svgz share/plasma/desktoptheme/air/icons/preferences.svgz share/plasma/desktoptheme/air/icons/printer.svgz share/plasma/desktoptheme/air/icons/quassel.svgz share/plasma/desktoptheme/air/icons/slc.svgz share/plasma/desktoptheme/air/icons/start.svgz share/plasma/desktoptheme/air/icons/system.svgz share/plasma/desktoptheme/air/icons/view.svgz share/plasma/desktoptheme/air/icons/wallet.svgz share/plasma/desktoptheme/air/metadata.json share/plasma/desktoptheme/air/opaque/dialogs/background.svgz share/plasma/desktoptheme/air/opaque/dialogs/krunner.svgz share/plasma/desktoptheme/air/opaque/widgets/extender-background.svgz share/plasma/desktoptheme/air/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/air/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/air/plasmarc share/plasma/desktoptheme/air/translucent/dialogs/background.svgz share/plasma/desktoptheme/air/translucent/dialogs/krunner.svgz share/plasma/desktoptheme/air/translucent/widgets/background.svgz share/plasma/desktoptheme/air/translucent/widgets/extender-background.svgz share/plasma/desktoptheme/air/translucent/widgets/panel-background.svgz share/plasma/desktoptheme/air/translucent/widgets/tooltip.svgz share/plasma/desktoptheme/air/widgets/action-overlays.svgz share/plasma/desktoptheme/air/widgets/actionbutton.svgz share/plasma/desktoptheme/air/widgets/analog_meter.svgz share/plasma/desktoptheme/air/widgets/arrows.svgz share/plasma/desktoptheme/air/widgets/background.svgz share/plasma/desktoptheme/air/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/air/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/air/widgets/branding.svgz share/plasma/desktoptheme/air/widgets/busywidget.svgz share/plasma/desktoptheme/air/widgets/button.svgz share/plasma/desktoptheme/air/widgets/checkmarks.svgz share/plasma/desktoptheme/air/widgets/clock.svgz share/plasma/desktoptheme/air/widgets/containment-controls.svgz share/plasma/desktoptheme/air/widgets/dragger.svgz share/plasma/desktoptheme/air/widgets/frame.svgz share/plasma/desktoptheme/air/widgets/glowbar.svgz share/plasma/desktoptheme/air/widgets/identiconshapes.svgz share/plasma/desktoptheme/air/widgets/identicontheme.svgz share/plasma/desktoptheme/air/widgets/labeltexture.svgz share/plasma/desktoptheme/air/widgets/line.svgz share/plasma/desktoptheme/air/widgets/lineedit.svgz share/plasma/desktoptheme/air/widgets/listitem.svgz share/plasma/desktoptheme/air/widgets/media-delegate.svgz share/plasma/desktoptheme/air/widgets/monitor.svgz share/plasma/desktoptheme/air/widgets/pager.svgz share/plasma/desktoptheme/air/widgets/panel-background.svgz share/plasma/desktoptheme/air/widgets/picker.svgz share/plasma/desktoptheme/air/widgets/plot-background.svgz share/plasma/desktoptheme/air/widgets/scrollbar.svgz share/plasma/desktoptheme/air/widgets/scrollwidget.svgz share/plasma/desktoptheme/air/widgets/slider.svgz share/plasma/desktoptheme/air/widgets/systemtray.svgz share/plasma/desktoptheme/air/widgets/tabbar.svgz share/plasma/desktoptheme/air/widgets/tasks.svgz share/plasma/desktoptheme/air/widgets/toolbar.svgz share/plasma/desktoptheme/air/widgets/toolbox.svgz share/plasma/desktoptheme/air/widgets/tooltip.svgz share/plasma/desktoptheme/air/widgets/translucentbackground.svgz share/plasma/desktoptheme/air/widgets/viewitem.svgz share/plasma/desktoptheme/breeze-dark/colors share/plasma/desktoptheme/breeze-dark/metadata.json share/plasma/desktoptheme/breeze-dark/plasmarc share/plasma/desktoptheme/breeze-light/colors share/plasma/desktoptheme/breeze-light/metadata.json share/plasma/desktoptheme/breeze-light/plasmarc share/plasma/desktoptheme/default/dialogs/background.svgz share/plasma/desktoptheme/default/icons/akonadi.svgz share/plasma/desktoptheme/default/icons/akregator.svgz share/plasma/desktoptheme/default/icons/amarok.svgz share/plasma/desktoptheme/default/icons/applications.svgz share/plasma/desktoptheme/default/icons/apport.svgz share/plasma/desktoptheme/default/icons/audio.svgz share/plasma/desktoptheme/default/icons/battery.svgz share/plasma/desktoptheme/default/icons/bookmarks.svgz share/plasma/desktoptheme/default/icons/cantata.svgz share/plasma/desktoptheme/default/icons/computer.svgz share/plasma/desktoptheme/default/icons/configure.svgz share/plasma/desktoptheme/default/icons/device.svgz share/plasma/desktoptheme/default/icons/disk.svgz share/plasma/desktoptheme/default/icons/distribute.svgz share/plasma/desktoptheme/default/icons/document.svgz share/plasma/desktoptheme/default/icons/drive.svgz share/plasma/desktoptheme/default/icons/edit.svgz share/plasma/desktoptheme/default/icons/fcitx.svgz share/plasma/desktoptheme/default/icons/go.svgz share/plasma/desktoptheme/default/icons/ime.svgz share/plasma/desktoptheme/default/icons/input.svgz share/plasma/desktoptheme/default/icons/kalarm.svgz share/plasma/desktoptheme/default/icons/kdeconnect.svgz share/plasma/desktoptheme/default/icons/keyboard.svgz share/plasma/desktoptheme/default/icons/kget.svgz share/plasma/desktoptheme/default/icons/kgpg.svgz share/plasma/desktoptheme/default/icons/kleopatra.svgz share/plasma/desktoptheme/default/icons/klipper.svgz share/plasma/desktoptheme/default/icons/kmail.svgz share/plasma/desktoptheme/default/icons/konv_message.svgz share/plasma/desktoptheme/default/icons/konversation.svgz share/plasma/desktoptheme/default/icons/kopete.svgz share/plasma/desktoptheme/default/icons/korgac.svgz share/plasma/desktoptheme/default/icons/kpackagekit.svgz share/plasma/desktoptheme/default/icons/kruler.svgz share/plasma/desktoptheme/default/icons/kteatime.svgz share/plasma/desktoptheme/default/icons/ktorrent.svgz share/plasma/desktoptheme/default/icons/kup.svgz share/plasma/desktoptheme/default/icons/list.svgz share/plasma/desktoptheme/default/icons/mail.svgz share/plasma/desktoptheme/default/icons/media.svgz share/plasma/desktoptheme/default/icons/mobile.svgz share/plasma/desktoptheme/default/icons/nepomuk.svgz share/plasma/desktoptheme/default/icons/network.svgz share/plasma/desktoptheme/default/icons/notification.svgz share/plasma/desktoptheme/default/icons/osd.svgz share/plasma/desktoptheme/default/icons/phone.svgz share/plasma/desktoptheme/default/icons/plasmavault.svgz share/plasma/desktoptheme/default/icons/plasmavault_error.svgz share/plasma/desktoptheme/default/icons/preferences.svgz share/plasma/desktoptheme/default/icons/printer.svgz share/plasma/desktoptheme/default/icons/quassel.svgz share/plasma/desktoptheme/default/icons/slc.svgz share/plasma/desktoptheme/default/icons/software.svgz share/plasma/desktoptheme/default/icons/start.svgz share/plasma/desktoptheme/default/icons/system.svgz share/plasma/desktoptheme/default/icons/touchpad.svgz share/plasma/desktoptheme/default/icons/user.svgz share/plasma/desktoptheme/default/icons/video-card.svgz share/plasma/desktoptheme/default/icons/video.svgz share/plasma/desktoptheme/default/icons/view.svgz share/plasma/desktoptheme/default/icons/vlc.svgz share/plasma/desktoptheme/default/icons/wallet.svgz share/plasma/desktoptheme/default/icons/window.svgz share/plasma/desktoptheme/default/icons/yakuake.svgz share/plasma/desktoptheme/default/icons/zoom.svgz share/plasma/desktoptheme/default/metadata.json share/plasma/desktoptheme/default/opaque/dialogs/background.svgz share/plasma/desktoptheme/default/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/default/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/default/plasmarc share/plasma/desktoptheme/default/solid/dialogs/background.svgz share/plasma/desktoptheme/default/solid/widgets/background.svgz share/plasma/desktoptheme/default/solid/widgets/panel-background.svgz share/plasma/desktoptheme/default/solid/widgets/tooltip.svgz share/plasma/desktoptheme/default/translucent/dialogs/background.svgz share/plasma/desktoptheme/default/translucent/widgets/background.svgz share/plasma/desktoptheme/default/translucent/widgets/panel-background.svgz share/plasma/desktoptheme/default/translucent/widgets/tooltip.svgz share/plasma/desktoptheme/default/widgets/action-overlays.svgz share/plasma/desktoptheme/default/widgets/actionbutton.svgz share/plasma/desktoptheme/default/widgets/analog_meter.svgz share/plasma/desktoptheme/default/widgets/arrows.svgz share/plasma/desktoptheme/default/widgets/background.svgz share/plasma/desktoptheme/default/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/default/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/default/widgets/branding.svgz share/plasma/desktoptheme/default/widgets/busywidget.svgz share/plasma/desktoptheme/default/widgets/button.svgz share/plasma/desktoptheme/default/widgets/calendar.svgz share/plasma/desktoptheme/default/widgets/checkmarks.svgz share/plasma/desktoptheme/default/widgets/clock.svgz share/plasma/desktoptheme/default/widgets/configuration-icons.svgz share/plasma/desktoptheme/default/widgets/containment-controls.svgz share/plasma/desktoptheme/default/widgets/dragger.svgz share/plasma/desktoptheme/default/widgets/frame.svgz share/plasma/desktoptheme/default/widgets/glowbar.svgz share/plasma/desktoptheme/default/widgets/line.svgz share/plasma/desktoptheme/default/widgets/lineedit.svgz share/plasma/desktoptheme/default/widgets/listitem.svgz share/plasma/desktoptheme/default/widgets/margins-highlight.svgz share/plasma/desktoptheme/default/widgets/media-delegate.svgz share/plasma/desktoptheme/default/widgets/menubaritem.svgz share/plasma/desktoptheme/default/widgets/monitor.svgz share/plasma/desktoptheme/default/widgets/notes.svgz share/plasma/desktoptheme/default/widgets/pager.svgz share/plasma/desktoptheme/default/widgets/panel-background.svgz share/plasma/desktoptheme/default/widgets/picker.svgz share/plasma/desktoptheme/default/widgets/plasmoidheading.svgz share/plasma/desktoptheme/default/widgets/plot-background.svgz share/plasma/desktoptheme/default/widgets/radiobutton.svgz share/plasma/desktoptheme/default/widgets/scrollbar.svgz share/plasma/desktoptheme/default/widgets/scrollwidget.svgz share/plasma/desktoptheme/default/widgets/slider.svgz share/plasma/desktoptheme/default/widgets/tabbar.svgz share/plasma/desktoptheme/default/widgets/tasks.svgz share/plasma/desktoptheme/default/widgets/toolbar.svgz share/plasma/desktoptheme/default/widgets/tooltip.svgz share/plasma/desktoptheme/default/widgets/translucentbackground.svgz share/plasma/desktoptheme/default/widgets/viewitem.svgz share/plasma/desktoptheme/oxygen/colors share/plasma/desktoptheme/oxygen/dialogs/background.svgz share/plasma/desktoptheme/oxygen/icons/akonadi.svgz share/plasma/desktoptheme/oxygen/icons/akregator.svgz share/plasma/desktoptheme/oxygen/icons/amarok.svgz share/plasma/desktoptheme/oxygen/icons/applications.svgz share/plasma/desktoptheme/oxygen/icons/apport.svgz share/plasma/desktoptheme/oxygen/icons/audio.svgz share/plasma/desktoptheme/oxygen/icons/battery.svgz share/plasma/desktoptheme/oxygen/icons/bookmarks.svgz share/plasma/desktoptheme/oxygen/icons/computer.svgz share/plasma/desktoptheme/oxygen/icons/configure.svgz share/plasma/desktoptheme/oxygen/icons/device.svgz share/plasma/desktoptheme/oxygen/icons/edit.svgz share/plasma/desktoptheme/oxygen/icons/kdeconnect.svgz share/plasma/desktoptheme/oxygen/icons/keyboard.svgz share/plasma/desktoptheme/oxygen/icons/kget.svgz share/plasma/desktoptheme/oxygen/icons/klipper.svgz share/plasma/desktoptheme/oxygen/icons/konv_message.svgz share/plasma/desktoptheme/oxygen/icons/konversation.svgz share/plasma/desktoptheme/oxygen/icons/kopete.svgz share/plasma/desktoptheme/oxygen/icons/korgac.svgz share/plasma/desktoptheme/oxygen/icons/kpackagekit.svgz share/plasma/desktoptheme/oxygen/icons/ktorrent.svgz share/plasma/desktoptheme/oxygen/icons/nepomuk.svgz share/plasma/desktoptheme/oxygen/icons/network.svgz share/plasma/desktoptheme/oxygen/icons/notification.svgz share/plasma/desktoptheme/oxygen/icons/preferences.svgz share/plasma/desktoptheme/oxygen/icons/printer.svgz share/plasma/desktoptheme/oxygen/icons/quassel.svgz share/plasma/desktoptheme/oxygen/icons/slc.svgz share/plasma/desktoptheme/oxygen/icons/start.svgz share/plasma/desktoptheme/oxygen/icons/system.svgz share/plasma/desktoptheme/oxygen/icons/view.svgz share/plasma/desktoptheme/oxygen/icons/wallet.svgz share/plasma/desktoptheme/oxygen/metadata.json share/plasma/desktoptheme/oxygen/opaque/dialogs/background.svgz share/plasma/desktoptheme/oxygen/opaque/dialogs/krunner.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/opaque/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/plasmarc share/plasma/desktoptheme/oxygen/widgets/action-overlays.svgz share/plasma/desktoptheme/oxygen/widgets/actionbutton.svgz share/plasma/desktoptheme/oxygen/widgets/analog_meter.svgz share/plasma/desktoptheme/oxygen/widgets/arrows.svgz share/plasma/desktoptheme/oxygen/widgets/background.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_horizontal.svgz share/plasma/desktoptheme/oxygen/widgets/bar_meter_vertical.svgz share/plasma/desktoptheme/oxygen/widgets/branding.svgz share/plasma/desktoptheme/oxygen/widgets/busywidget.svgz share/plasma/desktoptheme/oxygen/widgets/button.svgz share/plasma/desktoptheme/oxygen/widgets/clock.svgz share/plasma/desktoptheme/oxygen/widgets/containment-controls.svgz share/plasma/desktoptheme/oxygen/widgets/dragger.svgz share/plasma/desktoptheme/oxygen/widgets/extender-background.svgz share/plasma/desktoptheme/oxygen/widgets/extender-dragger.svgz share/plasma/desktoptheme/oxygen/widgets/frame.svgz share/plasma/desktoptheme/oxygen/widgets/glowbar.svgz share/plasma/desktoptheme/oxygen/widgets/line.svgz share/plasma/desktoptheme/oxygen/widgets/lineedit.svgz share/plasma/desktoptheme/oxygen/widgets/media-delegate.svgz share/plasma/desktoptheme/oxygen/widgets/monitor.svgz share/plasma/desktoptheme/oxygen/widgets/pager.svgz share/plasma/desktoptheme/oxygen/widgets/panel-background.svgz share/plasma/desktoptheme/oxygen/widgets/plot-background.svgz share/plasma/desktoptheme/oxygen/widgets/scrollbar.svgz share/plasma/desktoptheme/oxygen/widgets/scrollwidget.svgz share/plasma/desktoptheme/oxygen/widgets/slider.svgz share/plasma/desktoptheme/oxygen/widgets/tabbar.svgz share/plasma/desktoptheme/oxygen/widgets/tasks.svgz share/plasma/desktoptheme/oxygen/widgets/timer.svgz share/plasma/desktoptheme/oxygen/widgets/tooltip.svgz share/plasma/desktoptheme/oxygen/widgets/translucentbackground.svgz share/plasma/desktoptheme/oxygen/widgets/viewitem.svgz share/plasma/services/dataengineservice.operations share/plasma/services/plasmoidservice.operations share/plasma/services/storage.operations share/qlogging-categories5/plasma-framework.categories share/qlogging-categories5/plasma-framework.renamecategories