Index: head/Mk/Uses/kde.mk =================================================================== --- head/Mk/Uses/kde.mk (revision 567333) +++ head/Mk/Uses/kde.mk (revision 567334) @@ -1,906 +1,906 @@ # $FreeBSD$ # # 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-application: 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. # # 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.20.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.79.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 20.12.2 -KDE_APPLICATIONS_SHLIB_VER?= 5.16.2 +KDE_APPLICATIONS_VERSION?= 20.12.3 +KDE_APPLICATIONS_SHLIB_VER?= 5.16.3 KDE_APPLICATIONS_BRANCH?= stable # Upstream moves old software to Attic/. Specify the newest applications release there. # Only the major version is used for the comparison. _KDE_APPLICATIONS_ATTIC_VERSION= 17.08.3 # 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} # Decide where the file lies on KDE's servers: Check whether the file lies in Attic . if ${KDE_APPLICATIONS_VERSION:R:R} <= ${_KDE_APPLICATIONS_ATTIC_VERSION:R:R} MASTER_SITES?= KDE/Attic/applications/${KDE_APPLICATIONS_VERSION}/src . elseif ${KDE_APPLICATIONS_VERSION:R} < 19.12 MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/applications/${KDE_APPLICATIONS_VERSION}/src . else 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. DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* # 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}" . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-protocols_PORT= x11/plasma-kwayland-protocols kde-kwayland-protocols_LIB= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif Index: head/accessibility/kmag/distinfo =================================================================== --- head/accessibility/kmag/distinfo (revision 567333) +++ head/accessibility/kmag/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330709 -SHA256 (KDE/release-service/20.12.2/kmag-20.12.2.tar.xz) = dbe79175edcc1d4d20969b6ddb8953e0a51f11be586b7dda68034fc4862d96ef -SIZE (KDE/release-service/20.12.2/kmag-20.12.2.tar.xz) = 698000 +TIMESTAMP = 1614706195 +SHA256 (KDE/release-service/20.12.3/kmag-20.12.3.tar.xz) = 32932eb791d76de88de93a04f71f1224c41f0e33eb87b84eeab55668a18961dc +SIZE (KDE/release-service/20.12.3/kmag-20.12.3.tar.xz) = 700412 Index: head/accessibility/kmousetool/distinfo =================================================================== --- head/accessibility/kmousetool/distinfo (revision 567333) +++ head/accessibility/kmousetool/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330710 -SHA256 (KDE/release-service/20.12.2/kmousetool-20.12.2.tar.xz) = 94819ddf8b288a6325167bb9784877ace2fbdaa23e8c94ed2032bbaafb677979 -SIZE (KDE/release-service/20.12.2/kmousetool-20.12.2.tar.xz) = 116692 +TIMESTAMP = 1614706194 +SHA256 (KDE/release-service/20.12.3/kmousetool-20.12.3.tar.xz) = 6a007e43c59cf7c312fbdd5b1235360b661f50a86a3b0218be429e50aae45277 +SIZE (KDE/release-service/20.12.3/kmousetool-20.12.3.tar.xz) = 116760 Index: head/accessibility/kmouth/distinfo =================================================================== --- head/accessibility/kmouth/distinfo (revision 567333) +++ head/accessibility/kmouth/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330711 -SHA256 (KDE/release-service/20.12.2/kmouth-20.12.2.tar.xz) = 8424b962edbde02ede91640ede7fb0394cccf7c0f7b7b26857b164b8430e04ef -SIZE (KDE/release-service/20.12.2/kmouth-20.12.2.tar.xz) = 2082924 +TIMESTAMP = 1614706195 +SHA256 (KDE/release-service/20.12.3/kmouth-20.12.3.tar.xz) = 90bffc7d860fd377a08ecbf1bb38f552f07939a5c03926105697d38af07d5d94 +SIZE (KDE/release-service/20.12.3/kmouth-20.12.3.tar.xz) = 2086596 Index: head/accessibility/kmouth/pkg-plist =================================================================== --- head/accessibility/kmouth/pkg-plist (revision 567333) +++ head/accessibility/kmouth/pkg-plist (revision 567334) @@ -1,102 +1,103 @@ bin/kmouth etc/xdg/kmouthrc man/ca/man1/kmouth.1.gz man/da/man1/kmouth.1.gz man/de/man1/kmouth.1.gz man/es/man1/kmouth.1.gz man/et/man1/kmouth.1.gz man/fr/man1/kmouth.1.gz man/it/man1/kmouth.1.gz man/man1/kmouth.1.gz man/nl/man1/kmouth.1.gz man/pt/man1/kmouth.1.gz man/pt_BR/man1/kmouth.1.gz +man/ru/man1/kmouth.1.gz man/sv/man1/kmouth.1.gz man/uk/man1/kmouth.1.gz share/applications/org.kde.kmouth.desktop share/icons/hicolor/16x16/actions/phrase.png share/icons/hicolor/16x16/actions/phrasebook.png share/icons/hicolor/16x16/apps/kmouth.png share/icons/hicolor/22x22/actions/phrase.png share/icons/hicolor/22x22/actions/phrasebook.png share/icons/hicolor/22x22/apps/kmouth.png share/icons/hicolor/32x32/actions/phrase.png share/icons/hicolor/32x32/actions/phrasebook.png share/icons/hicolor/32x32/apps/kmouth.png share/icons/hicolor/48x48/apps/kmouth.png %%DATADIR%%/books/ca/ca-courteousness.phrasebook %%DATADIR%%/books/ca/ca-greetings.phrasebook %%DATADIR%%/books/ca/ca-howareyou.phrasebook %%DATADIR%%/books/ca/ca-personal.phrasebook %%DATADIR%%/books/ca/ca.desktop %%DATADIR%%/books/de/de-courteousness.phrasebook %%DATADIR%%/books/de/de-greetings.phrasebook %%DATADIR%%/books/de/de-howareyou.phrasebook %%DATADIR%%/books/de/de-personal.phrasebook %%DATADIR%%/books/de/de.desktop %%DATADIR%%/books/en/en-courteousness.phrasebook %%DATADIR%%/books/en/en-greetings.phrasebook %%DATADIR%%/books/en/en-howareyou.phrasebook %%DATADIR%%/books/en/en-personal.phrasebook %%DATADIR%%/books/en/en.desktop %%DATADIR%%/books/sv/sv-courteousness.phrasebook %%DATADIR%%/books/sv/sv-greetings.phrasebook %%DATADIR%%/books/sv/sv-howareyou.phrasebook %%DATADIR%%/books/sv/sv-personal.phrasebook %%DATADIR%%/books/sv/sv.desktop share/kxmlgui5/kmouth/kmouthui.rc share/kxmlgui5/kmouth/phrasebookdialogui.rc share/locale/ar/LC_MESSAGES/kmouth.mo share/locale/bg/LC_MESSAGES/kmouth.mo share/locale/bs/LC_MESSAGES/kmouth.mo share/locale/ca/LC_MESSAGES/kmouth.mo share/locale/ca@valencia/LC_MESSAGES/kmouth.mo share/locale/cs/LC_MESSAGES/kmouth.mo share/locale/da/LC_MESSAGES/kmouth.mo share/locale/de/LC_MESSAGES/kmouth.mo share/locale/el/LC_MESSAGES/kmouth.mo share/locale/en_GB/LC_MESSAGES/kmouth.mo share/locale/eo/LC_MESSAGES/kmouth.mo share/locale/es/LC_MESSAGES/kmouth.mo share/locale/et/LC_MESSAGES/kmouth.mo share/locale/eu/LC_MESSAGES/kmouth.mo share/locale/fa/LC_MESSAGES/kmouth.mo share/locale/fi/LC_MESSAGES/kmouth.mo share/locale/fr/LC_MESSAGES/kmouth.mo share/locale/ga/LC_MESSAGES/kmouth.mo share/locale/gl/LC_MESSAGES/kmouth.mo share/locale/he/LC_MESSAGES/kmouth.mo share/locale/hi/LC_MESSAGES/kmouth.mo share/locale/hr/LC_MESSAGES/kmouth.mo share/locale/hu/LC_MESSAGES/kmouth.mo share/locale/ia/LC_MESSAGES/kmouth.mo share/locale/is/LC_MESSAGES/kmouth.mo share/locale/it/LC_MESSAGES/kmouth.mo share/locale/ja/LC_MESSAGES/kmouth.mo share/locale/kk/LC_MESSAGES/kmouth.mo share/locale/km/LC_MESSAGES/kmouth.mo share/locale/ko/LC_MESSAGES/kmouth.mo share/locale/lt/LC_MESSAGES/kmouth.mo share/locale/lv/LC_MESSAGES/kmouth.mo share/locale/ml/LC_MESSAGES/kmouth.mo share/locale/mr/LC_MESSAGES/kmouth.mo share/locale/nb/LC_MESSAGES/kmouth.mo share/locale/nds/LC_MESSAGES/kmouth.mo share/locale/nl/LC_MESSAGES/kmouth.mo share/locale/nn/LC_MESSAGES/kmouth.mo share/locale/pa/LC_MESSAGES/kmouth.mo share/locale/pl/LC_MESSAGES/kmouth.mo share/locale/pt/LC_MESSAGES/kmouth.mo share/locale/pt_BR/LC_MESSAGES/kmouth.mo share/locale/ro/LC_MESSAGES/kmouth.mo share/locale/ru/LC_MESSAGES/kmouth.mo share/locale/sk/LC_MESSAGES/kmouth.mo share/locale/sl/LC_MESSAGES/kmouth.mo share/locale/sr/LC_MESSAGES/kmouth.mo share/locale/sv/LC_MESSAGES/kmouth.mo share/locale/tr/LC_MESSAGES/kmouth.mo share/locale/ug/LC_MESSAGES/kmouth.mo share/locale/uk/LC_MESSAGES/kmouth.mo share/locale/zh_CN/LC_MESSAGES/kmouth.mo share/locale/zh_TW/LC_MESSAGES/kmouth.mo share/metainfo/org.kde.kmouth.appdata.xml Index: head/archivers/ark/distinfo =================================================================== --- head/archivers/ark/distinfo (revision 567333) +++ head/archivers/ark/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330712 -SHA256 (KDE/release-service/20.12.2/ark-20.12.2.tar.xz) = 0baf950fc330b7e7cd3a825415592579b31d6308e9e7db5cada28747e6a61edd -SIZE (KDE/release-service/20.12.2/ark-20.12.2.tar.xz) = 2717316 +TIMESTAMP = 1614706196 +SHA256 (KDE/release-service/20.12.3/ark-20.12.3.tar.xz) = e4f2dfe595f7b51879c8db3734ad56a2363a934013ee4bd4bc8c94a210405b3b +SIZE (KDE/release-service/20.12.3/ark-20.12.3.tar.xz) = 2717324 Index: head/astro/kosmindoormap/Makefile =================================================================== --- head/astro/kosmindoormap/Makefile (revision 567333) +++ head/astro/kosmindoormap/Makefile (revision 567334) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= kosmindoormap DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library and QML component for rendering multi-level OSM indoor maps LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= bison cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm i18n kpublictransport USE_QT= core declarative gui network quick3d \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/astro/kosmindoormap/distinfo =================================================================== --- head/astro/kosmindoormap/distinfo (revision 567333) +++ head/astro/kosmindoormap/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330712 -SHA256 (KDE/release-service/20.12.2/kosmindoormap-20.12.2.tar.xz) = b8806a2e9f0c214f273ebf9600140c06ef4c21b9df36d06fec7637b9dca32667 -SIZE (KDE/release-service/20.12.2/kosmindoormap-20.12.2.tar.xz) = 313128 +TIMESTAMP = 1614706197 +SHA256 (KDE/release-service/20.12.3/kosmindoormap-20.12.3.tar.xz) = 33d5d045fd99dd7c30690dc19ad95183bdaf91ed2230b289564ba76615b7af09 +SIZE (KDE/release-service/20.12.3/kosmindoormap-20.12.3.tar.xz) = 314920 Index: head/astro/kosmindoormap/pkg-plist =================================================================== --- head/astro/kosmindoormap/pkg-plist (revision 567333) +++ head/astro/kosmindoormap/pkg-plist (revision 567334) @@ -1,72 +1,73 @@ include/KOSM/Datatypes include/KOSM/Element include/KOSMIndoorMap/FloorLevelModel include/KOSMIndoorMap/GateModel include/KOSMIndoorMap/HitDetector include/KOSMIndoorMap/MapCSSParser include/KOSMIndoorMap/MapCSSStyle include/KOSMIndoorMap/MapData include/KOSMIndoorMap/MapLoader include/KOSMIndoorMap/OverlaySource include/KOSMIndoorMap/PainterRenderer include/KOSMIndoorMap/Platform include/KOSMIndoorMap/PlatformModel include/KOSMIndoorMap/SceneController include/KOSMIndoorMap/SceneGraph include/KOSMIndoorMap/SceneGraphItem include/KOSMIndoorMap/View include/kosm/datatypes.h include/kosm/element.h include/kosm/internal.h include/kosm/kosm_export.h include/kosmindoormap/floorlevelmodel.h include/kosmindoormap/gatemodel.h include/kosmindoormap/hitdetector.h include/kosmindoormap/kosmindoormap_export.h include/kosmindoormap/mapcssparser.h include/kosmindoormap/mapcssstyle.h include/kosmindoormap/mapdata.h include/kosmindoormap/maploader.h include/kosmindoormap/overlaysource.h include/kosmindoormap/painterrenderer.h include/kosmindoormap/platform.h include/kosmindoormap/platformmodel.h include/kosmindoormap/scenecontroller.h include/kosmindoormap/scenegraph.h include/kosmindoormap/scenegraphitem.h include/kosmindoormap/view.h include/kosmindoormap_version.h lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfig.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfigVersion.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets.cmake lib/libKOSM.so lib/libKOSM.so.1 lib/libKOSM.so.%%KDE_APPLICATIONS_VERSION%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_VERSION%% %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMap.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapAttributionLabel.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapScale.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/libkosmindoormap_kpublictransport_integration_plugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kosmindoormap/libkosmindoormapquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/qmldir share/locale/ca/LC_MESSAGES/kosmindoormap.mo share/locale/ca@valencia/LC_MESSAGES/kosmindoormap.mo share/locale/cs/LC_MESSAGES/kosmindoormap.mo share/locale/en_GB/LC_MESSAGES/kosmindoormap.mo share/locale/es/LC_MESSAGES/kosmindoormap.mo share/locale/fr/LC_MESSAGES/kosmindoormap.mo share/locale/it/LC_MESSAGES/kosmindoormap.mo share/locale/lt/LC_MESSAGES/kosmindoormap.mo share/locale/nl/LC_MESSAGES/kosmindoormap.mo share/locale/pl/LC_MESSAGES/kosmindoormap.mo share/locale/pt/LC_MESSAGES/kosmindoormap.mo share/locale/pt_BR/LC_MESSAGES/kosmindoormap.mo share/locale/sk/LC_MESSAGES/kosmindoormap.mo share/locale/sl/LC_MESSAGES/kosmindoormap.mo +share/locale/sv/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories5/org_kde_kosmindoormap.categories Index: head/astro/marble/distinfo =================================================================== --- head/astro/marble/distinfo (revision 567333) +++ head/astro/marble/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330713 -SHA256 (KDE/release-service/20.12.2/marble-20.12.2.tar.xz) = 420ddc73a34bd2ed4ac6c6bde3cd05c7ea2dc05f20b1b2457a167a54bae6f14d -SIZE (KDE/release-service/20.12.2/marble-20.12.2.tar.xz) = 52239212 +TIMESTAMP = 1614706198 +SHA256 (KDE/release-service/20.12.3/marble-20.12.3.tar.xz) = 57b1b129dd0301c124ab5f930af9dfe044cedfcd42a6b180c6cf3c594fba7bc2 +SIZE (KDE/release-service/20.12.3/marble-20.12.3.tar.xz) = 52242116 Index: head/audio/audiocd-kio/distinfo =================================================================== --- head/audio/audiocd-kio/distinfo (revision 567333) +++ head/audio/audiocd-kio/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330714 -SHA256 (KDE/release-service/20.12.2/audiocd-kio-20.12.2.tar.xz) = 4aff901c3a3820a22c259295054aab1773cada8b171dcb65ccfc865368f7a74d -SIZE (KDE/release-service/20.12.2/audiocd-kio-20.12.2.tar.xz) = 500628 +TIMESTAMP = 1614706201 +SHA256 (KDE/release-service/20.12.3/audiocd-kio-20.12.3.tar.xz) = 60af5b62300c5c29c02893300261a5795fcb6c2dd23988b9e6275b380e1e4f1a +SIZE (KDE/release-service/20.12.3/audiocd-kio-20.12.3.tar.xz) = 500672 Index: head/audio/elisa/distinfo =================================================================== --- head/audio/elisa/distinfo (revision 567333) +++ head/audio/elisa/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330715 -SHA256 (KDE/release-service/20.12.2/elisa-20.12.2.tar.xz) = 59fef44232d8a9864fedcb9bda493909f7ee0b9a4d7e53dbf5aaf369fd2c85ea -SIZE (KDE/release-service/20.12.2/elisa-20.12.2.tar.xz) = 1661580 +TIMESTAMP = 1614706200 +SHA256 (KDE/release-service/20.12.3/elisa-20.12.3.tar.xz) = 7a97d305b4319f077db6ce387895c2c3442112d5a3d9d4d68d0c2d884ce79865 +SIZE (KDE/release-service/20.12.3/elisa-20.12.3.tar.xz) = 1661968 Index: head/audio/juk/distinfo =================================================================== --- head/audio/juk/distinfo (revision 567333) +++ head/audio/juk/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330715 -SHA256 (KDE/release-service/20.12.2/juk-20.12.2.tar.xz) = 1615bf9629e21ffb6d0122741849c383cbc8f097838a18b0d00ab5090fb086b5 -SIZE (KDE/release-service/20.12.2/juk-20.12.2.tar.xz) = 1997728 +TIMESTAMP = 1614706203 +SHA256 (KDE/release-service/20.12.3/juk-20.12.3.tar.xz) = 87a628daa275d342721071069487c7d42e9f4bac0af2b7bd27e387732d465f07 +SIZE (KDE/release-service/20.12.3/juk-20.12.3.tar.xz) = 1997996 Index: head/audio/kmix/distinfo =================================================================== --- head/audio/kmix/distinfo (revision 567333) +++ head/audio/kmix/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330716 -SHA256 (KDE/release-service/20.12.2/kmix-20.12.2.tar.xz) = b33bfe899bf36729f64a9f3a42b8bf48a49b745afc8af15638dd2f2a7c90718a -SIZE (KDE/release-service/20.12.2/kmix-20.12.2.tar.xz) = 1150116 +TIMESTAMP = 1614706200 +SHA256 (KDE/release-service/20.12.3/kmix-20.12.3.tar.xz) = 68f892958eec984685567ad36624084118b6dc5e7a4633733a6c3e6aea34ea17 +SIZE (KDE/release-service/20.12.3/kmix-20.12.3.tar.xz) = 1150476 Index: head/audio/kwave/distinfo =================================================================== --- head/audio/kwave/distinfo (revision 567333) +++ head/audio/kwave/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330717 -SHA256 (KDE/release-service/20.12.2/kwave-20.12.2.tar.xz) = 6d9e88ad7536caacb2f955b479fb9a7c9eb2d514c46c6d29ed32f8aade9b5659 -SIZE (KDE/release-service/20.12.2/kwave-20.12.2.tar.xz) = 6881572 +TIMESTAMP = 1614706202 +SHA256 (KDE/release-service/20.12.3/kwave-20.12.3.tar.xz) = fad7f66738f218b6bf99ebdf02544675deca7595112af37a50f9d3aff948a1ad +SIZE (KDE/release-service/20.12.3/kwave-20.12.3.tar.xz) = 6911104 Index: head/audio/libkcddb/distinfo =================================================================== --- head/audio/libkcddb/distinfo (revision 567333) +++ head/audio/libkcddb/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330718 -SHA256 (KDE/release-service/20.12.2/libkcddb-20.12.2.tar.xz) = 13a95d83e61f664ff35b99f9942442c3a443f4ed0f57652756fdfa72d863a7df -SIZE (KDE/release-service/20.12.2/libkcddb-20.12.2.tar.xz) = 425148 +TIMESTAMP = 1614706204 +SHA256 (KDE/release-service/20.12.3/libkcddb-20.12.3.tar.xz) = 206229847e0fdde6d1cb36c7be87bd81e7723dd4774d06a872279a4b4390ee54 +SIZE (KDE/release-service/20.12.3/libkcddb-20.12.3.tar.xz) = 425180 Index: head/audio/libkcompactdisc/distinfo =================================================================== --- head/audio/libkcompactdisc/distinfo (revision 567333) +++ head/audio/libkcompactdisc/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330718 -SHA256 (KDE/release-service/20.12.2/libkcompactdisc-20.12.2.tar.xz) = e452b563d6ce6a2d52021e3170f7b739ad4a09ec570970a970d59c16e87c427a -SIZE (KDE/release-service/20.12.2/libkcompactdisc-20.12.2.tar.xz) = 96772 +TIMESTAMP = 1614706202 +SHA256 (KDE/release-service/20.12.3/libkcompactdisc-20.12.3.tar.xz) = 3c40d137cb26173a62816a7a3a1dba272b2f1eebd8fb6438a65cda49f35154a4 +SIZE (KDE/release-service/20.12.3/libkcompactdisc-20.12.3.tar.xz) = 96728 Index: head/databases/akonadi/distinfo =================================================================== --- head/databases/akonadi/distinfo (revision 567333) +++ head/databases/akonadi/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330719 -SHA256 (KDE/release-service/20.12.2/akonadi-20.12.2.tar.xz) = 7cd28bb436c8a06d6137d49aa28d4444b93e0d575271deba02f11c8fe4dba918 -SIZE (KDE/release-service/20.12.2/akonadi-20.12.2.tar.xz) = 1593452 +TIMESTAMP = 1614706205 +SHA256 (KDE/release-service/20.12.3/akonadi-20.12.3.tar.xz) = b919ac1d1c8534c304925ba51f7f79b1b5fd8fa21fb906ee3a5829c403f4922d +SIZE (KDE/release-service/20.12.3/akonadi-20.12.3.tar.xz) = 1593588 Index: head/deskutils/akonadi-calendar-tools/distinfo =================================================================== --- head/deskutils/akonadi-calendar-tools/distinfo (revision 567333) +++ head/deskutils/akonadi-calendar-tools/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330720 -SHA256 (KDE/release-service/20.12.2/akonadi-calendar-tools-20.12.2.tar.xz) = 40b281f7be20e295b66a269c869460976c00f480e2aff53ba9a693008b827f19 -SIZE (KDE/release-service/20.12.2/akonadi-calendar-tools-20.12.2.tar.xz) = 224864 +TIMESTAMP = 1614706219 +SHA256 (KDE/release-service/20.12.3/akonadi-calendar-tools-20.12.3.tar.xz) = 468e2e05f0784a3310f3f355003ba9630605214c0ae6f33e2154c818b471acb9 +SIZE (KDE/release-service/20.12.3/akonadi-calendar-tools-20.12.3.tar.xz) = 224860 Index: head/deskutils/akonadi-import-wizard/distinfo =================================================================== --- head/deskutils/akonadi-import-wizard/distinfo (revision 567333) +++ head/deskutils/akonadi-import-wizard/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330721 -SHA256 (KDE/release-service/20.12.2/akonadi-import-wizard-20.12.2.tar.xz) = d57fd7fc268381ba2eefda4816a3961b87916b61d53880f739b1cf6966c912bf -SIZE (KDE/release-service/20.12.2/akonadi-import-wizard-20.12.2.tar.xz) = 506672 +TIMESTAMP = 1614706208 +SHA256 (KDE/release-service/20.12.3/akonadi-import-wizard-20.12.3.tar.xz) = f6718d41395a191077a18b3d20940083a81efcdd9eb489371a95308e9ff70d20 +SIZE (KDE/release-service/20.12.3/akonadi-import-wizard-20.12.3.tar.xz) = 506664 Index: head/deskutils/akonadiconsole/distinfo =================================================================== --- head/deskutils/akonadiconsole/distinfo (revision 567333) +++ head/deskutils/akonadiconsole/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330721 -SHA256 (KDE/release-service/20.12.2/akonadiconsole-20.12.2.tar.xz) = 40f5a418053affddee4147e5f4dfee24d664ec312fa8f1f6772941d52fa4da89 -SIZE (KDE/release-service/20.12.2/akonadiconsole-20.12.2.tar.xz) = 198012 +TIMESTAMP = 1614706208 +SHA256 (KDE/release-service/20.12.3/akonadiconsole-20.12.3.tar.xz) = d4797c229612a6c72c5804840f492e7fe5a23afb3602e943a948d444fda96a6a +SIZE (KDE/release-service/20.12.3/akonadiconsole-20.12.3.tar.xz) = 198064 Index: head/deskutils/akregator/distinfo =================================================================== --- head/deskutils/akregator/distinfo (revision 567333) +++ head/deskutils/akregator/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330722 -SHA256 (KDE/release-service/20.12.2/akregator-20.12.2.tar.xz) = f38d871496eb0a43ff1aa19cc71d0285233c77cc9fcb1516de7d6d2d5cadc287 -SIZE (KDE/release-service/20.12.2/akregator-20.12.2.tar.xz) = 2205104 +TIMESTAMP = 1614706218 +SHA256 (KDE/release-service/20.12.3/akregator-20.12.3.tar.xz) = 0b154aea2e1c87ba1f103931ba5e82f2bf6582e4a2779bd6407826739c8bd981 +SIZE (KDE/release-service/20.12.3/akregator-20.12.3.tar.xz) = 2206188 Index: head/deskutils/grantlee-editor/distinfo =================================================================== --- head/deskutils/grantlee-editor/distinfo (revision 567333) +++ head/deskutils/grantlee-editor/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330723 -SHA256 (KDE/release-service/20.12.2/grantlee-editor-20.12.2.tar.xz) = 9c910d8ec70f50e759f0c63e50a6297d6e1d8dd7fb084d783e4c4ea2e24f6b39 -SIZE (KDE/release-service/20.12.2/grantlee-editor-20.12.2.tar.xz) = 107480 +TIMESTAMP = 1614706210 +SHA256 (KDE/release-service/20.12.3/grantlee-editor-20.12.3.tar.xz) = 6c7e6c6799d25d96b62bef7460e893ff529dcbd1a79c42f0fd1666b8af88d8d8 +SIZE (KDE/release-service/20.12.3/grantlee-editor-20.12.3.tar.xz) = 107424 Index: head/deskutils/grantleetheme/distinfo =================================================================== --- head/deskutils/grantleetheme/distinfo (revision 567333) +++ head/deskutils/grantleetheme/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330723 -SHA256 (KDE/release-service/20.12.2/grantleetheme-20.12.2.tar.xz) = c29c73388f9a75f3b705dfc7dbcf97a3dbe3860b623a82ea27b79aa1551c62b3 -SIZE (KDE/release-service/20.12.2/grantleetheme-20.12.2.tar.xz) = 56536 +TIMESTAMP = 1614706218 +SHA256 (KDE/release-service/20.12.3/grantleetheme-20.12.3.tar.xz) = e33dacd0d4e51e69be2590b4916cfcd4db5ad6ce57d4f8d97f6326e4eb2a3a7d +SIZE (KDE/release-service/20.12.3/grantleetheme-20.12.3.tar.xz) = 56540 Index: head/deskutils/itinerary/distinfo =================================================================== --- head/deskutils/itinerary/distinfo (revision 567333) +++ head/deskutils/itinerary/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330724 -SHA256 (KDE/release-service/20.12.2/itinerary-20.12.2.tar.xz) = 656831e45b87fa64c366adfc3943ee15360986e125d8bd3a98e627ce71d46fb6 -SIZE (KDE/release-service/20.12.2/itinerary-20.12.2.tar.xz) = 333900 +TIMESTAMP = 1614706211 +SHA256 (KDE/release-service/20.12.3/itinerary-20.12.3.tar.xz) = 37a711e3c35841074a4c0cea47635867a47539053dfb53978dc3941c824bf34a +SIZE (KDE/release-service/20.12.3/itinerary-20.12.3.tar.xz) = 334116 Index: head/deskutils/kaddressbook/distinfo =================================================================== --- head/deskutils/kaddressbook/distinfo (revision 567333) +++ head/deskutils/kaddressbook/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330725 -SHA256 (KDE/release-service/20.12.2/kaddressbook-20.12.2.tar.xz) = 1e4498135a2fe0a332d87a4c15e24522db2c9216a00a8f23c17887addca11a77 -SIZE (KDE/release-service/20.12.2/kaddressbook-20.12.2.tar.xz) = 3257200 +TIMESTAMP = 1614706216 +SHA256 (KDE/release-service/20.12.3/kaddressbook-20.12.3.tar.xz) = 83eda4fd1e4caeccb4de6c0c3368056307b19a7f390b92be605c10676967d795 +SIZE (KDE/release-service/20.12.3/kaddressbook-20.12.3.tar.xz) = 3263556 Index: head/deskutils/kalarm/distinfo =================================================================== --- head/deskutils/kalarm/distinfo (revision 567333) +++ head/deskutils/kalarm/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330726 -SHA256 (KDE/release-service/20.12.2/kalarm-20.12.2.tar.xz) = 6b82a29e8edb684da0a5d735cf46a61f4ea76208faa3d60087c820cbe30eefd2 -SIZE (KDE/release-service/20.12.2/kalarm-20.12.2.tar.xz) = 2080628 +TIMESTAMP = 1614706216 +SHA256 (KDE/release-service/20.12.3/kalarm-20.12.3.tar.xz) = df542b1a9f1a3eb226c25060fa196a0eecce0ac621de2a16f6bc6d58ea4e795e +SIZE (KDE/release-service/20.12.3/kalarm-20.12.3.tar.xz) = 2110400 Index: head/deskutils/kcharselect/distinfo =================================================================== --- head/deskutils/kcharselect/distinfo (revision 567333) +++ head/deskutils/kcharselect/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330726 -SHA256 (KDE/release-service/20.12.2/kcharselect-20.12.2.tar.xz) = e3523e8076a06967f95b00330ad4a5ed9bdaa986677642824a895094f8320e3b -SIZE (KDE/release-service/20.12.2/kcharselect-20.12.2.tar.xz) = 366692 +TIMESTAMP = 1614706220 +SHA256 (KDE/release-service/20.12.3/kcharselect-20.12.3.tar.xz) = 83a1a8b0850d4b3c335f1b76a553ff490365928cf34e38963e941fe82933e9e3 +SIZE (KDE/release-service/20.12.3/kcharselect-20.12.3.tar.xz) = 366696 Index: head/deskutils/kdeconnect-kde/distinfo =================================================================== --- head/deskutils/kdeconnect-kde/distinfo (revision 567333) +++ head/deskutils/kdeconnect-kde/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330727 -SHA256 (KDE/release-service/20.12.2/kdeconnect-kde-20.12.2.tar.xz) = 21ca118b9ca7c6107c2cbedc95778f6f0ea03411f3b8d9f815660511ec0a9d71 -SIZE (KDE/release-service/20.12.2/kdeconnect-kde-20.12.2.tar.xz) = 550016 +TIMESTAMP = 1614706221 +SHA256 (KDE/release-service/20.12.3/kdeconnect-kde-20.12.3.tar.xz) = 0198a5de49b168485f67e47b0f01f36fef78a3f8be796e8876f3cb6c819608a8 +SIZE (KDE/release-service/20.12.3/kdeconnect-kde-20.12.3.tar.xz) = 551780 Index: head/deskutils/kdeconnect-kde/pkg-plist =================================================================== --- head/deskutils/kdeconnect-kde/pkg-plist (revision 567333) +++ head/deskutils/kdeconnect-kde/pkg-plist (revision 567334) @@ -1,669 +1,676 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.settings.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/kdeconnect_findthisdevice_config.desktop share/kservices5/kdeconnect_pausemusic_config.desktop share/kservices5/kdeconnect_runcommand_config.desktop share/kservices5/kdeconnect_sendnotifications_config.desktop share/kservices5/kdeconnect_share_config.desktop share/kservices5/plasma-kdeconnect.desktop share/kservicetypes5/kdeconnect_plugin.desktop share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/id/LC_MESSAGES/kdeconnect-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo +share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/id/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo +share/locale/id/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/id/LC_MESSAGES/kdeconnect-settings.mo +share/locale/id/LC_MESSAGES/kdeconnect-sms.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-settings.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-app.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-settings.mo share/locale/pl/LC_MESSAGES/kdeconnect-sms.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.kcm.appdata.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect Index: head/deskutils/kdepim-addons/distinfo =================================================================== --- head/deskutils/kdepim-addons/distinfo (revision 567333) +++ head/deskutils/kdepim-addons/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330728 -SHA256 (KDE/release-service/20.12.2/kdepim-addons-20.12.2.tar.xz) = 16611612f7906ba3284657b8829014c76026f682cefd6dedf858a364df13427e -SIZE (KDE/release-service/20.12.2/kdepim-addons-20.12.2.tar.xz) = 2145492 +TIMESTAMP = 1614706223 +SHA256 (KDE/release-service/20.12.3/kdepim-addons-20.12.3.tar.xz) = b76135782d910b787eef321a18acb81cf637fcfadee954cf482f7be19722a671 +SIZE (KDE/release-service/20.12.3/kdepim-addons-20.12.3.tar.xz) = 2145600 Index: head/deskutils/kdepim-runtime/distinfo =================================================================== --- head/deskutils/kdepim-runtime/distinfo (revision 567333) +++ head/deskutils/kdepim-runtime/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330729 -SHA256 (KDE/release-service/20.12.2/kdepim-runtime-20.12.2.tar.xz) = 56ffb1dba356b8abf5485e974b894064723b549722e67afabf9bf5d80925ac5c -SIZE (KDE/release-service/20.12.2/kdepim-runtime-20.12.2.tar.xz) = 1801616 +TIMESTAMP = 1614706220 +SHA256 (KDE/release-service/20.12.3/kdepim-runtime-20.12.3.tar.xz) = bb6b315389c4b5cfc1d1737d70feed1c7f3bf50c5a01f88efda061b7e666e352 +SIZE (KDE/release-service/20.12.3/kdepim-runtime-20.12.3.tar.xz) = 1801580 Index: head/deskutils/keditbookmarks/distinfo =================================================================== --- head/deskutils/keditbookmarks/distinfo (revision 567333) +++ head/deskutils/keditbookmarks/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330730 -SHA256 (KDE/release-service/20.12.2/keditbookmarks-20.12.2.tar.xz) = a7ad62388d8bf4ebce075abb270d8f7b283cd97a368293b6c895819a7750956a -SIZE (KDE/release-service/20.12.2/keditbookmarks-20.12.2.tar.xz) = 190688 +TIMESTAMP = 1614706222 +SHA256 (KDE/release-service/20.12.3/keditbookmarks-20.12.3.tar.xz) = 6823446698d80e6ce59601f1772ec316ad205954cac8be6381456f714c6dd759 +SIZE (KDE/release-service/20.12.3/keditbookmarks-20.12.3.tar.xz) = 191892 Index: head/deskutils/kfind/distinfo =================================================================== --- head/deskutils/kfind/distinfo (revision 567333) +++ head/deskutils/kfind/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330730 -SHA256 (KDE/release-service/20.12.2/kfind-20.12.2.tar.xz) = cb329fa0aefc42afe1176e646e506ac566efa7e134ae173e690733cb6f2cd16d -SIZE (KDE/release-service/20.12.2/kfind-20.12.2.tar.xz) = 278768 +TIMESTAMP = 1614706206 +SHA256 (KDE/release-service/20.12.3/kfind-20.12.3.tar.xz) = e6f608fcd717021bc2f4c69def81f18361c05abb72503deb268d219fb8a6f167 +SIZE (KDE/release-service/20.12.3/kfind-20.12.3.tar.xz) = 278656 Index: head/deskutils/kmail/distinfo =================================================================== --- head/deskutils/kmail/distinfo (revision 567333) +++ head/deskutils/kmail/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330731 -SHA256 (KDE/release-service/20.12.2/kmail-20.12.2.tar.xz) = 12ef9001bc570bb798a8c394214d8758554f88105c1611e09707190260732d26 -SIZE (KDE/release-service/20.12.2/kmail-20.12.2.tar.xz) = 4671468 +TIMESTAMP = 1614706212 +SHA256 (KDE/release-service/20.12.3/kmail-20.12.3.tar.xz) = 411e4d40ae86105b879a11b0b1a80686ad63737089f22508565d1880f7c45ca4 +SIZE (KDE/release-service/20.12.3/kmail-20.12.3.tar.xz) = 4671256 Index: head/deskutils/kmail-account-wizard/distinfo =================================================================== --- head/deskutils/kmail-account-wizard/distinfo (revision 567333) +++ head/deskutils/kmail-account-wizard/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330732 -SHA256 (KDE/release-service/20.12.2/kmail-account-wizard-20.12.2.tar.xz) = c88c5496b88e1cbd71e95d87c4b3aa4fc320337640329a6d107129396af83729 -SIZE (KDE/release-service/20.12.2/kmail-account-wizard-20.12.2.tar.xz) = 160272 +TIMESTAMP = 1614706205 +SHA256 (KDE/release-service/20.12.3/kmail-account-wizard-20.12.3.tar.xz) = 16143e040aa0eb4a608557b9ba01cdec2be371d90adf358df8767b5ba8234cb6 +SIZE (KDE/release-service/20.12.3/kmail-account-wizard-20.12.3.tar.xz) = 160704 Index: head/deskutils/knotes/distinfo =================================================================== --- head/deskutils/knotes/distinfo (revision 567333) +++ head/deskutils/knotes/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330733 -SHA256 (KDE/release-service/20.12.2/knotes-20.12.2.tar.xz) = d488cab67db7c55aa7dada8e9b6fad18679df142a05c5c17a4bf5202e867bb85 -SIZE (KDE/release-service/20.12.2/knotes-20.12.2.tar.xz) = 329504 +TIMESTAMP = 1614706217 +SHA256 (KDE/release-service/20.12.3/knotes-20.12.3.tar.xz) = 06d6f3e444a29b03e6b8cee42b867f0373e71a5b94f65469cd163dcab114c4d8 +SIZE (KDE/release-service/20.12.3/knotes-20.12.3.tar.xz) = 329536 Index: head/deskutils/kontact/distinfo =================================================================== --- head/deskutils/kontact/distinfo (revision 567333) +++ head/deskutils/kontact/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330734 -SHA256 (KDE/release-service/20.12.2/kontact-20.12.2.tar.xz) = 514c5d2ea595da84b63ce138f4628dc4a2282dd52c4b51a3fd69fcbcf4cafb16 -SIZE (KDE/release-service/20.12.2/kontact-20.12.2.tar.xz) = 790952 +TIMESTAMP = 1614706207 +SHA256 (KDE/release-service/20.12.3/kontact-20.12.3.tar.xz) = b4c56888239f525af814172e221ee6f2cdea17d2ddc20e28fa5443168451da6f +SIZE (KDE/release-service/20.12.3/kontact-20.12.3.tar.xz) = 791076 Index: head/deskutils/korganizer/distinfo =================================================================== --- head/deskutils/korganizer/distinfo (revision 567333) +++ head/deskutils/korganizer/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330734 -SHA256 (KDE/release-service/20.12.2/korganizer-20.12.2.tar.xz) = e8cb0dd357bc3d1e209a10be8f3216ba1ca54ff42c754889f91d8ede1e3052b8 -SIZE (KDE/release-service/20.12.2/korganizer-20.12.2.tar.xz) = 2246456 +TIMESTAMP = 1614706213 +SHA256 (KDE/release-service/20.12.3/korganizer-20.12.3.tar.xz) = fc20c61e99778fce7e67c5514010e4436418a74de160191c95b417036b3ebf9a +SIZE (KDE/release-service/20.12.3/korganizer-20.12.3.tar.xz) = 2246496 Index: head/deskutils/kruler/distinfo =================================================================== --- head/deskutils/kruler/distinfo (revision 567333) +++ head/deskutils/kruler/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330735 -SHA256 (KDE/release-service/20.12.2/kruler-20.12.2.tar.xz) = 4a26ebf5739c1f863c408e03e8f6737aff9254ff64bf557ea9431cb295835e75 -SIZE (KDE/release-service/20.12.2/kruler-20.12.2.tar.xz) = 272424 +TIMESTAMP = 1614706209 +SHA256 (KDE/release-service/20.12.3/kruler-20.12.3.tar.xz) = 3f7152398f31f7315be5b504d9bb55e11358ab5cee8303e6b406d8f686836fdb +SIZE (KDE/release-service/20.12.3/kruler-20.12.3.tar.xz) = 272396 Index: head/deskutils/libkdepim/distinfo =================================================================== --- head/deskutils/libkdepim/distinfo (revision 567333) +++ head/deskutils/libkdepim/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330736 -SHA256 (KDE/release-service/20.12.2/libkdepim-20.12.2.tar.xz) = a6646fec62ff0a7225b216f52fc607d615e014e78983dcd2739bca78b8492c39 -SIZE (KDE/release-service/20.12.2/libkdepim-20.12.2.tar.xz) = 238548 +TIMESTAMP = 1614706210 +SHA256 (KDE/release-service/20.12.3/libkdepim-20.12.3.tar.xz) = ca4d3680cdf2a49c61338184ff7e299766c446c16471f7608a331014d5ec35ab +SIZE (KDE/release-service/20.12.3/libkdepim-20.12.3.tar.xz) = 238528 Index: head/deskutils/mbox-importer/distinfo =================================================================== --- head/deskutils/mbox-importer/distinfo (revision 567333) +++ head/deskutils/mbox-importer/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330737 -SHA256 (KDE/release-service/20.12.2/mbox-importer-20.12.2.tar.xz) = c2d42f761fd20e3bb34cea2321a331a5e19f83b4409c3b90ca56d175cfbd2aca -SIZE (KDE/release-service/20.12.2/mbox-importer-20.12.2.tar.xz) = 24772 +TIMESTAMP = 1614706214 +SHA256 (KDE/release-service/20.12.3/mbox-importer-20.12.3.tar.xz) = 6982ab776fe8f5f87a6b8e3d8bb45c51514a80fc34c367a86957bea5e94a5366 +SIZE (KDE/release-service/20.12.3/mbox-importer-20.12.3.tar.xz) = 24760 Index: head/deskutils/pim-data-exporter/distinfo =================================================================== --- head/deskutils/pim-data-exporter/distinfo (revision 567333) +++ head/deskutils/pim-data-exporter/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330737 -SHA256 (KDE/release-service/20.12.2/pim-data-exporter-20.12.2.tar.xz) = 30ae10e158d0d506dc8e6bfb87281228f4b18b2fcecabbf3fda39080b3c8e88f -SIZE (KDE/release-service/20.12.2/pim-data-exporter-20.12.2.tar.xz) = 400376 +TIMESTAMP = 1614706215 +SHA256 (KDE/release-service/20.12.3/pim-data-exporter-20.12.3.tar.xz) = 987420ed8accd4a1c9db7baf35807b2c92e1f80eb606aed074b859208829ec9f +SIZE (KDE/release-service/20.12.3/pim-data-exporter-20.12.3.tar.xz) = 401632 Index: head/deskutils/pim-sieve-editor/distinfo =================================================================== --- head/deskutils/pim-sieve-editor/distinfo (revision 567333) +++ head/deskutils/pim-sieve-editor/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330738 -SHA256 (KDE/release-service/20.12.2/pim-sieve-editor-20.12.2.tar.xz) = 0dfa2969014b794ec8d871fb6fa03153dd591c89618c25e2e594603f06085186 -SIZE (KDE/release-service/20.12.2/pim-sieve-editor-20.12.2.tar.xz) = 455092 +TIMESTAMP = 1614706213 +SHA256 (KDE/release-service/20.12.3/pim-sieve-editor-20.12.3.tar.xz) = a1d4d0eef6ded2cf051e8e64769e2f475964140067c18b8876d9d8f246243fb4 +SIZE (KDE/release-service/20.12.3/pim-sieve-editor-20.12.3.tar.xz) = 455152 Index: head/devel/cervisia/distinfo =================================================================== --- head/devel/cervisia/distinfo (revision 567333) +++ head/devel/cervisia/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330739 -SHA256 (KDE/release-service/20.12.2/cervisia-20.12.2.tar.xz) = 0be67b31eccccdd67b3bf130761353239beebc1d5f08e97c80714f6eb230a922 -SIZE (KDE/release-service/20.12.2/cervisia-20.12.2.tar.xz) = 1888404 +TIMESTAMP = 1614706231 +SHA256 (KDE/release-service/20.12.3/cervisia-20.12.3.tar.xz) = 2560ab30d981d81d7739dd67a4398b1efa93e93d33e55205bf31284134cf0220 +SIZE (KDE/release-service/20.12.3/cervisia-20.12.3.tar.xz) = 1888284 Index: head/devel/dolphin-plugins/distinfo =================================================================== --- head/devel/dolphin-plugins/distinfo (revision 567333) +++ head/devel/dolphin-plugins/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330740 -SHA256 (KDE/release-service/20.12.2/dolphin-plugins-20.12.2.tar.xz) = b6ab8ce235574002346e8b273d8417c6d80be5d73b2b18ebd5d62ccc92205e7e -SIZE (KDE/release-service/20.12.2/dolphin-plugins-20.12.2.tar.xz) = 239368 +TIMESTAMP = 1614706227 +SHA256 (KDE/release-service/20.12.3/dolphin-plugins-20.12.3.tar.xz) = fcb2ca9acf2ef3b7aaa8d5bf66920fc79983952cda7223416d172802ad9a5e80 +SIZE (KDE/release-service/20.12.3/dolphin-plugins-20.12.3.tar.xz) = 239340 Index: head/devel/kapptemplate/distinfo =================================================================== --- head/devel/kapptemplate/distinfo (revision 567333) +++ head/devel/kapptemplate/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330740 -SHA256 (KDE/release-service/20.12.2/kapptemplate-20.12.2.tar.xz) = 65cb43c1700ab3a2faf7c96660cf977fd41baf52779f21b40509718401ef36a7 -SIZE (KDE/release-service/20.12.2/kapptemplate-20.12.2.tar.xz) = 335552 +TIMESTAMP = 1614706232 +SHA256 (KDE/release-service/20.12.3/kapptemplate-20.12.3.tar.xz) = 8cf0a5fac4d3a08e616a3d7a0fd066c5c6558ed598b6b4f837e7242835670715 +SIZE (KDE/release-service/20.12.3/kapptemplate-20.12.3.tar.xz) = 336772 Index: head/devel/kcachegrind/distinfo =================================================================== --- head/devel/kcachegrind/distinfo (revision 567333) +++ head/devel/kcachegrind/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330741 -SHA256 (KDE/release-service/20.12.2/kcachegrind-20.12.2.tar.xz) = 5c788e531d785126e0186585829b4d4f1f77fbbbe81a60e74f20e1ea3a249045 -SIZE (KDE/release-service/20.12.2/kcachegrind-20.12.2.tar.xz) = 818096 +TIMESTAMP = 1614706227 +SHA256 (KDE/release-service/20.12.3/kcachegrind-20.12.3.tar.xz) = 95e18b85ae69a522f1f0047960c2dbcc2553af284d18b45d5373746a7e5f69ea +SIZE (KDE/release-service/20.12.3/kcachegrind-20.12.3.tar.xz) = 818260 Index: head/devel/kde-dev-scripts/distinfo =================================================================== --- head/devel/kde-dev-scripts/distinfo (revision 567333) +++ head/devel/kde-dev-scripts/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330741 -SHA256 (KDE/release-service/20.12.2/kde-dev-scripts-20.12.2.tar.xz) = a28c1f1c786f8eb01a69c39f56f21e65ffca77024fea479e592246e80368780e -SIZE (KDE/release-service/20.12.2/kde-dev-scripts-20.12.2.tar.xz) = 366460 +TIMESTAMP = 1614706223 +SHA256 (KDE/release-service/20.12.3/kde-dev-scripts-20.12.3.tar.xz) = d08eee9aab934e88b130ac9310d94b929b98e19cf4c45c3ac5dffd278600cfe2 +SIZE (KDE/release-service/20.12.3/kde-dev-scripts-20.12.3.tar.xz) = 366516 Index: head/devel/kde-dev-utils/distinfo =================================================================== --- head/devel/kde-dev-utils/distinfo (revision 567333) +++ head/devel/kde-dev-utils/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330742 -SHA256 (KDE/release-service/20.12.2/kde-dev-utils-20.12.2.tar.xz) = f90843bc53c84172cc3ea13f081abbc8e2e0fd0ef8c405f01bd6fa073db9b780 -SIZE (KDE/release-service/20.12.2/kde-dev-utils-20.12.2.tar.xz) = 65816 +TIMESTAMP = 1614706226 +SHA256 (KDE/release-service/20.12.3/kde-dev-utils-20.12.3.tar.xz) = a7218d5d57a73c6ea8fa9935b78316769e16dd3cb866f5c519033f331b606926 +SIZE (KDE/release-service/20.12.3/kde-dev-utils-20.12.3.tar.xz) = 65832 Index: head/devel/kdesdk-thumbnailers/distinfo =================================================================== --- head/devel/kdesdk-thumbnailers/distinfo (revision 567333) +++ head/devel/kdesdk-thumbnailers/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330743 -SHA256 (KDE/release-service/20.12.2/kdesdk-thumbnailers-20.12.2.tar.xz) = f82d7178e897919592b831088cc2e57fd8f7a8f640220f935b0e728c96e8624a -SIZE (KDE/release-service/20.12.2/kdesdk-thumbnailers-20.12.2.tar.xz) = 17780 +TIMESTAMP = 1614706229 +SHA256 (KDE/release-service/20.12.3/kdesdk-thumbnailers-20.12.3.tar.xz) = bb9ae86dd543b6e2903ffe107b5c0c50fe67f94d07a275de6f4814b095be89d8 +SIZE (KDE/release-service/20.12.3/kdesdk-thumbnailers-20.12.3.tar.xz) = 17816 Index: head/devel/kio-extras/Makefile =================================================================== --- head/devel/kio-extras/Makefile (revision 567333) +++ head/devel/kio-extras/Makefile (revision 567334) @@ -1,65 +1,64 @@ # $FreeBSD$ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= devel kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to increase the functionality of KIO LIB_DEPENDS= libtag.so:audio/taglib \ libHalf.so:graphics/ilmbase \ libkdsoap.so:www/kdsoap USES= cmake compiler:c++11-lib gettext gperf kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz xorg USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd doctools ecm \ emoticons guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets js kdelibs4support khtml kio notifications parts \ pty service solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network phonon4 printsupport \ sql svg testlib webchannel widgets xml \ buildtools_build qmake_build USE_XORG= xcursor SHEBANG_FILES= info/kde-info2html # CVE-2018-19120 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidget OPTIONS_DEFINE= SAMBA MTP EXR EXIV SLP SSH TAGLIB DOCS OPTIONS_DEFAULT=SAMBA MTP EXR EXIV SLP SSH TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave EXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR EXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Exiv2 EXIV_LIB_DEPENDS= libexiv2.so:graphics/exiv2 SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib .include Index: head/devel/kio-extras/distinfo =================================================================== --- head/devel/kio-extras/distinfo (revision 567333) +++ head/devel/kio-extras/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330744 -SHA256 (KDE/release-service/20.12.2/kio-extras-20.12.2.tar.xz) = 237df668c8bdeac4a362659c00b64c6e89d8b60080fcbdcaf21f387a22e25ae4 -SIZE (KDE/release-service/20.12.2/kio-extras-20.12.2.tar.xz) = 634140 +TIMESTAMP = 1614706225 +SHA256 (KDE/release-service/20.12.3/kio-extras-20.12.3.tar.xz) = ba5b90dbbc08ce1a0aeb456e3bba89a328538a41950e7bfa3e04f24b7f6741e2 +SIZE (KDE/release-service/20.12.3/kio-extras-20.12.3.tar.xz) = 636012 Index: head/devel/kirigami-gallery/distinfo =================================================================== --- head/devel/kirigami-gallery/distinfo (revision 567333) +++ head/devel/kirigami-gallery/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330745 -SHA256 (KDE/release-service/20.12.2/kirigami-gallery-20.12.2.tar.xz) = 1c136052f40cf0dd915ecc6888542d5a4f149d61404b3fd8968406bef36b2d0d -SIZE (KDE/release-service/20.12.2/kirigami-gallery-20.12.2.tar.xz) = 328116 +TIMESTAMP = 1614706224 +SHA256 (KDE/release-service/20.12.3/kirigami-gallery-20.12.3.tar.xz) = 7b342c922dfd8310846127d218c8d6c36e8dd574ca8d085c323b19c587b04524 +SIZE (KDE/release-service/20.12.3/kirigami-gallery-20.12.3.tar.xz) = 328180 Index: head/devel/kpublictransport/Makefile =================================================================== --- head/devel/kpublictransport/Makefile (revision 567333) +++ head/devel/kpublictransport/Makefile (revision 567334) @@ -1,20 +1,19 @@ # $FreeBSD$ PORTNAME= kpublictransport DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Access realtime public transport data LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core declarative gui network \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/devel/kpublictransport/distinfo =================================================================== --- head/devel/kpublictransport/distinfo (revision 567333) +++ head/devel/kpublictransport/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330745 -SHA256 (KDE/release-service/20.12.2/kpublictransport-20.12.2.tar.xz) = 78066505cd3d9523b79f75ed2f8343c6f6a7d7ceb93baa721aad4f6f6ff2efd8 -SIZE (KDE/release-service/20.12.2/kpublictransport-20.12.2.tar.xz) = 345460 +TIMESTAMP = 1614706230 +SHA256 (KDE/release-service/20.12.3/kpublictransport-20.12.3.tar.xz) = 9950d1a1b3cd0d9bcd46591c6ca9170b0bbdab8ce12c40b4cbe8d0c60981c697 +SIZE (KDE/release-service/20.12.3/kpublictransport-20.12.3.tar.xz) = 345364 Index: head/devel/lokalize/distinfo =================================================================== --- head/devel/lokalize/distinfo (revision 567333) +++ head/devel/lokalize/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330746 -SHA256 (KDE/release-service/20.12.2/lokalize-20.12.2.tar.xz) = e77f5ef9122768acecc708fea516963e8d1968437d38e3bbc0c3fcc255e947d7 -SIZE (KDE/release-service/20.12.2/lokalize-20.12.2.tar.xz) = 1994196 +TIMESTAMP = 1614706228 +SHA256 (KDE/release-service/20.12.3/lokalize-20.12.3.tar.xz) = e20c8a33750f2c997802da28f92d7eca6c930bbbd31e4b37eb6d348ecdfb2da8 +SIZE (KDE/release-service/20.12.3/lokalize-20.12.3.tar.xz) = 1995860 Index: head/devel/lokalize/pkg-plist =================================================================== --- head/devel/lokalize/pkg-plist (revision 567333) +++ head/devel/lokalize/pkg-plist (revision 567334) @@ -1,193 +1,178 @@ bin/lokalize share/qlogging-categories5/lokalize.categories share/applications/org.kde.lokalize.desktop share/config.kcfg/lokalize.kcfg share/icons/hicolor/128x128/apps/lokalize.png share/icons/hicolor/32x32/apps/lokalize.png share/icons/hicolor/64x64/apps/lokalize.png share/icons/hicolor/scalable/apps/lokalize.svgz share/knotifications5/lokalize.notifyrc share/kxmlgui5/lokalize/editorui.rc share/kxmlgui5/lokalize/filesearchtabui.rc share/kxmlgui5/lokalize/lokalizemainwindowui.rc share/kxmlgui5/lokalize/projectmanagerui.rc share/kxmlgui5/lokalize/scriptsui.rc share/kxmlgui5/lokalize/translationmemoryrui.rc share/locale/ar/LC_MESSAGES/lokalize.mo share/locale/ast/LC_MESSAGES/lokalize.mo share/locale/bg/LC_MESSAGES/lokalize.mo share/locale/bs/LC_MESSAGES/lokalize.mo share/locale/ca/LC_MESSAGES/lokalize.mo share/locale/ca@valencia/LC_MESSAGES/lokalize.mo share/locale/cs/LC_MESSAGES/lokalize.mo share/locale/da/LC_MESSAGES/lokalize.mo share/locale/de/LC_MESSAGES/lokalize.mo share/locale/el/LC_MESSAGES/lokalize.mo share/locale/en_GB/LC_MESSAGES/lokalize.mo share/locale/eo/LC_MESSAGES/lokalize.mo share/locale/es/LC_MESSAGES/lokalize.mo share/locale/et/LC_MESSAGES/lokalize.mo share/locale/eu/LC_MESSAGES/lokalize.mo share/locale/fi/LC_MESSAGES/lokalize.mo share/locale/fr/LC_MESSAGES/lokalize.mo share/locale/ga/LC_MESSAGES/lokalize.mo share/locale/gl/LC_MESSAGES/lokalize.mo share/locale/he/LC_MESSAGES/lokalize.mo share/locale/hr/LC_MESSAGES/lokalize.mo share/locale/hu/LC_MESSAGES/lokalize.mo share/locale/ia/LC_MESSAGES/lokalize.mo share/locale/id/LC_MESSAGES/lokalize.mo share/locale/is/LC_MESSAGES/lokalize.mo share/locale/it/LC_MESSAGES/lokalize.mo share/locale/ja/LC_MESSAGES/lokalize.mo share/locale/kk/LC_MESSAGES/lokalize.mo share/locale/km/LC_MESSAGES/lokalize.mo share/locale/ko/LC_MESSAGES/lokalize.mo share/locale/lt/LC_MESSAGES/lokalize.mo share/locale/lv/LC_MESSAGES/lokalize.mo share/locale/mr/LC_MESSAGES/lokalize.mo share/locale/nb/LC_MESSAGES/lokalize.mo share/locale/nds/LC_MESSAGES/lokalize.mo share/locale/nl/LC_MESSAGES/lokalize.mo share/locale/nn/LC_MESSAGES/lokalize.mo share/locale/pa/LC_MESSAGES/lokalize.mo share/locale/pl/LC_MESSAGES/lokalize.mo share/locale/pt/LC_MESSAGES/lokalize.mo share/locale/pt_BR/LC_MESSAGES/lokalize.mo share/locale/ro/LC_MESSAGES/lokalize.mo share/locale/ru/LC_MESSAGES/lokalize.mo share/locale/sk/LC_MESSAGES/lokalize.mo share/locale/sl/LC_MESSAGES/lokalize.mo share/locale/sr/LC_MESSAGES/lokalize.mo share/locale/sv/LC_MESSAGES/lokalize.mo share/locale/tr/LC_MESSAGES/lokalize.mo share/locale/ug/LC_MESSAGES/lokalize.mo share/locale/uk/LC_MESSAGES/lokalize.mo share/locale/wa/LC_MESSAGES/lokalize.mo share/locale/zh_CN/LC_MESSAGES/lokalize.mo share/locale/zh_TW/LC_MESSAGES/lokalize.mo %%DATADIR%%/icons/hicolor/16x16/actions/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr/approved.png -%%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@ijekavian/approved.png -%%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@ijekavianlatin/approved.png -%%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/nexterror.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/nextpo.png %%DATADIR%%/icons/hicolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/preverror.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/prevpo.png %%DATADIR%%/icons/hicolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/transsearch.png %%DATADIR%%/icons/hicolor/22x22/actions/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_arg.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_tag.png %%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr/approved.png -%%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@ijekavian/approved.png -%%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@ijekavianlatin/approved.png -%%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/nexterror.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/nextpo.png %%DATADIR%%/icons/hicolor/22x22/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/preverror.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/prevpo.png %%DATADIR%%/icons/hicolor/22x22/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/transsearch.png %%DATADIR%%/icons/hicolor/32x32/actions/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/32x32/actions/diff.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr/approved.png -%%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@ijekavian/approved.png -%%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@ijekavianlatin/approved.png -%%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/nexterror.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/nextpo.png %%DATADIR%%/icons/hicolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/preverror.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/prevpo.png %%DATADIR%%/icons/hicolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/transsearch.png %%DATADIR%%/icons/hicolor/48x48/actions/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr/approved.png -%%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@ijekavian/approved.png -%%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@ijekavianlatin/approved.png -%%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/scalable/actions/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr/approved.svgz -%%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavian/approved.svgz -%%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavianlatin/approved.svgz -%%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@latin/approved.svgz %%DATADIR%%/icons/locolor/16x16/actions/catalogmanager.png %%DATADIR%%/icons/locolor/16x16/actions/diff.png %%DATADIR%%/icons/locolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/locolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/locolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/nexterror.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/nextpo.png %%DATADIR%%/icons/locolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/locolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/preverror.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/prevpo.png %%DATADIR%%/icons/locolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/locolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/transsearch.png %%DATADIR%%/icons/locolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/locolor/32x32/actions/diff.png %%DATADIR%%/icons/locolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/locolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/locolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/nexterror.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/nextpo.png %%DATADIR%%/icons/locolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/locolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/preverror.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/prevpo.png %%DATADIR%%/icons/locolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/locolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/transsearch.png %%DATADIR%%/scripts/find-gui-text.sh %%DATADIR%%/scripts/msgmerge.py %%DATADIR%%/scripts/msgmerge.rc %%DATADIR%%/scripts/odf/xliff2odf-standalone.py %%DATADIR%%/scripts/odf/xliff2odf.py %%DATADIR%%/scripts/odf/xliff2odf.rc %%DATADIR%%/scripts/odf/xliffmerge.py share/metainfo/org.kde.lokalize.appdata.xml Index: head/devel/poxml/distinfo =================================================================== --- head/devel/poxml/distinfo (revision 567333) +++ head/devel/poxml/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330747 -SHA256 (KDE/release-service/20.12.2/poxml-20.12.2.tar.xz) = ff0be949f2559c35ce3989f0298a4fbc8d43f06dd0c677c93bd80910fa08d5c2 -SIZE (KDE/release-service/20.12.2/poxml-20.12.2.tar.xz) = 43264 +TIMESTAMP = 1614706229 +SHA256 (KDE/release-service/20.12.3/poxml-20.12.3.tar.xz) = 34bdbb4b25ccd3b64d48e8819ae7e2b2ba501f60bdb2a27c0512f42cb1f1f7fc +SIZE (KDE/release-service/20.12.3/poxml-20.12.3.tar.xz) = 43224 Index: head/devel/umbrello/distinfo =================================================================== --- head/devel/umbrello/distinfo (revision 567333) +++ head/devel/umbrello/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330748 -SHA256 (KDE/release-service/20.12.2/umbrello-20.12.2.tar.xz) = 4e4fdc0cbff6d578d6e2510c186a27e402995d35265ac203e100e6950c61f17f -SIZE (KDE/release-service/20.12.2/umbrello-20.12.2.tar.xz) = 5555580 +TIMESTAMP = 1614706224 +SHA256 (KDE/release-service/20.12.3/umbrello-20.12.3.tar.xz) = 57fb7d988e115be18514f807bab483a19877acc3f1910aeb952c4d8372f4d378 +SIZE (KDE/release-service/20.12.3/umbrello-20.12.3.tar.xz) = 5555804 Index: head/editors/kate/distinfo =================================================================== --- head/editors/kate/distinfo (revision 567333) +++ head/editors/kate/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330748 -SHA256 (KDE/release-service/20.12.2/kate-20.12.2.tar.xz) = a7ee1973da3534390ba45f937fec239d56b4aa3c26ea2b63561709887fb4bfcd -SIZE (KDE/release-service/20.12.2/kate-20.12.2.tar.xz) = 5862296 +TIMESTAMP = 1614706232 +SHA256 (KDE/release-service/20.12.3/kate-20.12.3.tar.xz) = 81bc2d8afe1958186feec8b1b275da5d6eb52bd8b4fa154896d19830d628d4fd +SIZE (KDE/release-service/20.12.3/kate-20.12.3.tar.xz) = 5949012 Index: head/editors/kate/pkg-plist =================================================================== --- head/editors/kate/pkg-plist (revision 567333) +++ head/editors/kate/pkg-plist (revision 567334) @@ -1,1266 +1,1267 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateopenheaderplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz +man/ru/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateopenheader.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateopenheader.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateopenheader.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/lspclient.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateopenheader.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/kwrite.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateopenheader.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/kwrite.mo share/locale/da/LC_MESSAGES/lspclient.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateopenheader.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/kwrite.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateopenheader.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateopenheader.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateopenheader.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateopenheader.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/kwrite.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateopenheader.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/kateopenheader.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fa/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateopenheader.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/kwrite.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateopenheader.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateopenheader.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateopenheader.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/kwrite.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateopenheader.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateopenheader.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/kateopenheader.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/kwrite.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateopenheader.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/kwrite.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateopenheader.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/kwrite.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/kateopenheader.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateopenheader.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/kwrite.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateopenheader.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/kwrite.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateopenheader.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/kk/LC_MESSAGES/kwrite.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/kateopenheader.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateopenheader.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateopenheader.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/kwrite.mo share/locale/lt/LC_MESSAGES/lspclient.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateopenheader.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateopenheader.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/kwrite.mo share/locale/ml/LC_MESSAGES/lspclient.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateopenheader.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateopenheader.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateopenheader.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateopenheader.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateopenheader.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateopenheader.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateopenheader.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateopenheader.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateopenheader.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateopenheader.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateopenheader.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateopenheader.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateopenheader.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/kwrite.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateopenheader.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateopenheader.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/ug/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateopenheader.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kateopenheader.mo share/locale/wa/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateopenheader.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateopenheader.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/kwrite.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations Index: head/games/blinken/Makefile =================================================================== --- head/games/blinken/Makefile (revision 567333) +++ head/games/blinken/Makefile (revision 567334) @@ -1,19 +1,18 @@ # $FreeBSD$ PORTNAME= blinken DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Memory enhancement game USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools ecm guiaddons i18n widgetsaddons xmlgui USE_QT= core dbus gui phonon4 svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/games/blinken/distinfo =================================================================== --- head/games/blinken/distinfo (revision 567333) +++ head/games/blinken/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330749 -SHA256 (KDE/release-service/20.12.2/blinken-20.12.2.tar.xz) = 495fe76fb1ccb3ee644923d5ce526f7f637e0eaa1817c78e9678aed0579d1628 -SIZE (KDE/release-service/20.12.2/blinken-20.12.2.tar.xz) = 2537888 +TIMESTAMP = 1614706254 +SHA256 (KDE/release-service/20.12.3/blinken-20.12.3.tar.xz) = f4612c004afe025696744ffd074e6cadfc3d15dca486966fe80d18ab5aa6db6d +SIZE (KDE/release-service/20.12.3/blinken-20.12.3.tar.xz) = 2537996 Index: head/games/bomber/distinfo =================================================================== --- head/games/bomber/distinfo (revision 567333) +++ head/games/bomber/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330750 -SHA256 (KDE/release-service/20.12.2/bomber-20.12.2.tar.xz) = 5b22d4965451f8af78a93685c943843af228d1268109c8efe710ca64b3919e22 -SIZE (KDE/release-service/20.12.2/bomber-20.12.2.tar.xz) = 825284 +TIMESTAMP = 1614706247 +SHA256 (KDE/release-service/20.12.3/bomber-20.12.3.tar.xz) = 57279c0620b44b45bcd4153509cef698fff1e4ba4e0cb3ba760925c89144a00d +SIZE (KDE/release-service/20.12.3/bomber-20.12.3.tar.xz) = 825104 Index: head/games/bovo/distinfo =================================================================== --- head/games/bovo/distinfo (revision 567333) +++ head/games/bovo/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330751 -SHA256 (KDE/release-service/20.12.2/bovo-20.12.2.tar.xz) = 671d22db93c2af5d1e8208183ebcbd8d8b5c3f0fdd76070902b56b8c7308bd17 -SIZE (KDE/release-service/20.12.2/bovo-20.12.2.tar.xz) = 205832 +TIMESTAMP = 1614706242 +SHA256 (KDE/release-service/20.12.3/bovo-20.12.3.tar.xz) = bb845496ed0f1d783846918c52faab9e38eae373c2ba7f4a4a2e657994c09984 +SIZE (KDE/release-service/20.12.3/bovo-20.12.3.tar.xz) = 205792 Index: head/games/granatier/distinfo =================================================================== --- head/games/granatier/distinfo (revision 567333) +++ head/games/granatier/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330751 -SHA256 (KDE/release-service/20.12.2/granatier-20.12.2.tar.xz) = ee3c83c04a2e6305648949550e9c14fbade480bcb444de022df0b38031735a3f -SIZE (KDE/release-service/20.12.2/granatier-20.12.2.tar.xz) = 1951828 +TIMESTAMP = 1614706257 +SHA256 (KDE/release-service/20.12.3/granatier-20.12.3.tar.xz) = 740fdf55a24e26ad83678290641676d3cc40127234332cb2010e67de934b54f4 +SIZE (KDE/release-service/20.12.3/granatier-20.12.3.tar.xz) = 1951672 Index: head/games/kanagram/distinfo =================================================================== --- head/games/kanagram/distinfo (revision 567333) +++ head/games/kanagram/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330752 -SHA256 (KDE/release-service/20.12.2/kanagram-20.12.2.tar.xz) = 8e2aecbba2e44b81121e8eb22ea7b3760ad91c686431fd7f883fe195efade202 -SIZE (KDE/release-service/20.12.2/kanagram-20.12.2.tar.xz) = 8029956 +TIMESTAMP = 1614706261 +SHA256 (KDE/release-service/20.12.3/kanagram-20.12.3.tar.xz) = c54e91e65e092045390a235343d3ed20818f5876528ad3d773709b53af42ff7b +SIZE (KDE/release-service/20.12.3/kanagram-20.12.3.tar.xz) = 8028804 Index: head/games/kapman/distinfo =================================================================== --- head/games/kapman/distinfo (revision 567333) +++ head/games/kapman/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330753 -SHA256 (KDE/release-service/20.12.2/kapman-20.12.2.tar.xz) = d3c03b4eaecaf21dc249939c602d7457015887b6f6c078b9b7658af2d21d43bb -SIZE (KDE/release-service/20.12.2/kapman-20.12.2.tar.xz) = 2531584 +TIMESTAMP = 1614706238 +SHA256 (KDE/release-service/20.12.3/kapman-20.12.3.tar.xz) = 857e8daaf5a6d2d10f1a52486012358fe52be828c5ec0aab5e0cf13322c8649c +SIZE (KDE/release-service/20.12.3/kapman-20.12.3.tar.xz) = 2531568 Index: head/games/katomic/distinfo =================================================================== --- head/games/katomic/distinfo (revision 567333) +++ head/games/katomic/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330754 -SHA256 (KDE/release-service/20.12.2/katomic-20.12.2.tar.xz) = d4fd9d3eb73bf6c2ab735343b28b6038859fec376dc8d7fe5863e8984037b0eb -SIZE (KDE/release-service/20.12.2/katomic-20.12.2.tar.xz) = 1429376 +TIMESTAMP = 1614706244 +SHA256 (KDE/release-service/20.12.3/katomic-20.12.3.tar.xz) = 1868fd6b08f9ce33e7b7a80eaf2772aa6aa380596cf9ae320ce3eb7099f0abe2 +SIZE (KDE/release-service/20.12.3/katomic-20.12.3.tar.xz) = 1429264 Index: head/games/kblackbox/distinfo =================================================================== --- head/games/kblackbox/distinfo (revision 567333) +++ head/games/kblackbox/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330754 -SHA256 (KDE/release-service/20.12.2/kblackbox-20.12.2.tar.xz) = 05931e31d6ebc1daac240f266e77fcb037a8ccdfb963e08334faaf1421f0cbb0 -SIZE (KDE/release-service/20.12.2/kblackbox-20.12.2.tar.xz) = 450340 +TIMESTAMP = 1614706237 +SHA256 (KDE/release-service/20.12.3/kblackbox-20.12.3.tar.xz) = 47d3c9277e1daca2e78c93abda49e10b03f5429a6f554976ddb5a126841b9c7c +SIZE (KDE/release-service/20.12.3/kblackbox-20.12.3.tar.xz) = 450304 Index: head/games/kblocks/distinfo =================================================================== --- head/games/kblocks/distinfo (revision 567333) +++ head/games/kblocks/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330755 -SHA256 (KDE/release-service/20.12.2/kblocks-20.12.2.tar.xz) = 7c8126851db68a163e6e1c3ef1bb29270f5bd10f0bfbea6959b56d389862541b -SIZE (KDE/release-service/20.12.2/kblocks-20.12.2.tar.xz) = 1908076 +TIMESTAMP = 1614706241 +SHA256 (KDE/release-service/20.12.3/kblocks-20.12.3.tar.xz) = 1b0e0798e6c634afff48a20a24282c42213f8b4154bff23152443ff395f75d67 +SIZE (KDE/release-service/20.12.3/kblocks-20.12.3.tar.xz) = 1908420 Index: head/games/kbounce/distinfo =================================================================== --- head/games/kbounce/distinfo (revision 567333) +++ head/games/kbounce/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330756 -SHA256 (KDE/release-service/20.12.2/kbounce-20.12.2.tar.xz) = 610393aba7abc1d055f6283ea9a19e549451458256f60aaae6935fbe6adfbba7 -SIZE (KDE/release-service/20.12.2/kbounce-20.12.2.tar.xz) = 3443500 +TIMESTAMP = 1614706234 +SHA256 (KDE/release-service/20.12.3/kbounce-20.12.3.tar.xz) = ba942d26d8959cd0415a0ea8ad0a0fecdddff2236d0fe17776ca6d5d3fc8df7b +SIZE (KDE/release-service/20.12.3/kbounce-20.12.3.tar.xz) = 3443204 Index: head/games/kbreakout/distinfo =================================================================== --- head/games/kbreakout/distinfo (revision 567333) +++ head/games/kbreakout/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330756 -SHA256 (KDE/release-service/20.12.2/kbreakout-20.12.2.tar.xz) = 1f4ffaf85022f6c130ecdef069dff5aa955557e30fce785560b9058980cc3bd8 -SIZE (KDE/release-service/20.12.2/kbreakout-20.12.2.tar.xz) = 2283952 +TIMESTAMP = 1614706257 +SHA256 (KDE/release-service/20.12.3/kbreakout-20.12.3.tar.xz) = 011b5491d9c0765f648824553ecb58f1897d80e513ee859ab845a8c6738f51b6 +SIZE (KDE/release-service/20.12.3/kbreakout-20.12.3.tar.xz) = 2284120 Index: head/games/kdiamond/distinfo =================================================================== --- head/games/kdiamond/distinfo (revision 567333) +++ head/games/kdiamond/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330758 -SHA256 (KDE/release-service/20.12.2/kdiamond-20.12.2.tar.xz) = 13f99c4e7333c415b686ce360fc015c777a10b3fb030d94bc7d788dfa578e19f -SIZE (KDE/release-service/20.12.2/kdiamond-20.12.2.tar.xz) = 4698100 +TIMESTAMP = 1614706235 +SHA256 (KDE/release-service/20.12.3/kdiamond-20.12.3.tar.xz) = 4731ebc32b050e2a2a1eeefb6106a7588cb6998f0d901eac61503105c19e92f2 +SIZE (KDE/release-service/20.12.3/kdiamond-20.12.3.tar.xz) = 4698168 Index: head/games/kfourinline/distinfo =================================================================== --- head/games/kfourinline/distinfo (revision 567333) +++ head/games/kfourinline/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330758 -SHA256 (KDE/release-service/20.12.2/kfourinline-20.12.2.tar.xz) = b38fc86abeee6fdf84bf2ba3c6258d555cc9b55a785b0424384bc55c5fd6a2d1 -SIZE (KDE/release-service/20.12.2/kfourinline-20.12.2.tar.xz) = 644004 +TIMESTAMP = 1614706250 +SHA256 (KDE/release-service/20.12.3/kfourinline-20.12.3.tar.xz) = 5212aa2110bc662de79c71bdc4383fcc2e87e64c9b8ac4b147cfb6f380594166 +SIZE (KDE/release-service/20.12.3/kfourinline-20.12.3.tar.xz) = 643812 Index: head/games/kgoldrunner/distinfo =================================================================== --- head/games/kgoldrunner/distinfo (revision 567333) +++ head/games/kgoldrunner/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330759 -SHA256 (KDE/release-service/20.12.2/kgoldrunner-20.12.2.tar.xz) = fa26cb0e828d66edc0917cd8b3098171580d0bc2e9f17ab9373c6acaa18325aa -SIZE (KDE/release-service/20.12.2/kgoldrunner-20.12.2.tar.xz) = 4444368 +TIMESTAMP = 1614706251 +SHA256 (KDE/release-service/20.12.3/kgoldrunner-20.12.3.tar.xz) = 401cb5e45c1e6d7b97cca856788172ac0ab370d6540ea8bc1229220d918a8205 +SIZE (KDE/release-service/20.12.3/kgoldrunner-20.12.3.tar.xz) = 4444752 Index: head/games/khangman/distinfo =================================================================== --- head/games/khangman/distinfo (revision 567333) +++ head/games/khangman/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330760 -SHA256 (KDE/release-service/20.12.2/khangman-20.12.2.tar.xz) = f32f847ed680d5d2173669642f5ff55d949adfb678ed1490e5ea7db3456e0cae -SIZE (KDE/release-service/20.12.2/khangman-20.12.2.tar.xz) = 7405732 +TIMESTAMP = 1614706262 +SHA256 (KDE/release-service/20.12.3/khangman-20.12.3.tar.xz) = 59a0ada3e8dddaff597e6bf25ff4116007bd4d4cc613d7ffa0acd492140a932a +SIZE (KDE/release-service/20.12.3/khangman-20.12.3.tar.xz) = 7400372 Index: head/games/khangman/pkg-plist =================================================================== --- head/games/khangman/pkg-plist (revision 567333) +++ head/games/khangman/pkg-plist (revision 567334) @@ -1,142 +1,141 @@ bin/khangman etc/xdg/khangman.knsrc man/ca/man6/khangman.6.gz man/de/man6/khangman.6.gz man/es/man6/khangman.6.gz man/et/man6/khangman.6.gz man/it/man6/khangman.6.gz man/man6/khangman.6.gz man/nl/man6/khangman.6.gz man/pt/man6/khangman.6.gz man/pt_BR/man6/khangman.6.gz man/ru/man6/khangman.6.gz man/sv/man6/khangman.6.gz man/uk/man6/khangman.6.gz share/applications/org.kde.khangman.desktop share/config.kcfg/khangman.kcfg share/icons/hicolor/128x128/apps/khangman.png share/icons/hicolor/16x16/apps/khangman.png share/icons/hicolor/22x22/apps/khangman.png share/icons/hicolor/32x32/apps/khangman.png share/icons/hicolor/48x48/apps/khangman.png share/icons/hicolor/64x64/apps/khangman.png share/icons/hicolor/scalable/apps/khangman.svgz %%DATADIR%%/ca.txt %%DATADIR%%/cs.txt %%DATADIR%%/da.txt %%DATADIR%%/de.txt %%DATADIR%%/es.txt %%DATADIR%%/et.txt %%DATADIR%%/fi.txt %%DATADIR%%/fonts/Domestic_Manners.ttf %%DATADIR%%/fonts/Dustismo_Roman.ttf %%DATADIR%%/fr.txt %%DATADIR%%/ga.txt %%DATADIR%%/gl.txt %%DATADIR%%/hu.txt %%DATADIR%%/nb.txt %%DATADIR%%/nds.txt %%DATADIR%%/nn.txt %%DATADIR%%/pl.txt %%DATADIR%%/pt.txt %%DATADIR%%/pt_BR.txt %%DATADIR%%/qml/GamePage.qml %%DATADIR%%/qml/Images/about-kde.png %%DATADIR%%/qml/Images/action-fail.png %%DATADIR%%/qml/Images/action-success.png %%DATADIR%%/qml/Images/dialog-information.png %%DATADIR%%/qml/Images/get-hot-new-stuff.png %%DATADIR%%/qml/Images/go-next.png %%DATADIR%%/qml/Images/handbook.png %%DATADIR%%/qml/Images/help-hint.png %%DATADIR%%/qml/Images/pause.png %%DATADIR%%/qml/Images/play.png %%DATADIR%%/qml/Images/quit.png %%DATADIR%%/qml/Images/settings_icon.png %%DATADIR%%/qml/LetterElement.qml %%DATADIR%%/qml/MainSettingsDialog.qml %%DATADIR%%/qml/MySelectionDialog.qml %%DATADIR%%/qml/gallows/gallows1.png %%DATADIR%%/qml/gallows/gallows10.png %%DATADIR%%/qml/gallows/gallows2.png %%DATADIR%%/qml/gallows/gallows3.png %%DATADIR%%/qml/gallows/gallows4.png %%DATADIR%%/qml/gallows/gallows5.png %%DATADIR%%/qml/gallows/gallows6.png %%DATADIR%%/qml/gallows/gallows7.png %%DATADIR%%/qml/gallows/gallows8.png %%DATADIR%%/qml/gallows/gallows9.png %%DATADIR%%/qml/main.qml %%DATADIR%%/qml/sounds/EW_Dialogue_Appear.ogg %%DATADIR%%/qml/sounds/EW_Dialogue_Appear.wav %%DATADIR%%/qml/sounds/chalk.ogg %%DATADIR%%/qml/sounds/chalk.wav %%DATADIR%%/qml/sounds/khangman-alphabet-button-press.wav %%DATADIR%%/qml/sounds/new_game.ogg %%DATADIR%%/qml/sounds/new_game.wav %%DATADIR%%/qml/sounds/splash.ogg %%DATADIR%%/qml/sounds/splash.wav %%DATADIR%%/qml/sounds/wrong.ogg %%DATADIR%%/qml/sounds/wrong.wav %%DATADIR%%/sk.txt %%DATADIR%%/sl.txt -%%DATADIR%%/sr@latin.txt %%DATADIR%%/sv.txt %%DATADIR%%/themes/khangman_bees.svg %%DATADIR%%/themes/khangman_desert.svg %%DATADIR%%/themes/khangman_notes.png %%DATADIR%%/themes/khangman_sea.svg %%DATADIR%%/themes/khangman_winter.svg %%DATADIR%%/themes/standardthemes.xml %%DATADIR%%/tr.txt share/locale/ar/LC_MESSAGES/khangman.mo share/locale/bg/LC_MESSAGES/khangman.mo share/locale/bs/LC_MESSAGES/khangman.mo share/locale/ca/LC_MESSAGES/khangman.mo share/locale/ca@valencia/LC_MESSAGES/khangman.mo share/locale/cs/LC_MESSAGES/khangman.mo share/locale/da/LC_MESSAGES/khangman.mo share/locale/de/LC_MESSAGES/khangman.mo share/locale/el/LC_MESSAGES/khangman.mo share/locale/en_GB/LC_MESSAGES/khangman.mo share/locale/eo/LC_MESSAGES/khangman.mo share/locale/es/LC_MESSAGES/khangman.mo share/locale/et/LC_MESSAGES/khangman.mo share/locale/eu/LC_MESSAGES/khangman.mo share/locale/fa/LC_MESSAGES/khangman.mo share/locale/fi/LC_MESSAGES/khangman.mo share/locale/fr/LC_MESSAGES/khangman.mo share/locale/ga/LC_MESSAGES/khangman.mo share/locale/gl/LC_MESSAGES/khangman.mo share/locale/he/LC_MESSAGES/khangman.mo share/locale/hi/LC_MESSAGES/khangman.mo share/locale/hr/LC_MESSAGES/khangman.mo share/locale/hu/LC_MESSAGES/khangman.mo share/locale/is/LC_MESSAGES/khangman.mo share/locale/it/LC_MESSAGES/khangman.mo share/locale/ja/LC_MESSAGES/khangman.mo share/locale/kk/LC_MESSAGES/khangman.mo share/locale/km/LC_MESSAGES/khangman.mo share/locale/lt/LC_MESSAGES/khangman.mo share/locale/lv/LC_MESSAGES/khangman.mo share/locale/ml/LC_MESSAGES/khangman.mo share/locale/mr/LC_MESSAGES/khangman.mo share/locale/nb/LC_MESSAGES/khangman.mo share/locale/nds/LC_MESSAGES/khangman.mo share/locale/nl/LC_MESSAGES/khangman.mo share/locale/nn/LC_MESSAGES/khangman.mo share/locale/pa/LC_MESSAGES/khangman.mo share/locale/pl/LC_MESSAGES/khangman.mo share/locale/pt/LC_MESSAGES/khangman.mo share/locale/pt_BR/LC_MESSAGES/khangman.mo share/locale/ro/LC_MESSAGES/khangman.mo share/locale/ru/LC_MESSAGES/khangman.mo share/locale/sk/LC_MESSAGES/khangman.mo share/locale/sl/LC_MESSAGES/khangman.mo share/locale/sv/LC_MESSAGES/khangman.mo share/locale/tr/LC_MESSAGES/khangman.mo share/locale/ug/LC_MESSAGES/khangman.mo share/locale/uk/LC_MESSAGES/khangman.mo share/locale/zh_CN/LC_MESSAGES/khangman.mo share/locale/zh_TW/LC_MESSAGES/khangman.mo share/metainfo/org.kde.khangman.appdata.xml Index: head/games/kigo/distinfo =================================================================== --- head/games/kigo/distinfo (revision 567333) +++ head/games/kigo/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330761 -SHA256 (KDE/release-service/20.12.2/kigo-20.12.2.tar.xz) = 2f49f7e8e88c06078f845486af8d67a2ee068db219e4fc4d71fb362e5ed990a8 -SIZE (KDE/release-service/20.12.2/kigo-20.12.2.tar.xz) = 5234304 +TIMESTAMP = 1614706242 +SHA256 (KDE/release-service/20.12.3/kigo-20.12.3.tar.xz) = 2895590c7530b9b3f7689be8beba9520a6602a48635b478835f31d92699f9ee8 +SIZE (KDE/release-service/20.12.3/kigo-20.12.3.tar.xz) = 5234272 Index: head/games/killbots/distinfo =================================================================== --- head/games/killbots/distinfo (revision 567333) +++ head/games/killbots/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330761 -SHA256 (KDE/release-service/20.12.2/killbots-20.12.2.tar.xz) = 5addc270f60b370eea784a09a48b65dc7f31339605d6a5b2ffb9e266a99b9506 -SIZE (KDE/release-service/20.12.2/killbots-20.12.2.tar.xz) = 1186488 +TIMESTAMP = 1614706259 +SHA256 (KDE/release-service/20.12.3/killbots-20.12.3.tar.xz) = ea12a0f14e0791ab9ef014678d84c81f8081d56682cc574e0464bed4c8a5da14 +SIZE (KDE/release-service/20.12.3/killbots-20.12.3.tar.xz) = 1186532 Index: head/games/kiriki/distinfo =================================================================== --- head/games/kiriki/distinfo (revision 567333) +++ head/games/kiriki/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330762 -SHA256 (KDE/release-service/20.12.2/kiriki-20.12.2.tar.xz) = d27427457e5bd2308378cf2ef868fb825328f9ae6e6eb4bb7772766bb1f6542f -SIZE (KDE/release-service/20.12.2/kiriki-20.12.2.tar.xz) = 378780 +TIMESTAMP = 1614706234 +SHA256 (KDE/release-service/20.12.3/kiriki-20.12.3.tar.xz) = 0db68777af69e41cbfbe3a9a6f9cf1b0cb6c5110b656f9ecbb187dbaec6edc76 +SIZE (KDE/release-service/20.12.3/kiriki-20.12.3.tar.xz) = 378704 Index: head/games/kjumpingcube/distinfo =================================================================== --- head/games/kjumpingcube/distinfo (revision 567333) +++ head/games/kjumpingcube/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330763 -SHA256 (KDE/release-service/20.12.2/kjumpingcube-20.12.2.tar.xz) = 50cec7ff45780338ffcd8555adcb14c4d72322de17c91b3699627a8196f01913 -SIZE (KDE/release-service/20.12.2/kjumpingcube-20.12.2.tar.xz) = 290788 +TIMESTAMP = 1614706239 +SHA256 (KDE/release-service/20.12.3/kjumpingcube-20.12.3.tar.xz) = 6fcf9435cb784d28434da7af734a39f546f060be0dbfa156e92037a6c5492067 +SIZE (KDE/release-service/20.12.3/kjumpingcube-20.12.3.tar.xz) = 290892 Index: head/games/klickety/distinfo =================================================================== --- head/games/klickety/distinfo (revision 567333) +++ head/games/klickety/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330764 -SHA256 (KDE/release-service/20.12.2/klickety-20.12.2.tar.xz) = e745071b5d12dea89ddd79728c1ee9ed4203a8550c4e2cbb2d89abf3ed32fb35 -SIZE (KDE/release-service/20.12.2/klickety-20.12.2.tar.xz) = 1394900 +TIMESTAMP = 1614706255 +SHA256 (KDE/release-service/20.12.3/klickety-20.12.3.tar.xz) = 58c4eca0569a5fd9595641f55ee8c293ef111360a597fa1de13675aa9f86b894 +SIZE (KDE/release-service/20.12.3/klickety-20.12.3.tar.xz) = 1394852 Index: head/games/klines/distinfo =================================================================== --- head/games/klines/distinfo (revision 567333) +++ head/games/klines/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330764 -SHA256 (KDE/release-service/20.12.2/klines-20.12.2.tar.xz) = 83a0c2266e7b4970c7191a3b5bcb8f64c88b3c76f91a7586c0ac177fb8c3b992 -SIZE (KDE/release-service/20.12.2/klines-20.12.2.tar.xz) = 1790588 +TIMESTAMP = 1614706248 +SHA256 (KDE/release-service/20.12.3/klines-20.12.3.tar.xz) = 1689eebfb9e36ab17db362bd1a2196088f089ae49c1e5a20e6a909d779d95e1b +SIZE (KDE/release-service/20.12.3/klines-20.12.3.tar.xz) = 1790320 Index: head/games/kmahjongg/distinfo =================================================================== --- head/games/kmahjongg/distinfo (revision 567333) +++ head/games/kmahjongg/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330765 -SHA256 (KDE/release-service/20.12.2/kmahjongg-20.12.2.tar.xz) = ccb747622e80a4a82685af89cb4e2eff93b3961e9c1a8bc3514646b7278cb614 -SIZE (KDE/release-service/20.12.2/kmahjongg-20.12.2.tar.xz) = 3435256 +TIMESTAMP = 1614706239 +SHA256 (KDE/release-service/20.12.3/kmahjongg-20.12.3.tar.xz) = 4256a643c64d5d8df226f56f65fdba241caeb25f87491cd1c99b21d307a0a6cf +SIZE (KDE/release-service/20.12.3/kmahjongg-20.12.3.tar.xz) = 3435208 Index: head/games/kmines/distinfo =================================================================== --- head/games/kmines/distinfo (revision 567333) +++ head/games/kmines/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330766 -SHA256 (KDE/release-service/20.12.2/kmines-20.12.2.tar.xz) = 915f82c380df1c3af9169f37214fdcf6089a4c453e737215d5881bf84363e80c -SIZE (KDE/release-service/20.12.2/kmines-20.12.2.tar.xz) = 959460 +TIMESTAMP = 1614706262 +SHA256 (KDE/release-service/20.12.3/kmines-20.12.3.tar.xz) = 595261077519c2556d614ba5da6b09caf6f93154cb907d77fc419d839143e985 +SIZE (KDE/release-service/20.12.3/kmines-20.12.3.tar.xz) = 959492 Index: head/games/knavalbattle/distinfo =================================================================== --- head/games/knavalbattle/distinfo (revision 567333) +++ head/games/knavalbattle/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330767 -SHA256 (KDE/release-service/20.12.2/knavalbattle-20.12.2.tar.xz) = 0595f6f1c0eb5f4a38c849c75eafdd5137d223082cb3423c7b1e3b75f4cf8774 -SIZE (KDE/release-service/20.12.2/knavalbattle-20.12.2.tar.xz) = 1290276 +TIMESTAMP = 1614706263 +SHA256 (KDE/release-service/20.12.3/knavalbattle-20.12.3.tar.xz) = cfd0b16aabe73c57eb7fe0b9805b7dc3f63dba044d53995752ca80f58392f9a8 +SIZE (KDE/release-service/20.12.3/knavalbattle-20.12.3.tar.xz) = 1290248 Index: head/games/knetwalk/distinfo =================================================================== --- head/games/knetwalk/distinfo (revision 567333) +++ head/games/knetwalk/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330767 -SHA256 (KDE/release-service/20.12.2/knetwalk-20.12.2.tar.xz) = cac094c5c5f2e9cfb0ddfc109a0114a84d1b72b0cc4104c1b36c915a55590786 -SIZE (KDE/release-service/20.12.2/knetwalk-20.12.2.tar.xz) = 1267476 +TIMESTAMP = 1614706264 +SHA256 (KDE/release-service/20.12.3/knetwalk-20.12.3.tar.xz) = a974f14ed362dc42cb04c57f51e6bc1df9c9458dd817ed4fd9ea45701d0dd5ae +SIZE (KDE/release-service/20.12.3/knetwalk-20.12.3.tar.xz) = 1267580 Index: head/games/knights/distinfo =================================================================== --- head/games/knights/distinfo (revision 567333) +++ head/games/knights/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330768 -SHA256 (KDE/release-service/20.12.2/knights-20.12.2.tar.xz) = a962dd2b666541bf4c180481e0f6edc2c4cfd4d980057aced565354a7a30bcdc -SIZE (KDE/release-service/20.12.2/knights-20.12.2.tar.xz) = 3535240 +TIMESTAMP = 1614706247 +SHA256 (KDE/release-service/20.12.3/knights-20.12.3.tar.xz) = 497b1785ef27a00e2ac852855f160950116b3c86fa053ad187f9611712ef057d +SIZE (KDE/release-service/20.12.3/knights-20.12.3.tar.xz) = 3535008 Index: head/games/kolf/distinfo =================================================================== --- head/games/kolf/distinfo (revision 567333) +++ head/games/kolf/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330769 -SHA256 (KDE/release-service/20.12.2/kolf-20.12.2.tar.xz) = 453a8407d97e755ba0434681f9d15b07df5f46e53046adeb4fbc49a14e1582cb -SIZE (KDE/release-service/20.12.2/kolf-20.12.2.tar.xz) = 1029564 +TIMESTAMP = 1614706237 +SHA256 (KDE/release-service/20.12.3/kolf-20.12.3.tar.xz) = 774d4d8a33cf521a71df9b10f3fd64341608fedf00976e956c26e9fe0ae2b5f7 +SIZE (KDE/release-service/20.12.3/kolf-20.12.3.tar.xz) = 1029796 Index: head/games/kollision/distinfo =================================================================== --- head/games/kollision/distinfo (revision 567333) +++ head/games/kollision/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330770 -SHA256 (KDE/release-service/20.12.2/kollision-20.12.2.tar.xz) = f5d1efe50d191b1aebf7f1fd2367f0c46cb476e0314d9118543cfd1b6e72153c -SIZE (KDE/release-service/20.12.2/kollision-20.12.2.tar.xz) = 290696 +TIMESTAMP = 1614706258 +SHA256 (KDE/release-service/20.12.3/kollision-20.12.3.tar.xz) = 201e97209e88aacd076b92d17707fbfbc2eb9c5b7a8746d5e2d3d176165c6e99 +SIZE (KDE/release-service/20.12.3/kollision-20.12.3.tar.xz) = 290660 Index: head/games/konquest/distinfo =================================================================== --- head/games/konquest/distinfo (revision 567333) +++ head/games/konquest/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330770 -SHA256 (KDE/release-service/20.12.2/konquest-20.12.2.tar.xz) = 72753f907a385fa0b2d084ea3349d5963f92d8229bb678e9856c0f75863e9e5c -SIZE (KDE/release-service/20.12.2/konquest-20.12.2.tar.xz) = 666160 +TIMESTAMP = 1614706252 +SHA256 (KDE/release-service/20.12.3/konquest-20.12.3.tar.xz) = c82471fa69d001770bd8c79d131e8e31b78914988dd4944a47d69e5f5c64cf87 +SIZE (KDE/release-service/20.12.3/konquest-20.12.3.tar.xz) = 666152 Index: head/games/kpat/distinfo =================================================================== --- head/games/kpat/distinfo (revision 567333) +++ head/games/kpat/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330771 -SHA256 (KDE/release-service/20.12.2/kpat-20.12.2.tar.xz) = dd7a168ed23410d9306a24fc0b80c037764be39e70a635477f8c2fa506199bbd -SIZE (KDE/release-service/20.12.2/kpat-20.12.2.tar.xz) = 3584780 +TIMESTAMP = 1614706240 +SHA256 (KDE/release-service/20.12.3/kpat-20.12.3.tar.xz) = 21d802097e8891d7655407a56a42a79107a4002096a2a3ea26b0ac0ee8fe34ec +SIZE (KDE/release-service/20.12.3/kpat-20.12.3.tar.xz) = 3584892 Index: head/games/kreversi/distinfo =================================================================== --- head/games/kreversi/distinfo (revision 567333) +++ head/games/kreversi/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330772 -SHA256 (KDE/release-service/20.12.2/kreversi-20.12.2.tar.xz) = 69f4a8d02352008d78bbb9428417a92129fd6e6b11ee5c287ce61abc968e1db0 -SIZE (KDE/release-service/20.12.2/kreversi-20.12.2.tar.xz) = 953604 +TIMESTAMP = 1614706256 +SHA256 (KDE/release-service/20.12.3/kreversi-20.12.3.tar.xz) = eecf3987100268c4c338adf14bc2da6710b6ae3e9b07e9f961fc9ed67f86d66c +SIZE (KDE/release-service/20.12.3/kreversi-20.12.3.tar.xz) = 953588 Index: head/games/kshisen/distinfo =================================================================== --- head/games/kshisen/distinfo (revision 567333) +++ head/games/kshisen/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330773 -SHA256 (KDE/release-service/20.12.2/kshisen-20.12.2.tar.xz) = 6ecacf9a6dc95846e807cf0a11aafeb43317cee89c14267c8d01bc8f66ca3a1d -SIZE (KDE/release-service/20.12.2/kshisen-20.12.2.tar.xz) = 827344 +TIMESTAMP = 1614706243 +SHA256 (KDE/release-service/20.12.3/kshisen-20.12.3.tar.xz) = d898e064fc5d7fe95e322224959c7e73eda97459963847af14341aa1bfe8f9a5 +SIZE (KDE/release-service/20.12.3/kshisen-20.12.3.tar.xz) = 827336 Index: head/games/ksirk/distinfo =================================================================== --- head/games/ksirk/distinfo (revision 567333) +++ head/games/ksirk/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330773 -SHA256 (KDE/release-service/20.12.2/ksirk-20.12.2.tar.xz) = 9619857e0e9ab27eafaf4bbe186b939902ad1723b067896a11d57149cf597a82 -SIZE (KDE/release-service/20.12.2/ksirk-20.12.2.tar.xz) = 6993040 +TIMESTAMP = 1614706252 +SHA256 (KDE/release-service/20.12.3/ksirk-20.12.3.tar.xz) = 45a198f6fec37d15a084ce2bf20770ca23a694bf4687b3bbbbb3c11a5ac904e7 +SIZE (KDE/release-service/20.12.3/ksirk-20.12.3.tar.xz) = 6993564 Index: head/games/ksnakeduel/distinfo =================================================================== --- head/games/ksnakeduel/distinfo (revision 567333) +++ head/games/ksnakeduel/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330774 -SHA256 (KDE/release-service/20.12.2/ksnakeduel-20.12.2.tar.xz) = 44db915e6f885c20cfef9e25f74eccd2a387d69418a6025c6035c29a1bb5a1b1 -SIZE (KDE/release-service/20.12.2/ksnakeduel-20.12.2.tar.xz) = 544252 +TIMESTAMP = 1614706245 +SHA256 (KDE/release-service/20.12.3/ksnakeduel-20.12.3.tar.xz) = 4cc3bb58faf185e0ddbe3718d0bb332e71d9cbbf051ded812fc5cb141d6c578c +SIZE (KDE/release-service/20.12.3/ksnakeduel-20.12.3.tar.xz) = 544212 Index: head/games/kspaceduel/distinfo =================================================================== --- head/games/kspaceduel/distinfo (revision 567333) +++ head/games/kspaceduel/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330775 -SHA256 (KDE/release-service/20.12.2/kspaceduel-20.12.2.tar.xz) = 3b3cf0c474e23854555f963272c567458184052f46a7852633877a8770d1e357 -SIZE (KDE/release-service/20.12.2/kspaceduel-20.12.2.tar.xz) = 618200 +TIMESTAMP = 1614706233 +SHA256 (KDE/release-service/20.12.3/kspaceduel-20.12.3.tar.xz) = bc7be5e02b771b355607da923daf92c7d11aefa7e49ce5cd7bffeb00e46dc139 +SIZE (KDE/release-service/20.12.3/kspaceduel-20.12.3.tar.xz) = 618104 Index: head/games/ksquares/distinfo =================================================================== --- head/games/ksquares/distinfo (revision 567333) +++ head/games/ksquares/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330776 -SHA256 (KDE/release-service/20.12.2/ksquares-20.12.2.tar.xz) = 61e466d067a79db67fe00c2c4d4286a89ce73222d96ffeef6f08d296a5f7ae86 -SIZE (KDE/release-service/20.12.2/ksquares-20.12.2.tar.xz) = 266760 +TIMESTAMP = 1614706236 +SHA256 (KDE/release-service/20.12.3/ksquares-20.12.3.tar.xz) = 6bf6939b252656757676d4eacc593ba81441d6a6ccffb431fb6a4bb91491e262 +SIZE (KDE/release-service/20.12.3/ksquares-20.12.3.tar.xz) = 266692 Index: head/games/ksudoku/distinfo =================================================================== --- head/games/ksudoku/distinfo (revision 567333) +++ head/games/ksudoku/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330776 -SHA256 (KDE/release-service/20.12.2/ksudoku-20.12.2.tar.xz) = 3f012a2fcadf6dfd5834976448e80d8b47ab58a39ce223035f33521b7cb42406 -SIZE (KDE/release-service/20.12.2/ksudoku-20.12.2.tar.xz) = 1676068 +TIMESTAMP = 1614706246 +SHA256 (KDE/release-service/20.12.3/ksudoku-20.12.3.tar.xz) = 997003b9c5719402eacb4ae10d6b868b252a141f6b5d6cebac47a746f2bd717a +SIZE (KDE/release-service/20.12.3/ksudoku-20.12.3.tar.xz) = 1676484 Index: head/games/ktuberling/distinfo =================================================================== --- head/games/ktuberling/distinfo (revision 567333) +++ head/games/ktuberling/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330778 -SHA256 (KDE/release-service/20.12.2/ktuberling-20.12.2.tar.xz) = c86874ab8f5a27399714974dc22017310a5143a6a38baf5df350e8c41fc4cd7a -SIZE (KDE/release-service/20.12.2/ktuberling-20.12.2.tar.xz) = 70705516 +TIMESTAMP = 1614877457 +SHA256 (KDE/release-service/20.12.3/ktuberling-20.12.3.tar.xz) = 06a949bf9eb07bdb42732e70c5cc0bdabc4aafedd257d58c5392b60de64c9f34 +SIZE (KDE/release-service/20.12.3/ktuberling-20.12.3.tar.xz) = 70712392 Index: head/games/ktuberling/pkg-plist =================================================================== --- head/games/ktuberling/pkg-plist (revision 567333) +++ head/games/ktuberling/pkg-plist (revision 567334) @@ -1,1784 +1,1781 @@ bin/ktuberling share/applications/org.kde.ktuberling.desktop share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/mimetypes/application-x-tuberling.png share/icons/hicolor/16x16/apps/ktuberling.png share/icons/hicolor/16x16/mimetypes/application-x-tuberling.png share/icons/hicolor/22x22/apps/ktuberling.png share/icons/hicolor/22x22/mimetypes/application-x-tuberling.png share/icons/hicolor/32x32/apps/ktuberling.png share/icons/hicolor/32x32/mimetypes/application-x-tuberling.png share/icons/hicolor/48x48/apps/ktuberling.png share/icons/hicolor/48x48/mimetypes/application-x-tuberling.png share/icons/hicolor/64x64/apps/ktuberling.png share/icons/hicolor/64x64/mimetypes/application-x-tuberling.png %%DATADIR%%/pics/butterflies.desktop %%DATADIR%%/pics/butterflies.svgz %%DATADIR%%/pics/butterflies.theme %%DATADIR%%/pics/christmas.desktop %%DATADIR%%/pics/christmas.svgz %%DATADIR%%/pics/christmas.theme %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svg %%DATADIR%%/pics/default_theme.theme %%DATADIR%%/pics/egypt.desktop %%DATADIR%%/pics/egypt.svg %%DATADIR%%/pics/egypt.theme %%DATADIR%%/pics/moon.desktop %%DATADIR%%/pics/moon.svg %%DATADIR%%/pics/moon.theme %%DATADIR%%/pics/pizzeria.desktop %%DATADIR%%/pics/pizzeria.svgz %%DATADIR%%/pics/pizzeria.theme %%DATADIR%%/pics/potato-game.desktop %%DATADIR%%/pics/potato-game.svg %%DATADIR%%/pics/potato-game.theme %%DATADIR%%/pics/robin-tux.desktop %%DATADIR%%/pics/robin-tux.svgz %%DATADIR%%/pics/robin-tux.theme %%DATADIR%%/pics/robot_workshop.desktop %%DATADIR%%/pics/robot_workshop.svgz %%DATADIR%%/pics/robot_workshop.theme %%DATADIR%%/pics/train_valley.desktop %%DATADIR%%/pics/train_valley.svgz %%DATADIR%%/pics/train_valley.theme %%DATADIR%%/sounds/ca.soundtheme %%DATADIR%%/sounds/ca/Frier-Tux.ogg %%DATADIR%%/sounds/ca/Guard-Tux.ogg %%DATADIR%%/sounds/ca/Kid-Tux.ogg %%DATADIR%%/sounds/ca/Little-Tux.ogg %%DATADIR%%/sounds/ca/Maiden-Tux.ogg %%DATADIR%%/sounds/ca/Prince-Tux.ogg %%DATADIR%%/sounds/ca/Robin-Tux.ogg %%DATADIR%%/sounds/ca/Sherif-Tux.ogg %%DATADIR%%/sounds/ca/Whitch-Tux.ogg %%DATADIR%%/sounds/ca/apple.ogg %%DATADIR%%/sounds/ca/arrow.ogg %%DATADIR%%/sounds/ca/arrows.ogg %%DATADIR%%/sounds/ca/bow-shoot.ogg %%DATADIR%%/sounds/ca/bow.ogg %%DATADIR%%/sounds/ca/bullseye.ogg %%DATADIR%%/sounds/ca/butterflies_body.ogg %%DATADIR%%/sounds/ca/butterflies_circle.ogg %%DATADIR%%/sounds/ca/butterflies_circles.ogg %%DATADIR%%/sounds/ca/butterflies_eye.ogg %%DATADIR%%/sounds/ca/butterflies_heart.ogg %%DATADIR%%/sounds/ca/butterflies_purple_shape.ogg %%DATADIR%%/sounds/ca/butterflies_spiral.ogg %%DATADIR%%/sounds/ca/butterflies_wing.ogg %%DATADIR%%/sounds/ca/candles-glow.ogg %%DATADIR%%/sounds/ca/candles.ogg %%DATADIR%%/sounds/ca/egypt_arch.ogg %%DATADIR%%/sounds/ca/egypt_birds.ogg %%DATADIR%%/sounds/ca/egypt_boy.ogg %%DATADIR%%/sounds/ca/egypt_bridge.ogg %%DATADIR%%/sounds/ca/egypt_camel.ogg %%DATADIR%%/sounds/ca/egypt_cart.ogg %%DATADIR%%/sounds/ca/egypt_column.ogg %%DATADIR%%/sounds/ca/egypt_donkey.ogg %%DATADIR%%/sounds/ca/egypt_girl.ogg %%DATADIR%%/sounds/ca/egypt_grass.ogg %%DATADIR%%/sounds/ca/egypt_man.ogg %%DATADIR%%/sounds/ca/egypt_oasis.ogg %%DATADIR%%/sounds/ca/egypt_palmtree.ogg %%DATADIR%%/sounds/ca/egypt_pyramid.ogg %%DATADIR%%/sounds/ca/egypt_road.ogg %%DATADIR%%/sounds/ca/egypt_sphynx.ogg %%DATADIR%%/sounds/ca/egypt_well.ogg %%DATADIR%%/sounds/ca/egypt_woman.ogg %%DATADIR%%/sounds/ca/fish.ogg %%DATADIR%%/sounds/ca/flask-poison.ogg %%DATADIR%%/sounds/ca/flask.ogg %%DATADIR%%/sounds/ca/goblet.ogg %%DATADIR%%/sounds/ca/guitar.ogg %%DATADIR%%/sounds/ca/key.ogg %%DATADIR%%/sounds/ca/letter-love.ogg %%DATADIR%%/sounds/ca/letter.ogg %%DATADIR%%/sounds/ca/moon_alien.ogg %%DATADIR%%/sounds/ca/moon_astronaut.ogg %%DATADIR%%/sounds/ca/moon_earth.ogg %%DATADIR%%/sounds/ca/moon_fallingstar.ogg %%DATADIR%%/sounds/ca/moon_hotel.ogg %%DATADIR%%/sounds/ca/moon_monster.ogg %%DATADIR%%/sounds/ca/moon_moonwalker.ogg %%DATADIR%%/sounds/ca/moon_planet.ogg %%DATADIR%%/sounds/ca/moon_radar.ogg %%DATADIR%%/sounds/ca/moon_rocket.ogg %%DATADIR%%/sounds/ca/moon_satellite.ogg %%DATADIR%%/sounds/ca/moon_sign.ogg %%DATADIR%%/sounds/ca/moon_star.ogg %%DATADIR%%/sounds/ca/moon_ufo.ogg %%DATADIR%%/sounds/ca/note.ogg %%DATADIR%%/sounds/ca/notes.ogg %%DATADIR%%/sounds/ca/patata_arrecada.ogg %%DATADIR%%/sounds/ca/patata_barret.ogg %%DATADIR%%/sounds/ca/patata_basto.ogg %%DATADIR%%/sounds/ca/patata_bermudes.ogg %%DATADIR%%/sounds/ca/patata_bigoti.ogg %%DATADIR%%/sounds/ca/patata_cabell.ogg %%DATADIR%%/sounds/ca/patata_cella.ogg %%DATADIR%%/sounds/ca/patata_corbata.ogg %%DATADIR%%/sounds/ca/patata_corbati.ogg %%DATADIR%%/sounds/ca/patata_faldilla.ogg %%DATADIR%%/sounds/ca/patata_flors.ogg %%DATADIR%%/sounds/ca/patata_llavis.ogg %%DATADIR%%/sounds/ca/patata_nas.ogg %%DATADIR%%/sounds/ca/patata_orella.ogg %%DATADIR%%/sounds/ca/patata_paraigua.ogg %%DATADIR%%/sounds/ca/patata_pilota.ogg %%DATADIR%%/sounds/ca/patata_sabata.ogg %%DATADIR%%/sounds/ca/patata_ull.ogg %%DATADIR%%/sounds/ca/patata_ulleres.ogg %%DATADIR%%/sounds/ca/patata_ulleresdesol.ogg %%DATADIR%%/sounds/ca/patata_vestit.ogg %%DATADIR%%/sounds/ca/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ca/pizzeria_bacon.ogg %%DATADIR%%/sounds/ca/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ca/pizzeria_cheese.ogg %%DATADIR%%/sounds/ca/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ca/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ca/pizzeria_olive.ogg %%DATADIR%%/sounds/ca/pizzeria_onion.ogg %%DATADIR%%/sounds/ca/pizzeria_oregano.ogg %%DATADIR%%/sounds/ca/pizzeria_pepper.ogg %%DATADIR%%/sounds/ca/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ca/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ca/pizzeria_salami.ogg %%DATADIR%%/sounds/ca/pizzeria_tomato.ogg %%DATADIR%%/sounds/ca/plate.ogg %%DATADIR%%/sounds/ca/robot_workshop_antenna.ogg %%DATADIR%%/sounds/ca/robot_workshop_arm.ogg %%DATADIR%%/sounds/ca/robot_workshop_ball.ogg %%DATADIR%%/sounds/ca/robot_workshop_base.ogg %%DATADIR%%/sounds/ca/robot_workshop_block.ogg %%DATADIR%%/sounds/ca/robot_workshop_body.ogg %%DATADIR%%/sounds/ca/robot_workshop_claw.ogg %%DATADIR%%/sounds/ca/robot_workshop_eye.ogg %%DATADIR%%/sounds/ca/robot_workshop_foot.ogg %%DATADIR%%/sounds/ca/robot_workshop_hand.ogg %%DATADIR%%/sounds/ca/robot_workshop_head.ogg %%DATADIR%%/sounds/ca/robot_workshop_panel.ogg %%DATADIR%%/sounds/ca/robot_workshop_rocket.ogg %%DATADIR%%/sounds/ca/robot_workshop_rod.ogg %%DATADIR%%/sounds/ca/robot_workshop_wheel.ogg %%DATADIR%%/sounds/ca/say-angry.ogg %%DATADIR%%/sounds/ca/say-huh.ogg %%DATADIR%%/sounds/ca/say-idea.ogg %%DATADIR%%/sounds/ca/say-laugh.ogg %%DATADIR%%/sounds/ca/say-love.ogg %%DATADIR%%/sounds/ca/say-sick.ogg %%DATADIR%%/sounds/ca/say-stare.ogg %%DATADIR%%/sounds/ca/say-what.ogg %%DATADIR%%/sounds/ca/say-wow.ogg %%DATADIR%%/sounds/ca/say-zzz.ogg %%DATADIR%%/sounds/ca/teacup.ogg %%DATADIR%%/sounds/ca/tv_accident.ogg %%DATADIR%%/sounds/ca/tv_ball.ogg %%DATADIR%%/sounds/ca/tv_barrier.ogg %%DATADIR%%/sounds/ca/tv_bicycle.ogg %%DATADIR%%/sounds/ca/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ca/tv_car.ogg %%DATADIR%%/sounds/ca/tv_caravan.ogg %%DATADIR%%/sounds/ca/tv_cyclist.ogg %%DATADIR%%/sounds/ca/tv_elephant.ogg %%DATADIR%%/sounds/ca/tv_excavator.ogg %%DATADIR%%/sounds/ca/tv_fence.ogg %%DATADIR%%/sounds/ca/tv_fire.ogg %%DATADIR%%/sounds/ca/tv_fireengine.ogg %%DATADIR%%/sounds/ca/tv_fireman.ogg %%DATADIR%%/sounds/ca/tv_fisherman.ogg %%DATADIR%%/sounds/ca/tv_giraffe.ogg %%DATADIR%%/sounds/ca/tv_guitar.ogg %%DATADIR%%/sounds/ca/tv_guitarist.ogg %%DATADIR%%/sounds/ca/tv_house.ogg %%DATADIR%%/sounds/ca/tv_ladder.ogg %%DATADIR%%/sounds/ca/tv_lion.ogg %%DATADIR%%/sounds/ca/tv_lorry.ogg %%DATADIR%%/sounds/ca/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ca/tv_man.ogg %%DATADIR%%/sounds/ca/tv_mechanic.ogg %%DATADIR%%/sounds/ca/tv_monkey.ogg %%DATADIR%%/sounds/ca/tv_path.ogg %%DATADIR%%/sounds/ca/tv_rock.ogg %%DATADIR%%/sounds/ca/tv_school.ogg %%DATADIR%%/sounds/ca/tv_shop.ogg %%DATADIR%%/sounds/ca/tv_smoke.ogg %%DATADIR%%/sounds/ca/tv_tipper.ogg %%DATADIR%%/sounds/ca/tv_trailer.ogg %%DATADIR%%/sounds/ca/tv_train.ogg %%DATADIR%%/sounds/ca/tv_tree.ogg %%DATADIR%%/sounds/ca/tv_tunnel.ogg %%DATADIR%%/sounds/ca/tv_volley_net.ogg %%DATADIR%%/sounds/ca/tv_wagon.ogg %%DATADIR%%/sounds/ca/tv_woman.ogg %%DATADIR%%/sounds/ca/vase.ogg %%DATADIR%%/sounds/ca/wanted.ogg %%DATADIR%%/sounds/ca/white-dowe-fly.ogg %%DATADIR%%/sounds/ca/white-dowe.ogg %%DATADIR%%/sounds/ca/xmas_angel.ogg %%DATADIR%%/sounds/ca/xmas_ball.ogg %%DATADIR%%/sounds/ca/xmas_boot.ogg %%DATADIR%%/sounds/ca/xmas_candle.ogg %%DATADIR%%/sounds/ca/xmas_comet.ogg %%DATADIR%%/sounds/ca/xmas_garland.ogg %%DATADIR%%/sounds/ca/xmas_lights.ogg %%DATADIR%%/sounds/ca/xmas_mistletoe.ogg %%DATADIR%%/sounds/ca/xmas_moon.ogg %%DATADIR%%/sounds/ca/xmas_owl.ogg %%DATADIR%%/sounds/ca/xmas_present.ogg %%DATADIR%%/sounds/ca/xmas_rabbit.ogg %%DATADIR%%/sounds/ca/xmas_reindeer.ogg %%DATADIR%%/sounds/ca/xmas_shoe.ogg %%DATADIR%%/sounds/ca/xmas_snowflake.ogg %%DATADIR%%/sounds/ca/xmas_snowman.ogg %%DATADIR%%/sounds/ca/xmas_star.ogg %%DATADIR%%/sounds/ca/xmas_tree.ogg %%DATADIR%%/sounds/ca/xmas_turtle.ogg %%DATADIR%%/sounds/ca/xmas_tux.ogg %%DATADIR%%/sounds/da.soundtheme %%DATADIR%%/sounds/da/blomst.ogg %%DATADIR%%/sounds/da/bold.ogg %%DATADIR%%/sounds/da/briller.ogg %%DATADIR%%/sounds/da/egypt_aesel.ogg %%DATADIR%%/sounds/da/egypt_bro.ogg %%DATADIR%%/sounds/da/egypt_broend.ogg %%DATADIR%%/sounds/da/egypt_bue.ogg %%DATADIR%%/sounds/da/egypt_dreng.ogg %%DATADIR%%/sounds/da/egypt_fugle.ogg %%DATADIR%%/sounds/da/egypt_graes.ogg %%DATADIR%%/sounds/da/egypt_kamel.ogg %%DATADIR%%/sounds/da/egypt_kvinde.ogg %%DATADIR%%/sounds/da/egypt_mand.ogg %%DATADIR%%/sounds/da/egypt_oase.ogg %%DATADIR%%/sounds/da/egypt_palme.ogg %%DATADIR%%/sounds/da/egypt_pige.ogg %%DATADIR%%/sounds/da/egypt_pyramide.ogg %%DATADIR%%/sounds/da/egypt_sfinx.ogg %%DATADIR%%/sounds/da/egypt_soejle.ogg %%DATADIR%%/sounds/da/egypt_vej.ogg %%DATADIR%%/sounds/da/egypt_vogn.ogg %%DATADIR%%/sounds/da/frakke.ogg %%DATADIR%%/sounds/da/frier-tux.ogg %%DATADIR%%/sounds/da/guard-tux.ogg %%DATADIR%%/sounds/da/haar.ogg %%DATADIR%%/sounds/da/hat.ogg %%DATADIR%%/sounds/da/kid-tux.ogg %%DATADIR%%/sounds/da/little-tux.ogg %%DATADIR%%/sounds/da/maiden-tux.ogg %%DATADIR%%/sounds/da/moon_astronaut.ogg %%DATADIR%%/sounds/da/moon_hotel.ogg %%DATADIR%%/sounds/da/moon_jorden.ogg %%DATADIR%%/sounds/da/moon_maanefartoej.ogg %%DATADIR%%/sounds/da/moon_planet.ogg %%DATADIR%%/sounds/da/moon_radar.ogg %%DATADIR%%/sounds/da/moon_raket.ogg %%DATADIR%%/sounds/da/moon_rumvaesen.ogg %%DATADIR%%/sounds/da/moon_satellit.ogg %%DATADIR%%/sounds/da/moon_skilt.ogg %%DATADIR%%/sounds/da/moon_stjerne.ogg %%DATADIR%%/sounds/da/moon_stjerneskud.ogg %%DATADIR%%/sounds/da/moon_ufo.ogg %%DATADIR%%/sounds/da/moon_uhyre.ogg %%DATADIR%%/sounds/da/mund.ogg %%DATADIR%%/sounds/da/naese.ogg %%DATADIR%%/sounds/da/nederdel.ogg %%DATADIR%%/sounds/da/oeje.ogg %%DATADIR%%/sounds/da/oejenbryn.ogg %%DATADIR%%/sounds/da/oere.ogg %%DATADIR%%/sounds/da/oerering.ogg %%DATADIR%%/sounds/da/overskaeg.ogg %%DATADIR%%/sounds/da/paraply.ogg %%DATADIR%%/sounds/da/pizza_agurk.ogg %%DATADIR%%/sounds/da/pizza_ananas.ogg %%DATADIR%%/sounds/da/pizza_ansjos.ogg %%DATADIR%%/sounds/da/pizza_bacon.ogg %%DATADIR%%/sounds/da/pizza_broccoli.ogg %%DATADIR%%/sounds/da/pizza_champignon.ogg %%DATADIR%%/sounds/da/pizza_loeg.ogg %%DATADIR%%/sounds/da/pizza_oliven.ogg %%DATADIR%%/sounds/da/pizza_oregano.ogg %%DATADIR%%/sounds/da/pizza_ost.ogg %%DATADIR%%/sounds/da/pizza_pebber.ogg %%DATADIR%%/sounds/da/pizza_pebberoni.ogg %%DATADIR%%/sounds/da/pizza_salami.ogg %%DATADIR%%/sounds/da/pizza_tomat.ogg %%DATADIR%%/sounds/da/prince-tux.ogg %%DATADIR%%/sounds/da/robin-tux.ogg %%DATADIR%%/sounds/da/sherif-tux.ogg %%DATADIR%%/sounds/da/shorts.ogg %%DATADIR%%/sounds/da/sko.ogg %%DATADIR%%/sounds/da/slips.ogg %%DATADIR%%/sounds/da/sloejfe.ogg %%DATADIR%%/sounds/da/solbriller.ogg %%DATADIR%%/sounds/da/stok.ogg %%DATADIR%%/sounds/da/tux-angry.ogg %%DATADIR%%/sounds/da/tux-apple.ogg %%DATADIR%%/sounds/da/tux-arrow.ogg %%DATADIR%%/sounds/da/tux-arrows.ogg %%DATADIR%%/sounds/da/tux-bow.ogg %%DATADIR%%/sounds/da/tux-bullseye.ogg %%DATADIR%%/sounds/da/tux-candles.ogg %%DATADIR%%/sounds/da/tux-dowe.ogg %%DATADIR%%/sounds/da/tux-fish.ogg %%DATADIR%%/sounds/da/tux-flask.ogg %%DATADIR%%/sounds/da/tux-fly.ogg %%DATADIR%%/sounds/da/tux-goblet.ogg %%DATADIR%%/sounds/da/tux-guitar.ogg %%DATADIR%%/sounds/da/tux-huh.ogg %%DATADIR%%/sounds/da/tux-idea.ogg %%DATADIR%%/sounds/da/tux-key.ogg %%DATADIR%%/sounds/da/tux-laugh.ogg %%DATADIR%%/sounds/da/tux-letter.ogg %%DATADIR%%/sounds/da/tux-love.ogg %%DATADIR%%/sounds/da/tux-note.ogg %%DATADIR%%/sounds/da/tux-notes.ogg %%DATADIR%%/sounds/da/tux-plate.ogg %%DATADIR%%/sounds/da/tux-poison.ogg %%DATADIR%%/sounds/da/tux-sick.ogg %%DATADIR%%/sounds/da/tux-stare.ogg %%DATADIR%%/sounds/da/tux-teacup.ogg %%DATADIR%%/sounds/da/tux-vase.ogg %%DATADIR%%/sounds/da/tux-wanted.ogg %%DATADIR%%/sounds/da/tux-what.ogg %%DATADIR%%/sounds/da/tux-wow.ogg %%DATADIR%%/sounds/da/tux-zzz.ogg %%DATADIR%%/sounds/da/tv_accident.ogg %%DATADIR%%/sounds/da/tv_ball.ogg %%DATADIR%%/sounds/da/tv_barrier.ogg %%DATADIR%%/sounds/da/tv_bil.ogg %%DATADIR%%/sounds/da/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/da/tv_caravan.ogg %%DATADIR%%/sounds/da/tv_cykel.ogg %%DATADIR%%/sounds/da/tv_cyklist.ogg %%DATADIR%%/sounds/da/tv_elephant.ogg %%DATADIR%%/sounds/da/tv_excavator.ogg %%DATADIR%%/sounds/da/tv_fence.ogg %%DATADIR%%/sounds/da/tv_fire.ogg %%DATADIR%%/sounds/da/tv_fireengine.ogg %%DATADIR%%/sounds/da/tv_fireman.ogg %%DATADIR%%/sounds/da/tv_fisherman.ogg %%DATADIR%%/sounds/da/tv_giraffe.ogg %%DATADIR%%/sounds/da/tv_guitar.ogg %%DATADIR%%/sounds/da/tv_guitarist.ogg %%DATADIR%%/sounds/da/tv_house.ogg %%DATADIR%%/sounds/da/tv_ladder.ogg %%DATADIR%%/sounds/da/tv_lion.ogg %%DATADIR%%/sounds/da/tv_lorry.ogg %%DATADIR%%/sounds/da/tv_lorry_tractor.ogg %%DATADIR%%/sounds/da/tv_man.ogg %%DATADIR%%/sounds/da/tv_mechanic.ogg %%DATADIR%%/sounds/da/tv_monkey.ogg %%DATADIR%%/sounds/da/tv_path.ogg %%DATADIR%%/sounds/da/tv_rock.ogg %%DATADIR%%/sounds/da/tv_school.ogg %%DATADIR%%/sounds/da/tv_shop.ogg %%DATADIR%%/sounds/da/tv_smoke.ogg %%DATADIR%%/sounds/da/tv_tipper.ogg %%DATADIR%%/sounds/da/tv_tog.ogg %%DATADIR%%/sounds/da/tv_trailer.ogg %%DATADIR%%/sounds/da/tv_tree.ogg %%DATADIR%%/sounds/da/tv_tunnel.ogg %%DATADIR%%/sounds/da/tv_volley_net.ogg %%DATADIR%%/sounds/da/tv_wagon.ogg %%DATADIR%%/sounds/da/tv_woman.ogg %%DATADIR%%/sounds/da/whitch-tux.ogg %%DATADIR%%/sounds/da/xmas_angel.ogg %%DATADIR%%/sounds/da/xmas_ball.ogg %%DATADIR%%/sounds/da/xmas_boot.ogg %%DATADIR%%/sounds/da/xmas_candle.ogg %%DATADIR%%/sounds/da/xmas_comet.ogg %%DATADIR%%/sounds/da/xmas_garland.ogg %%DATADIR%%/sounds/da/xmas_lights.ogg %%DATADIR%%/sounds/da/xmas_mistletoe.ogg %%DATADIR%%/sounds/da/xmas_moon.ogg %%DATADIR%%/sounds/da/xmas_owl.ogg %%DATADIR%%/sounds/da/xmas_present.ogg %%DATADIR%%/sounds/da/xmas_rabbit.ogg %%DATADIR%%/sounds/da/xmas_reindeer.ogg %%DATADIR%%/sounds/da/xmas_shoe.ogg %%DATADIR%%/sounds/da/xmas_snowflake.ogg %%DATADIR%%/sounds/da/xmas_snowman.ogg %%DATADIR%%/sounds/da/xmas_star.ogg %%DATADIR%%/sounds/da/xmas_tree.ogg %%DATADIR%%/sounds/da/xmas_turtle.ogg %%DATADIR%%/sounds/da/xmas_tux.ogg %%DATADIR%%/sounds/de.soundtheme %%DATADIR%%/sounds/de/ball.ogg %%DATADIR%%/sounds/de/bow.ogg %%DATADIR%%/sounds/de/coat.ogg %%DATADIR%%/sounds/de/ear.ogg %%DATADIR%%/sounds/de/earring.ogg %%DATADIR%%/sounds/de/egypt_arch.ogg %%DATADIR%%/sounds/de/egypt_birds.ogg %%DATADIR%%/sounds/de/egypt_boy.ogg %%DATADIR%%/sounds/de/egypt_bridge.ogg %%DATADIR%%/sounds/de/egypt_camel.ogg %%DATADIR%%/sounds/de/egypt_cart.ogg %%DATADIR%%/sounds/de/egypt_column.ogg %%DATADIR%%/sounds/de/egypt_donkey.ogg %%DATADIR%%/sounds/de/egypt_girl.ogg %%DATADIR%%/sounds/de/egypt_grass.ogg %%DATADIR%%/sounds/de/egypt_man.ogg %%DATADIR%%/sounds/de/egypt_oasis.ogg %%DATADIR%%/sounds/de/egypt_palmtree.ogg %%DATADIR%%/sounds/de/egypt_pyramid.ogg %%DATADIR%%/sounds/de/egypt_road.ogg %%DATADIR%%/sounds/de/egypt_sphynx.ogg %%DATADIR%%/sounds/de/egypt_well.ogg %%DATADIR%%/sounds/de/egypt_woman.ogg %%DATADIR%%/sounds/de/eye.ogg %%DATADIR%%/sounds/de/eyebrow.ogg %%DATADIR%%/sounds/de/flower.ogg %%DATADIR%%/sounds/de/hair.ogg %%DATADIR%%/sounds/de/hat.ogg %%DATADIR%%/sounds/de/moon_alien.ogg %%DATADIR%%/sounds/de/moon_astronaut.ogg %%DATADIR%%/sounds/de/moon_earth.ogg %%DATADIR%%/sounds/de/moon_fallingstar.ogg %%DATADIR%%/sounds/de/moon_hotel.ogg %%DATADIR%%/sounds/de/moon_monster.ogg %%DATADIR%%/sounds/de/moon_moonwalker.ogg %%DATADIR%%/sounds/de/moon_planet.ogg %%DATADIR%%/sounds/de/moon_radar.ogg %%DATADIR%%/sounds/de/moon_rocket.ogg %%DATADIR%%/sounds/de/moon_satellite.ogg %%DATADIR%%/sounds/de/moon_sign.ogg %%DATADIR%%/sounds/de/moon_star.ogg %%DATADIR%%/sounds/de/moon_ufo.ogg %%DATADIR%%/sounds/de/moustache.ogg %%DATADIR%%/sounds/de/mouth.ogg %%DATADIR%%/sounds/de/nose.ogg %%DATADIR%%/sounds/de/pizzeria_anchovy.ogg %%DATADIR%%/sounds/de/pizzeria_bacon.ogg %%DATADIR%%/sounds/de/pizzeria_broccolli.ogg %%DATADIR%%/sounds/de/pizzeria_cheese.ogg %%DATADIR%%/sounds/de/pizzeria_cucumber.ogg %%DATADIR%%/sounds/de/pizzeria_mushroom.ogg %%DATADIR%%/sounds/de/pizzeria_olive.ogg %%DATADIR%%/sounds/de/pizzeria_onion.ogg %%DATADIR%%/sounds/de/pizzeria_oregano.ogg %%DATADIR%%/sounds/de/pizzeria_pepper.ogg %%DATADIR%%/sounds/de/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/de/pizzeria_pineapple.ogg %%DATADIR%%/sounds/de/pizzeria_salami.ogg %%DATADIR%%/sounds/de/pizzeria_tomato.ogg %%DATADIR%%/sounds/de/shoes.ogg %%DATADIR%%/sounds/de/shorts.ogg %%DATADIR%%/sounds/de/skirt.ogg %%DATADIR%%/sounds/de/spectacles.ogg %%DATADIR%%/sounds/de/stick.ogg %%DATADIR%%/sounds/de/sunglasses.ogg %%DATADIR%%/sounds/de/tie.ogg %%DATADIR%%/sounds/de/tv_bicycle.ogg %%DATADIR%%/sounds/de/tv_car.ogg %%DATADIR%%/sounds/de/tv_cyclist.ogg %%DATADIR%%/sounds/de/tv_train.ogg %%DATADIR%%/sounds/de/tv_tree.ogg %%DATADIR%%/sounds/de/umbrella.ogg %%DATADIR%%/sounds/el.soundtheme %%DATADIR%%/sounds/el/arrow.ogg %%DATADIR%%/sounds/el/ball.ogg %%DATADIR%%/sounds/el/cheese.ogg %%DATADIR%%/sounds/el/coat.ogg %%DATADIR%%/sounds/el/ear.ogg %%DATADIR%%/sounds/el/earring.ogg %%DATADIR%%/sounds/el/egypt_arch.ogg %%DATADIR%%/sounds/el/egypt_birds.ogg %%DATADIR%%/sounds/el/egypt_boy.ogg %%DATADIR%%/sounds/el/egypt_bridge.ogg %%DATADIR%%/sounds/el/egypt_camel.ogg %%DATADIR%%/sounds/el/egypt_cart.ogg %%DATADIR%%/sounds/el/egypt_column.ogg %%DATADIR%%/sounds/el/egypt_donkey.ogg %%DATADIR%%/sounds/el/egypt_girl.ogg %%DATADIR%%/sounds/el/egypt_grass.ogg %%DATADIR%%/sounds/el/egypt_man.ogg %%DATADIR%%/sounds/el/egypt_oasis.ogg %%DATADIR%%/sounds/el/egypt_palmtree.ogg %%DATADIR%%/sounds/el/egypt_pyramid.ogg %%DATADIR%%/sounds/el/egypt_road.ogg %%DATADIR%%/sounds/el/egypt_sphynx.ogg %%DATADIR%%/sounds/el/egypt_well.ogg %%DATADIR%%/sounds/el/egypt_woman.ogg %%DATADIR%%/sounds/el/eye.ogg %%DATADIR%%/sounds/el/eyebrow.ogg %%DATADIR%%/sounds/el/flower.ogg %%DATADIR%%/sounds/el/hair.ogg %%DATADIR%%/sounds/el/hat.ogg %%DATADIR%%/sounds/el/moon_alien.ogg %%DATADIR%%/sounds/el/moon_astronaut.ogg %%DATADIR%%/sounds/el/moon_earth.ogg %%DATADIR%%/sounds/el/moon_fallingstar.ogg %%DATADIR%%/sounds/el/moon_hotel.ogg %%DATADIR%%/sounds/el/moon_monster.ogg %%DATADIR%%/sounds/el/moon_moonwalker.ogg %%DATADIR%%/sounds/el/moon_planet.ogg %%DATADIR%%/sounds/el/moon_radar.ogg %%DATADIR%%/sounds/el/moon_rocket.ogg %%DATADIR%%/sounds/el/moon_satellite.ogg %%DATADIR%%/sounds/el/moon_sign.ogg %%DATADIR%%/sounds/el/moon_star.ogg %%DATADIR%%/sounds/el/moon_ufo.ogg %%DATADIR%%/sounds/el/moustache.ogg %%DATADIR%%/sounds/el/mouth.ogg %%DATADIR%%/sounds/el/nose.ogg %%DATADIR%%/sounds/el/pizzeria_anchovy.ogg %%DATADIR%%/sounds/el/pizzeria_bacon.ogg %%DATADIR%%/sounds/el/pizzeria_broccolli.ogg %%DATADIR%%/sounds/el/pizzeria_cheese.ogg %%DATADIR%%/sounds/el/pizzeria_cucumber.ogg %%DATADIR%%/sounds/el/pizzeria_mushroom.ogg %%DATADIR%%/sounds/el/pizzeria_olive.ogg %%DATADIR%%/sounds/el/pizzeria_onion.ogg %%DATADIR%%/sounds/el/pizzeria_oregano.ogg %%DATADIR%%/sounds/el/pizzeria_pepper.ogg %%DATADIR%%/sounds/el/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/el/pizzeria_pineapple.ogg %%DATADIR%%/sounds/el/pizzeria_salami.ogg %%DATADIR%%/sounds/el/pizzeria_tomato.ogg %%DATADIR%%/sounds/el/shoe.ogg %%DATADIR%%/sounds/el/shorts.ogg %%DATADIR%%/sounds/el/skirt.ogg %%DATADIR%%/sounds/el/spectacles.ogg %%DATADIR%%/sounds/el/stick.ogg %%DATADIR%%/sounds/el/stick2.ogg %%DATADIR%%/sounds/el/sunglasses.ogg %%DATADIR%%/sounds/el/tie.ogg %%DATADIR%%/sounds/el/tv_bicycle.ogg %%DATADIR%%/sounds/el/tv_car.ogg %%DATADIR%%/sounds/el/tv_cyclist.ogg %%DATADIR%%/sounds/el/tv_train.ogg %%DATADIR%%/sounds/el/tv_tree.ogg %%DATADIR%%/sounds/el/umbrella.ogg %%DATADIR%%/sounds/en.soundtheme %%DATADIR%%/sounds/en/ball.ogg %%DATADIR%%/sounds/en/bow.ogg %%DATADIR%%/sounds/en/coat.ogg %%DATADIR%%/sounds/en/ear.ogg %%DATADIR%%/sounds/en/earring.ogg %%DATADIR%%/sounds/en/egypt_arch.ogg %%DATADIR%%/sounds/en/egypt_birds.ogg %%DATADIR%%/sounds/en/egypt_boy.ogg %%DATADIR%%/sounds/en/egypt_bridge.ogg %%DATADIR%%/sounds/en/egypt_camel.ogg %%DATADIR%%/sounds/en/egypt_cart.ogg %%DATADIR%%/sounds/en/egypt_column.ogg %%DATADIR%%/sounds/en/egypt_donkey.ogg %%DATADIR%%/sounds/en/egypt_girl.ogg %%DATADIR%%/sounds/en/egypt_grass.ogg %%DATADIR%%/sounds/en/egypt_man.ogg %%DATADIR%%/sounds/en/egypt_oasis.ogg %%DATADIR%%/sounds/en/egypt_palmtree.ogg %%DATADIR%%/sounds/en/egypt_pyramid.ogg %%DATADIR%%/sounds/en/egypt_road.ogg %%DATADIR%%/sounds/en/egypt_sphynx.ogg %%DATADIR%%/sounds/en/egypt_well.ogg %%DATADIR%%/sounds/en/egypt_woman.ogg %%DATADIR%%/sounds/en/eye.ogg %%DATADIR%%/sounds/en/eyebrow.ogg %%DATADIR%%/sounds/en/flower.ogg %%DATADIR%%/sounds/en/hair.ogg %%DATADIR%%/sounds/en/hat.ogg %%DATADIR%%/sounds/en/moon_alien.ogg %%DATADIR%%/sounds/en/moon_astronaut.ogg %%DATADIR%%/sounds/en/moon_earth.ogg %%DATADIR%%/sounds/en/moon_fallingstar.ogg %%DATADIR%%/sounds/en/moon_hotel.ogg %%DATADIR%%/sounds/en/moon_monster.ogg %%DATADIR%%/sounds/en/moon_moonwalker.ogg %%DATADIR%%/sounds/en/moon_planet.ogg %%DATADIR%%/sounds/en/moon_radar.ogg %%DATADIR%%/sounds/en/moon_rocket.ogg %%DATADIR%%/sounds/en/moon_satellite.ogg %%DATADIR%%/sounds/en/moon_sign.ogg %%DATADIR%%/sounds/en/moon_star.ogg %%DATADIR%%/sounds/en/moon_ufo.ogg %%DATADIR%%/sounds/en/moustache.ogg %%DATADIR%%/sounds/en/mouth.ogg %%DATADIR%%/sounds/en/nose.ogg %%DATADIR%%/sounds/en/pizzeria_anchovy.ogg %%DATADIR%%/sounds/en/pizzeria_bacon.ogg %%DATADIR%%/sounds/en/pizzeria_broccolli.ogg %%DATADIR%%/sounds/en/pizzeria_cheese.ogg %%DATADIR%%/sounds/en/pizzeria_cucumber.ogg %%DATADIR%%/sounds/en/pizzeria_mushroom.ogg %%DATADIR%%/sounds/en/pizzeria_olive.ogg %%DATADIR%%/sounds/en/pizzeria_onion.ogg %%DATADIR%%/sounds/en/pizzeria_oregano.ogg %%DATADIR%%/sounds/en/pizzeria_pepper.ogg %%DATADIR%%/sounds/en/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/en/pizzeria_pineapple.ogg %%DATADIR%%/sounds/en/pizzeria_salami.ogg %%DATADIR%%/sounds/en/pizzeria_tomato.ogg %%DATADIR%%/sounds/en/shoe.ogg %%DATADIR%%/sounds/en/shorts.ogg %%DATADIR%%/sounds/en/skirt.ogg %%DATADIR%%/sounds/en/spectacles.ogg %%DATADIR%%/sounds/en/stick.ogg %%DATADIR%%/sounds/en/sunglasses.ogg %%DATADIR%%/sounds/en/tie.ogg %%DATADIR%%/sounds/en/tv_bicycle.ogg %%DATADIR%%/sounds/en/tv_car.ogg %%DATADIR%%/sounds/en/tv_cyclist.ogg %%DATADIR%%/sounds/en/tv_train.ogg %%DATADIR%%/sounds/en/tv_tree.ogg %%DATADIR%%/sounds/en/umbrella.ogg %%DATADIR%%/sounds/es.soundtheme %%DATADIR%%/sounds/es/anteojos.wav %%DATADIR%%/sounds/es/bigote.wav %%DATADIR%%/sounds/es/boca.wav %%DATADIR%%/sounds/es/ceja.wav %%DATADIR%%/sounds/es/gafasdesol.wav %%DATADIR%%/sounds/es/lazo.wav %%DATADIR%%/sounds/es/nariz.wav %%DATADIR%%/sounds/es/ojo.wav %%DATADIR%%/sounds/es/oreja.wav %%DATADIR%%/sounds/es/pelo.wav %%DATADIR%%/sounds/es/pendiente.wav %%DATADIR%%/sounds/es/sombrero.wav %%DATADIR%%/sounds/fi.soundtheme %%DATADIR%%/sounds/fi/aurinkolasit.wav %%DATADIR%%/sounds/fi/hattu.wav %%DATADIR%%/sounds/fi/korva.wav %%DATADIR%%/sounds/fi/korvakoru.wav %%DATADIR%%/sounds/fi/kulmakarva.wav %%DATADIR%%/sounds/fi/nena.wav %%DATADIR%%/sounds/fi/rusetti.wav %%DATADIR%%/sounds/fi/silma.wav %%DATADIR%%/sounds/fi/silmalasit.wav %%DATADIR%%/sounds/fi/suu.wav %%DATADIR%%/sounds/fi/viikset.wav %%DATADIR%%/sounds/fr.soundtheme %%DATADIR%%/sounds/fr/bouche.wav %%DATADIR%%/sounds/fr/boucle-d-oreille.wav %%DATADIR%%/sounds/fr/chapeau.wav %%DATADIR%%/sounds/fr/cheveux.wav %%DATADIR%%/sounds/fr/cravate.wav %%DATADIR%%/sounds/fr/egypte_ane.wav %%DATADIR%%/sounds/fr/egypte_arche.wav %%DATADIR%%/sounds/fr/egypte_chameau.wav %%DATADIR%%/sounds/fr/egypte_charette.wav %%DATADIR%%/sounds/fr/egypte_colonne.wav %%DATADIR%%/sounds/fr/egypte_femme.wav %%DATADIR%%/sounds/fr/egypte_fille.wav %%DATADIR%%/sounds/fr/egypte_garcon.wav %%DATADIR%%/sounds/fr/egypte_herbe.wav %%DATADIR%%/sounds/fr/egypte_homme.wav %%DATADIR%%/sounds/fr/egypte_oasis.wav %%DATADIR%%/sounds/fr/egypte_oiseaux.wav %%DATADIR%%/sounds/fr/egypte_palmier.wav %%DATADIR%%/sounds/fr/egypte_pont.wav %%DATADIR%%/sounds/fr/egypte_puits.wav %%DATADIR%%/sounds/fr/egypte_pyramide.wav %%DATADIR%%/sounds/fr/egypte_route.wav %%DATADIR%%/sounds/fr/egypte_sphinx.wav %%DATADIR%%/sounds/fr/lune_astronaute.wav %%DATADIR%%/sounds/fr/lune_etoile-filante.wav %%DATADIR%%/sounds/fr/lune_etoile.wav %%DATADIR%%/sounds/fr/lune_extraterrestre.wav %%DATADIR%%/sounds/fr/lune_fusee.wav %%DATADIR%%/sounds/fr/lune_hotel.wav %%DATADIR%%/sounds/fr/lune_monstre.wav %%DATADIR%%/sounds/fr/lune_ovni.wav %%DATADIR%%/sounds/fr/lune_planete.wav %%DATADIR%%/sounds/fr/lune_radar.wav %%DATADIR%%/sounds/fr/lune_rover.wav %%DATADIR%%/sounds/fr/lune_satellite.wav %%DATADIR%%/sounds/fr/lune_signe.wav %%DATADIR%%/sounds/fr/lune_terre.wav %%DATADIR%%/sounds/fr/lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/lunettes.wav %%DATADIR%%/sounds/fr/moustache.wav %%DATADIR%%/sounds/fr/nez.wav %%DATADIR%%/sounds/fr/noel_Tux-le-pingouin.wav %%DATADIR%%/sounds/fr/noel_ange.wav %%DATADIR%%/sounds/fr/noel_arbre.wav %%DATADIR%%/sounds/fr/noel_bonhomme-de-neige.wav %%DATADIR%%/sounds/fr/noel_botte.wav %%DATADIR%%/sounds/fr/noel_bougie.wav %%DATADIR%%/sounds/fr/noel_boule-de-noel.wav %%DATADIR%%/sounds/fr/noel_boule.wav %%DATADIR%%/sounds/fr/noel_branche-de-gui.wav %%DATADIR%%/sounds/fr/noel_branche-de-houx.wav %%DATADIR%%/sounds/fr/noel_chaussure.wav %%DATADIR%%/sounds/fr/noel_chouette.wav %%DATADIR%%/sounds/fr/noel_comete.wav %%DATADIR%%/sounds/fr/noel_etoile.wav %%DATADIR%%/sounds/fr/noel_flocon.wav %%DATADIR%%/sounds/fr/noel_guirlande-lumineuse.wav %%DATADIR%%/sounds/fr/noel_guirlande.wav %%DATADIR%%/sounds/fr/noel_lapin.wav %%DATADIR%%/sounds/fr/noel_lune.wav %%DATADIR%%/sounds/fr/noel_paquet-cadeau.wav %%DATADIR%%/sounds/fr/noel_renne.wav %%DATADIR%%/sounds/fr/noel_tortue.wav %%DATADIR%%/sounds/fr/noeud-papillon.wav %%DATADIR%%/sounds/fr/oeil.wav %%DATADIR%%/sounds/fr/oreille.wav %%DATADIR%%/sounds/fr/papillons_aile.wav %%DATADIR%%/sounds/fr/papillons_ailes.wav %%DATADIR%%/sounds/fr/papillons_cercle.wav %%DATADIR%%/sounds/fr/papillons_cercles.wav %%DATADIR%%/sounds/fr/papillons_coeur.wav %%DATADIR%%/sounds/fr/papillons_corps.wav %%DATADIR%%/sounds/fr/papillons_forme-violette.wav %%DATADIR%%/sounds/fr/papillons_oeil.wav %%DATADIR%%/sounds/fr/papillons_spirale.wav %%DATADIR%%/sounds/fr/patate_ballon.wav %%DATADIR%%/sounds/fr/patate_baton.wav %%DATADIR%%/sounds/fr/patate_bouche.wav %%DATADIR%%/sounds/fr/patate_boucle-d-oreille.wav %%DATADIR%%/sounds/fr/patate_chapeau.wav %%DATADIR%%/sounds/fr/patate_chaussure.wav %%DATADIR%%/sounds/fr/patate_cheveu.wav %%DATADIR%%/sounds/fr/patate_cheveux.wav %%DATADIR%%/sounds/fr/patate_cravate.wav %%DATADIR%%/sounds/fr/patate_fleur.wav %%DATADIR%%/sounds/fr/patate_jupe.wav %%DATADIR%%/sounds/fr/patate_lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/patate_lunettes.wav %%DATADIR%%/sounds/fr/patate_manteau.wav %%DATADIR%%/sounds/fr/patate_moustache.wav %%DATADIR%%/sounds/fr/patate_nez.wav %%DATADIR%%/sounds/fr/patate_noeud-papillon.wav %%DATADIR%%/sounds/fr/patate_oeil.wav %%DATADIR%%/sounds/fr/patate_oreille.wav %%DATADIR%%/sounds/fr/patate_parapluie.wav %%DATADIR%%/sounds/fr/patate_short.wav %%DATADIR%%/sounds/fr/patate_sourcil.wav %%DATADIR%%/sounds/fr/pizzeria_ananas.wav %%DATADIR%%/sounds/fr/pizzeria_anchois.wav %%DATADIR%%/sounds/fr/pizzeria_brocoli.wav %%DATADIR%%/sounds/fr/pizzeria_champignon.wav %%DATADIR%%/sounds/fr/pizzeria_concombre.wav %%DATADIR%%/sounds/fr/pizzeria_fromage.wav %%DATADIR%%/sounds/fr/pizzeria_lardon.wav %%DATADIR%%/sounds/fr/pizzeria_oignon.wav %%DATADIR%%/sounds/fr/pizzeria_olive.wav %%DATADIR%%/sounds/fr/pizzeria_origan.wav %%DATADIR%%/sounds/fr/pizzeria_pepperoni.wav %%DATADIR%%/sounds/fr/pizzeria_piment.wav %%DATADIR%%/sounds/fr/pizzeria_poivre.wav %%DATADIR%%/sounds/fr/pizzeria_poivron.wav %%DATADIR%%/sounds/fr/pizzeria_salami.wav %%DATADIR%%/sounds/fr/pizzeria_tomate.wav %%DATADIR%%/sounds/fr/robin_Tux-Robin.wav %%DATADIR%%/sounds/fr/robin_Tux-l-enfant.wav %%DATADIR%%/sounds/fr/robin_Tux-la-jeune-fille.wav %%DATADIR%%/sounds/fr/robin_Tux-la-sorciere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-frere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-garde.wav %%DATADIR%%/sounds/fr/robin_Tux-le-petit.wav %%DATADIR%%/sounds/fr/robin_Tux-le-prince.wav %%DATADIR%%/sounds/fr/robin_Tux-le-sheriff.wav %%DATADIR%%/sounds/fr/robin_arc.wav %%DATADIR%%/sounds/fr/robin_assiette.wav %%DATADIR%%/sounds/fr/robin_avis-recherche.wav %%DATADIR%%/sounds/fr/robin_chandelles-allumees.wav %%DATADIR%%/sounds/fr/robin_chandelles.wav %%DATADIR%%/sounds/fr/robin_cible.wav %%DATADIR%%/sounds/fr/robin_cle.wav %%DATADIR%%/sounds/fr/robin_coupe.wav %%DATADIR%%/sounds/fr/robin_flacon.wav %%DATADIR%%/sounds/fr/robin_fleche.wav %%DATADIR%%/sounds/fr/robin_fleches.wav %%DATADIR%%/sounds/fr/robin_guitare.wav %%DATADIR%%/sounds/fr/robin_heu.wav %%DATADIR%%/sounds/fr/robin_j-ai-une-idee.wav %%DATADIR%%/sounds/fr/robin_j-aime.wav %%DATADIR%%/sounds/fr/robin_j-examine.wav %%DATADIR%%/sounds/fr/robin_je-dors.wav %%DATADIR%%/sounds/fr/robin_je-me-fache.wav %%DATADIR%%/sounds/fr/robin_je-ris.wav %%DATADIR%%/sounds/fr/robin_je-suis-malade.wav %%DATADIR%%/sounds/fr/robin_lettre.wav %%DATADIR%%/sounds/fr/robin_note.wav %%DATADIR%%/sounds/fr/robin_notes.wav %%DATADIR%%/sounds/fr/robin_pigeon-volant.wav %%DATADIR%%/sounds/fr/robin_pigeon.wav %%DATADIR%%/sounds/fr/robin_poison.wav %%DATADIR%%/sounds/fr/robin_poisson.wav %%DATADIR%%/sounds/fr/robin_pomme.wav %%DATADIR%%/sounds/fr/robin_quoi.wav %%DATADIR%%/sounds/fr/robin_tasse.wav %%DATADIR%%/sounds/fr/robin_tir.wav %%DATADIR%%/sounds/fr/robin_vase.wav %%DATADIR%%/sounds/fr/robin_wouah.wav %%DATADIR%%/sounds/fr/robot_antenne.wav %%DATADIR%%/sounds/fr/robot_ballon.wav %%DATADIR%%/sounds/fr/robot_base.wav %%DATADIR%%/sounds/fr/robot_bloc.wav %%DATADIR%%/sounds/fr/robot_bras.wav %%DATADIR%%/sounds/fr/robot_corps.wav %%DATADIR%%/sounds/fr/robot_fusee.wav %%DATADIR%%/sounds/fr/robot_main.wav %%DATADIR%%/sounds/fr/robot_oeil.wav %%DATADIR%%/sounds/fr/robot_panneau.wav %%DATADIR%%/sounds/fr/robot_pieds.wav %%DATADIR%%/sounds/fr/robot_pince.wav %%DATADIR%%/sounds/fr/robot_roue.wav %%DATADIR%%/sounds/fr/robot_tete.wav %%DATADIR%%/sounds/fr/robot_tige.wav %%DATADIR%%/sounds/fr/sourcil.wav %%DATADIR%%/sounds/fr/tv_accident.wav %%DATADIR%%/sounds/fr/tv_arbre.wav %%DATADIR%%/sounds/fr/tv_ballon.wav %%DATADIR%%/sounds/fr/tv_barriere.wav %%DATADIR%%/sounds/fr/tv_benne-basculante.wav %%DATADIR%%/sounds/fr/tv_bicyclette.wav %%DATADIR%%/sounds/fr/tv_camion-de-depannage.wav %%DATADIR%%/sounds/fr/tv_camion-de-pompier.wav %%DATADIR%%/sounds/fr/tv_camion.wav %%DATADIR%%/sounds/fr/tv_caravane.wav %%DATADIR%%/sounds/fr/tv_chemin.wav %%DATADIR%%/sounds/fr/tv_cloture.wav %%DATADIR%%/sounds/fr/tv_cycliste.wav %%DATADIR%%/sounds/fr/tv_echelle.wav %%DATADIR%%/sounds/fr/tv_ecole.wav %%DATADIR%%/sounds/fr/tv_elephant.wav %%DATADIR%%/sounds/fr/tv_femme.wav %%DATADIR%%/sounds/fr/tv_feu.wav %%DATADIR%%/sounds/fr/tv_filet-de-volley.wav %%DATADIR%%/sounds/fr/tv_fumee.wav %%DATADIR%%/sounds/fr/tv_girafe.wav %%DATADIR%%/sounds/fr/tv_guitare.wav %%DATADIR%%/sounds/fr/tv_guitariste.wav %%DATADIR%%/sounds/fr/tv_homme.wav %%DATADIR%%/sounds/fr/tv_lion.wav %%DATADIR%%/sounds/fr/tv_magasin.wav %%DATADIR%%/sounds/fr/tv_maison.wav %%DATADIR%%/sounds/fr/tv_mecanicien.wav %%DATADIR%%/sounds/fr/tv_pecheur.wav %%DATADIR%%/sounds/fr/tv_pompier.wav %%DATADIR%%/sounds/fr/tv_remorque.wav %%DATADIR%%/sounds/fr/tv_rocher.wav %%DATADIR%%/sounds/fr/tv_singe.wav %%DATADIR%%/sounds/fr/tv_tracteur-routier.wav %%DATADIR%%/sounds/fr/tv_tractopelle.wav %%DATADIR%%/sounds/fr/tv_train.wav %%DATADIR%%/sounds/fr/tv_tunnel.wav %%DATADIR%%/sounds/fr/tv_voiture.wav %%DATADIR%%/sounds/fr/tv_wagon.wav %%DATADIR%%/sounds/ga.soundtheme %%DATADIR%%/sounds/ga/beal.wav %%DATADIR%%/sounds/ga/carbhat.wav %%DATADIR%%/sounds/ga/cluas.wav %%DATADIR%%/sounds/ga/croimeal.wav %%DATADIR%%/sounds/ga/cuachog.wav %%DATADIR%%/sounds/ga/fainne-cluaise.wav %%DATADIR%%/sounds/ga/gruaig.wav %%DATADIR%%/sounds/ga/hata.wav %%DATADIR%%/sounds/ga/mala.wav %%DATADIR%%/sounds/ga/speaclai-greine.wav %%DATADIR%%/sounds/ga/speaclai.wav %%DATADIR%%/sounds/ga/sron.wav %%DATADIR%%/sounds/ga/suil.wav %%DATADIR%%/sounds/gl.soundtheme %%DATADIR%%/sounds/gl/ball.ogg %%DATADIR%%/sounds/gl/bow.ogg %%DATADIR%%/sounds/gl/coat.ogg %%DATADIR%%/sounds/gl/ear.ogg %%DATADIR%%/sounds/gl/earring.ogg %%DATADIR%%/sounds/gl/egypt_arch.ogg %%DATADIR%%/sounds/gl/egypt_birds.ogg %%DATADIR%%/sounds/gl/egypt_boy.ogg %%DATADIR%%/sounds/gl/egypt_bridge.ogg %%DATADIR%%/sounds/gl/egypt_camel.ogg %%DATADIR%%/sounds/gl/egypt_cart.ogg %%DATADIR%%/sounds/gl/egypt_column.ogg %%DATADIR%%/sounds/gl/egypt_donkey.ogg %%DATADIR%%/sounds/gl/egypt_girl.ogg %%DATADIR%%/sounds/gl/egypt_grass.ogg %%DATADIR%%/sounds/gl/egypt_man.ogg %%DATADIR%%/sounds/gl/egypt_oasis.ogg %%DATADIR%%/sounds/gl/egypt_palmtree.ogg %%DATADIR%%/sounds/gl/egypt_pyramid.ogg %%DATADIR%%/sounds/gl/egypt_road.ogg %%DATADIR%%/sounds/gl/egypt_sphynx.ogg %%DATADIR%%/sounds/gl/egypt_well.ogg %%DATADIR%%/sounds/gl/egypt_woman.ogg %%DATADIR%%/sounds/gl/eye.ogg %%DATADIR%%/sounds/gl/eyebrow.ogg %%DATADIR%%/sounds/gl/flower.ogg %%DATADIR%%/sounds/gl/hair.ogg %%DATADIR%%/sounds/gl/hat.ogg %%DATADIR%%/sounds/gl/moon_alien.ogg %%DATADIR%%/sounds/gl/moon_astronaut.ogg %%DATADIR%%/sounds/gl/moon_earth.ogg %%DATADIR%%/sounds/gl/moon_fallingstar.ogg %%DATADIR%%/sounds/gl/moon_hotel.ogg %%DATADIR%%/sounds/gl/moon_monster.ogg %%DATADIR%%/sounds/gl/moon_moonwalker.ogg %%DATADIR%%/sounds/gl/moon_planet.ogg %%DATADIR%%/sounds/gl/moon_radar.ogg %%DATADIR%%/sounds/gl/moon_rocket.ogg %%DATADIR%%/sounds/gl/moon_satellite.ogg %%DATADIR%%/sounds/gl/moon_sign.ogg %%DATADIR%%/sounds/gl/moon_star.ogg %%DATADIR%%/sounds/gl/moon_ufo.ogg %%DATADIR%%/sounds/gl/moustache.ogg %%DATADIR%%/sounds/gl/mouth.ogg %%DATADIR%%/sounds/gl/nose.ogg %%DATADIR%%/sounds/gl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/gl/pizzeria_bacon.ogg %%DATADIR%%/sounds/gl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/gl/pizzeria_cheese.ogg %%DATADIR%%/sounds/gl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/gl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/gl/pizzeria_olive.ogg %%DATADIR%%/sounds/gl/pizzeria_onion.ogg %%DATADIR%%/sounds/gl/pizzeria_oregano.ogg %%DATADIR%%/sounds/gl/pizzeria_pepper.ogg %%DATADIR%%/sounds/gl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/gl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/gl/pizzeria_salami.ogg %%DATADIR%%/sounds/gl/pizzeria_tomato.ogg %%DATADIR%%/sounds/gl/shoe.ogg %%DATADIR%%/sounds/gl/shorts.ogg %%DATADIR%%/sounds/gl/skirt.ogg %%DATADIR%%/sounds/gl/spectacles.ogg %%DATADIR%%/sounds/gl/stick.ogg %%DATADIR%%/sounds/gl/sunglasses.ogg %%DATADIR%%/sounds/gl/tie.ogg %%DATADIR%%/sounds/gl/tv_bicycle.ogg %%DATADIR%%/sounds/gl/tv_car.ogg %%DATADIR%%/sounds/gl/tv_cyclist.ogg %%DATADIR%%/sounds/gl/tv_train.ogg %%DATADIR%%/sounds/gl/umbrella.ogg %%DATADIR%%/sounds/id.soundtheme %%DATADIR%%/sounds/it.soundtheme %%DATADIR%%/sounds/it/baffi.wav %%DATADIR%%/sounds/it/bocca.wav %%DATADIR%%/sounds/it/capelli.wav %%DATADIR%%/sounds/it/cappello.wav %%DATADIR%%/sounds/it/cravatta.wav %%DATADIR%%/sounds/it/cravattino.wav %%DATADIR%%/sounds/it/naso.wav %%DATADIR%%/sounds/it/occhiali.wav %%DATADIR%%/sounds/it/occhialidasole.wav %%DATADIR%%/sounds/it/occhio.wav %%DATADIR%%/sounds/it/orecchino.wav %%DATADIR%%/sounds/it/orecchio.wav %%DATADIR%%/sounds/it/sopracciglio.wav %%DATADIR%%/sounds/lt.soundtheme %%DATADIR%%/sounds/lt/ball.ogg %%DATADIR%%/sounds/lt/bow.ogg %%DATADIR%%/sounds/lt/coat.ogg %%DATADIR%%/sounds/lt/ear.ogg %%DATADIR%%/sounds/lt/earring.ogg %%DATADIR%%/sounds/lt/egypt_arch.ogg %%DATADIR%%/sounds/lt/egypt_birds.ogg %%DATADIR%%/sounds/lt/egypt_boy.ogg %%DATADIR%%/sounds/lt/egypt_bridge.ogg %%DATADIR%%/sounds/lt/egypt_camel.ogg %%DATADIR%%/sounds/lt/egypt_cart.ogg %%DATADIR%%/sounds/lt/egypt_column.ogg %%DATADIR%%/sounds/lt/egypt_donkey.ogg %%DATADIR%%/sounds/lt/egypt_girl.ogg %%DATADIR%%/sounds/lt/egypt_grass.ogg %%DATADIR%%/sounds/lt/egypt_man.ogg %%DATADIR%%/sounds/lt/egypt_oasis.ogg %%DATADIR%%/sounds/lt/egypt_palmtree.ogg %%DATADIR%%/sounds/lt/egypt_pyramid.ogg %%DATADIR%%/sounds/lt/egypt_road.ogg %%DATADIR%%/sounds/lt/egypt_sphynx.ogg %%DATADIR%%/sounds/lt/egypt_well.ogg %%DATADIR%%/sounds/lt/egypt_woman.ogg %%DATADIR%%/sounds/lt/eye.ogg %%DATADIR%%/sounds/lt/eyebrow.ogg %%DATADIR%%/sounds/lt/flower.ogg %%DATADIR%%/sounds/lt/frier-tux.ogg %%DATADIR%%/sounds/lt/guard-tux.ogg %%DATADIR%%/sounds/lt/hair.ogg %%DATADIR%%/sounds/lt/hat.ogg %%DATADIR%%/sounds/lt/kid-tux.ogg %%DATADIR%%/sounds/lt/little-tux.ogg %%DATADIR%%/sounds/lt/maiden-tux.ogg %%DATADIR%%/sounds/lt/moon_alien.ogg %%DATADIR%%/sounds/lt/moon_astronaut.ogg %%DATADIR%%/sounds/lt/moon_earth.ogg %%DATADIR%%/sounds/lt/moon_fallingstar.ogg %%DATADIR%%/sounds/lt/moon_hotel.ogg %%DATADIR%%/sounds/lt/moon_monster.ogg %%DATADIR%%/sounds/lt/moon_moonwalker.ogg %%DATADIR%%/sounds/lt/moon_planet.ogg %%DATADIR%%/sounds/lt/moon_radar.ogg %%DATADIR%%/sounds/lt/moon_rocket.ogg %%DATADIR%%/sounds/lt/moon_satellite.ogg %%DATADIR%%/sounds/lt/moon_sign.ogg %%DATADIR%%/sounds/lt/moon_star.ogg %%DATADIR%%/sounds/lt/moon_ufo.ogg %%DATADIR%%/sounds/lt/moustache.ogg %%DATADIR%%/sounds/lt/mouth.ogg %%DATADIR%%/sounds/lt/nose.ogg %%DATADIR%%/sounds/lt/pizzeria_anchovy.ogg %%DATADIR%%/sounds/lt/pizzeria_bacon.ogg %%DATADIR%%/sounds/lt/pizzeria_broccolli.ogg %%DATADIR%%/sounds/lt/pizzeria_cheese.ogg %%DATADIR%%/sounds/lt/pizzeria_cucumber.ogg %%DATADIR%%/sounds/lt/pizzeria_mushroom.ogg %%DATADIR%%/sounds/lt/pizzeria_olive.ogg %%DATADIR%%/sounds/lt/pizzeria_onion.ogg %%DATADIR%%/sounds/lt/pizzeria_oregano.ogg %%DATADIR%%/sounds/lt/pizzeria_pepper.ogg %%DATADIR%%/sounds/lt/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/lt/pizzeria_pineapple.ogg %%DATADIR%%/sounds/lt/pizzeria_salami.ogg %%DATADIR%%/sounds/lt/pizzeria_tomato.ogg %%DATADIR%%/sounds/lt/prince-tux.ogg %%DATADIR%%/sounds/lt/robin-tux.ogg %%DATADIR%%/sounds/lt/sherif-tux.ogg %%DATADIR%%/sounds/lt/shoe.ogg %%DATADIR%%/sounds/lt/shorts.ogg %%DATADIR%%/sounds/lt/skirt.ogg %%DATADIR%%/sounds/lt/spectacles.ogg %%DATADIR%%/sounds/lt/stick.ogg %%DATADIR%%/sounds/lt/sunglasses.ogg %%DATADIR%%/sounds/lt/tie.ogg %%DATADIR%%/sounds/lt/tux-angry.ogg %%DATADIR%%/sounds/lt/tux-apple.ogg %%DATADIR%%/sounds/lt/tux-arrow.ogg %%DATADIR%%/sounds/lt/tux-arrows.ogg %%DATADIR%%/sounds/lt/tux-bow.ogg %%DATADIR%%/sounds/lt/tux-bullseye.ogg %%DATADIR%%/sounds/lt/tux-candles.ogg %%DATADIR%%/sounds/lt/tux-dowe.ogg %%DATADIR%%/sounds/lt/tux-fish.ogg %%DATADIR%%/sounds/lt/tux-flask.ogg %%DATADIR%%/sounds/lt/tux-fly.ogg %%DATADIR%%/sounds/lt/tux-goblet.ogg %%DATADIR%%/sounds/lt/tux-guitar.ogg %%DATADIR%%/sounds/lt/tux-huh.ogg %%DATADIR%%/sounds/lt/tux-idea.ogg %%DATADIR%%/sounds/lt/tux-key.ogg %%DATADIR%%/sounds/lt/tux-laugh.ogg %%DATADIR%%/sounds/lt/tux-letter.ogg %%DATADIR%%/sounds/lt/tux-love.ogg %%DATADIR%%/sounds/lt/tux-note.ogg %%DATADIR%%/sounds/lt/tux-notes.ogg %%DATADIR%%/sounds/lt/tux-plate.ogg %%DATADIR%%/sounds/lt/tux-poison.ogg %%DATADIR%%/sounds/lt/tux-shoot.ogg %%DATADIR%%/sounds/lt/tux-sick.ogg %%DATADIR%%/sounds/lt/tux-stare.ogg %%DATADIR%%/sounds/lt/tux-teacup.ogg %%DATADIR%%/sounds/lt/tux-vase.ogg %%DATADIR%%/sounds/lt/tux-wanted.ogg %%DATADIR%%/sounds/lt/tux-what.ogg %%DATADIR%%/sounds/lt/tux-wow.ogg %%DATADIR%%/sounds/lt/tux-zzz.ogg %%DATADIR%%/sounds/lt/tv_accident.ogg %%DATADIR%%/sounds/lt/tv_ball.ogg %%DATADIR%%/sounds/lt/tv_barrier.ogg %%DATADIR%%/sounds/lt/tv_bicycle.ogg %%DATADIR%%/sounds/lt/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/lt/tv_car.ogg %%DATADIR%%/sounds/lt/tv_caravan.ogg %%DATADIR%%/sounds/lt/tv_cyclist.ogg %%DATADIR%%/sounds/lt/tv_elephant.ogg %%DATADIR%%/sounds/lt/tv_excavator.ogg %%DATADIR%%/sounds/lt/tv_fence.ogg %%DATADIR%%/sounds/lt/tv_fire.ogg %%DATADIR%%/sounds/lt/tv_fireengine.ogg %%DATADIR%%/sounds/lt/tv_fireman.ogg %%DATADIR%%/sounds/lt/tv_fisherman.ogg %%DATADIR%%/sounds/lt/tv_giraffe.ogg %%DATADIR%%/sounds/lt/tv_guitar.ogg %%DATADIR%%/sounds/lt/tv_guitarist.ogg %%DATADIR%%/sounds/lt/tv_house.ogg %%DATADIR%%/sounds/lt/tv_ladder.ogg %%DATADIR%%/sounds/lt/tv_lion.ogg %%DATADIR%%/sounds/lt/tv_lorry.ogg %%DATADIR%%/sounds/lt/tv_lorry_tractor.ogg %%DATADIR%%/sounds/lt/tv_man.ogg %%DATADIR%%/sounds/lt/tv_mechanic.ogg %%DATADIR%%/sounds/lt/tv_monkey.ogg %%DATADIR%%/sounds/lt/tv_path.ogg %%DATADIR%%/sounds/lt/tv_rock.ogg %%DATADIR%%/sounds/lt/tv_school.ogg %%DATADIR%%/sounds/lt/tv_shop.ogg %%DATADIR%%/sounds/lt/tv_smoke.ogg %%DATADIR%%/sounds/lt/tv_tipper.ogg %%DATADIR%%/sounds/lt/tv_trailer.ogg %%DATADIR%%/sounds/lt/tv_train.ogg %%DATADIR%%/sounds/lt/tv_tree.ogg %%DATADIR%%/sounds/lt/tv_tunnel.ogg %%DATADIR%%/sounds/lt/tv_volley_net.ogg %%DATADIR%%/sounds/lt/tv_wagon.ogg %%DATADIR%%/sounds/lt/tv_woman.ogg %%DATADIR%%/sounds/lt/umbrella.ogg %%DATADIR%%/sounds/lt/whitch-tux.ogg %%DATADIR%%/sounds/lt/xmas_angel.ogg %%DATADIR%%/sounds/lt/xmas_ball.ogg %%DATADIR%%/sounds/lt/xmas_boot.ogg %%DATADIR%%/sounds/lt/xmas_candle.ogg %%DATADIR%%/sounds/lt/xmas_comet.ogg %%DATADIR%%/sounds/lt/xmas_garland.ogg %%DATADIR%%/sounds/lt/xmas_lights.ogg %%DATADIR%%/sounds/lt/xmas_mistletoe.ogg %%DATADIR%%/sounds/lt/xmas_moon.ogg %%DATADIR%%/sounds/lt/xmas_owl.ogg %%DATADIR%%/sounds/lt/xmas_present.ogg %%DATADIR%%/sounds/lt/xmas_rabbit.ogg %%DATADIR%%/sounds/lt/xmas_reindeer.ogg %%DATADIR%%/sounds/lt/xmas_shoe.ogg %%DATADIR%%/sounds/lt/xmas_snowflake.ogg %%DATADIR%%/sounds/lt/xmas_snowman.ogg %%DATADIR%%/sounds/lt/xmas_star.ogg %%DATADIR%%/sounds/lt/xmas_tree.ogg %%DATADIR%%/sounds/lt/xmas_turtle.ogg %%DATADIR%%/sounds/lt/xmas_tux.ogg %%DATADIR%%/sounds/nds.soundtheme %%DATADIR%%/sounds/nds/brill.wav %%DATADIR%%/sounds/nds/farken.wav %%DATADIR%%/sounds/nds/fleeg.wav %%DATADIR%%/sounds/nds/hoor.wav %%DATADIR%%/sounds/nds/hoot.wav %%DATADIR%%/sounds/nds/mund.wav %%DATADIR%%/sounds/nds/nees.wav %%DATADIR%%/sounds/nds/neesboort.wav %%DATADIR%%/sounds/nds/ohr.wav %%DATADIR%%/sounds/nds/ohrring.wav %%DATADIR%%/sounds/nds/oog.wav %%DATADIR%%/sounds/nds/oogbro.wav %%DATADIR%%/sounds/nds/slips.wav %%DATADIR%%/sounds/nds/suennbrill.wav %%DATADIR%%/sounds/nl.soundtheme %%DATADIR%%/sounds/nl/bril.wav %%DATADIR%%/sounds/nl/haar.wav %%DATADIR%%/sounds/nl/hoed.wav %%DATADIR%%/sounds/nl/mond.wav %%DATADIR%%/sounds/nl/neus.wav %%DATADIR%%/sounds/nl/oog.wav %%DATADIR%%/sounds/nl/oor.wav %%DATADIR%%/sounds/nl/oorbel.wav %%DATADIR%%/sounds/nl/snor.wav %%DATADIR%%/sounds/nl/strik.wav %%DATADIR%%/sounds/nl/stropdas.wav %%DATADIR%%/sounds/nl/wenkbrauw.wav %%DATADIR%%/sounds/nl/zonnebril.wav %%DATADIR%%/sounds/pt.soundtheme %%DATADIR%%/sounds/pt/bigode.wav %%DATADIR%%/sounds/pt/boca.wav %%DATADIR%%/sounds/pt/brincos.wav %%DATADIR%%/sounds/pt/cabelo.wav %%DATADIR%%/sounds/pt/chapeu.wav %%DATADIR%%/sounds/pt/gravata.wav %%DATADIR%%/sounds/pt/laco.wav %%DATADIR%%/sounds/pt/nariz.wav %%DATADIR%%/sounds/pt/oculos-de-sol.wav %%DATADIR%%/sounds/pt/oculos.wav %%DATADIR%%/sounds/pt/olho.wav %%DATADIR%%/sounds/pt/orelha.wav %%DATADIR%%/sounds/pt/sobrancelha.wav %%DATADIR%%/sounds/ro.soundtheme %%DATADIR%%/sounds/ro/cercel.wav %%DATADIR%%/sounds/ro/cravata.wav %%DATADIR%%/sounds/ro/gura.wav %%DATADIR%%/sounds/ro/mustata.wav %%DATADIR%%/sounds/ro/nas.wav %%DATADIR%%/sounds/ro/ochelari-de-soare.wav %%DATADIR%%/sounds/ro/ochelari.wav %%DATADIR%%/sounds/ro/ochi.wav %%DATADIR%%/sounds/ro/palarie.wav %%DATADIR%%/sounds/ro/papion.wav %%DATADIR%%/sounds/ro/par.wav %%DATADIR%%/sounds/ro/sprinceana.wav %%DATADIR%%/sounds/ro/ureche.wav %%DATADIR%%/sounds/ru.soundtheme %%DATADIR%%/sounds/ru/ball.ogg %%DATADIR%%/sounds/ru/bow.ogg %%DATADIR%%/sounds/ru/coat.ogg %%DATADIR%%/sounds/ru/ear.ogg %%DATADIR%%/sounds/ru/earring.ogg %%DATADIR%%/sounds/ru/egypt_arch.ogg %%DATADIR%%/sounds/ru/egypt_birds.ogg %%DATADIR%%/sounds/ru/egypt_boy.ogg %%DATADIR%%/sounds/ru/egypt_bridge.ogg %%DATADIR%%/sounds/ru/egypt_camel.ogg %%DATADIR%%/sounds/ru/egypt_cart.ogg %%DATADIR%%/sounds/ru/egypt_column.ogg %%DATADIR%%/sounds/ru/egypt_donkey.ogg %%DATADIR%%/sounds/ru/egypt_girl.ogg %%DATADIR%%/sounds/ru/egypt_grass.ogg %%DATADIR%%/sounds/ru/egypt_man.ogg %%DATADIR%%/sounds/ru/egypt_oasis.ogg %%DATADIR%%/sounds/ru/egypt_palmtree.ogg %%DATADIR%%/sounds/ru/egypt_pyramid.ogg %%DATADIR%%/sounds/ru/egypt_road.ogg %%DATADIR%%/sounds/ru/egypt_sphynx.ogg %%DATADIR%%/sounds/ru/egypt_well.ogg %%DATADIR%%/sounds/ru/egypt_woman.ogg %%DATADIR%%/sounds/ru/eye.ogg %%DATADIR%%/sounds/ru/eyebrow.ogg %%DATADIR%%/sounds/ru/flower.ogg %%DATADIR%%/sounds/ru/frier-tux.ogg %%DATADIR%%/sounds/ru/guard-tux.ogg %%DATADIR%%/sounds/ru/hair.ogg %%DATADIR%%/sounds/ru/hat.ogg %%DATADIR%%/sounds/ru/kid-tux.ogg %%DATADIR%%/sounds/ru/little-tux.ogg %%DATADIR%%/sounds/ru/maiden-tux.ogg %%DATADIR%%/sounds/ru/moon_alien.ogg %%DATADIR%%/sounds/ru/moon_astronaut.ogg %%DATADIR%%/sounds/ru/moon_earth.ogg %%DATADIR%%/sounds/ru/moon_fallingstar.ogg %%DATADIR%%/sounds/ru/moon_hotel.ogg %%DATADIR%%/sounds/ru/moon_monster.ogg %%DATADIR%%/sounds/ru/moon_moonwalker.ogg %%DATADIR%%/sounds/ru/moon_planet.ogg %%DATADIR%%/sounds/ru/moon_radar.ogg %%DATADIR%%/sounds/ru/moon_rocket.ogg %%DATADIR%%/sounds/ru/moon_satellite.ogg %%DATADIR%%/sounds/ru/moon_sign.ogg %%DATADIR%%/sounds/ru/moon_star.ogg %%DATADIR%%/sounds/ru/moon_ufo.ogg %%DATADIR%%/sounds/ru/moustache.ogg %%DATADIR%%/sounds/ru/mouth.ogg %%DATADIR%%/sounds/ru/nose.ogg %%DATADIR%%/sounds/ru/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ru/pizzeria_bacon.ogg %%DATADIR%%/sounds/ru/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ru/pizzeria_cheese.ogg %%DATADIR%%/sounds/ru/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ru/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ru/pizzeria_olive.ogg %%DATADIR%%/sounds/ru/pizzeria_onion.ogg %%DATADIR%%/sounds/ru/pizzeria_oregano.ogg %%DATADIR%%/sounds/ru/pizzeria_pepper.ogg %%DATADIR%%/sounds/ru/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ru/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ru/pizzeria_salami.ogg %%DATADIR%%/sounds/ru/pizzeria_tomato.ogg %%DATADIR%%/sounds/ru/prince-tux.ogg %%DATADIR%%/sounds/ru/robin-tux.ogg %%DATADIR%%/sounds/ru/sherif-tux.ogg %%DATADIR%%/sounds/ru/shoe.ogg %%DATADIR%%/sounds/ru/shorts.ogg %%DATADIR%%/sounds/ru/skirt.ogg %%DATADIR%%/sounds/ru/spectacles.ogg %%DATADIR%%/sounds/ru/stick.ogg %%DATADIR%%/sounds/ru/sunglasses.ogg %%DATADIR%%/sounds/ru/tie.ogg %%DATADIR%%/sounds/ru/tux-angry.ogg %%DATADIR%%/sounds/ru/tux-apple.ogg %%DATADIR%%/sounds/ru/tux-arrow.ogg %%DATADIR%%/sounds/ru/tux-arrows.ogg %%DATADIR%%/sounds/ru/tux-bow.ogg %%DATADIR%%/sounds/ru/tux-bullseye.ogg %%DATADIR%%/sounds/ru/tux-dowe.ogg %%DATADIR%%/sounds/ru/tux-fish.ogg %%DATADIR%%/sounds/ru/tux-flask.ogg %%DATADIR%%/sounds/ru/tux-fly.ogg %%DATADIR%%/sounds/ru/tux-goblet.ogg %%DATADIR%%/sounds/ru/tux-guitar.ogg %%DATADIR%%/sounds/ru/tux-huh.ogg %%DATADIR%%/sounds/ru/tux-idea.ogg %%DATADIR%%/sounds/ru/tux-key.ogg %%DATADIR%%/sounds/ru/tux-laugh.ogg %%DATADIR%%/sounds/ru/tux-letter.ogg %%DATADIR%%/sounds/ru/tux-love.ogg %%DATADIR%%/sounds/ru/tux-note.ogg %%DATADIR%%/sounds/ru/tux-notes.ogg %%DATADIR%%/sounds/ru/tux-plate.ogg %%DATADIR%%/sounds/ru/tux-poison.ogg %%DATADIR%%/sounds/ru/tux-shoot.ogg %%DATADIR%%/sounds/ru/tux-sick.ogg %%DATADIR%%/sounds/ru/tux-stare.ogg %%DATADIR%%/sounds/ru/tux-teacup.ogg %%DATADIR%%/sounds/ru/tux-vase.ogg %%DATADIR%%/sounds/ru/tux-what.ogg %%DATADIR%%/sounds/ru/tux-wow.ogg %%DATADIR%%/sounds/ru/tux-zzz.ogg %%DATADIR%%/sounds/ru/tv_accident.ogg %%DATADIR%%/sounds/ru/tv_ball.ogg %%DATADIR%%/sounds/ru/tv_barrier.ogg %%DATADIR%%/sounds/ru/tv_bicycle.ogg %%DATADIR%%/sounds/ru/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ru/tv_car.ogg %%DATADIR%%/sounds/ru/tv_caravan.ogg %%DATADIR%%/sounds/ru/tv_cyclist.ogg %%DATADIR%%/sounds/ru/tv_elephant.ogg %%DATADIR%%/sounds/ru/tv_excavator.ogg %%DATADIR%%/sounds/ru/tv_fence.ogg %%DATADIR%%/sounds/ru/tv_fire.ogg %%DATADIR%%/sounds/ru/tv_fireengine.ogg %%DATADIR%%/sounds/ru/tv_fireman.ogg %%DATADIR%%/sounds/ru/tv_fisherman.ogg %%DATADIR%%/sounds/ru/tv_giraffe.ogg %%DATADIR%%/sounds/ru/tv_guitar.ogg %%DATADIR%%/sounds/ru/tv_guitarist.ogg %%DATADIR%%/sounds/ru/tv_house.ogg %%DATADIR%%/sounds/ru/tv_ladder.ogg %%DATADIR%%/sounds/ru/tv_lion.ogg %%DATADIR%%/sounds/ru/tv_lorry.ogg %%DATADIR%%/sounds/ru/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ru/tv_man.ogg %%DATADIR%%/sounds/ru/tv_mechanic.ogg %%DATADIR%%/sounds/ru/tv_monkey.ogg %%DATADIR%%/sounds/ru/tv_path.ogg %%DATADIR%%/sounds/ru/tv_rock.ogg %%DATADIR%%/sounds/ru/tv_school.ogg %%DATADIR%%/sounds/ru/tv_shop.ogg %%DATADIR%%/sounds/ru/tv_smoke.ogg %%DATADIR%%/sounds/ru/tv_tipper.ogg %%DATADIR%%/sounds/ru/tv_trailer.ogg %%DATADIR%%/sounds/ru/tv_train.ogg %%DATADIR%%/sounds/ru/tv_tree.ogg %%DATADIR%%/sounds/ru/tv_tunnel.ogg %%DATADIR%%/sounds/ru/tv_volley_net.ogg %%DATADIR%%/sounds/ru/tv_wagon.ogg %%DATADIR%%/sounds/ru/tv_woman.ogg %%DATADIR%%/sounds/ru/umbrella.ogg %%DATADIR%%/sounds/ru/whitch-tux.ogg %%DATADIR%%/sounds/ru/xmas_angel.ogg %%DATADIR%%/sounds/ru/xmas_ball.ogg %%DATADIR%%/sounds/ru/xmas_boot.ogg %%DATADIR%%/sounds/ru/xmas_candle.ogg %%DATADIR%%/sounds/ru/xmas_comet.ogg %%DATADIR%%/sounds/ru/xmas_garland.ogg %%DATADIR%%/sounds/ru/xmas_lights.ogg %%DATADIR%%/sounds/ru/xmas_mistletoe.ogg %%DATADIR%%/sounds/ru/xmas_moon.ogg %%DATADIR%%/sounds/ru/xmas_owl.ogg %%DATADIR%%/sounds/ru/xmas_present.ogg %%DATADIR%%/sounds/ru/xmas_rabbit.ogg %%DATADIR%%/sounds/ru/xmas_reindeer.ogg %%DATADIR%%/sounds/ru/xmas_shoe.ogg %%DATADIR%%/sounds/ru/xmas_snowflake.ogg %%DATADIR%%/sounds/ru/xmas_snowman.ogg %%DATADIR%%/sounds/ru/xmas_star.ogg %%DATADIR%%/sounds/ru/xmas_tree.ogg %%DATADIR%%/sounds/ru/xmas_turtle.ogg %%DATADIR%%/sounds/ru/xmas_tux.ogg %%DATADIR%%/sounds/sl.soundtheme %%DATADIR%%/sounds/sl/ball.ogg %%DATADIR%%/sounds/sl/bow.ogg %%DATADIR%%/sounds/sl/coat.ogg %%DATADIR%%/sounds/sl/ear.ogg %%DATADIR%%/sounds/sl/earring.ogg %%DATADIR%%/sounds/sl/egypt_arch.ogg %%DATADIR%%/sounds/sl/egypt_birds.ogg %%DATADIR%%/sounds/sl/egypt_boy.ogg %%DATADIR%%/sounds/sl/egypt_bridge.ogg %%DATADIR%%/sounds/sl/egypt_camel.ogg %%DATADIR%%/sounds/sl/egypt_cart.ogg %%DATADIR%%/sounds/sl/egypt_column.ogg %%DATADIR%%/sounds/sl/egypt_donkey.ogg %%DATADIR%%/sounds/sl/egypt_girl.ogg %%DATADIR%%/sounds/sl/egypt_grass.ogg %%DATADIR%%/sounds/sl/egypt_man.ogg %%DATADIR%%/sounds/sl/egypt_oasis.ogg %%DATADIR%%/sounds/sl/egypt_palmtree.ogg %%DATADIR%%/sounds/sl/egypt_pyramid.ogg %%DATADIR%%/sounds/sl/egypt_road.ogg %%DATADIR%%/sounds/sl/egypt_sphynx.ogg %%DATADIR%%/sounds/sl/egypt_well.ogg %%DATADIR%%/sounds/sl/egypt_woman.ogg %%DATADIR%%/sounds/sl/eye.ogg %%DATADIR%%/sounds/sl/eyebrow.ogg %%DATADIR%%/sounds/sl/flower.ogg %%DATADIR%%/sounds/sl/hair.ogg %%DATADIR%%/sounds/sl/hat.ogg %%DATADIR%%/sounds/sl/moon_alien.ogg %%DATADIR%%/sounds/sl/moon_astronaut.ogg %%DATADIR%%/sounds/sl/moon_earth.ogg %%DATADIR%%/sounds/sl/moon_fallingstar.ogg %%DATADIR%%/sounds/sl/moon_hotel.ogg %%DATADIR%%/sounds/sl/moon_monster.ogg %%DATADIR%%/sounds/sl/moon_planet.ogg %%DATADIR%%/sounds/sl/moon_radar.ogg %%DATADIR%%/sounds/sl/moon_robot.ogg %%DATADIR%%/sounds/sl/moon_rocket.ogg %%DATADIR%%/sounds/sl/moon_satellite.ogg %%DATADIR%%/sounds/sl/moon_sign.ogg %%DATADIR%%/sounds/sl/moon_star.ogg %%DATADIR%%/sounds/sl/moon_ufo.ogg %%DATADIR%%/sounds/sl/moustache.ogg %%DATADIR%%/sounds/sl/mouth.ogg %%DATADIR%%/sounds/sl/nose.ogg %%DATADIR%%/sounds/sl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/sl/pizzeria_bacon.ogg %%DATADIR%%/sounds/sl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/sl/pizzeria_cheese.ogg %%DATADIR%%/sounds/sl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/sl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/sl/pizzeria_olive.ogg %%DATADIR%%/sounds/sl/pizzeria_onion.ogg %%DATADIR%%/sounds/sl/pizzeria_oregano.ogg %%DATADIR%%/sounds/sl/pizzeria_pepper.ogg %%DATADIR%%/sounds/sl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/sl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/sl/pizzeria_salami.ogg %%DATADIR%%/sounds/sl/pizzeria_tomato.ogg %%DATADIR%%/sounds/sl/shoe.ogg %%DATADIR%%/sounds/sl/shorts.ogg %%DATADIR%%/sounds/sl/skirt.ogg %%DATADIR%%/sounds/sl/spectacles.ogg %%DATADIR%%/sounds/sl/stick.ogg %%DATADIR%%/sounds/sl/sunglasses.ogg %%DATADIR%%/sounds/sl/tie.ogg %%DATADIR%%/sounds/sl/tv_bicycle.ogg %%DATADIR%%/sounds/sl/tv_car.ogg %%DATADIR%%/sounds/sl/tv_cyclist.ogg %%DATADIR%%/sounds/sl/tv_train.ogg %%DATADIR%%/sounds/sl/umbrella.ogg %%DATADIR%%/sounds/sr.soundtheme %%DATADIR%%/sounds/sr/brkovi.ogg %%DATADIR%%/sounds/sr/cigara.ogg %%DATADIR%%/sounds/sr/krompirko.ogg %%DATADIR%%/sounds/sr/masna.ogg %%DATADIR%%/sounds/sr/mindjusa.ogg %%DATADIR%%/sounds/sr/naocare.ogg %%DATADIR%%/sounds/sr/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr/nos.ogg %%DATADIR%%/sounds/sr/obrva.ogg %%DATADIR%%/sounds/sr/oko.ogg %%DATADIR%%/sounds/sr/sat.ogg %%DATADIR%%/sounds/sr/sesir.ogg %%DATADIR%%/sounds/sr/usta.ogg %%DATADIR%%/sounds/sr/uvo.ogg %%DATADIR%%/sounds/sr/znacka.ogg -%%DATADIR%%/sounds/sr@ijekavian.soundtheme -%%DATADIR%%/sounds/sr@ijekavianlatin.soundtheme -%%DATADIR%%/sounds/sr@latin.soundtheme %%DATADIR%%/sounds/sv.soundtheme %%DATADIR%%/sounds/sv/fluga.wav %%DATADIR%%/sounds/sv/glasogon.wav %%DATADIR%%/sounds/sv/har.wav %%DATADIR%%/sounds/sv/hatt.wav %%DATADIR%%/sounds/sv/mun.wav %%DATADIR%%/sounds/sv/mustasch.wav %%DATADIR%%/sounds/sv/nasa.wav %%DATADIR%%/sounds/sv/oga.wav %%DATADIR%%/sounds/sv/ogonbryn.wav %%DATADIR%%/sounds/sv/ora.wav %%DATADIR%%/sounds/sv/orhange.wav %%DATADIR%%/sounds/sv/rosett.wav %%DATADIR%%/sounds/sv/slips.wav %%DATADIR%%/sounds/sv/solglasogon.wav %%DATADIR%%/sounds/uk.soundtheme %%DATADIR%%/sounds/uk/ball.ogg %%DATADIR%%/sounds/uk/bow.ogg %%DATADIR%%/sounds/uk/butterflies_body.ogg %%DATADIR%%/sounds/uk/butterflies_circle.ogg %%DATADIR%%/sounds/uk/butterflies_circles.ogg %%DATADIR%%/sounds/uk/butterflies_eye.ogg %%DATADIR%%/sounds/uk/butterflies_heart.ogg %%DATADIR%%/sounds/uk/butterflies_purple_shape.ogg %%DATADIR%%/sounds/uk/butterflies_spiral.ogg %%DATADIR%%/sounds/uk/butterflies_wing.ogg %%DATADIR%%/sounds/uk/coat.ogg %%DATADIR%%/sounds/uk/ear.ogg %%DATADIR%%/sounds/uk/earring.ogg %%DATADIR%%/sounds/uk/egypt_arch.ogg %%DATADIR%%/sounds/uk/egypt_birds.ogg %%DATADIR%%/sounds/uk/egypt_boy.ogg %%DATADIR%%/sounds/uk/egypt_bridge.ogg %%DATADIR%%/sounds/uk/egypt_camel.ogg %%DATADIR%%/sounds/uk/egypt_cart.ogg %%DATADIR%%/sounds/uk/egypt_column.ogg %%DATADIR%%/sounds/uk/egypt_donkey.ogg %%DATADIR%%/sounds/uk/egypt_girl.ogg %%DATADIR%%/sounds/uk/egypt_grass.ogg %%DATADIR%%/sounds/uk/egypt_man.ogg %%DATADIR%%/sounds/uk/egypt_oasis.ogg %%DATADIR%%/sounds/uk/egypt_palmtree.ogg %%DATADIR%%/sounds/uk/egypt_pyramid.ogg %%DATADIR%%/sounds/uk/egypt_road.ogg %%DATADIR%%/sounds/uk/egypt_sphynx.ogg %%DATADIR%%/sounds/uk/egypt_well.ogg %%DATADIR%%/sounds/uk/egypt_woman.ogg %%DATADIR%%/sounds/uk/eye.ogg %%DATADIR%%/sounds/uk/eyebrow.ogg %%DATADIR%%/sounds/uk/flower.ogg %%DATADIR%%/sounds/uk/frier-tux.ogg %%DATADIR%%/sounds/uk/guard-tux.ogg %%DATADIR%%/sounds/uk/hair.ogg %%DATADIR%%/sounds/uk/hat.ogg %%DATADIR%%/sounds/uk/kid-tux.ogg %%DATADIR%%/sounds/uk/little-tux.ogg %%DATADIR%%/sounds/uk/maiden-tux.ogg %%DATADIR%%/sounds/uk/moon_alien.ogg %%DATADIR%%/sounds/uk/moon_astronaut.ogg %%DATADIR%%/sounds/uk/moon_earth.ogg %%DATADIR%%/sounds/uk/moon_fallingstar.ogg %%DATADIR%%/sounds/uk/moon_hotel.ogg %%DATADIR%%/sounds/uk/moon_monster.ogg %%DATADIR%%/sounds/uk/moon_moonwalker.ogg %%DATADIR%%/sounds/uk/moon_planet.ogg %%DATADIR%%/sounds/uk/moon_radar.ogg %%DATADIR%%/sounds/uk/moon_rocket.ogg %%DATADIR%%/sounds/uk/moon_satellite.ogg %%DATADIR%%/sounds/uk/moon_sign.ogg %%DATADIR%%/sounds/uk/moon_star.ogg %%DATADIR%%/sounds/uk/moon_ufo.ogg %%DATADIR%%/sounds/uk/moustache.ogg %%DATADIR%%/sounds/uk/mouth.ogg %%DATADIR%%/sounds/uk/nose.ogg %%DATADIR%%/sounds/uk/pizzeria_anchovy.ogg %%DATADIR%%/sounds/uk/pizzeria_bacon.ogg %%DATADIR%%/sounds/uk/pizzeria_brocolli.ogg %%DATADIR%%/sounds/uk/pizzeria_cheese.ogg %%DATADIR%%/sounds/uk/pizzeria_cucumber.ogg %%DATADIR%%/sounds/uk/pizzeria_mushroom.ogg %%DATADIR%%/sounds/uk/pizzeria_olive.ogg %%DATADIR%%/sounds/uk/pizzeria_onion.ogg %%DATADIR%%/sounds/uk/pizzeria_oregano.ogg %%DATADIR%%/sounds/uk/pizzeria_pepper.ogg %%DATADIR%%/sounds/uk/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/uk/pizzeria_pineapple.ogg %%DATADIR%%/sounds/uk/pizzeria_salami.ogg %%DATADIR%%/sounds/uk/pizzeria_tomato.ogg %%DATADIR%%/sounds/uk/prince-tux.ogg %%DATADIR%%/sounds/uk/robin-tux.ogg %%DATADIR%%/sounds/uk/robot_workshop_antenna.ogg %%DATADIR%%/sounds/uk/robot_workshop_arm.ogg %%DATADIR%%/sounds/uk/robot_workshop_ball.ogg %%DATADIR%%/sounds/uk/robot_workshop_base.ogg %%DATADIR%%/sounds/uk/robot_workshop_block.ogg %%DATADIR%%/sounds/uk/robot_workshop_body.ogg %%DATADIR%%/sounds/uk/robot_workshop_claw.ogg %%DATADIR%%/sounds/uk/robot_workshop_eye.ogg %%DATADIR%%/sounds/uk/robot_workshop_foot.ogg %%DATADIR%%/sounds/uk/robot_workshop_hand.ogg %%DATADIR%%/sounds/uk/robot_workshop_head.ogg %%DATADIR%%/sounds/uk/robot_workshop_panel.ogg %%DATADIR%%/sounds/uk/robot_workshop_rocket.ogg %%DATADIR%%/sounds/uk/robot_workshop_rod.ogg %%DATADIR%%/sounds/uk/robot_workshop_wheel.ogg %%DATADIR%%/sounds/uk/sherif-tux.ogg %%DATADIR%%/sounds/uk/shoe.ogg %%DATADIR%%/sounds/uk/shorts.ogg %%DATADIR%%/sounds/uk/skirt.ogg %%DATADIR%%/sounds/uk/spectacles.ogg %%DATADIR%%/sounds/uk/stick.ogg %%DATADIR%%/sounds/uk/sunglasses.ogg %%DATADIR%%/sounds/uk/tie.ogg %%DATADIR%%/sounds/uk/train_valley.theme.ogg %%DATADIR%%/sounds/uk/tux-angry.ogg %%DATADIR%%/sounds/uk/tux-apple.ogg %%DATADIR%%/sounds/uk/tux-arrow.ogg %%DATADIR%%/sounds/uk/tux-arrows.ogg %%DATADIR%%/sounds/uk/tux-bow.ogg %%DATADIR%%/sounds/uk/tux-bullseye.ogg %%DATADIR%%/sounds/uk/tux-candles.ogg %%DATADIR%%/sounds/uk/tux-dowe.ogg %%DATADIR%%/sounds/uk/tux-fish.ogg %%DATADIR%%/sounds/uk/tux-flask.ogg %%DATADIR%%/sounds/uk/tux-fly.ogg %%DATADIR%%/sounds/uk/tux-goblet.ogg %%DATADIR%%/sounds/uk/tux-guitar.ogg %%DATADIR%%/sounds/uk/tux-huh.ogg %%DATADIR%%/sounds/uk/tux-idea.ogg %%DATADIR%%/sounds/uk/tux-key.ogg %%DATADIR%%/sounds/uk/tux-laugh.ogg %%DATADIR%%/sounds/uk/tux-letter.ogg %%DATADIR%%/sounds/uk/tux-love.ogg %%DATADIR%%/sounds/uk/tux-note.ogg %%DATADIR%%/sounds/uk/tux-notes.ogg %%DATADIR%%/sounds/uk/tux-plate.ogg %%DATADIR%%/sounds/uk/tux-poison.ogg %%DATADIR%%/sounds/uk/tux-shoot.ogg %%DATADIR%%/sounds/uk/tux-sick.ogg %%DATADIR%%/sounds/uk/tux-stare.ogg %%DATADIR%%/sounds/uk/tux-teacup.ogg %%DATADIR%%/sounds/uk/tux-vase.ogg %%DATADIR%%/sounds/uk/tux-wanted.ogg %%DATADIR%%/sounds/uk/tux-what.ogg %%DATADIR%%/sounds/uk/tux-wow.ogg %%DATADIR%%/sounds/uk/tux-zzz.ogg %%DATADIR%%/sounds/uk/tv_accident.ogg %%DATADIR%%/sounds/uk/tv_ball.ogg %%DATADIR%%/sounds/uk/tv_barrier.ogg %%DATADIR%%/sounds/uk/tv_bicycle.ogg %%DATADIR%%/sounds/uk/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/uk/tv_car.ogg %%DATADIR%%/sounds/uk/tv_caravan.ogg %%DATADIR%%/sounds/uk/tv_cyclist.ogg %%DATADIR%%/sounds/uk/tv_elephant.ogg %%DATADIR%%/sounds/uk/tv_excavator.ogg %%DATADIR%%/sounds/uk/tv_fence.ogg %%DATADIR%%/sounds/uk/tv_fire.ogg %%DATADIR%%/sounds/uk/tv_fireengine.ogg %%DATADIR%%/sounds/uk/tv_fireman.ogg %%DATADIR%%/sounds/uk/tv_fisherman.ogg %%DATADIR%%/sounds/uk/tv_giraffe.ogg %%DATADIR%%/sounds/uk/tv_guitar.ogg %%DATADIR%%/sounds/uk/tv_guitarist.ogg %%DATADIR%%/sounds/uk/tv_house.ogg %%DATADIR%%/sounds/uk/tv_ladder.ogg %%DATADIR%%/sounds/uk/tv_lion.ogg %%DATADIR%%/sounds/uk/tv_lorry.ogg %%DATADIR%%/sounds/uk/tv_lorry_tractor.ogg %%DATADIR%%/sounds/uk/tv_man.ogg %%DATADIR%%/sounds/uk/tv_mechanic.ogg %%DATADIR%%/sounds/uk/tv_monkey.ogg %%DATADIR%%/sounds/uk/tv_path.ogg %%DATADIR%%/sounds/uk/tv_rock.ogg %%DATADIR%%/sounds/uk/tv_school.ogg %%DATADIR%%/sounds/uk/tv_shop.ogg %%DATADIR%%/sounds/uk/tv_smoke.ogg %%DATADIR%%/sounds/uk/tv_tipper.ogg %%DATADIR%%/sounds/uk/tv_trailer.ogg %%DATADIR%%/sounds/uk/tv_train.ogg %%DATADIR%%/sounds/uk/tv_tree.ogg %%DATADIR%%/sounds/uk/tv_tunnel.ogg %%DATADIR%%/sounds/uk/tv_volley_net.ogg %%DATADIR%%/sounds/uk/tv_wagon.ogg %%DATADIR%%/sounds/uk/tv_woman.ogg %%DATADIR%%/sounds/uk/umbrella.ogg %%DATADIR%%/sounds/uk/whitch-tux.ogg %%DATADIR%%/sounds/uk/xmas_angel.ogg %%DATADIR%%/sounds/uk/xmas_ball.ogg %%DATADIR%%/sounds/uk/xmas_boot.ogg %%DATADIR%%/sounds/uk/xmas_candle.ogg %%DATADIR%%/sounds/uk/xmas_comet.ogg %%DATADIR%%/sounds/uk/xmas_garland.ogg %%DATADIR%%/sounds/uk/xmas_lights.ogg %%DATADIR%%/sounds/uk/xmas_mistletoe.ogg %%DATADIR%%/sounds/uk/xmas_moon.ogg %%DATADIR%%/sounds/uk/xmas_owl.ogg %%DATADIR%%/sounds/uk/xmas_present.ogg %%DATADIR%%/sounds/uk/xmas_rabbit.ogg %%DATADIR%%/sounds/uk/xmas_reindeer.ogg %%DATADIR%%/sounds/uk/xmas_shoe.ogg %%DATADIR%%/sounds/uk/xmas_snowflake.ogg %%DATADIR%%/sounds/uk/xmas_snowman.ogg %%DATADIR%%/sounds/uk/xmas_star.ogg %%DATADIR%%/sounds/uk/xmas_tree.ogg %%DATADIR%%/sounds/uk/xmas_turtle.ogg %%DATADIR%%/sounds/uk/xmas_tux.ogg %%DATADIR%%/sounds/wa.soundtheme %%DATADIR%%/sounds/wa/bale.ogg %%DATADIR%%/sounds/wa/berikes-di-solea.ogg %%DATADIR%%/sounds/wa/berikes.ogg %%DATADIR%%/sounds/wa/boke.ogg %%DATADIR%%/sounds/wa/cane.ogg %%DATADIR%%/sounds/wa/chote.ogg %%DATADIR%%/sounds/wa/cigare.ogg %%DATADIR%%/sounds/wa/crawate.ogg %%DATADIR%%/sounds/wa/djupe.ogg %%DATADIR%%/sounds/wa/egypt_atche.ogg %%DATADIR%%/sounds/wa/egypt_badet.ogg %%DATADIR%%/sounds/wa/egypt_bashele.ogg %%DATADIR%%/sounds/wa/egypt_colone.ogg %%DATADIR%%/sounds/wa/egypt_comere.ogg %%DATADIR%%/sounds/wa/egypt_mouxhons.ogg %%DATADIR%%/sounds/wa/egypt_ome.ogg %%DATADIR%%/sounds/wa/egypt_owazisse.ogg %%DATADIR%%/sounds/wa/egypt_palmi.ogg %%DATADIR%%/sounds/wa/egypt_piramide.ogg %%DATADIR%%/sounds/wa/egypt_pont.ogg %%DATADIR%%/sounds/wa/egypt_pousse.ogg %%DATADIR%%/sounds/wa/egypt_sfink.ogg %%DATADIR%%/sounds/wa/egypt_tchamo.ogg %%DATADIR%%/sounds/wa/egypt_tchar.ogg %%DATADIR%%/sounds/wa/egypt_valet.ogg %%DATADIR%%/sounds/wa/egypt_voye.ogg %%DATADIR%%/sounds/wa/egypt_yebe.ogg %%DATADIR%%/sounds/wa/fleur.ogg %%DATADIR%%/sounds/wa/flo.ogg %%DATADIR%%/sounds/wa/medaye.ogg %%DATADIR%%/sounds/wa/monte.ogg %%DATADIR%%/sounds/wa/moon_astronote.ogg %%DATADIR%%/sounds/wa/moon_daegne.ogg %%DATADIR%%/sounds/wa/moon_fuzeye.ogg %%DATADIR%%/sounds/wa/moon_marsyin.ogg %%DATADIR%%/sounds/wa/moon_monsse.ogg %%DATADIR%%/sounds/wa/moon_otel.ogg %%DATADIR%%/sounds/wa/moon_panea.ogg %%DATADIR%%/sounds/wa/moon_planete.ogg %%DATADIR%%/sounds/wa/moon_radar.ogg %%DATADIR%%/sounds/wa/moon_schitante-sitoele.ogg %%DATADIR%%/sounds/wa/moon_sitoele.ogg %%DATADIR%%/sounds/wa/moon_spoutnik.ogg %%DATADIR%%/sounds/wa/moon_stoele.ogg %%DATADIR%%/sounds/wa/moon_volante-soucoupe.ogg %%DATADIR%%/sounds/wa/moon_vweteure-di-leune.ogg %%DATADIR%%/sounds/wa/mostatche.ogg %%DATADIR%%/sounds/wa/mousmint.ogg %%DATADIR%%/sounds/wa/nez.ogg %%DATADIR%%/sounds/wa/oraye.ogg %%DATADIR%%/sounds/wa/ouy.ogg %%DATADIR%%/sounds/wa/paraplu.ogg %%DATADIR%%/sounds/wa/pindant.ogg %%DATADIR%%/sounds/wa/pizzeria_abusson.ogg %%DATADIR%%/sounds/wa/pizzeria_agnon.ogg %%DATADIR%%/sounds/wa/pizzeria_ananasse.ogg %%DATADIR%%/sounds/wa/pizzeria_antchwes.ogg %%DATADIR%%/sounds/wa/pizzeria_brocoli.ogg %%DATADIR%%/sounds/wa/pizzeria_concombe.ogg %%DATADIR%%/sounds/wa/pizzeria_froumaedje.ogg %%DATADIR%%/sounds/wa/pizzeria_lard.ogg %%DATADIR%%/sounds/wa/pizzeria_mariolinne.ogg %%DATADIR%%/sounds/wa/pizzeria_olive.ogg %%DATADIR%%/sounds/wa/pizzeria_pimint.ogg %%DATADIR%%/sounds/wa/pizzeria_pwevron.ogg %%DATADIR%%/sounds/wa/pizzeria_salami.ogg %%DATADIR%%/sounds/wa/pizzeria_tomate.ogg %%DATADIR%%/sounds/wa/sofri.ogg %%DATADIR%%/sounds/wa/tchapea.ogg %%DATADIR%%/sounds/wa/tchasseure.ogg %%DATADIR%%/sounds/wa/tchivea.ogg %%DATADIR%%/sounds/wa/tv_ciclisse.ogg %%DATADIR%%/sounds/wa/tv_trin.ogg %%DATADIR%%/sounds/wa/tv_velo.ogg %%DATADIR%%/sounds/wa/tv_vweteure.ogg share/kxmlgui5/ktuberling/ktuberlingui.rc share/locale/ar/LC_MESSAGES/ktuberling.mo share/locale/bg/LC_MESSAGES/ktuberling.mo share/locale/bs/LC_MESSAGES/ktuberling.mo share/locale/ca/LC_MESSAGES/ktuberling.mo share/locale/ca@valencia/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/ktuberling.mo share/locale/da/LC_MESSAGES/ktuberling.mo share/locale/de/LC_MESSAGES/ktuberling.mo share/locale/el/LC_MESSAGES/ktuberling.mo share/locale/en_GB/LC_MESSAGES/ktuberling.mo share/locale/eo/LC_MESSAGES/ktuberling.mo share/locale/es/LC_MESSAGES/ktuberling.mo share/locale/et/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/fa/LC_MESSAGES/ktuberling.mo share/locale/fi/LC_MESSAGES/ktuberling.mo share/locale/fr/LC_MESSAGES/ktuberling.mo share/locale/ga/LC_MESSAGES/ktuberling.mo share/locale/gl/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/hi/LC_MESSAGES/ktuberling.mo share/locale/hr/LC_MESSAGES/ktuberling.mo share/locale/hu/LC_MESSAGES/ktuberling.mo share/locale/id/LC_MESSAGES/ktuberling.mo share/locale/is/LC_MESSAGES/ktuberling.mo share/locale/it/LC_MESSAGES/ktuberling.mo share/locale/ja/LC_MESSAGES/ktuberling.mo share/locale/kk/LC_MESSAGES/ktuberling.mo share/locale/km/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lv/LC_MESSAGES/ktuberling.mo share/locale/ml/LC_MESSAGES/ktuberling.mo share/locale/mr/LC_MESSAGES/ktuberling.mo share/locale/nb/LC_MESSAGES/ktuberling.mo share/locale/nds/LC_MESSAGES/ktuberling.mo share/locale/nl/LC_MESSAGES/ktuberling.mo share/locale/nn/LC_MESSAGES/ktuberling.mo share/locale/pa/LC_MESSAGES/ktuberling.mo share/locale/pl/LC_MESSAGES/ktuberling.mo share/locale/pt/LC_MESSAGES/ktuberling.mo share/locale/pt_BR/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/ktuberling.mo share/locale/sk/LC_MESSAGES/ktuberling.mo share/locale/sl/LC_MESSAGES/ktuberling.mo share/locale/sr/LC_MESSAGES/ktuberling.mo share/locale/sv/LC_MESSAGES/ktuberling.mo share/locale/tr/LC_MESSAGES/ktuberling.mo share/locale/ug/LC_MESSAGES/ktuberling.mo share/locale/uk/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktuberling.mo share/locale/zh_CN/LC_MESSAGES/ktuberling.mo share/locale/zh_TW/LC_MESSAGES/ktuberling.mo share/metainfo/org.kde.ktuberling.appdata.xml share/qlogging-categories5/ktuberling.categories Index: head/games/kubrick/distinfo =================================================================== --- head/games/kubrick/distinfo (revision 567333) +++ head/games/kubrick/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330778 -SHA256 (KDE/release-service/20.12.2/kubrick-20.12.2.tar.xz) = 15c92388f598acc18d9fb5f3a35be4fca6715e09f63ea4b7ae48d02257eb7f3c -SIZE (KDE/release-service/20.12.2/kubrick-20.12.2.tar.xz) = 339764 +TIMESTAMP = 1614706255 +SHA256 (KDE/release-service/20.12.3/kubrick-20.12.3.tar.xz) = 323f2ec8687cf1ffa6ca81657ff96a0a41873b9b29f981894163262ad50ba828 +SIZE (KDE/release-service/20.12.3/kubrick-20.12.3.tar.xz) = 339644 Index: head/games/libkdegames/distinfo =================================================================== --- head/games/libkdegames/distinfo (revision 567333) +++ head/games/libkdegames/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330779 -SHA256 (KDE/release-service/20.12.2/libkdegames-20.12.2.tar.xz) = 19d93fe25f1ea5173d5130b2d270038b26e6cc6f09238724f330d05fbe019439 -SIZE (KDE/release-service/20.12.2/libkdegames-20.12.2.tar.xz) = 6388852 +TIMESTAMP = 1614706250 +SHA256 (KDE/release-service/20.12.3/libkdegames-20.12.3.tar.xz) = 401b919640eea95ec8feab1ce0914db2750fafc19893c424eed8ea37e5e216d1 +SIZE (KDE/release-service/20.12.3/libkdegames-20.12.3.tar.xz) = 6389576 Index: head/games/libkmahjongg/distinfo =================================================================== --- head/games/libkmahjongg/distinfo (revision 567333) +++ head/games/libkmahjongg/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330780 -SHA256 (KDE/release-service/20.12.2/libkmahjongg-20.12.2.tar.xz) = 5830a157287294dbb2da32920ddcad77e015e551655b442f31212f0f7ad582fa -SIZE (KDE/release-service/20.12.2/libkmahjongg-20.12.2.tar.xz) = 1691468 +TIMESTAMP = 1614706253 +SHA256 (KDE/release-service/20.12.3/libkmahjongg-20.12.3.tar.xz) = 9b3c960b09935c234cad92abaf959750421a4f6d24ff34d37f99c4f508398b9b +SIZE (KDE/release-service/20.12.3/libkmahjongg-20.12.3.tar.xz) = 1691308 Index: head/games/lskat/distinfo =================================================================== --- head/games/lskat/distinfo (revision 567333) +++ head/games/lskat/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330781 -SHA256 (KDE/release-service/20.12.2/lskat-20.12.2.tar.xz) = 595bd274419dfa3e0dbbeb64a4ee4c5957a163b29dde79fff17ea95b3ccfff20 -SIZE (KDE/release-service/20.12.2/lskat-20.12.2.tar.xz) = 1225336 +TIMESTAMP = 1614706249 +SHA256 (KDE/release-service/20.12.3/lskat-20.12.3.tar.xz) = 9b5167e20e8fde94abe4a4025bcb46f56923617c0246f894740f8158f2d4beba +SIZE (KDE/release-service/20.12.3/lskat-20.12.3.tar.xz) = 1225308 Index: head/games/palapeli/distinfo =================================================================== --- head/games/palapeli/distinfo (revision 567333) +++ head/games/palapeli/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330781 -SHA256 (KDE/release-service/20.12.2/palapeli-20.12.2.tar.xz) = 7c46d34e167d5183aebe99be5e9608640450dc762c2a4377390f9afb444200fd -SIZE (KDE/release-service/20.12.2/palapeli-20.12.2.tar.xz) = 2078856 +TIMESTAMP = 1614706245 +SHA256 (KDE/release-service/20.12.3/palapeli-20.12.3.tar.xz) = aa9b99b5953882e8802b8537c9367dfdca3345e4e8cc709dd2f859149e8b1892 +SIZE (KDE/release-service/20.12.3/palapeli-20.12.3.tar.xz) = 2078720 Index: head/games/picmi/distinfo =================================================================== --- head/games/picmi/distinfo (revision 567333) +++ head/games/picmi/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330782 -SHA256 (KDE/release-service/20.12.2/picmi-20.12.2.tar.xz) = 6c5623da769e911fb3804450596bfdaf02758a703186075a33d62c47fd758a08 -SIZE (KDE/release-service/20.12.2/picmi-20.12.2.tar.xz) = 1367464 +TIMESTAMP = 1614706264 +SHA256 (KDE/release-service/20.12.3/picmi-20.12.3.tar.xz) = a2b5f9cc2bfc0ed0bb3f8b215881a19c366de43eed049db7f910566e746e93f7 +SIZE (KDE/release-service/20.12.3/picmi-20.12.3.tar.xz) = 1367556 Index: head/graphics/gwenview/distinfo =================================================================== --- head/graphics/gwenview/distinfo (revision 567333) +++ head/graphics/gwenview/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330783 -SHA256 (KDE/release-service/20.12.2/gwenview-20.12.2.tar.xz) = b6eca42c1c627fda083a8db32cbf785e1778e937af4b65a1d912d9b8ad942633 -SIZE (KDE/release-service/20.12.2/gwenview-20.12.2.tar.xz) = 6745780 +TIMESTAMP = 1614706267 +SHA256 (KDE/release-service/20.12.3/gwenview-20.12.3.tar.xz) = 68234a515f0870c295020a4a7495f42e785e4ad1cce536c77f108a41561b41a2 +SIZE (KDE/release-service/20.12.3/gwenview-20.12.3.tar.xz) = 6753636 Index: head/graphics/kamera/distinfo =================================================================== --- head/graphics/kamera/distinfo (revision 567333) +++ head/graphics/kamera/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330784 -SHA256 (KDE/release-service/20.12.2/kamera-20.12.2.tar.xz) = 869e041affcc39e2f67c2d6adb61d5f29cad126ad85a85107417875740ac2cd2 -SIZE (KDE/release-service/20.12.2/kamera-20.12.2.tar.xz) = 108672 +TIMESTAMP = 1614706274 +SHA256 (KDE/release-service/20.12.3/kamera-20.12.3.tar.xz) = 46da3e0d9686cc6805dee5846b623173c7462b1f1fc6bb25eb3ad9729222d13c +SIZE (KDE/release-service/20.12.3/kamera-20.12.3.tar.xz) = 108696 Index: head/graphics/kcolorchooser/distinfo =================================================================== --- head/graphics/kcolorchooser/distinfo (revision 567333) +++ head/graphics/kcolorchooser/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330784 -SHA256 (KDE/release-service/20.12.2/kcolorchooser-20.12.2.tar.xz) = 330f65652ae2105162069d67e00a48f4e38df891df9310e97f33da41f2c7c423 -SIZE (KDE/release-service/20.12.2/kcolorchooser-20.12.2.tar.xz) = 27656 +TIMESTAMP = 1614706272 +SHA256 (KDE/release-service/20.12.3/kcolorchooser-20.12.3.tar.xz) = 4d3d3f446447e07a054d44c5bf23f2bbeb0f6e7ea91299945cac927168555529 +SIZE (KDE/release-service/20.12.3/kcolorchooser-20.12.3.tar.xz) = 27660 Index: head/graphics/kdegraphics-mobipocket/distinfo =================================================================== --- head/graphics/kdegraphics-mobipocket/distinfo (revision 567333) +++ head/graphics/kdegraphics-mobipocket/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330785 -SHA256 (KDE/release-service/20.12.2/kdegraphics-mobipocket-20.12.2.tar.xz) = c6844a0b7a84cac2f6d3b1a44645488b3dd5fc8e89214a0c512a7eb7ef8e4409 -SIZE (KDE/release-service/20.12.2/kdegraphics-mobipocket-20.12.2.tar.xz) = 17048 +TIMESTAMP = 1614706274 +SHA256 (KDE/release-service/20.12.3/kdegraphics-mobipocket-20.12.3.tar.xz) = 9448b979b9722bc73bd0429733016399933f9c41f19b5cc1ecb8458226fd71fd +SIZE (KDE/release-service/20.12.3/kdegraphics-mobipocket-20.12.3.tar.xz) = 17056 Index: head/graphics/kdegraphics-svgpart/distinfo =================================================================== --- head/graphics/kdegraphics-svgpart/distinfo (revision 567333) +++ head/graphics/kdegraphics-svgpart/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330786 -SHA256 (KDE/release-service/20.12.2/svgpart-20.12.2.tar.xz) = 923fea513a1e95033d9ed02ca6884aa978a1b6424d4961d69e2fa1f5746938ec -SIZE (KDE/release-service/20.12.2/svgpart-20.12.2.tar.xz) = 23308 +TIMESTAMP = 1614706270 +SHA256 (KDE/release-service/20.12.3/svgpart-20.12.3.tar.xz) = f4b588f4b29178fd03a63c2b005837629bf9bbcf59f0a80fffa6a2354ff3b3d1 +SIZE (KDE/release-service/20.12.3/svgpart-20.12.3.tar.xz) = 23348 Index: head/graphics/kdegraphics-thumbnailers/distinfo =================================================================== --- head/graphics/kdegraphics-thumbnailers/distinfo (revision 567333) +++ head/graphics/kdegraphics-thumbnailers/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330787 -SHA256 (KDE/release-service/20.12.2/kdegraphics-thumbnailers-20.12.2.tar.xz) = f323aa01dd70cce43f2d30caf6e8353f79ab81e9a942997a1e62b66ad67687dc -SIZE (KDE/release-service/20.12.2/kdegraphics-thumbnailers-20.12.2.tar.xz) = 47024 +TIMESTAMP = 1614706269 +SHA256 (KDE/release-service/20.12.3/kdegraphics-thumbnailers-20.12.3.tar.xz) = dd598626c007145d20c4d32b648ee00bf9948d811dcd3d848df76c1195347f3c +SIZE (KDE/release-service/20.12.3/kdegraphics-thumbnailers-20.12.3.tar.xz) = 47048 Index: head/graphics/kimagemapeditor/distinfo =================================================================== --- head/graphics/kimagemapeditor/distinfo (revision 567333) +++ head/graphics/kimagemapeditor/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330788 -SHA256 (KDE/release-service/20.12.2/kimagemapeditor-20.12.2.tar.xz) = 58fb8f9f06677e56c01cda6deaca68cc4476a965ec63cc2407cda22719dc5c19 -SIZE (KDE/release-service/20.12.2/kimagemapeditor-20.12.2.tar.xz) = 1077792 +TIMESTAMP = 1614706271 +SHA256 (KDE/release-service/20.12.3/kimagemapeditor-20.12.3.tar.xz) = 39df7b9f11ba0b4c84dbe5c9c0611a23a8f83f30dd1c2782c08b4ce89eafe297 +SIZE (KDE/release-service/20.12.3/kimagemapeditor-20.12.3.tar.xz) = 1079008 Index: head/graphics/kipi-plugins/distinfo =================================================================== --- head/graphics/kipi-plugins/distinfo (revision 567333) +++ head/graphics/kipi-plugins/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330788 -SHA256 (KDE/release-service/20.12.2/kipi-plugins-20.12.2.tar.xz) = 880ad1541cbe786da960510e16b618505c779e7b44a3c39019e46cece6891e88 -SIZE (KDE/release-service/20.12.2/kipi-plugins-20.12.2.tar.xz) = 1644892 +TIMESTAMP = 1614706269 +SHA256 (KDE/release-service/20.12.3/kipi-plugins-20.12.3.tar.xz) = 16be32705e6056de9350d3713ab6b20659a236db1356eb32cd6cdd19ac71c071 +SIZE (KDE/release-service/20.12.3/kipi-plugins-20.12.3.tar.xz) = 1644852 Index: head/graphics/kolourpaint/distinfo =================================================================== --- head/graphics/kolourpaint/distinfo (revision 567333) +++ head/graphics/kolourpaint/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330789 -SHA256 (KDE/release-service/20.12.2/kolourpaint-20.12.2.tar.xz) = d699f2e56234eda8787c9ddc20904248cc87c7c4468d9e6254fc659c7202eb8e -SIZE (KDE/release-service/20.12.2/kolourpaint-20.12.2.tar.xz) = 5686520 +TIMESTAMP = 1614706275 +SHA256 (KDE/release-service/20.12.3/kolourpaint-20.12.3.tar.xz) = 2f947803698f8169891191cb6ff841d3e991f9ae7157469cf01f4af594bde93e +SIZE (KDE/release-service/20.12.3/kolourpaint-20.12.3.tar.xz) = 5686472 Index: head/graphics/kontrast/distinfo =================================================================== --- head/graphics/kontrast/distinfo (revision 567333) +++ head/graphics/kontrast/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330790 -SHA256 (KDE/release-service/20.12.2/kontrast-20.12.2.tar.xz) = ea461b93c9c2f68fc3625134bdeb8bf4b72f96bd064a93844de5838a3d651833 -SIZE (KDE/release-service/20.12.2/kontrast-20.12.2.tar.xz) = 122432 +TIMESTAMP = 1614706267 +SHA256 (KDE/release-service/20.12.3/kontrast-20.12.3.tar.xz) = 0de9244d82516c6f6fe60bc23582278243cedd4de64c6ffc9e2a09e94c0b028b +SIZE (KDE/release-service/20.12.3/kontrast-20.12.3.tar.xz) = 122468 Index: head/graphics/kqtquickcharts/distinfo =================================================================== --- head/graphics/kqtquickcharts/distinfo (revision 567333) +++ head/graphics/kqtquickcharts/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330790 -SHA256 (KDE/release-service/20.12.2/kqtquickcharts-20.12.2.tar.xz) = b62024e32005d5e113ca56efa021423422eb604b89453f43a0ddb75627db991a -SIZE (KDE/release-service/20.12.2/kqtquickcharts-20.12.2.tar.xz) = 30088 +TIMESTAMP = 1614706266 +SHA256 (KDE/release-service/20.12.3/kqtquickcharts-20.12.3.tar.xz) = b274baf4532a89cae9490d65069f57c105b17ddd39e1186171c89ecb14128cc5 +SIZE (KDE/release-service/20.12.3/kqtquickcharts-20.12.3.tar.xz) = 30080 Index: head/graphics/libkdcraw/Makefile =================================================================== --- head/graphics/libkdcraw/Makefile (revision 567333) +++ head/graphics/libkdcraw/Makefile (revision 567334) @@ -1,29 +1,28 @@ # $FreeBSD$ PORTNAME= libkdcraw DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= LibRaw interface for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libjasper.so:graphics/jasper \ liblcms.so:graphics/lcms \ libxml2.so:textproc/libxml2 \ libraw.so:graphics/libraw USES= cmake compiler:c++11-lang jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ buildtools_build qmake_build USE_LDCONFIG= yes CMAKE_ARGS= -DWITH_OpenMP:BOOL=False \ -DENABLE_RAWSPEED=True OPTIONS_DEFINE= DOCS .include Index: head/graphics/libkdcraw/distinfo =================================================================== --- head/graphics/libkdcraw/distinfo (revision 567333) +++ head/graphics/libkdcraw/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330791 -SHA256 (KDE/release-service/20.12.2/libkdcraw-20.12.2.tar.xz) = d561f6e6aab78768c210d5473f05daa43df1711f745671f9ff3ee1ec0e02fcc1 -SIZE (KDE/release-service/20.12.2/libkdcraw-20.12.2.tar.xz) = 41972 +TIMESTAMP = 1614706268 +SHA256 (KDE/release-service/20.12.3/libkdcraw-20.12.3.tar.xz) = 4f12042ea57547cf03d5c82c5adb31b8df3c6b7c6b0fd4eb195885f109c88def +SIZE (KDE/release-service/20.12.3/libkdcraw-20.12.3.tar.xz) = 41956 Index: head/graphics/libkexiv2/distinfo =================================================================== --- head/graphics/libkexiv2/distinfo (revision 567333) +++ head/graphics/libkexiv2/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330792 -SHA256 (KDE/release-service/20.12.2/libkexiv2-20.12.2.tar.xz) = eb364ea254d8d72317124e725b4a5b2db0d45c627020ad934f6e1f7f66174882 -SIZE (KDE/release-service/20.12.2/libkexiv2-20.12.2.tar.xz) = 64732 +TIMESTAMP = 1614706276 +SHA256 (KDE/release-service/20.12.3/libkexiv2-20.12.3.tar.xz) = b762730416f8c9db6075695222027c0c37cec8c8defe0c5723af570fa49021e4 +SIZE (KDE/release-service/20.12.3/libkexiv2-20.12.3.tar.xz) = 64724 Index: head/graphics/libkipi/distinfo =================================================================== --- head/graphics/libkipi/distinfo (revision 567333) +++ head/graphics/libkipi/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330793 -SHA256 (KDE/release-service/20.12.2/libkipi-20.12.2.tar.xz) = f39f211bb4bbea21b1984208ae21b1f5df475e1133d5e600f4fd6b59f3dcb2ab -SIZE (KDE/release-service/20.12.2/libkipi-20.12.2.tar.xz) = 103584 +TIMESTAMP = 1614706276 +SHA256 (KDE/release-service/20.12.3/libkipi-20.12.3.tar.xz) = bb6fff214e3a74e17cb7b49f5e9a92252127ec6cb65e6832da3ac789c7bd14a8 +SIZE (KDE/release-service/20.12.3/libkipi-20.12.3.tar.xz) = 103628 Index: head/graphics/libksane/distinfo =================================================================== --- head/graphics/libksane/distinfo (revision 567333) +++ head/graphics/libksane/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330793 -SHA256 (KDE/release-service/20.12.2/libksane-20.12.2.tar.xz) = 8bf0a7ffb4e7d98b5381e958cf17733163bffa64e3bfe79e82e48be6bc761cae -SIZE (KDE/release-service/20.12.2/libksane-20.12.2.tar.xz) = 145452 +TIMESTAMP = 1614706272 +SHA256 (KDE/release-service/20.12.3/libksane-20.12.3.tar.xz) = 46c558989930c0aca16bc8ec1b6f0a963076fa9923b6e30a4d0129c1dd8f4b0b +SIZE (KDE/release-service/20.12.3/libksane-20.12.3.tar.xz) = 145464 Index: head/graphics/okular/Makefile =================================================================== --- head/graphics/okular/Makefile (revision 567333) +++ head/graphics/okular/Makefile (revision 567334) @@ -1,46 +1,45 @@ # $FreeBSD$ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libchm.so:misc/chmlib \ libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libfreetype.so:print/freetype2 \ libqmobipocket.so:graphics/kdegraphics-mobipocket \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qca qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS PURPOSE OPTIONS_DEFAULT= PURPOSE PURPOSE_DESC= Enable 'Share' menu PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KDEExperimentalPurpose .include Index: head/graphics/okular/distinfo =================================================================== --- head/graphics/okular/distinfo (revision 567333) +++ head/graphics/okular/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330794 -SHA256 (KDE/release-service/20.12.2/okular-20.12.2.tar.xz) = 78a9bb766b7ae79fba630aac6e8804876e1f99de2ede37d6d33ce7442975a9a4 -SIZE (KDE/release-service/20.12.2/okular-20.12.2.tar.xz) = 7885056 +TIMESTAMP = 1614706265 +SHA256 (KDE/release-service/20.12.3/okular-20.12.3.tar.xz) = ae570fcd2b35cc9c061c1c55b6f8de256358f0f5dd8d0a8283f13eae006b73dc +SIZE (KDE/release-service/20.12.3/okular-20.12.3.tar.xz) = 7884780 Index: head/graphics/spectacle/distinfo =================================================================== --- head/graphics/spectacle/distinfo (revision 567333) +++ head/graphics/spectacle/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330795 -SHA256 (KDE/release-service/20.12.2/spectacle-20.12.2.tar.xz) = 7e81047b78f2561aa8bb3a1af0c2b70dbbf9fb56d0427fea89986f90affe1b6c -SIZE (KDE/release-service/20.12.2/spectacle-20.12.2.tar.xz) = 1164120 +TIMESTAMP = 1614706273 +SHA256 (KDE/release-service/20.12.3/spectacle-20.12.3.tar.xz) = 4ce20ea1a81be1ec81c3917fc12e3c904cd95e58d559d56bd3d3bd2a15e149c0 +SIZE (KDE/release-service/20.12.3/spectacle-20.12.3.tar.xz) = 1170540 Index: head/irc/konversation/distinfo =================================================================== --- head/irc/konversation/distinfo (revision 567333) +++ head/irc/konversation/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330796 -SHA256 (KDE/release-service/20.12.2/konversation-20.12.2.tar.xz) = 14c53896848b870534ec83415a424a5b1a23f4f35040acb9caaad4fef7c52354 -SIZE (KDE/release-service/20.12.2/konversation-20.12.2.tar.xz) = 4222016 +TIMESTAMP = 1614706277 +SHA256 (KDE/release-service/20.12.3/konversation-20.12.3.tar.xz) = f80c369df893408b713ff39d94821f2f298303478692bf58bf25b7d860a49633 +SIZE (KDE/release-service/20.12.3/konversation-20.12.3.tar.xz) = 4242136 Index: head/japanese/kiten/distinfo =================================================================== --- head/japanese/kiten/distinfo (revision 567333) +++ head/japanese/kiten/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330796 -SHA256 (KDE/release-service/20.12.2/kiten-20.12.2.tar.xz) = 7e4caaba16ab04d2a688e027e960460ba81a904e71f3e7e517ba088b597ae4a2 -SIZE (KDE/release-service/20.12.2/kiten-20.12.2.tar.xz) = 11297676 +TIMESTAMP = 1614706278 +SHA256 (KDE/release-service/20.12.3/kiten-20.12.3.tar.xz) = d842809be188da86bb8877c7555af249b20e4747301602737132ce52f36a4e7a +SIZE (KDE/release-service/20.12.3/kiten-20.12.3.tar.xz) = 11298492 Index: head/lang/kross-interpreters/Makefile =================================================================== --- head/lang/kross-interpreters/Makefile (revision 567333) +++ head/lang/kross-interpreters/Makefile (revision 567334) @@ -1,25 +1,24 @@ # $FreeBSD$ PORTNAME= kross-interpreters DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= lang kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Language interpreters to enable in-process scripting with Kross USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= ecm kross USE_QT= core gui script widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= RUBY DOCS OPTIONS_SUB= yes OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs RUBY_USE= ruby RUBY_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Ruby .include Index: head/lang/kross-interpreters/distinfo =================================================================== --- head/lang/kross-interpreters/distinfo (revision 567333) +++ head/lang/kross-interpreters/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330797 -SHA256 (KDE/release-service/20.12.2/kross-interpreters-20.12.2.tar.xz) = 5682935f4295d49bc3be9abc646a85dcbbd290d40acf1d355a6722941976e811 -SIZE (KDE/release-service/20.12.2/kross-interpreters-20.12.2.tar.xz) = 151304 +TIMESTAMP = 1614706279 +SHA256 (KDE/release-service/20.12.3/kross-interpreters-20.12.3.tar.xz) = 931dfb7826b0176a2c02a243f5f823eb9754c917a3cc0f1ac4a3375b017d03e7 +SIZE (KDE/release-service/20.12.3/kross-interpreters-20.12.3.tar.xz) = 151292 Index: head/lang/kturtle/distinfo =================================================================== --- head/lang/kturtle/distinfo (revision 567333) +++ head/lang/kturtle/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330798 -SHA256 (KDE/release-service/20.12.2/kturtle-20.12.2.tar.xz) = 20432e903bc20e832d921019215d1307a561243ef7369ed0a1e95979a46186a8 -SIZE (KDE/release-service/20.12.2/kturtle-20.12.2.tar.xz) = 1837380 +TIMESTAMP = 1614706279 +SHA256 (KDE/release-service/20.12.3/kturtle-20.12.3.tar.xz) = e6bedbae45faf41158b2dab80229c69f8490698cb35afcb3507b9db2668ab89e +SIZE (KDE/release-service/20.12.3/kturtle-20.12.3.tar.xz) = 1837380 Index: head/math/analitza/Makefile =================================================================== --- head/math/analitza/Makefile (revision 567333) +++ head/math/analitza/Makefile (revision 567334) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= analitza DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library from KDE Education project LICENSE= GFDL GPLv2 LICENSE_COMB= multi LICENSE_FILE_GFDL= ${WRKSRC}/COPYING.DOC LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang eigen:3 gl kde:5 qt:5 tar:xz USE_GL= glu USE_KDE= ecm USE_QT= core declarative gui network opengl printsupport svg widgets xml \ buildtools_build linguisttools_build qmake_build USE_LDCONFIG= yes SHLIB_VER= 8.0.0 PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" \ SHLIB_SHVER="${SHLIB_VER:R:R}" OPTIONS_DEFINE= DOCS .include Index: head/math/analitza/distinfo =================================================================== --- head/math/analitza/distinfo (revision 567333) +++ head/math/analitza/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330798 -SHA256 (KDE/release-service/20.12.2/analitza-20.12.2.tar.xz) = dde08edce2c553c7ddd21db3d8645796b02e7e44d2aedd10e308267dbdc41727 -SIZE (KDE/release-service/20.12.2/analitza-20.12.2.tar.xz) = 341716 +TIMESTAMP = 1614706280 +SHA256 (KDE/release-service/20.12.3/analitza-20.12.3.tar.xz) = 00a0be2810f6e6637b1b64be6abe7c552bc5603f7ef7ee4f33b662cadab7f5a0 +SIZE (KDE/release-service/20.12.3/analitza-20.12.3.tar.xz) = 341640 Index: head/math/cantor/Makefile =================================================================== --- head/math/cantor/Makefile (revision 567333) +++ head/math/cantor/Makefile (revision 567334) @@ -1,65 +1,64 @@ # $FreeBSD$ # TODO: ensure only ${PYTON_CMD} is pixked again PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ libspectre.so:print/libspectre \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig python:3.4+ qt:5 tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash ecm emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network printsupport svg widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding (should probably be an option PYTHON2, PYTHON3) CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake .include Index: head/math/cantor/distinfo =================================================================== --- head/math/cantor/distinfo (revision 567333) +++ head/math/cantor/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330799 -SHA256 (KDE/release-service/20.12.2/cantor-20.12.2.tar.xz) = 977832abfd56df15db124fbaba18de5ecbfb7ca4951bcb1ce10dea6e801aa1f0 -SIZE (KDE/release-service/20.12.2/cantor-20.12.2.tar.xz) = 9127216 +TIMESTAMP = 1614706281 +SHA256 (KDE/release-service/20.12.3/cantor-20.12.3.tar.xz) = 4b4689d301963959fa112abfd3447ecdc1228db2aafb8403938b14fb2b69ca38 +SIZE (KDE/release-service/20.12.3/cantor-20.12.3.tar.xz) = 9128948 Index: head/math/kalgebra/distinfo =================================================================== --- head/math/kalgebra/distinfo (revision 567333) +++ head/math/kalgebra/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330800 -SHA256 (KDE/release-service/20.12.2/kalgebra-20.12.2.tar.xz) = 7f1d611d8a0ca970c0de2423fca0298a4b55c716ba0f9c4e1c6d5e0e16a99b37 -SIZE (KDE/release-service/20.12.2/kalgebra-20.12.2.tar.xz) = 1020296 +TIMESTAMP = 1614706285 +SHA256 (KDE/release-service/20.12.3/kalgebra-20.12.3.tar.xz) = e99ab7cc2845d82c1fd3981880374238971cacd14af639d4ecd2df8791d8a72f +SIZE (KDE/release-service/20.12.3/kalgebra-20.12.3.tar.xz) = 1024612 Index: head/math/kbruch/distinfo =================================================================== --- head/math/kbruch/distinfo (revision 567333) +++ head/math/kbruch/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330801 -SHA256 (KDE/release-service/20.12.2/kbruch-20.12.2.tar.xz) = b7a7c4fff70a722f95e7b34c799739e3ec1494eee0de4a7fbee85ddaf4af5c42 -SIZE (KDE/release-service/20.12.2/kbruch-20.12.2.tar.xz) = 5615168 +TIMESTAMP = 1614706284 +SHA256 (KDE/release-service/20.12.3/kbruch-20.12.3.tar.xz) = 02f55cd9f13c75857679f3464081def1dd1a5ecc4951b72243493ad3fb8351bc +SIZE (KDE/release-service/20.12.3/kbruch-20.12.3.tar.xz) = 5614940 Index: head/math/kcalc/distinfo =================================================================== --- head/math/kcalc/distinfo (revision 567333) +++ head/math/kcalc/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330801 -SHA256 (KDE/release-service/20.12.2/kcalc-20.12.2.tar.xz) = fd23f66404c6847a26c65b9053a37908ca373a2e59d02a9ab8cd51cb53286837 -SIZE (KDE/release-service/20.12.2/kcalc-20.12.2.tar.xz) = 380680 +TIMESTAMP = 1614706282 +SHA256 (KDE/release-service/20.12.3/kcalc-20.12.3.tar.xz) = 54068a1767f8d96fd507e8969c7b4b71cc61b5e605c7d6b0869c0bac5c0798de +SIZE (KDE/release-service/20.12.3/kcalc-20.12.3.tar.xz) = 380676 Index: head/math/kig/distinfo =================================================================== --- head/math/kig/distinfo (revision 567333) +++ head/math/kig/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330802 -SHA256 (KDE/release-service/20.12.2/kig-20.12.2.tar.xz) = 3fcff749073feb233cb2b25679d42c5776e5578ee43bb03091c27d98a77f9b23 -SIZE (KDE/release-service/20.12.2/kig-20.12.2.tar.xz) = 3122468 +TIMESTAMP = 1614706285 +SHA256 (KDE/release-service/20.12.3/kig-20.12.3.tar.xz) = ce3261eb10e052fa10fcb3742d6a1820006bfa100f5aaae09f367acac3019ed9 +SIZE (KDE/release-service/20.12.3/kig-20.12.3.tar.xz) = 3122112 Index: head/math/kmplot/distinfo =================================================================== --- head/math/kmplot/distinfo (revision 567333) +++ head/math/kmplot/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330803 -SHA256 (KDE/release-service/20.12.2/kmplot-20.12.2.tar.xz) = d83cc43a17b6c96338630ca4eadf63f738793588d2bec3e97bb9f5f43e32d250 -SIZE (KDE/release-service/20.12.2/kmplot-20.12.2.tar.xz) = 3056020 +TIMESTAMP = 1614706283 +SHA256 (KDE/release-service/20.12.3/kmplot-20.12.3.tar.xz) = 834aa87b5f58b8a5a9a96b4693e98b00fb11996e629cb42ed5b60d74a59be0ac +SIZE (KDE/release-service/20.12.3/kmplot-20.12.3.tar.xz) = 3055808 Index: head/math/rocs/distinfo =================================================================== --- head/math/rocs/distinfo (revision 567333) +++ head/math/rocs/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330804 -SHA256 (KDE/release-service/20.12.2/rocs-20.12.2.tar.xz) = 7fcf60fa82806b0eca3215cb8f9a480426fe8edebcc06d7fd0f44526c6335e1b -SIZE (KDE/release-service/20.12.2/rocs-20.12.2.tar.xz) = 1492164 +TIMESTAMP = 1614706282 +SHA256 (KDE/release-service/20.12.3/rocs-20.12.3.tar.xz) = 9b8b134175ed4655a977755fe5c5cf4164eb567d914f8c276c5943dba3c7091c +SIZE (KDE/release-service/20.12.3/rocs-20.12.3.tar.xz) = 1492376 Index: head/misc/artikulate/distinfo =================================================================== --- head/misc/artikulate/distinfo (revision 567333) +++ head/misc/artikulate/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330804 -SHA256 (KDE/release-service/20.12.2/artikulate-20.12.2.tar.xz) = d1f887a64b208080ad3feeb89960844f22f55faadf1ee7d25e2692752394db68 -SIZE (KDE/release-service/20.12.2/artikulate-20.12.2.tar.xz) = 1085312 +TIMESTAMP = 1614706289 +SHA256 (KDE/release-service/20.12.3/artikulate-20.12.3.tar.xz) = 35bf5044b904acebaac6ccf9064738d7d5b0a2433610ef742dd0295e8172d6be +SIZE (KDE/release-service/20.12.3/artikulate-20.12.3.tar.xz) = 1085400 Index: head/misc/kdeedu-data/distinfo =================================================================== --- head/misc/kdeedu-data/distinfo (revision 567333) +++ head/misc/kdeedu-data/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330805 -SHA256 (KDE/release-service/20.12.2/kdeedu-data-20.12.2.tar.xz) = 9a62ec7896e2cd6e2fae8c7824490ce6a826e36f4d5e9cad9aa50af3afbaa813 -SIZE (KDE/release-service/20.12.2/kdeedu-data-20.12.2.tar.xz) = 335476 +TIMESTAMP = 1614706290 +SHA256 (KDE/release-service/20.12.3/kdeedu-data-20.12.3.tar.xz) = 794e4fb45237493421b0d5d5684337ea937500b885725731d4efa7b1b717e631 +SIZE (KDE/release-service/20.12.3/kdeedu-data-20.12.3.tar.xz) = 335416 Index: head/misc/kgeography/distinfo =================================================================== --- head/misc/kgeography/distinfo (revision 567333) +++ head/misc/kgeography/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330806 -SHA256 (KDE/release-service/20.12.2/kgeography-20.12.2.tar.xz) = b159b3abfe4a9e32ef109de1ba7c73d432fba7cee97380e130f873377c29236c -SIZE (KDE/release-service/20.12.2/kgeography-20.12.2.tar.xz) = 10763904 +TIMESTAMP = 1614706288 +SHA256 (KDE/release-service/20.12.3/kgeography-20.12.3.tar.xz) = 9588611cf0c355abf3367bb2835f8920d5307ecdd7a1a80b956cae3c80783a45 +SIZE (KDE/release-service/20.12.3/kgeography-20.12.3.tar.xz) = 10764016 Index: head/misc/klettres/distinfo =================================================================== --- head/misc/klettres/distinfo (revision 567333) +++ head/misc/klettres/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330807 -SHA256 (KDE/release-service/20.12.2/klettres-20.12.2.tar.xz) = c31e44e3b97438d776cc49dd4d55ddc7c406ae3b1db1fe13fa0f1e65c69abe47 -SIZE (KDE/release-service/20.12.2/klettres-20.12.2.tar.xz) = 47056580 +TIMESTAMP = 1614706286 +SHA256 (KDE/release-service/20.12.3/klettres-20.12.3.tar.xz) = bc1522aaabd920e0799e760cdb8c9bc28284efd9f6e00a1609ff89382363cbfd +SIZE (KDE/release-service/20.12.3/klettres-20.12.3.tar.xz) = 47059092 Index: head/misc/ktouch/distinfo =================================================================== --- head/misc/ktouch/distinfo (revision 567333) +++ head/misc/ktouch/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330808 -SHA256 (KDE/release-service/20.12.2/ktouch-20.12.2.tar.xz) = 76c80e85dcd30704341a5ed997915321a5daf2fc32f38ed2c2db59f84afd7d48 -SIZE (KDE/release-service/20.12.2/ktouch-20.12.2.tar.xz) = 4942072 +TIMESTAMP = 1614706287 +SHA256 (KDE/release-service/20.12.3/ktouch-20.12.3.tar.xz) = dcf146196fa6bef59a191c4916ac08ea5b2f7dd0aef940d8a77bafad5c0d68fb +SIZE (KDE/release-service/20.12.3/ktouch-20.12.3.tar.xz) = 4942444 Index: head/misc/kwordquiz/distinfo =================================================================== --- head/misc/kwordquiz/distinfo (revision 567333) +++ head/misc/kwordquiz/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330809 -SHA256 (KDE/release-service/20.12.2/kwordquiz-20.12.2.tar.xz) = 58034526b84763aeceadad42ab60316d01a1715cf6a3566f943d2b6de12c33c6 -SIZE (KDE/release-service/20.12.2/kwordquiz-20.12.2.tar.xz) = 4187920 +TIMESTAMP = 1614706291 +SHA256 (KDE/release-service/20.12.3/kwordquiz-20.12.3.tar.xz) = d7a7e141669cb2c38ce40898866fd72928c8973ff6214a9b8f60a35bff91136f +SIZE (KDE/release-service/20.12.3/kwordquiz-20.12.3.tar.xz) = 4187776 Index: head/misc/libkeduvocdocument/distinfo =================================================================== --- head/misc/libkeduvocdocument/distinfo (revision 567333) +++ head/misc/libkeduvocdocument/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330809 -SHA256 (KDE/release-service/20.12.2/libkeduvocdocument-20.12.2.tar.xz) = c6701525781f0cf9c4e4173cfa0bb26e2fd5d1098fbfbe84d6cf0bb42b307152 -SIZE (KDE/release-service/20.12.2/libkeduvocdocument-20.12.2.tar.xz) = 211080 +TIMESTAMP = 1614706290 +SHA256 (KDE/release-service/20.12.3/libkeduvocdocument-20.12.3.tar.xz) = e0b5289c727258cf295631b3b2a50880966140e8e1681d7d96731cbe1520bcf4 +SIZE (KDE/release-service/20.12.3/libkeduvocdocument-20.12.3.tar.xz) = 211096 Index: head/misc/parley/distinfo =================================================================== --- head/misc/parley/distinfo (revision 567333) +++ head/misc/parley/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330810 -SHA256 (KDE/release-service/20.12.2/parley-20.12.2.tar.xz) = 0747b9d50ae5045e2c8bd158874a9d1942b5054dfc5c72a8cbfbd3c7f7ae9e9a -SIZE (KDE/release-service/20.12.2/parley-20.12.2.tar.xz) = 8842440 +TIMESTAMP = 1614706287 +SHA256 (KDE/release-service/20.12.3/parley-20.12.3.tar.xz) = 562aceea41a41cc9bf70212fad6cd77e4d7580d3125cee26073d6600295e8b48 +SIZE (KDE/release-service/20.12.3/parley-20.12.3.tar.xz) = 8842064 Index: head/multimedia/dragon/distinfo =================================================================== --- head/multimedia/dragon/distinfo (revision 567333) +++ head/multimedia/dragon/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330810 -SHA256 (KDE/release-service/20.12.2/dragon-20.12.2.tar.xz) = 4fb14332806ea2d169e3349b28b405a063872d661d78c78aa64ba4fadcc25a7b -SIZE (KDE/release-service/20.12.2/dragon-20.12.2.tar.xz) = 1656544 +TIMESTAMP = 1614706294 +SHA256 (KDE/release-service/20.12.3/dragon-20.12.3.tar.xz) = ea218014245455ed90a695c0031485ea9935053dd12cd6579367053d7d9f372a +SIZE (KDE/release-service/20.12.3/dragon-20.12.3.tar.xz) = 1656596 Index: head/multimedia/kamoso/distinfo =================================================================== --- head/multimedia/kamoso/distinfo (revision 567333) +++ head/multimedia/kamoso/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330811 -SHA256 (KDE/release-service/20.12.2/kamoso-20.12.2.tar.xz) = 69d557bd7f2f334c57b4713bb0dc71199c5afaf013f9c9895db92fc1a94d212b -SIZE (KDE/release-service/20.12.2/kamoso-20.12.2.tar.xz) = 211312 +TIMESTAMP = 1614706293 +SHA256 (KDE/release-service/20.12.3/kamoso-20.12.3.tar.xz) = a423ea7cdaf5ec8c452ae21841548084b682acae6f74bb1f68af2c181b73b07e +SIZE (KDE/release-service/20.12.3/kamoso-20.12.3.tar.xz) = 211540 Index: head/multimedia/kdemultimedia-ffmpegthumbs/distinfo =================================================================== --- head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 567333) +++ head/multimedia/kdemultimedia-ffmpegthumbs/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330812 -SHA256 (KDE/release-service/20.12.2/ffmpegthumbs-20.12.2.tar.xz) = 6f69dc7bdc45f5ad76c008cc160bd8799c3239f25c6eaea2ad6bca30fa798147 -SIZE (KDE/release-service/20.12.2/ffmpegthumbs-20.12.2.tar.xz) = 34128 +TIMESTAMP = 1614706292 +SHA256 (KDE/release-service/20.12.3/ffmpegthumbs-20.12.3.tar.xz) = 20a1ce8a47bc4bb790e20c1ea082dddbe3153f320f19b176146dc187651e96b3 +SIZE (KDE/release-service/20.12.3/ffmpegthumbs-20.12.3.tar.xz) = 34088 Index: head/multimedia/kdenlive/Makefile =================================================================== --- head/multimedia/kdenlive/Makefile (revision 567333) +++ head/multimedia/kdenlive/Makefile (revision 567334) @@ -1,71 +1,70 @@ # $FreeBSD$ PORTNAME= kdenlive DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE professional quality non-linear video editing suite LICENSE= GPLv2 LIB_DEPENDS= libmlt.so:multimedia/mlt \ librttr_core.so:devel/rttr BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext-tools \ gl pkgconfig qt:5 shared-mime-info kde:5 tar:xz xorg USE_GL= gl glu USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm filemetadata \ guiaddons i18n iconthemes kio itemviews jobwidgets \ kdeclarative newstuff notifications notifyconfig package \ service solid sonnet textwidgets widgetsaddons xmlgui \ init_run USE_QT= concurrent core dbus declarative gui multimedia network xml \ buildtools_build qmake_build \ quickcontrols_run script svg webkit widgets USE_XORG= x11 CFLAGS+= -I${LOCALBASE}/include # linux/input.h CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" # Keep in sync with multimedia/mlt, possibly. FFMPEG_SUFX= # Currently empty. OPTIONS_DEFINE= DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L XINE DOCS OPTIONS_DEFAULT=DVDWIZARD FILESHARE FREI0R LADSPA SCREENCAST V4L XINE OPTIONS_SUB= yes DVDWIZARD_DESC= DVD authoring via DVDAuthor and cdrtools FILESHARE_DESC= Common KF5 filesharing support SCREENCAST_DESC=Screen capture support via recordMyDesktop V4L_DESC= Webcam support via Video4Linux XINE_DESC= DVD preview support via xine DVDWIZARD_RUN_DEPENDS= dvdauthor:multimedia/dvdauthor \ cdrecord:sysutils/cdrtools FILESHARE_USE= KDE=purpose FILESHARE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Purpose FREI0R_RUN_DEPENDS= frei0r-plugins>=0:graphics/frei0r-plugins LADSPA_RUN_DEPENDS= swhplugins>=0:audio/swhplugins SCREENCAST_RUN_DEPENDS= recordmydesktop:multimedia/recordmydesktop V4L_LIB_DEPENDS= libv4l2.so:multimedia/libv4l V4L_CMAKE_OFF= -DWITH_LibV4L2:BOOL=FALSE XINE_RUN_DEPENDS= xine:multimedia/xine post-patch: @${REINPLACE_CMD} -e '/^update_xdg_mimetypes/ d' \ -e '/SharedMimeInfo/ d' \ ${PATCH_WRKSRC}/data/CMakeLists.txt .include Index: head/multimedia/kdenlive/distinfo =================================================================== --- head/multimedia/kdenlive/distinfo (revision 567333) +++ head/multimedia/kdenlive/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330813 -SHA256 (KDE/release-service/20.12.2/kdenlive-20.12.2.tar.xz) = 3fcb3f4fd7d77d70296fb6bcbbf716cda92acc8e5d6733448787b6a9a064013e -SIZE (KDE/release-service/20.12.2/kdenlive-20.12.2.tar.xz) = 11496508 +TIMESTAMP = 1614706291 +SHA256 (KDE/release-service/20.12.3/kdenlive-20.12.3.tar.xz) = 8d9f94699befc59b0a410d99dcafd445f33126678c18d859df4fceb553a88586 +SIZE (KDE/release-service/20.12.3/kdenlive-20.12.3.tar.xz) = 11514396 Index: head/multimedia/kdenlive/pkg-plist =================================================================== --- head/multimedia/kdenlive/pkg-plist (revision 567333) +++ head/multimedia/kdenlive/pkg-plist (revision 567334) @@ -1,481 +1,483 @@ bin/kdenlive bin/kdenlive_render %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/COPYING %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png share/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/icons/hicolor/16x16/actions/kdenlive-insert-edit.png share/icons/hicolor/16x16/actions/kdenlive-insert-rect.png share/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/icons/hicolor/16x16/actions/kdenlive-lock.png share/icons/hicolor/16x16/actions/kdenlive-menu.png share/icons/hicolor/16x16/actions/kdenlive-normal-edit.png share/icons/hicolor/16x16/actions/kdenlive-object-height.png share/icons/hicolor/16x16/actions/kdenlive-object-width.png share/icons/hicolor/16x16/actions/kdenlive-overwrite-edit.png share/icons/hicolor/16x16/actions/kdenlive-select-all.png share/icons/hicolor/16x16/actions/kdenlive-select-images.png share/icons/hicolor/16x16/actions/kdenlive-select-rects.png share/icons/hicolor/16x16/actions/kdenlive-select-texts.png share/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/icons/hicolor/16x16/actions/kdenlive-show-video.png share/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/icons/hicolor/16x16/actions/kdenlive-snap.png share/icons/hicolor/16x16/actions/kdenlive-spacer-tool.png share/icons/hicolor/16x16/actions/kdenlive-split-audio.png share/icons/hicolor/16x16/actions/kdenlive-track_has_effect.png share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/kdenlive-spacer-tool.png share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/actions/kdenlive-select-all.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/actions/kdenlive-add-subtitle.svg share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz share/icons/hicolor/scalable/actions/kdenlive-hide-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-hide-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-object-height.svgz share/icons/hicolor/scalable/actions/kdenlive-object-width.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-gpu-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-down.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-top.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-large.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-small.svgz share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz %%DATADIR%%/banner.png %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/automask.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml +%%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/meta_ffmpeg.png %%DATADIR%%/meta_libav.png %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/timeline_athumbs.png %%DATADIR%%/timeline_avthumbs.png %%DATADIR%%/timeline_nothumbs.png %%DATADIR%%/timeline_vthumbs.png %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/wipe.xml +share/locale/ia/LC_MESSAGES/kdenlive.mo share/knotifications5/kdenlive.notifyrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories Index: head/net/akonadi-calendar/distinfo =================================================================== --- head/net/akonadi-calendar/distinfo (revision 567333) +++ head/net/akonadi-calendar/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330826 -SHA256 (KDE/release-service/20.12.2/akonadi-calendar-20.12.2.tar.xz) = fc43b16e7f150d98b1698e9a1abf84f67180c004bb79ed62f9d68ac5bc27fb6f -SIZE (KDE/release-service/20.12.2/akonadi-calendar-20.12.2.tar.xz) = 342764 +TIMESTAMP = 1614706310 +SHA256 (KDE/release-service/20.12.3/akonadi-calendar-20.12.3.tar.xz) = 93275e67e403056a5d7ba9c4231a10ec08e2df542525378d507d37e493f8f114 +SIZE (KDE/release-service/20.12.3/akonadi-calendar-20.12.3.tar.xz) = 342788 Index: head/net/akonadi-contacts/distinfo =================================================================== --- head/net/akonadi-contacts/distinfo (revision 567333) +++ head/net/akonadi-contacts/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330826 -SHA256 (KDE/release-service/20.12.2/akonadi-contacts-20.12.2.tar.xz) = 7fab1fc1833d80a1a1b0040b723c57546bfa4401d3148a1fc511ea80f7cdc117 -SIZE (KDE/release-service/20.12.2/akonadi-contacts-20.12.2.tar.xz) = 414208 +TIMESTAMP = 1614706316 +SHA256 (KDE/release-service/20.12.3/akonadi-contacts-20.12.3.tar.xz) = 2437f17f249df22e125aa3c5e12ba39a54fc063fe146b9756b5104e946cf87e2 +SIZE (KDE/release-service/20.12.3/akonadi-contacts-20.12.3.tar.xz) = 414416 Index: head/net/akonadi-mime/distinfo =================================================================== --- head/net/akonadi-mime/distinfo (revision 567333) +++ head/net/akonadi-mime/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330827 -SHA256 (KDE/release-service/20.12.2/akonadi-mime-20.12.2.tar.xz) = 24a55af289751077222c5b8f6ba28d404e698a2b4844e845168a7f31bc9daf7d -SIZE (KDE/release-service/20.12.2/akonadi-mime-20.12.2.tar.xz) = 135892 +TIMESTAMP = 1614706295 +SHA256 (KDE/release-service/20.12.3/akonadi-mime-20.12.3.tar.xz) = f45d97ddfed592db897cb7dd0e50183dd72b0f2bdb761168917bd4b739d7ddb6 +SIZE (KDE/release-service/20.12.3/akonadi-mime-20.12.3.tar.xz) = 136144 Index: head/net/akonadi-notes/distinfo =================================================================== --- head/net/akonadi-notes/distinfo (revision 567333) +++ head/net/akonadi-notes/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330828 -SHA256 (KDE/release-service/20.12.2/akonadi-notes-20.12.2.tar.xz) = 5b48c2f5b16abce7027e11b013bd91e7aaef4797e05756b85b3f2830f9166f65 -SIZE (KDE/release-service/20.12.2/akonadi-notes-20.12.2.tar.xz) = 22916 +TIMESTAMP = 1614706303 +SHA256 (KDE/release-service/20.12.3/akonadi-notes-20.12.3.tar.xz) = 87455a4cab94a8dae020e3a6ecf1e924440d8df1840bde6cb69a046e5cace5ba +SIZE (KDE/release-service/20.12.3/akonadi-notes-20.12.3.tar.xz) = 22876 Index: head/net/akonadi-search/distinfo =================================================================== --- head/net/akonadi-search/distinfo (revision 567333) +++ head/net/akonadi-search/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330828 -SHA256 (KDE/release-service/20.12.2/akonadi-search-20.12.2.tar.xz) = 4a96b8e96b4e195d73f3ab5f7fb742c94f1c7bad6fdd784b4301c867843bf454 -SIZE (KDE/release-service/20.12.2/akonadi-search-20.12.2.tar.xz) = 93988 +TIMESTAMP = 1614706312 +SHA256 (KDE/release-service/20.12.3/akonadi-search-20.12.3.tar.xz) = f85cac2a99e94772d780ea8cbaaf069f86fd7c0b3e7a5c6ea1dbad5a2c104c2d +SIZE (KDE/release-service/20.12.3/akonadi-search-20.12.3.tar.xz) = 93984 Index: head/net/calendarsupport/distinfo =================================================================== --- head/net/calendarsupport/distinfo (revision 567333) +++ head/net/calendarsupport/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330829 -SHA256 (KDE/release-service/20.12.2/calendarsupport-20.12.2.tar.xz) = 6de55515093422eabb5218f440d971ca3e2abf6312d3faf8078324f215b9e33f -SIZE (KDE/release-service/20.12.2/calendarsupport-20.12.2.tar.xz) = 665200 +TIMESTAMP = 1614706318 +SHA256 (KDE/release-service/20.12.3/calendarsupport-20.12.3.tar.xz) = ab418fb8ed8a9aee1d0798fe934e59593b6b985c85220405814f159c954a8d10 +SIZE (KDE/release-service/20.12.3/calendarsupport-20.12.3.tar.xz) = 666200 Index: head/net/eventviews/distinfo =================================================================== --- head/net/eventviews/distinfo (revision 567333) +++ head/net/eventviews/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330830 -SHA256 (KDE/release-service/20.12.2/eventviews-20.12.2.tar.xz) = 69dc2fe3c593e9387ac244b75ac7653f1fc6bee2865c8c412d44972520c48abc -SIZE (KDE/release-service/20.12.2/eventviews-20.12.2.tar.xz) = 444096 +TIMESTAMP = 1614706313 +SHA256 (KDE/release-service/20.12.3/eventviews-20.12.3.tar.xz) = 7b624e52fae929c9c69d989ec24601f10fd1af50674a2ce3ce7108e2f2866e5e +SIZE (KDE/release-service/20.12.3/eventviews-20.12.3.tar.xz) = 444100 Index: head/net/incidenceeditor/distinfo =================================================================== --- head/net/incidenceeditor/distinfo (revision 567333) +++ head/net/incidenceeditor/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330831 -SHA256 (KDE/release-service/20.12.2/incidenceeditor-20.12.2.tar.xz) = e856a749d1cad4cd04e5a526065db10111ed7045e02667dbb09765a16af388e0 -SIZE (KDE/release-service/20.12.2/incidenceeditor-20.12.2.tar.xz) = 546144 +TIMESTAMP = 1614706300 +SHA256 (KDE/release-service/20.12.3/incidenceeditor-20.12.3.tar.xz) = 44059c06fc725b085a196c619cdb509829f7a57f17eced56fc6755cdcd07ce13 +SIZE (KDE/release-service/20.12.3/incidenceeditor-20.12.3.tar.xz) = 546308 Index: head/net/kalarmcal/distinfo =================================================================== --- head/net/kalarmcal/distinfo (revision 567333) +++ head/net/kalarmcal/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330831 -SHA256 (KDE/release-service/20.12.2/kalarmcal-20.12.2.tar.xz) = eb0840c3b7054b2afecb751afec249abfc1e068c4adadb616f288c704ca2949e -SIZE (KDE/release-service/20.12.2/kalarmcal-20.12.2.tar.xz) = 576636 +TIMESTAMP = 1614706315 +SHA256 (KDE/release-service/20.12.3/kalarmcal-20.12.3.tar.xz) = 0f7e1b46f81c9a77178ea93b536b3985aad00dcf5bd01881b7945bccf96d98a0 +SIZE (KDE/release-service/20.12.3/kalarmcal-20.12.3.tar.xz) = 576680 Index: head/net/kcalutils/distinfo =================================================================== --- head/net/kcalutils/distinfo (revision 567333) +++ head/net/kcalutils/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330832 -SHA256 (KDE/release-service/20.12.2/kcalutils-20.12.2.tar.xz) = 0c9ab114ad1f7c4d87bf65d6e5d581735437110f7ab83298d1bf908463c88ccc -SIZE (KDE/release-service/20.12.2/kcalutils-20.12.2.tar.xz) = 324624 +TIMESTAMP = 1614706294 +SHA256 (KDE/release-service/20.12.3/kcalutils-20.12.3.tar.xz) = 1d1f333e55c0d6e476315bf8e08fc2a332e51a122985f6757eb669560148432b +SIZE (KDE/release-service/20.12.3/kcalutils-20.12.3.tar.xz) = 324512 Index: head/net/kdenetwork-filesharing/distinfo =================================================================== --- head/net/kdenetwork-filesharing/distinfo (revision 567333) +++ head/net/kdenetwork-filesharing/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330833 -SHA256 (KDE/release-service/20.12.2/kdenetwork-filesharing-20.12.2.tar.xz) = 3ffe68bb7888c6302adae8b8849a7515b0460662071ec5370c0d4e98c057c078 -SIZE (KDE/release-service/20.12.2/kdenetwork-filesharing-20.12.2.tar.xz) = 346576 +TIMESTAMP = 1614706310 +SHA256 (KDE/release-service/20.12.3/kdenetwork-filesharing-20.12.3.tar.xz) = 62ad6b0908e8c0fd7a3ff05b01e60593e7e7a6b861b25743555ce7c7c320e3d1 +SIZE (KDE/release-service/20.12.3/kdenetwork-filesharing-20.12.3.tar.xz) = 346716 Index: head/net/kget/distinfo =================================================================== --- head/net/kget/distinfo (revision 567333) +++ head/net/kget/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330834 -SHA256 (KDE/release-service/20.12.2/kget-20.12.2.tar.xz) = b7a021fa5b85348c84445893ec8052d37e796aae43bd39d6c758a6a85426caf7 -SIZE (KDE/release-service/20.12.2/kget-20.12.2.tar.xz) = 5583764 +TIMESTAMP = 1614706306 +SHA256 (KDE/release-service/20.12.3/kget-20.12.3.tar.xz) = d4eed8f395262cfd94c2b8c9caea3523d78c68000d471c1d76ad1aecc6f6024e +SIZE (KDE/release-service/20.12.3/kget-20.12.3.tar.xz) = 5583636 Index: head/net/kidentitymanagement/distinfo =================================================================== --- head/net/kidentitymanagement/distinfo (revision 567333) +++ head/net/kidentitymanagement/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330835 -SHA256 (KDE/release-service/20.12.2/kidentitymanagement-20.12.2.tar.xz) = f2693527a0f95c39e0afa075efb7a31533014140467c393ef7a0db18337397ed -SIZE (KDE/release-service/20.12.2/kidentitymanagement-20.12.2.tar.xz) = 152092 +TIMESTAMP = 1614706298 +SHA256 (KDE/release-service/20.12.3/kidentitymanagement-20.12.3.tar.xz) = 036a3b55d11a106ca2a4ab0712942baeea58b7559422730eaf6f904c4a902d98 +SIZE (KDE/release-service/20.12.3/kidentitymanagement-20.12.3.tar.xz) = 152000 Index: head/net/kimap/distinfo =================================================================== --- head/net/kimap/distinfo (revision 567333) +++ head/net/kimap/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330835 -SHA256 (KDE/release-service/20.12.2/kimap-20.12.2.tar.xz) = ad809073b32a98b07d08bff09d3ac687d8121c1f278facffc8cee2b08c7d7292 -SIZE (KDE/release-service/20.12.2/kimap-20.12.2.tar.xz) = 124672 +TIMESTAMP = 1614706305 +SHA256 (KDE/release-service/20.12.3/kimap-20.12.3.tar.xz) = 321dbb9881480e7fa75a9a6c8b117030f0cbc97e5e43f39dff8fe643fd271320 +SIZE (KDE/release-service/20.12.3/kimap-20.12.3.tar.xz) = 124676 Index: head/net/kio-gdrive/distinfo =================================================================== --- head/net/kio-gdrive/distinfo (revision 567333) +++ head/net/kio-gdrive/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330836 -SHA256 (KDE/release-service/20.12.2/kio-gdrive-20.12.2.tar.xz) = 758a8d2b61537a58a968b67ca5318ea70370bd04c2806c7baf7625abe1549c67 -SIZE (KDE/release-service/20.12.2/kio-gdrive-20.12.2.tar.xz) = 64516 +TIMESTAMP = 1614706297 +SHA256 (KDE/release-service/20.12.3/kio-gdrive-20.12.3.tar.xz) = 4569cc07681aa88a81bda7923c795916cc6d1578859e11f0bb336699db8f7b70 +SIZE (KDE/release-service/20.12.3/kio-gdrive-20.12.3.tar.xz) = 64532 Index: head/net/kitinerary/Makefile =================================================================== --- head/net/kitinerary/Makefile (revision 567333) +++ head/net/kitinerary/Makefile (revision 567334) @@ -1,30 +1,29 @@ # $FreeBSD$ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Data Model and Extraction System for Travel Reservation information LICENSE= LGPL21 LIB_DEPENDS= libphonenumber.so:devel/libphonenumber \ libpoppler.so:graphics/poppler \ libZXing.so:textproc/zxing-cpp USES= compiler:c++11-lang cmake gettext gnome kde:5 pkgconfig qt:5 tar:xz USE_GNOME= libxml2 USE_KDE= coreaddons ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative gui network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include Index: head/net/kitinerary/distinfo =================================================================== --- head/net/kitinerary/distinfo (revision 567333) +++ head/net/kitinerary/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330836 -SHA256 (KDE/release-service/20.12.2/kitinerary-20.12.2.tar.xz) = 972b35fd40b6e6b88a4446da445b4293b7733d33d74a661b264435ca93f4327d -SIZE (KDE/release-service/20.12.2/kitinerary-20.12.2.tar.xz) = 1814612 +TIMESTAMP = 1614706313 +SHA256 (KDE/release-service/20.12.3/kitinerary-20.12.3.tar.xz) = 559ea8d470e7c053f92470b3141657025950749200ec4deb3cc86e4bd9111add +SIZE (KDE/release-service/20.12.3/kitinerary-20.12.3.tar.xz) = 1808996 Index: head/net/kldap/distinfo =================================================================== --- head/net/kldap/distinfo (revision 567333) +++ head/net/kldap/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330837 -SHA256 (KDE/release-service/20.12.2/kldap-20.12.2.tar.xz) = cbd06f4f2adfb2f0e539e36572eda31af582c4c62519f714ce0ffc8757d74fda -SIZE (KDE/release-service/20.12.2/kldap-20.12.2.tar.xz) = 164608 +TIMESTAMP = 1614706303 +SHA256 (KDE/release-service/20.12.3/kldap-20.12.3.tar.xz) = 4c0cbcdffe92b0f7884721f564702aab65a208e5938c9a118a1ef30082d9d653 +SIZE (KDE/release-service/20.12.3/kldap-20.12.3.tar.xz) = 164652 Index: head/net/kmailtransport/distinfo =================================================================== --- head/net/kmailtransport/distinfo (revision 567333) +++ head/net/kmailtransport/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330838 -SHA256 (KDE/release-service/20.12.2/kmailtransport-20.12.2.tar.xz) = fbd35cd8f119fe13a21c23a59d6cd0dd7479d55cdf0d1ef4192617e644b17686 -SIZE (KDE/release-service/20.12.2/kmailtransport-20.12.2.tar.xz) = 168128 +TIMESTAMP = 1614706296 +SHA256 (KDE/release-service/20.12.3/kmailtransport-20.12.3.tar.xz) = d718d7b74a5a478ca070d8ddae6927351e470dcf79550c4d0d64b94a331859d4 +SIZE (KDE/release-service/20.12.3/kmailtransport-20.12.3.tar.xz) = 168148 Index: head/net/kmbox/distinfo =================================================================== --- head/net/kmbox/distinfo (revision 567333) +++ head/net/kmbox/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330839 -SHA256 (KDE/release-service/20.12.2/kmbox-20.12.2.tar.xz) = 14068aab474b36075c4eb422fd0ed5fc2121de7e62186f74d34235f206d0e664 -SIZE (KDE/release-service/20.12.2/kmbox-20.12.2.tar.xz) = 24788 +TIMESTAMP = 1614706300 +SHA256 (KDE/release-service/20.12.3/kmbox-20.12.3.tar.xz) = 0ec56cfdb4a697a64c57962733df5d77c253f80e6a718b6ed974ccc9eefd9033 +SIZE (KDE/release-service/20.12.3/kmbox-20.12.3.tar.xz) = 24792 Index: head/net/kmime/distinfo =================================================================== --- head/net/kmime/distinfo (revision 567333) +++ head/net/kmime/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330839 -SHA256 (KDE/release-service/20.12.2/kmime-20.12.2.tar.xz) = f18520bd2c4106edf996ea01ab6060071f4c5359ca83a61840515ec19486eeca -SIZE (KDE/release-service/20.12.2/kmime-20.12.2.tar.xz) = 150928 +TIMESTAMP = 1614706309 +SHA256 (KDE/release-service/20.12.3/kmime-20.12.3.tar.xz) = 381e6839d8f830e5b7b31a6272122676e935cf4b25857ca9b247cc9572ef476d +SIZE (KDE/release-service/20.12.3/kmime-20.12.3.tar.xz) = 150872 Index: head/net/kontactinterface/distinfo =================================================================== --- head/net/kontactinterface/distinfo (revision 567333) +++ head/net/kontactinterface/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330840 -SHA256 (KDE/release-service/20.12.2/kontactinterface-20.12.2.tar.xz) = 5a3982efe09e28d2b4af7e024df648eb19102052e0198029de95b04c6aec7344 -SIZE (KDE/release-service/20.12.2/kontactinterface-20.12.2.tar.xz) = 36072 +TIMESTAMP = 1614706305 +SHA256 (KDE/release-service/20.12.3/kontactinterface-20.12.3.tar.xz) = 3c9f395c2eaf843689e3ace68d8c06cbdbe914f4888657c676cdfe05ba981ddb +SIZE (KDE/release-service/20.12.3/kontactinterface-20.12.3.tar.xz) = 36056 Index: head/net/kpimtextedit/distinfo =================================================================== --- head/net/kpimtextedit/distinfo (revision 567333) +++ head/net/kpimtextedit/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330841 -SHA256 (KDE/release-service/20.12.2/kpimtextedit-20.12.2.tar.xz) = 7e9833d9210be7f5d4261d81f5a55f6111b21d186e4b07cb226be9d517ff9bb1 -SIZE (KDE/release-service/20.12.2/kpimtextedit-20.12.2.tar.xz) = 201248 +TIMESTAMP = 1614706297 +SHA256 (KDE/release-service/20.12.3/kpimtextedit-20.12.3.tar.xz) = 3377669943dfe8990d011a2ceb9d01759518f5097732424afa723ffd7e61931e +SIZE (KDE/release-service/20.12.3/kpimtextedit-20.12.3.tar.xz) = 201292 Index: head/net/krdc/distinfo =================================================================== --- head/net/krdc/distinfo (revision 567333) +++ head/net/krdc/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330841 -SHA256 (KDE/release-service/20.12.2/krdc-20.12.2.tar.xz) = f9d3fb68cbc3c32d3801565a437ab460aa7dfb9464ab46ce628f53d56e11fb73 -SIZE (KDE/release-service/20.12.2/krdc-20.12.2.tar.xz) = 1564304 +TIMESTAMP = 1614706307 +SHA256 (KDE/release-service/20.12.3/krdc-20.12.3.tar.xz) = 223e9efc636d752456aeb777523d556bd2d2b919a6729f5bf8e53ef643b8fc68 +SIZE (KDE/release-service/20.12.3/krdc-20.12.3.tar.xz) = 1564652 Index: head/net/krfb/distinfo =================================================================== --- head/net/krfb/distinfo (revision 567333) +++ head/net/krfb/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330842 -SHA256 (KDE/release-service/20.12.2/krfb-20.12.2.tar.xz) = a879e96f42682c804855274ce7cb6f030b08f14053bc367f5807229d9826484b -SIZE (KDE/release-service/20.12.2/krfb-20.12.2.tar.xz) = 1280852 +TIMESTAMP = 1614706304 +SHA256 (KDE/release-service/20.12.3/krfb-20.12.3.tar.xz) = 8479b5ac9c955d06171b8ce4ec80ec178d7de263b441db3459fc1f307ed5e518 +SIZE (KDE/release-service/20.12.3/krfb-20.12.3.tar.xz) = 1280912 Index: head/net/ksmtp/distinfo =================================================================== --- head/net/ksmtp/distinfo (revision 567333) +++ head/net/ksmtp/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330843 -SHA256 (KDE/release-service/20.12.2/ksmtp-20.12.2.tar.xz) = 9c527e4358228120ef5f65d257b4ed3efe2157b3a46f0041665a2399d92f9a65 -SIZE (KDE/release-service/20.12.2/ksmtp-20.12.2.tar.xz) = 43092 +TIMESTAMP = 1614706301 +SHA256 (KDE/release-service/20.12.3/ksmtp-20.12.3.tar.xz) = 8667c3591c28a7fd08d1d0b726bd641b2cf5b9a51f228317b934e041608cb962 +SIZE (KDE/release-service/20.12.3/ksmtp-20.12.3.tar.xz) = 43124 Index: head/net/ktnef/distinfo =================================================================== --- head/net/ktnef/distinfo (revision 567333) +++ head/net/ktnef/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330844 -SHA256 (KDE/release-service/20.12.2/ktnef-20.12.2.tar.xz) = b8bf4d1bb1af6b55dc5ff31d60263bb7e8095e5f9710073253d5e1f7a9eaed90 -SIZE (KDE/release-service/20.12.2/ktnef-20.12.2.tar.xz) = 299868 +TIMESTAMP = 1614706317 +SHA256 (KDE/release-service/20.12.3/ktnef-20.12.3.tar.xz) = 78d7f3d512a1ab1d7ef4af81b47a865e933b2338004ddb174d35913f13887873 +SIZE (KDE/release-service/20.12.3/ktnef-20.12.3.tar.xz) = 299852 Index: head/net/libgravatar/distinfo =================================================================== --- head/net/libgravatar/distinfo (revision 567333) +++ head/net/libgravatar/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330844 -SHA256 (KDE/release-service/20.12.2/libgravatar-20.12.2.tar.xz) = 6df8d34f6444b44f14bed6edd3e0e83c511d64ea7a0b797cad6e678ec091f61e -SIZE (KDE/release-service/20.12.2/libgravatar-20.12.2.tar.xz) = 31124 +TIMESTAMP = 1614706315 +SHA256 (KDE/release-service/20.12.3/libgravatar-20.12.3.tar.xz) = c4a2dacfd5b69b19ae8cb2e1c7295cd968e27ea1dea31f98cee06740b6991c8c +SIZE (KDE/release-service/20.12.3/libgravatar-20.12.3.tar.xz) = 31160 Index: head/net/libkgapi/distinfo =================================================================== --- head/net/libkgapi/distinfo (revision 567333) +++ head/net/libkgapi/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330845 -SHA256 (KDE/release-service/20.12.2/libkgapi-20.12.2.tar.xz) = d1161dc2a0b4cd93251894a6dc320273038da71e09b733545956f61e0fd04af9 -SIZE (KDE/release-service/20.12.2/libkgapi-20.12.2.tar.xz) = 246020 +TIMESTAMP = 1614706296 +SHA256 (KDE/release-service/20.12.3/libkgapi-20.12.3.tar.xz) = fd668411c3d1e9f65237d15d884efd5cfb7cae0a90fa517bcf833f3980653941 +SIZE (KDE/release-service/20.12.3/libkgapi-20.12.3.tar.xz) = 246100 Index: head/net/libksieve/distinfo =================================================================== --- head/net/libksieve/distinfo (revision 567333) +++ head/net/libksieve/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330846 -SHA256 (KDE/release-service/20.12.2/libksieve-20.12.2.tar.xz) = 72605f5fc2786b28df98b676b27236096211b4c130adb1a31ea56bc22e834c66 -SIZE (KDE/release-service/20.12.2/libksieve-20.12.2.tar.xz) = 558380 +TIMESTAMP = 1614706311 +SHA256 (KDE/release-service/20.12.3/libksieve-20.12.3.tar.xz) = 009f80fba22ad1eed770b780df6b0757a83e97eec6ba0454f496eaf6b54c2448 +SIZE (KDE/release-service/20.12.3/libksieve-20.12.3.tar.xz) = 558368 Index: head/net/mailcommon/distinfo =================================================================== --- head/net/mailcommon/distinfo (revision 567333) +++ head/net/mailcommon/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330846 -SHA256 (KDE/release-service/20.12.2/mailcommon-20.12.2.tar.xz) = 651b66ca7e0bee98a300068bb3ca62edfa23b4cb535235603e97d1576ac96b61 -SIZE (KDE/release-service/20.12.2/mailcommon-20.12.2.tar.xz) = 723900 +TIMESTAMP = 1614706308 +SHA256 (KDE/release-service/20.12.3/mailcommon-20.12.3.tar.xz) = 9568a0de8ca61d0af950ba7c407d5fede2c89eb245976e2224c596e8cdbe177c +SIZE (KDE/release-service/20.12.3/mailcommon-20.12.3.tar.xz) = 723876 Index: head/net/mailimporter/distinfo =================================================================== --- head/net/mailimporter/distinfo (revision 567333) +++ head/net/mailimporter/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330847 -SHA256 (KDE/release-service/20.12.2/mailimporter-20.12.2.tar.xz) = db2314d02327bdc9b3e083d08a0549145c4deb82aeeeef4e4c30f2b7bdcb5499 -SIZE (KDE/release-service/20.12.2/mailimporter-20.12.2.tar.xz) = 548636 +TIMESTAMP = 1614706308 +SHA256 (KDE/release-service/20.12.3/mailimporter-20.12.3.tar.xz) = d67af2f3f62ccf934b4c23982750c05e70bbc144bea231eba560278363de73d2 +SIZE (KDE/release-service/20.12.3/mailimporter-20.12.3.tar.xz) = 548588 Index: head/net/messagelib/distinfo =================================================================== --- head/net/messagelib/distinfo (revision 567333) +++ head/net/messagelib/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330848 -SHA256 (KDE/release-service/20.12.2/messagelib-20.12.2.tar.xz) = a474d64dceaa4e66cfe85b1e00d6188df498f93cbf526eaccedad505ace6bf1e -SIZE (KDE/release-service/20.12.2/messagelib-20.12.2.tar.xz) = 10542352 +TIMESTAMP = 1614706314 +SHA256 (KDE/release-service/20.12.3/messagelib-20.12.3.tar.xz) = 3aae37239d281aa6137b57baa5ac8834f5f95786847cc72fd879f664fce12c23 +SIZE (KDE/release-service/20.12.3/messagelib-20.12.3.tar.xz) = 10527968 Index: head/net/pimcommon/distinfo =================================================================== --- head/net/pimcommon/distinfo (revision 567333) +++ head/net/pimcommon/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330849 -SHA256 (KDE/release-service/20.12.2/pimcommon-20.12.2.tar.xz) = 3a170f4db0cd9f691ddf5f43831cfa688c2113b8f5bd6c84895f869a2e547539 -SIZE (KDE/release-service/20.12.2/pimcommon-20.12.2.tar.xz) = 364268 +TIMESTAMP = 1614706299 +SHA256 (KDE/release-service/20.12.3/pimcommon-20.12.3.tar.xz) = 0b9a0ad2128f41aa5de06dc2a9b28d631ca6a47a5fcf26e5320045f08228fea1 +SIZE (KDE/release-service/20.12.3/pimcommon-20.12.3.tar.xz) = 364304 Index: head/net/zeroconf-ioslave/distinfo =================================================================== --- head/net/zeroconf-ioslave/distinfo (revision 567333) +++ head/net/zeroconf-ioslave/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330849 -SHA256 (KDE/release-service/20.12.2/zeroconf-ioslave-20.12.2.tar.xz) = d3fa1c23f04cc574aaa1795396cc3016caa0b72e8e1900361bca73ce378a167b -SIZE (KDE/release-service/20.12.2/zeroconf-ioslave-20.12.2.tar.xz) = 43332 +TIMESTAMP = 1614706302 +SHA256 (KDE/release-service/20.12.3/zeroconf-ioslave-20.12.3.tar.xz) = 9b668aeefba34127078634625603621ee5b96809eb696b591a2dc97d64eda7ff +SIZE (KDE/release-service/20.12.3/zeroconf-ioslave-20.12.3.tar.xz) = 43424 Index: head/net-im/kaccounts-integration/distinfo =================================================================== --- head/net-im/kaccounts-integration/distinfo (revision 567333) +++ head/net-im/kaccounts-integration/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330814 -SHA256 (KDE/release-service/20.12.2/kaccounts-integration-20.12.2.tar.xz) = d2cd7db9a66fa60530db93be3de744166b13ba83ffc47f18e85b2a6dae3bfe96 -SIZE (KDE/release-service/20.12.2/kaccounts-integration-20.12.2.tar.xz) = 84420 +TIMESTAMP = 1614706320 +SHA256 (KDE/release-service/20.12.3/kaccounts-integration-20.12.3.tar.xz) = 98390b72fbb3eb26a892f6f2169d71df754dd44887ed599116b624012297a655 +SIZE (KDE/release-service/20.12.3/kaccounts-integration-20.12.3.tar.xz) = 84376 Index: head/net-im/kaccounts-providers/distinfo =================================================================== --- head/net-im/kaccounts-providers/distinfo (revision 567333) +++ head/net-im/kaccounts-providers/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330814 -SHA256 (KDE/release-service/20.12.2/kaccounts-providers-20.12.2.tar.xz) = 804905e0ccedf53ba9c334a4a488cffeaaa5ea5bf983949565a67f3be6a00508 -SIZE (KDE/release-service/20.12.2/kaccounts-providers-20.12.2.tar.xz) = 61632 +TIMESTAMP = 1614706319 +SHA256 (KDE/release-service/20.12.3/kaccounts-providers-20.12.3.tar.xz) = ae71cadebff1e16991c48fcb9c71c177e2fc2d04536b89d1437587bcdae70617 +SIZE (KDE/release-service/20.12.3/kaccounts-providers-20.12.3.tar.xz) = 61612 Index: head/net-im/kopete/distinfo =================================================================== --- head/net-im/kopete/distinfo (revision 567333) +++ head/net-im/kopete/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612339851 -SHA256 (KDE/release-service/20.12.2/kopete-20.12.2.tar.xz) = 71f73b093e749ca94736940ba78826d17956d52b5c8d9ae7a06dc512f7ec0c2a -SIZE (KDE/release-service/20.12.2/kopete-20.12.2.tar.xz) = 9380216 +TIMESTAMP = 1614706320 +SHA256 (KDE/release-service/20.12.3/kopete-20.12.3.tar.xz) = dcf413b5d88a70be57be1078382b8426cba4e2a61fc7e3be9adcb554304a844a +SIZE (KDE/release-service/20.12.3/kopete-20.12.3.tar.xz) = 9380060 Index: head/net-im/ktp-accounts-kcm/distinfo =================================================================== --- head/net-im/ktp-accounts-kcm/distinfo (revision 567333) +++ head/net-im/ktp-accounts-kcm/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330815 -SHA256 (KDE/release-service/20.12.2/ktp-accounts-kcm-20.12.2.tar.xz) = 45eb9d5aadf361f6f97582def46be125c919200882142db484a2650f8019d937 -SIZE (KDE/release-service/20.12.2/ktp-accounts-kcm-20.12.2.tar.xz) = 262164 +TIMESTAMP = 1614706318 +SHA256 (KDE/release-service/20.12.3/ktp-accounts-kcm-20.12.3.tar.xz) = c2a7ba913eaf48d485229d3f46df46582feaff3eccb582a775c1aefaaf66464a +SIZE (KDE/release-service/20.12.3/ktp-accounts-kcm-20.12.3.tar.xz) = 262196 Index: head/net-im/ktp-approver/distinfo =================================================================== --- head/net-im/ktp-approver/distinfo (revision 567333) +++ head/net-im/ktp-approver/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330816 -SHA256 (KDE/release-service/20.12.2/ktp-approver-20.12.2.tar.xz) = f9f315eba9c74c76c0bd19367924c680aaedd1b2aa8a008f3333568c53886ec0 -SIZE (KDE/release-service/20.12.2/ktp-approver-20.12.2.tar.xz) = 37312 +TIMESTAMP = 1614706325 +SHA256 (KDE/release-service/20.12.3/ktp-approver-20.12.3.tar.xz) = 83f89f6784bb266b31086605bc21788792da4b503b4132d49ed892064abd3faf +SIZE (KDE/release-service/20.12.3/ktp-approver-20.12.3.tar.xz) = 37304 Index: head/net-im/ktp-auth-handler/distinfo =================================================================== --- head/net-im/ktp-auth-handler/distinfo (revision 567333) +++ head/net-im/ktp-auth-handler/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330817 -SHA256 (KDE/release-service/20.12.2/ktp-auth-handler-20.12.2.tar.xz) = 70ac7e794bf1c79f1b27eb75f8e2bf1952c2f0750b3358756df0c8ce2e421695 -SIZE (KDE/release-service/20.12.2/ktp-auth-handler-20.12.2.tar.xz) = 46364 +TIMESTAMP = 1614706327 +SHA256 (KDE/release-service/20.12.3/ktp-auth-handler-20.12.3.tar.xz) = 8c3d818537bb377e7c37636567762e8a6658776951216384b76a2281686712c5 +SIZE (KDE/release-service/20.12.3/ktp-auth-handler-20.12.3.tar.xz) = 46328 Index: head/net-im/ktp-call-ui/distinfo =================================================================== --- head/net-im/ktp-call-ui/distinfo (revision 567333) +++ head/net-im/ktp-call-ui/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330818 -SHA256 (KDE/release-service/20.12.2/ktp-call-ui-20.12.2.tar.xz) = ca375a1d3cd5a698f787c7f6adb761675944adac569acd748468998c5f3a0e76 -SIZE (KDE/release-service/20.12.2/ktp-call-ui-20.12.2.tar.xz) = 97244 +TIMESTAMP = 1614706321 +SHA256 (KDE/release-service/20.12.3/ktp-call-ui-20.12.3.tar.xz) = 1427425e9ae7b8a0df658f5e3c8c58e349c73232189165d719eb0ffd0fa6321d +SIZE (KDE/release-service/20.12.3/ktp-call-ui-20.12.3.tar.xz) = 97296 Index: head/net-im/ktp-common-internals/distinfo =================================================================== --- head/net-im/ktp-common-internals/distinfo (revision 567333) +++ head/net-im/ktp-common-internals/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330818 -SHA256 (KDE/release-service/20.12.2/ktp-common-internals-20.12.2.tar.xz) = e608467ffc4eb33e1209fbbc3ed1a9d9bc6bbc0bd5446759e9960949017aa81a -SIZE (KDE/release-service/20.12.2/ktp-common-internals-20.12.2.tar.xz) = 449536 +TIMESTAMP = 1614706326 +SHA256 (KDE/release-service/20.12.3/ktp-common-internals-20.12.3.tar.xz) = 8417d7ed3cb3fbf9094556484bec56932d5e6482fd355a6af3a241a99d673031 +SIZE (KDE/release-service/20.12.3/ktp-common-internals-20.12.3.tar.xz) = 449572 Index: head/net-im/ktp-contact-list/distinfo =================================================================== --- head/net-im/ktp-contact-list/distinfo (revision 567333) +++ head/net-im/ktp-contact-list/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330819 -SHA256 (KDE/release-service/20.12.2/ktp-contact-list-20.12.2.tar.xz) = 91ca8f45a6153d6fa8629cec7e6df1201cff463ccdc0ef4f438159440f89fa0c -SIZE (KDE/release-service/20.12.2/ktp-contact-list-20.12.2.tar.xz) = 150236 +TIMESTAMP = 1614706323 +SHA256 (KDE/release-service/20.12.3/ktp-contact-list-20.12.3.tar.xz) = 2e8f38dd7196e2705c6f6a2b6a97ba4bba49195ea7b9b81f70260a27afa8f80d +SIZE (KDE/release-service/20.12.3/ktp-contact-list-20.12.3.tar.xz) = 150320 Index: head/net-im/ktp-contact-runner/distinfo =================================================================== --- head/net-im/ktp-contact-runner/distinfo (revision 567333) +++ head/net-im/ktp-contact-runner/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330820 -SHA256 (KDE/release-service/20.12.2/ktp-contact-runner-20.12.2.tar.xz) = 66242ec06b7719bc685590fce152729aef431f97585bd1e8cba5d15a5cd567df -SIZE (KDE/release-service/20.12.2/ktp-contact-runner-20.12.2.tar.xz) = 43092 +TIMESTAMP = 1614706323 +SHA256 (KDE/release-service/20.12.3/ktp-contact-runner-20.12.3.tar.xz) = 6cc1d322e37cbf78142eaceb2c6d112e10166070fdaf7112f6277801d6faeb10 +SIZE (KDE/release-service/20.12.3/ktp-contact-runner-20.12.3.tar.xz) = 43084 Index: head/net-im/ktp-desktop-applets/distinfo =================================================================== --- head/net-im/ktp-desktop-applets/distinfo (revision 567333) +++ head/net-im/ktp-desktop-applets/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330820 -SHA256 (KDE/release-service/20.12.2/ktp-desktop-applets-20.12.2.tar.xz) = a4f7372cf6fb793f1bc592382aee77efda21af9e5bc3c7ef9ad794335fc0a1d7 -SIZE (KDE/release-service/20.12.2/ktp-desktop-applets-20.12.2.tar.xz) = 43712 +TIMESTAMP = 1614706328 +SHA256 (KDE/release-service/20.12.3/ktp-desktop-applets-20.12.3.tar.xz) = d0c4806627de8176420c170f1f83efd439596ae0139889b42f249ef5d48f96d4 +SIZE (KDE/release-service/20.12.3/ktp-desktop-applets-20.12.3.tar.xz) = 43704 Index: head/net-im/ktp-filetransfer-handler/distinfo =================================================================== --- head/net-im/ktp-filetransfer-handler/distinfo (revision 567333) +++ head/net-im/ktp-filetransfer-handler/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330821 -SHA256 (KDE/release-service/20.12.2/ktp-filetransfer-handler-20.12.2.tar.xz) = 2d17f5fbbdf8d19d1b75ced979f7cc29b2a5c17d0a79e714d8ecdfd03d2bda9b -SIZE (KDE/release-service/20.12.2/ktp-filetransfer-handler-20.12.2.tar.xz) = 46204 +TIMESTAMP = 1614706322 +SHA256 (KDE/release-service/20.12.3/ktp-filetransfer-handler-20.12.3.tar.xz) = 493c4625095aa9a331a25df533474d9c0869e5c1b56ed5670467bf8e70b10973 +SIZE (KDE/release-service/20.12.3/ktp-filetransfer-handler-20.12.3.tar.xz) = 46208 Index: head/net-im/ktp-kded-module/distinfo =================================================================== --- head/net-im/ktp-kded-module/distinfo (revision 567333) +++ head/net-im/ktp-kded-module/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330822 -SHA256 (KDE/release-service/20.12.2/ktp-kded-module-20.12.2.tar.xz) = 2fbf95833206659b2d4b255613836971fa2ebf028fbab60723026f9768897bf2 -SIZE (KDE/release-service/20.12.2/ktp-kded-module-20.12.2.tar.xz) = 98280 +TIMESTAMP = 1614706325 +SHA256 (KDE/release-service/20.12.3/ktp-kded-module-20.12.3.tar.xz) = df0a79ea13a8a8686476d0b91c4552eb7b7db27cc1c1419f1de1143b63834848 +SIZE (KDE/release-service/20.12.3/ktp-kded-module-20.12.3.tar.xz) = 98312 Index: head/net-im/ktp-send-file/distinfo =================================================================== --- head/net-im/ktp-send-file/distinfo (revision 567333) +++ head/net-im/ktp-send-file/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330823 -SHA256 (KDE/release-service/20.12.2/ktp-send-file-20.12.2.tar.xz) = 6efbe14a4e7b4a91d3e020d1c3fc81e2e300bc85ca5a09ea807d2d9503626248 -SIZE (KDE/release-service/20.12.2/ktp-send-file-20.12.2.tar.xz) = 27872 +TIMESTAMP = 1614706324 +SHA256 (KDE/release-service/20.12.3/ktp-send-file-20.12.3.tar.xz) = 18e7ecb36975ef2741ffafe1d5cf398fb4e7bc8ac1b364dedb6bc544f0eebe52 +SIZE (KDE/release-service/20.12.3/ktp-send-file-20.12.3.tar.xz) = 27816 Index: head/net-im/ktp-text-ui/distinfo =================================================================== --- head/net-im/ktp-text-ui/distinfo (revision 567333) +++ head/net-im/ktp-text-ui/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330823 -SHA256 (KDE/release-service/20.12.2/ktp-text-ui-20.12.2.tar.xz) = 8d3fc5a362db9981f44a6a9bb9e6581643c2bd3159abdc57b6bb0dd794bf9327 -SIZE (KDE/release-service/20.12.2/ktp-text-ui-20.12.2.tar.xz) = 471404 +TIMESTAMP = 1614706327 +SHA256 (KDE/release-service/20.12.3/ktp-text-ui-20.12.3.tar.xz) = 381a0b6328d387b7f412096bd9fefdb1132a8745ec6d16bf63bf2a0eb6c40f3f +SIZE (KDE/release-service/20.12.3/ktp-text-ui-20.12.3.tar.xz) = 471704 Index: head/net-p2p/ktorrent/distinfo =================================================================== --- head/net-p2p/ktorrent/distinfo (revision 567333) +++ head/net-p2p/ktorrent/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330824 -SHA256 (KDE/release-service/20.12.2/ktorrent-20.12.2.tar.xz) = 8200cd9926aa53ab8f5caed1e357c6e430fd8ff78db8f81f55c55700ce786bbb -SIZE (KDE/release-service/20.12.2/ktorrent-20.12.2.tar.xz) = 2141584 +TIMESTAMP = 1614706330 +SHA256 (KDE/release-service/20.12.3/ktorrent-20.12.3.tar.xz) = 28d3db3ed5b672e943e50d482855e48d6088022620b088b261f4eeb7ea42f289 +SIZE (KDE/release-service/20.12.3/ktorrent-20.12.3.tar.xz) = 2141556 Index: head/net-p2p/libktorrent/distinfo =================================================================== --- head/net-p2p/libktorrent/distinfo (revision 567333) +++ head/net-p2p/libktorrent/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330825 -SHA256 (KDE/release-service/20.12.2/libktorrent-20.12.2.tar.xz) = 6bfc3c64b2689b1520320c9c6ff49024d64c1cf39bb468fae178d3b901d8dc97 -SIZE (KDE/release-service/20.12.2/libktorrent-20.12.2.tar.xz) = 604596 +TIMESTAMP = 1614706329 +SHA256 (KDE/release-service/20.12.3/libktorrent-20.12.3.tar.xz) = c31e083cf551e9b51a0641177469da6419c67182f61e4d1f2a000e7ef2767efa +SIZE (KDE/release-service/20.12.3/libktorrent-20.12.3.tar.xz) = 604488 Index: head/print/print-manager/distinfo =================================================================== --- head/print/print-manager/distinfo (revision 567333) +++ head/print/print-manager/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330850 -SHA256 (KDE/release-service/20.12.2/print-manager-20.12.2.tar.xz) = 2d82bcd565f6fd38b63f0e30d469a7d89eb489b423f8b5decd95366c9f7629e4 -SIZE (KDE/release-service/20.12.2/print-manager-20.12.2.tar.xz) = 258616 +TIMESTAMP = 1614706330 +SHA256 (KDE/release-service/20.12.3/print-manager-20.12.3.tar.xz) = 8a375086ca58487f79ae16c24792e1a9b0b609449aeb105ea9df945b12cd7ca6 +SIZE (KDE/release-service/20.12.3/print-manager-20.12.3.tar.xz) = 258640 Index: head/science/kalzium/Makefile =================================================================== --- head/science/kalzium/Makefile (revision 567333) +++ head/science/kalzium/Makefile (revision 567334) @@ -1,42 +1,41 @@ # $FreeBSD$ PORTNAME= kalzium DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= science education kde kde-applications PATCH_SITES= https://invent.kde.org/education/kalzium/commit/ PATCHFILES= 2b9ebd85.diff:-p1 MAINTAINER= kde@FreeBSD.org COMMENT= Periodic table of elements for KDE LICENSE= GPLv2 LGPL20 GFDL LICENSE_COMB= multi LIB_DEPENDS= libopenbabel.so:science/openbabel \ libAvogadroCore.so:science/avogadrolibs BUILD_DEPENDS= ${LOCALBASE}/lib/ocaml/facile/facile.a:math/facile \ ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data USES= cmake compiler:c++11-lang desktop-file-utils gettext gl kde:5 \ pkgconfig qt:5 tar:xz USE_GL= gl glew glu USE_KDE= auth archive attica bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes itemmodels itemviews jobwidgets js kdelibs4support \ khtml kio newstuff notifications parts plotting service solid \ sonnet textwidgets unitconversion widgetsaddons windowsystem \ xmlgui USE_OCAML= yes NO_OCAML_RUNDEPENDS= yes USE_QT= concurrent core dbus declarative gui network opengl printsupport script svg \ widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS .include Index: head/science/kalzium/distinfo =================================================================== --- head/science/kalzium/distinfo (revision 567333) +++ head/science/kalzium/distinfo (revision 567334) @@ -1,5 +1,5 @@ -TIMESTAMP = 1612330851 -SHA256 (KDE/release-service/20.12.2/kalzium-20.12.2.tar.xz) = 8f7bbcf7f1edc70cdb75f0c8b4b5537ee3969967617c0610dc8bfadaa702af49 -SIZE (KDE/release-service/20.12.2/kalzium-20.12.2.tar.xz) = 24521960 -SHA256 (KDE/release-service/20.12.2/2b9ebd85.diff) = 7ba89a187c30c37ba82cd5991f32333788853f0cb0ddb2122280e536ff53e8eb -SIZE (KDE/release-service/20.12.2/2b9ebd85.diff) = 10977 +TIMESTAMP = 1614706332 +SHA256 (KDE/release-service/20.12.3/kalzium-20.12.3.tar.xz) = 8233969b13f104e8388a771df2561f49fa65a6913184a0d92c7d4ec4ecdcffe4 +SIZE (KDE/release-service/20.12.3/kalzium-20.12.3.tar.xz) = 24521912 +SHA256 (KDE/release-service/20.12.3/2b9ebd85.diff) = 7ba89a187c30c37ba82cd5991f32333788853f0cb0ddb2122280e536ff53e8eb +SIZE (KDE/release-service/20.12.3/2b9ebd85.diff) = 10977 Index: head/science/step/Makefile =================================================================== --- head/science/step/Makefile (revision 567333) +++ head/science/step/Makefile (revision 567334) @@ -1,41 +1,40 @@ # $FreeBSD$ PORTNAME= step DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= science education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE interactive physics simulator LIB_DEPENDS= libcln.so:math/cln \ libgsl.so:math/gsl \ libqalculate.so:math/libqalculate USES= cmake compiler:c++11-lang eigen:3 gettext kde:5 \ pkgconfig python:3.5+ qt:5 shebangfix tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio newstuff notifications parts \ plotting service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network opengl printsupport svg \ widgets xml \ buildtools_build qmake_build CXXFLAGS_powerpc64= -Wno-error=return-type CXXFLAGS_powerpc= -Wno-error=return-type CXXFLAGS_powerpcspe= -Wno-error=return-type CXXFLAGS_sparc64= -Wno-error=return-type SHEBANG_FILES= step/data/extractxml OPTIONS_DEFINE= DOCS pre-configure: # Avoid building translations, should the user pass # CURRENT_LANG to CMake. ${REINPLACE_CMD} -e '/set(STEP_BUILD_TRANSLATIONS 1)/ d' \ ${WRKSRC}/${PORTNAME}/data/CMakeLists.txt .include Index: head/science/step/distinfo =================================================================== --- head/science/step/distinfo (revision 567333) +++ head/science/step/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330852 -SHA256 (KDE/release-service/20.12.2/step-20.12.2.tar.xz) = 670a501890baaf650506d88b61a9b08a5539aaa31200c6b27abad5984bda2db7 -SIZE (KDE/release-service/20.12.2/step-20.12.2.tar.xz) = 955876 +TIMESTAMP = 1614706331 +SHA256 (KDE/release-service/20.12.3/step-20.12.3.tar.xz) = 16f3ce702be67c2355158946feb811edd20b022f37fdd62e42c2108c11fce223 +SIZE (KDE/release-service/20.12.3/step-20.12.3.tar.xz) = 958852 Index: head/science/step/pkg-plist =================================================================== --- head/science/step/pkg-plist (revision 567333) +++ head/science/step/pkg-plist (revision 567334) @@ -1,1220 +1,1264 @@ bin/step share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/knsrcfiles/step.knsrc share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_example_files.mo share/locale/da/LC_MESSAGES/step_objinfo_files.mo share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_example_files.mo share/locale/de/LC_MESSAGES/step_objinfo_files.mo share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_example_files.mo share/locale/el/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/eo/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo share/locale/eu/LC_MESSAGES/step.mo share/locale/eu/LC_MESSAGES/step_example_files.mo share/locale/eu/LC_MESSAGES/step_objinfo_files.mo share/locale/fi/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/ga/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step.mo +share/locale/ia/LC_MESSAGES/step.mo +share/locale/ia/LC_MESSAGES/step_example_files.mo +share/locale/ia/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo share/locale/kk/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_example_files.mo share/locale/lt/LC_MESSAGES/step_objinfo_files.mo share/locale/lv/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_example_files.mo share/locale/ml/LC_MESSAGES/step_objinfo_files.mo share/locale/mr/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_example_files.mo share/locale/pl/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo share/locale/ro/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_objinfo_files.mo share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo share/locale/tr/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/ca@valencia/brownian.step %%DATADIR%%/examples/ca@valencia/doublependulum.step %%DATADIR%%/examples/ca@valencia/eightpendula.step %%DATADIR%%/examples/ca@valencia/first.step %%DATADIR%%/examples/ca@valencia/fourpendula.step %%DATADIR%%/examples/ca@valencia/gas.step %%DATADIR%%/examples/ca@valencia/graph.step %%DATADIR%%/examples/ca@valencia/liquid.step %%DATADIR%%/examples/ca@valencia/lissajous.step %%DATADIR%%/examples/ca@valencia/motor.step %%DATADIR%%/examples/ca@valencia/motor1.step %%DATADIR%%/examples/ca@valencia/note.step %%DATADIR%%/examples/ca@valencia/resonance.step %%DATADIR%%/examples/ca@valencia/softbody.step %%DATADIR%%/examples/ca@valencia/solar.step %%DATADIR%%/examples/ca@valencia/springs.step %%DATADIR%%/examples/ca@valencia/wave.step %%DATADIR%%/examples/cs/brownian.step %%DATADIR%%/examples/cs/doublependulum.step %%DATADIR%%/examples/cs/eightpendula.step %%DATADIR%%/examples/cs/first.step %%DATADIR%%/examples/cs/fourpendula.step %%DATADIR%%/examples/cs/gas.step %%DATADIR%%/examples/cs/graph.step %%DATADIR%%/examples/cs/liquid.step %%DATADIR%%/examples/cs/lissajous.step %%DATADIR%%/examples/cs/motor.step %%DATADIR%%/examples/cs/motor1.step %%DATADIR%%/examples/cs/note.step %%DATADIR%%/examples/cs/resonance.step %%DATADIR%%/examples/cs/softbody.step %%DATADIR%%/examples/cs/solar.step %%DATADIR%%/examples/cs/springs.step %%DATADIR%%/examples/cs/wave.step %%DATADIR%%/examples/da/brownian.step %%DATADIR%%/examples/da/doublependulum.step %%DATADIR%%/examples/da/eightpendula.step %%DATADIR%%/examples/da/first.step %%DATADIR%%/examples/da/fourpendula.step %%DATADIR%%/examples/da/gas.step %%DATADIR%%/examples/da/graph.step %%DATADIR%%/examples/da/liquid.step %%DATADIR%%/examples/da/lissajous.step %%DATADIR%%/examples/da/motor.step %%DATADIR%%/examples/da/motor1.step %%DATADIR%%/examples/da/note.step %%DATADIR%%/examples/da/resonance.step %%DATADIR%%/examples/da/softbody.step %%DATADIR%%/examples/da/solar.step %%DATADIR%%/examples/da/springs.step %%DATADIR%%/examples/da/wave.step %%DATADIR%%/examples/de/brownian.step %%DATADIR%%/examples/de/doublependulum.step %%DATADIR%%/examples/de/eightpendula.step %%DATADIR%%/examples/de/first.step %%DATADIR%%/examples/de/fourpendula.step %%DATADIR%%/examples/de/gas.step %%DATADIR%%/examples/de/graph.step %%DATADIR%%/examples/de/liquid.step %%DATADIR%%/examples/de/lissajous.step %%DATADIR%%/examples/de/motor.step %%DATADIR%%/examples/de/motor1.step %%DATADIR%%/examples/de/note.step %%DATADIR%%/examples/de/resonance.step %%DATADIR%%/examples/de/softbody.step %%DATADIR%%/examples/de/solar.step %%DATADIR%%/examples/de/springs.step %%DATADIR%%/examples/de/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/el/brownian.step %%DATADIR%%/examples/el/doublependulum.step %%DATADIR%%/examples/el/eightpendula.step %%DATADIR%%/examples/el/first.step %%DATADIR%%/examples/el/fourpendula.step %%DATADIR%%/examples/el/gas.step %%DATADIR%%/examples/el/graph.step %%DATADIR%%/examples/el/liquid.step %%DATADIR%%/examples/el/lissajous.step %%DATADIR%%/examples/el/motor.step %%DATADIR%%/examples/el/motor1.step %%DATADIR%%/examples/el/note.step %%DATADIR%%/examples/el/resonance.step %%DATADIR%%/examples/el/softbody.step %%DATADIR%%/examples/el/solar.step %%DATADIR%%/examples/el/springs.step %%DATADIR%%/examples/el/wave.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/et/brownian.step %%DATADIR%%/examples/et/doublependulum.step %%DATADIR%%/examples/et/eightpendula.step %%DATADIR%%/examples/et/first.step %%DATADIR%%/examples/et/fourpendula.step %%DATADIR%%/examples/et/gas.step %%DATADIR%%/examples/et/graph.step %%DATADIR%%/examples/et/liquid.step %%DATADIR%%/examples/et/lissajous.step %%DATADIR%%/examples/et/motor.step %%DATADIR%%/examples/et/motor1.step %%DATADIR%%/examples/et/note.step %%DATADIR%%/examples/et/resonance.step %%DATADIR%%/examples/et/softbody.step %%DATADIR%%/examples/et/solar.step %%DATADIR%%/examples/et/springs.step %%DATADIR%%/examples/et/wave.step %%DATADIR%%/examples/eu/brownian.step %%DATADIR%%/examples/eu/doublependulum.step %%DATADIR%%/examples/eu/eightpendula.step %%DATADIR%%/examples/eu/first.step %%DATADIR%%/examples/eu/fourpendula.step %%DATADIR%%/examples/eu/gas.step %%DATADIR%%/examples/eu/graph.step %%DATADIR%%/examples/eu/liquid.step %%DATADIR%%/examples/eu/lissajous.step %%DATADIR%%/examples/eu/motor.step %%DATADIR%%/examples/eu/motor1.step %%DATADIR%%/examples/eu/note.step %%DATADIR%%/examples/eu/resonance.step %%DATADIR%%/examples/eu/softbody.step %%DATADIR%%/examples/eu/solar.step %%DATADIR%%/examples/eu/springs.step %%DATADIR%%/examples/eu/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step +%%DATADIR%%/examples/ia/brownian.step +%%DATADIR%%/examples/ia/doublependulum.step +%%DATADIR%%/examples/ia/eightpendula.step +%%DATADIR%%/examples/ia/first.step +%%DATADIR%%/examples/ia/fourpendula.step +%%DATADIR%%/examples/ia/gas.step +%%DATADIR%%/examples/ia/graph.step +%%DATADIR%%/examples/ia/liquid.step +%%DATADIR%%/examples/ia/lissajous.step +%%DATADIR%%/examples/ia/motor.step +%%DATADIR%%/examples/ia/motor1.step +%%DATADIR%%/examples/ia/note.step +%%DATADIR%%/examples/ia/resonance.step +%%DATADIR%%/examples/ia/softbody.step +%%DATADIR%%/examples/ia/solar.step +%%DATADIR%%/examples/ia/springs.step +%%DATADIR%%/examples/ia/wave.step %%DATADIR%%/examples/it/brownian.step %%DATADIR%%/examples/it/doublependulum.step %%DATADIR%%/examples/it/eightpendula.step %%DATADIR%%/examples/it/first.step %%DATADIR%%/examples/it/fourpendula.step %%DATADIR%%/examples/it/gas.step %%DATADIR%%/examples/it/graph.step %%DATADIR%%/examples/it/liquid.step %%DATADIR%%/examples/it/lissajous.step %%DATADIR%%/examples/it/motor.step %%DATADIR%%/examples/it/motor1.step %%DATADIR%%/examples/it/note.step %%DATADIR%%/examples/it/resonance.step %%DATADIR%%/examples/it/softbody.step %%DATADIR%%/examples/it/solar.step %%DATADIR%%/examples/it/springs.step %%DATADIR%%/examples/it/wave.step %%DATADIR%%/examples/ja/brownian.step %%DATADIR%%/examples/ja/doublependulum.step %%DATADIR%%/examples/ja/eightpendula.step %%DATADIR%%/examples/ja/first.step %%DATADIR%%/examples/ja/fourpendula.step %%DATADIR%%/examples/ja/gas.step %%DATADIR%%/examples/ja/graph.step %%DATADIR%%/examples/ja/liquid.step %%DATADIR%%/examples/ja/lissajous.step %%DATADIR%%/examples/ja/motor.step %%DATADIR%%/examples/ja/motor1.step %%DATADIR%%/examples/ja/note.step %%DATADIR%%/examples/ja/resonance.step %%DATADIR%%/examples/ja/softbody.step %%DATADIR%%/examples/ja/solar.step %%DATADIR%%/examples/ja/springs.step %%DATADIR%%/examples/ja/wave.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/lt/brownian.step %%DATADIR%%/examples/lt/doublependulum.step %%DATADIR%%/examples/lt/eightpendula.step %%DATADIR%%/examples/lt/first.step %%DATADIR%%/examples/lt/fourpendula.step %%DATADIR%%/examples/lt/gas.step %%DATADIR%%/examples/lt/graph.step %%DATADIR%%/examples/lt/liquid.step %%DATADIR%%/examples/lt/lissajous.step %%DATADIR%%/examples/lt/motor.step %%DATADIR%%/examples/lt/motor1.step %%DATADIR%%/examples/lt/note.step %%DATADIR%%/examples/lt/resonance.step %%DATADIR%%/examples/lt/softbody.step %%DATADIR%%/examples/lt/solar.step %%DATADIR%%/examples/lt/springs.step %%DATADIR%%/examples/lt/wave.step %%DATADIR%%/examples/ml/brownian.step %%DATADIR%%/examples/ml/doublependulum.step %%DATADIR%%/examples/ml/eightpendula.step %%DATADIR%%/examples/ml/first.step %%DATADIR%%/examples/ml/fourpendula.step %%DATADIR%%/examples/ml/gas.step %%DATADIR%%/examples/ml/graph.step %%DATADIR%%/examples/ml/liquid.step %%DATADIR%%/examples/ml/lissajous.step %%DATADIR%%/examples/ml/motor.step %%DATADIR%%/examples/ml/motor1.step %%DATADIR%%/examples/ml/note.step %%DATADIR%%/examples/ml/resonance.step %%DATADIR%%/examples/ml/softbody.step %%DATADIR%%/examples/ml/solar.step %%DATADIR%%/examples/ml/springs.step %%DATADIR%%/examples/ml/wave.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pl/brownian.step %%DATADIR%%/examples/pl/doublependulum.step %%DATADIR%%/examples/pl/eightpendula.step %%DATADIR%%/examples/pl/first.step %%DATADIR%%/examples/pl/fourpendula.step %%DATADIR%%/examples/pl/gas.step %%DATADIR%%/examples/pl/graph.step %%DATADIR%%/examples/pl/liquid.step %%DATADIR%%/examples/pl/lissajous.step %%DATADIR%%/examples/pl/motor.step %%DATADIR%%/examples/pl/motor1.step %%DATADIR%%/examples/pl/note.step %%DATADIR%%/examples/pl/resonance.step %%DATADIR%%/examples/pl/softbody.step %%DATADIR%%/examples/pl/solar.step %%DATADIR%%/examples/pl/springs.step %%DATADIR%%/examples/pl/wave.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/da/anchor.html %%DATADIR%%/objinfo/l10n/da/box.html %%DATADIR%%/objinfo/l10n/da/chargedparticle.html %%DATADIR%%/objinfo/l10n/da/coulombforce.html %%DATADIR%%/objinfo/l10n/da/disk.html %%DATADIR%%/objinfo/l10n/da/gas.html %%DATADIR%%/objinfo/l10n/da/gasljforce.html %%DATADIR%%/objinfo/l10n/da/gasparticle.html %%DATADIR%%/objinfo/l10n/da/gravitationforce.html %%DATADIR%%/objinfo/l10n/da/linearmotor.html %%DATADIR%%/objinfo/l10n/da/meter.html %%DATADIR%%/objinfo/l10n/da/note.html %%DATADIR%%/objinfo/l10n/da/particle.html %%DATADIR%%/objinfo/l10n/da/pin.html %%DATADIR%%/objinfo/l10n/da/polygon.html %%DATADIR%%/objinfo/l10n/da/softbody.html %%DATADIR%%/objinfo/l10n/da/spring.html %%DATADIR%%/objinfo/l10n/da/weightforce.html %%DATADIR%%/objinfo/l10n/da/world.html %%DATADIR%%/objinfo/l10n/de/anchor.html %%DATADIR%%/objinfo/l10n/de/box.html %%DATADIR%%/objinfo/l10n/de/chargedparticle.html %%DATADIR%%/objinfo/l10n/de/coulombforce.html %%DATADIR%%/objinfo/l10n/de/disk.html %%DATADIR%%/objinfo/l10n/de/gas.html %%DATADIR%%/objinfo/l10n/de/gasljforce.html %%DATADIR%%/objinfo/l10n/de/gasparticle.html %%DATADIR%%/objinfo/l10n/de/gravitationforce.html %%DATADIR%%/objinfo/l10n/de/linearmotor.html %%DATADIR%%/objinfo/l10n/de/meter.html %%DATADIR%%/objinfo/l10n/de/note.html %%DATADIR%%/objinfo/l10n/de/particle.html %%DATADIR%%/objinfo/l10n/de/pin.html %%DATADIR%%/objinfo/l10n/de/polygon.html %%DATADIR%%/objinfo/l10n/de/softbody.html %%DATADIR%%/objinfo/l10n/de/spring.html %%DATADIR%%/objinfo/l10n/de/weightforce.html %%DATADIR%%/objinfo/l10n/de/world.html %%DATADIR%%/objinfo/l10n/el/anchor.html %%DATADIR%%/objinfo/l10n/el/box.html %%DATADIR%%/objinfo/l10n/el/chargedparticle.html %%DATADIR%%/objinfo/l10n/el/coulombforce.html %%DATADIR%%/objinfo/l10n/el/disk.html %%DATADIR%%/objinfo/l10n/el/gas.html %%DATADIR%%/objinfo/l10n/el/gasljforce.html %%DATADIR%%/objinfo/l10n/el/gasparticle.html %%DATADIR%%/objinfo/l10n/el/gravitationforce.html %%DATADIR%%/objinfo/l10n/el/linearmotor.html %%DATADIR%%/objinfo/l10n/el/meter.html %%DATADIR%%/objinfo/l10n/el/note.html %%DATADIR%%/objinfo/l10n/el/particle.html %%DATADIR%%/objinfo/l10n/el/pin.html %%DATADIR%%/objinfo/l10n/el/polygon.html %%DATADIR%%/objinfo/l10n/el/softbody.html %%DATADIR%%/objinfo/l10n/el/spring.html %%DATADIR%%/objinfo/l10n/el/weightforce.html %%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/et/anchor.html %%DATADIR%%/objinfo/l10n/et/box.html %%DATADIR%%/objinfo/l10n/et/chargedparticle.html %%DATADIR%%/objinfo/l10n/et/coulombforce.html %%DATADIR%%/objinfo/l10n/et/disk.html %%DATADIR%%/objinfo/l10n/et/gas.html %%DATADIR%%/objinfo/l10n/et/gasljforce.html %%DATADIR%%/objinfo/l10n/et/gasparticle.html %%DATADIR%%/objinfo/l10n/et/gravitationforce.html %%DATADIR%%/objinfo/l10n/et/linearmotor.html %%DATADIR%%/objinfo/l10n/et/meter.html %%DATADIR%%/objinfo/l10n/et/note.html %%DATADIR%%/objinfo/l10n/et/particle.html %%DATADIR%%/objinfo/l10n/et/pin.html %%DATADIR%%/objinfo/l10n/et/polygon.html %%DATADIR%%/objinfo/l10n/et/softbody.html %%DATADIR%%/objinfo/l10n/et/spring.html %%DATADIR%%/objinfo/l10n/et/weightforce.html %%DATADIR%%/objinfo/l10n/et/world.html %%DATADIR%%/objinfo/l10n/eu/anchor.html %%DATADIR%%/objinfo/l10n/eu/box.html %%DATADIR%%/objinfo/l10n/eu/chargedparticle.html %%DATADIR%%/objinfo/l10n/eu/coulombforce.html %%DATADIR%%/objinfo/l10n/eu/disk.html %%DATADIR%%/objinfo/l10n/eu/gas.html %%DATADIR%%/objinfo/l10n/eu/gasljforce.html %%DATADIR%%/objinfo/l10n/eu/gasparticle.html %%DATADIR%%/objinfo/l10n/eu/gravitationforce.html %%DATADIR%%/objinfo/l10n/eu/linearmotor.html %%DATADIR%%/objinfo/l10n/eu/meter.html %%DATADIR%%/objinfo/l10n/eu/note.html %%DATADIR%%/objinfo/l10n/eu/particle.html %%DATADIR%%/objinfo/l10n/eu/pin.html %%DATADIR%%/objinfo/l10n/eu/polygon.html %%DATADIR%%/objinfo/l10n/eu/softbody.html %%DATADIR%%/objinfo/l10n/eu/spring.html %%DATADIR%%/objinfo/l10n/eu/weightforce.html %%DATADIR%%/objinfo/l10n/eu/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html +%%DATADIR%%/objinfo/l10n/ia/anchor.html +%%DATADIR%%/objinfo/l10n/ia/box.html +%%DATADIR%%/objinfo/l10n/ia/chargedparticle.html +%%DATADIR%%/objinfo/l10n/ia/coulombforce.html +%%DATADIR%%/objinfo/l10n/ia/disk.html +%%DATADIR%%/objinfo/l10n/ia/gas.html +%%DATADIR%%/objinfo/l10n/ia/gasljforce.html +%%DATADIR%%/objinfo/l10n/ia/gasparticle.html +%%DATADIR%%/objinfo/l10n/ia/gravitationforce.html +%%DATADIR%%/objinfo/l10n/ia/linearmotor.html +%%DATADIR%%/objinfo/l10n/ia/meter.html +%%DATADIR%%/objinfo/l10n/ia/note.html +%%DATADIR%%/objinfo/l10n/ia/particle.html +%%DATADIR%%/objinfo/l10n/ia/pin.html +%%DATADIR%%/objinfo/l10n/ia/polygon.html +%%DATADIR%%/objinfo/l10n/ia/softbody.html +%%DATADIR%%/objinfo/l10n/ia/spring.html +%%DATADIR%%/objinfo/l10n/ia/weightforce.html +%%DATADIR%%/objinfo/l10n/ia/world.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/ja/anchor.html %%DATADIR%%/objinfo/l10n/ja/box.html %%DATADIR%%/objinfo/l10n/ja/chargedparticle.html %%DATADIR%%/objinfo/l10n/ja/coulombforce.html %%DATADIR%%/objinfo/l10n/ja/disk.html %%DATADIR%%/objinfo/l10n/ja/gas.html %%DATADIR%%/objinfo/l10n/ja/gasljforce.html %%DATADIR%%/objinfo/l10n/ja/gasparticle.html %%DATADIR%%/objinfo/l10n/ja/gravitationforce.html %%DATADIR%%/objinfo/l10n/ja/linearmotor.html %%DATADIR%%/objinfo/l10n/ja/meter.html %%DATADIR%%/objinfo/l10n/ja/note.html %%DATADIR%%/objinfo/l10n/ja/particle.html %%DATADIR%%/objinfo/l10n/ja/pin.html %%DATADIR%%/objinfo/l10n/ja/polygon.html %%DATADIR%%/objinfo/l10n/ja/softbody.html %%DATADIR%%/objinfo/l10n/ja/spring.html %%DATADIR%%/objinfo/l10n/ja/weightforce.html %%DATADIR%%/objinfo/l10n/ja/world.html %%DATADIR%%/objinfo/l10n/lt/anchor.html %%DATADIR%%/objinfo/l10n/lt/box.html %%DATADIR%%/objinfo/l10n/lt/chargedparticle.html %%DATADIR%%/objinfo/l10n/lt/coulombforce.html %%DATADIR%%/objinfo/l10n/lt/disk.html %%DATADIR%%/objinfo/l10n/lt/gas.html %%DATADIR%%/objinfo/l10n/lt/gasljforce.html %%DATADIR%%/objinfo/l10n/lt/gasparticle.html %%DATADIR%%/objinfo/l10n/lt/gravitationforce.html %%DATADIR%%/objinfo/l10n/lt/linearmotor.html %%DATADIR%%/objinfo/l10n/lt/meter.html %%DATADIR%%/objinfo/l10n/lt/note.html %%DATADIR%%/objinfo/l10n/lt/particle.html %%DATADIR%%/objinfo/l10n/lt/pin.html %%DATADIR%%/objinfo/l10n/lt/polygon.html %%DATADIR%%/objinfo/l10n/lt/softbody.html %%DATADIR%%/objinfo/l10n/lt/spring.html %%DATADIR%%/objinfo/l10n/lt/weightforce.html %%DATADIR%%/objinfo/l10n/lt/world.html %%DATADIR%%/objinfo/l10n/ml/anchor.html %%DATADIR%%/objinfo/l10n/ml/box.html %%DATADIR%%/objinfo/l10n/ml/chargedparticle.html %%DATADIR%%/objinfo/l10n/ml/coulombforce.html %%DATADIR%%/objinfo/l10n/ml/disk.html %%DATADIR%%/objinfo/l10n/ml/gas.html %%DATADIR%%/objinfo/l10n/ml/gasljforce.html %%DATADIR%%/objinfo/l10n/ml/gasparticle.html %%DATADIR%%/objinfo/l10n/ml/gravitationforce.html %%DATADIR%%/objinfo/l10n/ml/linearmotor.html %%DATADIR%%/objinfo/l10n/ml/meter.html %%DATADIR%%/objinfo/l10n/ml/note.html %%DATADIR%%/objinfo/l10n/ml/particle.html %%DATADIR%%/objinfo/l10n/ml/pin.html %%DATADIR%%/objinfo/l10n/ml/polygon.html %%DATADIR%%/objinfo/l10n/ml/softbody.html %%DATADIR%%/objinfo/l10n/ml/spring.html %%DATADIR%%/objinfo/l10n/ml/weightforce.html %%DATADIR%%/objinfo/l10n/ml/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pl/anchor.html %%DATADIR%%/objinfo/l10n/pl/box.html %%DATADIR%%/objinfo/l10n/pl/chargedparticle.html %%DATADIR%%/objinfo/l10n/pl/coulombforce.html %%DATADIR%%/objinfo/l10n/pl/disk.html %%DATADIR%%/objinfo/l10n/pl/gas.html %%DATADIR%%/objinfo/l10n/pl/gasljforce.html %%DATADIR%%/objinfo/l10n/pl/gasparticle.html %%DATADIR%%/objinfo/l10n/pl/gravitationforce.html %%DATADIR%%/objinfo/l10n/pl/linearmotor.html %%DATADIR%%/objinfo/l10n/pl/meter.html %%DATADIR%%/objinfo/l10n/pl/note.html %%DATADIR%%/objinfo/l10n/pl/particle.html %%DATADIR%%/objinfo/l10n/pl/pin.html %%DATADIR%%/objinfo/l10n/pl/polygon.html %%DATADIR%%/objinfo/l10n/pl/softbody.html %%DATADIR%%/objinfo/l10n/pl/spring.html %%DATADIR%%/objinfo/l10n/pl/weightforce.html %%DATADIR%%/objinfo/l10n/pl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/sl/anchor.html %%DATADIR%%/objinfo/l10n/sl/box.html %%DATADIR%%/objinfo/l10n/sl/chargedparticle.html %%DATADIR%%/objinfo/l10n/sl/coulombforce.html %%DATADIR%%/objinfo/l10n/sl/disk.html %%DATADIR%%/objinfo/l10n/sl/gas.html %%DATADIR%%/objinfo/l10n/sl/gasljforce.html %%DATADIR%%/objinfo/l10n/sl/gasparticle.html %%DATADIR%%/objinfo/l10n/sl/gravitationforce.html %%DATADIR%%/objinfo/l10n/sl/linearmotor.html %%DATADIR%%/objinfo/l10n/sl/meter.html %%DATADIR%%/objinfo/l10n/sl/note.html %%DATADIR%%/objinfo/l10n/sl/particle.html %%DATADIR%%/objinfo/l10n/sl/pin.html %%DATADIR%%/objinfo/l10n/sl/polygon.html %%DATADIR%%/objinfo/l10n/sl/softbody.html %%DATADIR%%/objinfo/l10n/sl/spring.html %%DATADIR%%/objinfo/l10n/sl/weightforce.html %%DATADIR%%/objinfo/l10n/sl/world.html %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step %%DATADIR%%/tutorials/da/tutorial1.step %%DATADIR%%/tutorials/da/tutorial2.step %%DATADIR%%/tutorials/da/tutorial3.step %%DATADIR%%/tutorials/da/tutorial4.step %%DATADIR%%/tutorials/da/tutorial5.step %%DATADIR%%/tutorials/de/tutorial1.step %%DATADIR%%/tutorials/de/tutorial2.step %%DATADIR%%/tutorials/de/tutorial3.step %%DATADIR%%/tutorials/de/tutorial4.step %%DATADIR%%/tutorials/de/tutorial5.step %%DATADIR%%/tutorials/el/tutorial1.step %%DATADIR%%/tutorials/el/tutorial2.step %%DATADIR%%/tutorials/el/tutorial3.step %%DATADIR%%/tutorials/el/tutorial4.step %%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/et/tutorial1.step %%DATADIR%%/tutorials/et/tutorial2.step %%DATADIR%%/tutorials/et/tutorial3.step %%DATADIR%%/tutorials/et/tutorial4.step %%DATADIR%%/tutorials/et/tutorial5.step %%DATADIR%%/tutorials/eu/tutorial1.step %%DATADIR%%/tutorials/eu/tutorial2.step %%DATADIR%%/tutorials/eu/tutorial3.step %%DATADIR%%/tutorials/eu/tutorial4.step %%DATADIR%%/tutorials/eu/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step +%%DATADIR%%/tutorials/ia/tutorial1.step +%%DATADIR%%/tutorials/ia/tutorial2.step +%%DATADIR%%/tutorials/ia/tutorial3.step +%%DATADIR%%/tutorials/ia/tutorial4.step +%%DATADIR%%/tutorials/ia/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/ja/tutorial1.step %%DATADIR%%/tutorials/ja/tutorial2.step %%DATADIR%%/tutorials/ja/tutorial3.step %%DATADIR%%/tutorials/ja/tutorial4.step %%DATADIR%%/tutorials/ja/tutorial5.step %%DATADIR%%/tutorials/lt/tutorial1.step %%DATADIR%%/tutorials/lt/tutorial2.step %%DATADIR%%/tutorials/lt/tutorial3.step %%DATADIR%%/tutorials/lt/tutorial4.step %%DATADIR%%/tutorials/lt/tutorial5.step %%DATADIR%%/tutorials/ml/tutorial1.step %%DATADIR%%/tutorials/ml/tutorial2.step %%DATADIR%%/tutorials/ml/tutorial3.step %%DATADIR%%/tutorials/ml/tutorial4.step %%DATADIR%%/tutorials/ml/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pl/tutorial1.step %%DATADIR%%/tutorials/pl/tutorial2.step %%DATADIR%%/tutorials/pl/tutorial3.step %%DATADIR%%/tutorials/pl/tutorial4.step %%DATADIR%%/tutorials/pl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/sv/tutorial1.step %%DATADIR%%/tutorials/sv/tutorial2.step %%DATADIR%%/tutorials/sv/tutorial3.step %%DATADIR%%/tutorials/sv/tutorial4.step %%DATADIR%%/tutorials/sv/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step %%DATADIR%%/tutorials/zh_CN/tutorial1.step %%DATADIR%%/tutorials/zh_CN/tutorial2.step %%DATADIR%%/tutorials/zh_CN/tutorial3.step %%DATADIR%%/tutorials/zh_CN/tutorial4.step %%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step Index: head/security/kgpg/distinfo =================================================================== --- head/security/kgpg/distinfo (revision 567333) +++ head/security/kgpg/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330853 -SHA256 (KDE/release-service/20.12.2/kgpg-20.12.2.tar.xz) = af83c3124f941d5ebc8eab00e8b38250e1a86925b63f918b2629765bab33efeb -SIZE (KDE/release-service/20.12.2/kgpg-20.12.2.tar.xz) = 2884320 +TIMESTAMP = 1614706333 +SHA256 (KDE/release-service/20.12.3/kgpg-20.12.3.tar.xz) = dfc721aa0cd2a7707cba5c446a66e57b4c51ffbb79ebbf968af6a906dba39d7c +SIZE (KDE/release-service/20.12.3/kgpg-20.12.3.tar.xz) = 2892236 Index: head/security/kleopatra/Makefile =================================================================== --- head/security/kleopatra/Makefile (revision 567333) +++ head/security/kleopatra/Makefile (revision 567334) @@ -1,28 +1,27 @@ # $FreeBSD$ PORTNAME= kleopatra DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE LIB_DEPENDS= libassuan.so:security/libassuan \ libboost_thread.so:devel/boost-libs \ libgpgme.so:security/gpgme \ libgpg-error.so:security/libgpg-error \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools ecm i18n iconthemes itemmodels kcmutils notifications \ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ libkleo mime USE_QT= core dbus gui network printsupport testlib widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include Index: head/security/kleopatra/distinfo =================================================================== --- head/security/kleopatra/distinfo (revision 567333) +++ head/security/kleopatra/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330854 -SHA256 (KDE/release-service/20.12.2/kleopatra-20.12.2.tar.xz) = 9f72bb97b6aafaf0a2a24453d151356896ec4ca64ea340b60171a5acdea05e89 -SIZE (KDE/release-service/20.12.2/kleopatra-20.12.2.tar.xz) = 2000248 +TIMESTAMP = 1614706335 +SHA256 (KDE/release-service/20.12.3/kleopatra-20.12.3.tar.xz) = bf30f99bc6abd44d512ca8c53a7e81af625db72547a33df5c581101d787feaa0 +SIZE (KDE/release-service/20.12.3/kleopatra-20.12.3.tar.xz) = 2001196 Index: head/security/kpkpass/distinfo =================================================================== --- head/security/kpkpass/distinfo (revision 567333) +++ head/security/kpkpass/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330854 -SHA256 (KDE/release-service/20.12.2/kpkpass-20.12.2.tar.xz) = c3460c3673cb65df6cc9d89cec4c073b6dfd386af74be929a8ca557933c50cd4 -SIZE (KDE/release-service/20.12.2/kpkpass-20.12.2.tar.xz) = 23448 +TIMESTAMP = 1614706336 +SHA256 (KDE/release-service/20.12.3/kpkpass-20.12.3.tar.xz) = e959224197521ed82ae98f7811fa03087c2397df9bbbc8ed7faf34e719558f51 +SIZE (KDE/release-service/20.12.3/kpkpass-20.12.3.tar.xz) = 23448 Index: head/security/kwalletmanager/distinfo =================================================================== --- head/security/kwalletmanager/distinfo (revision 567333) +++ head/security/kwalletmanager/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330855 -SHA256 (KDE/release-service/20.12.2/kwalletmanager-20.12.2.tar.xz) = 3c76f5c4a62b8ad1cab6532537120e5b4a4dca936b68d3a97ef10283ce1d9d0a -SIZE (KDE/release-service/20.12.2/kwalletmanager-20.12.2.tar.xz) = 773852 +TIMESTAMP = 1614706334 +SHA256 (KDE/release-service/20.12.3/kwalletmanager-20.12.3.tar.xz) = 995414a017735a0dedf19bffdc715cc0f526925b597bba9aa7f5d34e97059d9a +SIZE (KDE/release-service/20.12.3/kwalletmanager-20.12.3.tar.xz) = 773840 Index: head/security/libkleo/Makefile =================================================================== --- head/security/libkleo/Makefile (revision 567333) +++ head/security/libkleo/Makefile (revision 567334) @@ -1,38 +1,37 @@ # $FreeBSD$ PORTNAME= libkleo DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Certificate manager for KDE LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme \ libqgpgme.so:security/gpgme-qt5 \ libgpgmepp.so:security/gpgme-cpp RUN_DEPENDS= ${LOCALBASE}/bin/gmd5sum:sysutils/coreutils USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= codecs completion config coreaddons i18n itemmodels \ widgetsaddons windowsystem \ pimtextedit USE_QT= core gui widgets \ buildtools_build qmake_build _CORETOOLS= md5sum sha1sum sha256sum sha512sum OPTIONS_DEFINE= DOCS post-extract: # use the binaries of coreutils . for ct in ${_CORETOOLS} ${REINPLACE_CMD} -e '/create-command/ s#${ct}#g${ct}#' \ -e '/verify-command/ s#${ct}#g${ct}#' \ ${PATCH_WRKSRC}/src/libkleopatrarc.desktop . endfor .include Index: head/security/libkleo/distinfo =================================================================== --- head/security/libkleo/distinfo (revision 567333) +++ head/security/libkleo/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330856 -SHA256 (KDE/release-service/20.12.2/libkleo-20.12.2.tar.xz) = 612244d28d4f2f221e9c23ebb366d1ad31f5a8b132c7c3c2b8ed3d8ca3935477 -SIZE (KDE/release-service/20.12.2/libkleo-20.12.2.tar.xz) = 358600 +TIMESTAMP = 1614706334 +SHA256 (KDE/release-service/20.12.3/libkleo-20.12.3.tar.xz) = 9949cc5492cf2ea9a349b56aa7d88a79d0f96a48baa73c9339e521e09448950c +SIZE (KDE/release-service/20.12.3/libkleo-20.12.3.tar.xz) = 358540 Index: head/sysutils/baloo-widgets/distinfo =================================================================== --- head/sysutils/baloo-widgets/distinfo (revision 567333) +++ head/sysutils/baloo-widgets/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330856 -SHA256 (KDE/release-service/20.12.2/baloo-widgets-20.12.2.tar.xz) = af20555e139865c94e929f7cc54149ed1b7aab9fa44bf395b07e865f45cf3271 -SIZE (KDE/release-service/20.12.2/baloo-widgets-20.12.2.tar.xz) = 261620 +TIMESTAMP = 1614706341 +SHA256 (KDE/release-service/20.12.3/baloo-widgets-20.12.3.tar.xz) = 113bec52f93b0c18f62e0c5814a8221ea1c8e2f26e6079937d337564fffbf633 +SIZE (KDE/release-service/20.12.3/baloo-widgets-20.12.3.tar.xz) = 261628 Index: head/sysutils/filelight/distinfo =================================================================== --- head/sysutils/filelight/distinfo (revision 567333) +++ head/sysutils/filelight/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330857 -SHA256 (KDE/release-service/20.12.2/filelight-20.12.2.tar.xz) = d8108940ab96933e6edec39e16f693d9f37b5d91e4d9d873baf19f9f018d6854 -SIZE (KDE/release-service/20.12.2/filelight-20.12.2.tar.xz) = 671112 +TIMESTAMP = 1614706339 +SHA256 (KDE/release-service/20.12.3/filelight-20.12.3.tar.xz) = 206a70d9aa2d5ba025cb5ab84d860843a163919f26517eca5c0108b123be4a5a +SIZE (KDE/release-service/20.12.3/filelight-20.12.3.tar.xz) = 671244 Index: head/sysutils/k3b/Makefile =================================================================== --- head/sysutils/k3b/Makefile (revision 567333) +++ head/sysutils/k3b/Makefile (revision 567334) @@ -1,56 +1,55 @@ # $FreeBSD$ PORTNAME= k3b DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils multimedia kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE CD/DVD writing suite LIB_DEPENDS= libFLAC.so:audio/flac \ libKF5Cddb.so:audio/libkcddb \ libcdda_paranoia.so:audio/cdparanoia \ libdvdread.so:multimedia/libdvdread \ libmad.so:audio/libmad \ libmp3lame.so:audio/lame \ libogg.so:audio/libogg \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile \ libtag.so:audio/taglib \ libvorbis.so:audio/libvorbis RUN_DEPENDS= cdrecord:sysutils/cdrtools BUILD_DEPENDS= cdrecord:sysutils/cdrtools USES= cmake compiler:c++11-lang desktop-file-utils gettext iconv \ kde:5 pkgconfig qt:5 shared-mime-info tar:xz USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons ecm filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kio newstuff notifications \ notifyconfig service solid widgetsaddons xmlgui USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools_build qmake_build # The ffmpeg-plugin needs patching CMAKE_ARGS= -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=FALSE OPTIONS_DEFINE= CDRDAO CDRSKIN DVDPLUSRW EMOVIX VCDIMAGER DOCS OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CDRDAO_DESC= Burning: cdrdao CDRDAO_RUN_DEPENDS= cdrdao:sysutils/cdrdao DVDPLUSRW_DESC= Burning: DVD+RW tools (DVD+/-R(W)) DVDPLUSRW_RUN_DEPENDS= dvd+rw-format:sysutils/dvd+rw-tools EMOVIX_DESC= Burning: eMovix (bootable video CDs) EMOVIX_RUN_DEPENDS= mkmovixiso:multimedia/emovix VCDIMAGER_DESC= Burning: VCDImager (video CDs) VCDIMAGER_RUN_DEPENDS= vcdxrip:multimedia/vcdimager CDRSKIN_DESC= Burning: cdrskin (improved performance) CDRSKIN_RUN_DEPENDS= cdrskin:devel/libburn .include Index: head/sysutils/k3b/distinfo =================================================================== --- head/sysutils/k3b/distinfo (revision 567333) +++ head/sysutils/k3b/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330858 -SHA256 (KDE/release-service/20.12.2/k3b-20.12.2.tar.xz) = 8fa4def0d8c4c62b6860ffe5ca0e67a121d94ef99823465e5b7a5a7345460f3f -SIZE (KDE/release-service/20.12.2/k3b-20.12.2.tar.xz) = 10685396 +TIMESTAMP = 1614706337 +SHA256 (KDE/release-service/20.12.3/k3b-20.12.3.tar.xz) = 88e8d3410748e11c77755f5e7b577afb34d1c4d99e529dcc5ab9b663992c5b8c +SIZE (KDE/release-service/20.12.3/k3b-20.12.3.tar.xz) = 10688136 Index: head/sysutils/kbackup/distinfo =================================================================== --- head/sysutils/kbackup/distinfo (revision 567333) +++ head/sysutils/kbackup/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330859 -SHA256 (KDE/release-service/20.12.2/kbackup-20.12.2.tar.xz) = 4288005f3e007a95fce573c27faecaff83698131acaa6e2ce91ea8232e101d8d -SIZE (KDE/release-service/20.12.2/kbackup-20.12.2.tar.xz) = 380816 +TIMESTAMP = 1614706336 +SHA256 (KDE/release-service/20.12.3/kbackup-20.12.3.tar.xz) = 14bb667949b7818bc5bfe5731a89e05b1b3f8890b1c825459c47905c88491213 +SIZE (KDE/release-service/20.12.3/kbackup-20.12.3.tar.xz) = 380824 Index: head/sysutils/kcron/distinfo =================================================================== --- head/sysutils/kcron/distinfo (revision 567333) +++ head/sysutils/kcron/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330859 -SHA256 (KDE/release-service/20.12.2/kcron-20.12.2.tar.xz) = 256d70a1bde74691900a2291d6a75d128490a3a4166f4491294504fa0f31aa08 -SIZE (KDE/release-service/20.12.2/kcron-20.12.2.tar.xz) = 898960 +TIMESTAMP = 1614706339 +SHA256 (KDE/release-service/20.12.3/kcron-20.12.3.tar.xz) = ee8276e91e35959c6ea795327957ed6a218a59ac0912aac3a3cbc5f5abafc54a +SIZE (KDE/release-service/20.12.3/kcron-20.12.3.tar.xz) = 899000 Index: head/sysutils/kdebugsettings/distinfo =================================================================== --- head/sysutils/kdebugsettings/distinfo (revision 567333) +++ head/sysutils/kdebugsettings/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330860 -SHA256 (KDE/release-service/20.12.2/kdebugsettings-20.12.2.tar.xz) = 96ed75eaed1265931859007cbd761351c5b7077435304695746c3d3a99deedb7 -SIZE (KDE/release-service/20.12.2/kdebugsettings-20.12.2.tar.xz) = 68344 +TIMESTAMP = 1614706343 +SHA256 (KDE/release-service/20.12.3/kdebugsettings-20.12.3.tar.xz) = 1ba70b892a1fb8409e4b9e96f83b8fc3a1ecc8191422c41e586a5b7dc7b251db +SIZE (KDE/release-service/20.12.3/kdebugsettings-20.12.3.tar.xz) = 68344 Index: head/sysutils/kdf/distinfo =================================================================== --- head/sysutils/kdf/distinfo (revision 567333) +++ head/sysutils/kdf/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330861 -SHA256 (KDE/release-service/20.12.2/kdf-20.12.2.tar.xz) = 3d87479d7ae6e706818151ef5f0cdae724e8d1ef298bffb2fd7f572d6d59a93b -SIZE (KDE/release-service/20.12.2/kdf-20.12.2.tar.xz) = 467340 +TIMESTAMP = 1614706345 +SHA256 (KDE/release-service/20.12.3/kdf-20.12.3.tar.xz) = e72c5eaad86838dc67dd0e3059dea15476a0a1e3fbecd2efa4d7b3a7ac9b72e3 +SIZE (KDE/release-service/20.12.3/kdf-20.12.3.tar.xz) = 467360 Index: head/sysutils/kdialog/distinfo =================================================================== --- head/sysutils/kdialog/distinfo (revision 567333) +++ head/sysutils/kdialog/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330862 -SHA256 (KDE/release-service/20.12.2/kdialog-20.12.2.tar.xz) = ad8b87d6c92821de027cabb4ac242536ecc0d0b43550dc9f14503c7c3b755eec -SIZE (KDE/release-service/20.12.2/kdialog-20.12.2.tar.xz) = 108504 +TIMESTAMP = 1614706344 +SHA256 (KDE/release-service/20.12.3/kdialog-20.12.3.tar.xz) = 231f6735e5905e92381da835da1b90bddb8ada39d8bffd90c8d2f9a3673602de +SIZE (KDE/release-service/20.12.3/kdialog-20.12.3.tar.xz) = 108492 Index: head/sysutils/kfloppy/distinfo =================================================================== --- head/sysutils/kfloppy/distinfo (revision 567333) +++ head/sysutils/kfloppy/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330862 -SHA256 (KDE/release-service/20.12.2/kfloppy-20.12.2.tar.xz) = 8f3c9ffb2e7d0c0edf713f3e700ba96c16dedf075e2aefdb221a7152f85be6eb -SIZE (KDE/release-service/20.12.2/kfloppy-20.12.2.tar.xz) = 204268 +TIMESTAMP = 1614706338 +SHA256 (KDE/release-service/20.12.3/kfloppy-20.12.3.tar.xz) = e855c56dcde86273a67c130c71c7bb8b8f745168d5d888097d2bdcc75c09ce01 +SIZE (KDE/release-service/20.12.3/kfloppy-20.12.3.tar.xz) = 204260 Index: head/sysutils/khelpcenter/distinfo =================================================================== --- head/sysutils/khelpcenter/distinfo (revision 567333) +++ head/sysutils/khelpcenter/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330863 -SHA256 (KDE/release-service/20.12.2/khelpcenter-20.12.2.tar.xz) = bddd9e63127adc9b04d757998da79c91b55a89ef3d24b87c435b11c36b04bad7 -SIZE (KDE/release-service/20.12.2/khelpcenter-20.12.2.tar.xz) = 4250528 +TIMESTAMP = 1614706340 +SHA256 (KDE/release-service/20.12.3/khelpcenter-20.12.3.tar.xz) = 0e29e793687395d0349d23856a790ea2bab88c1b3f13ab5e0fdd1445627f3d56 +SIZE (KDE/release-service/20.12.3/khelpcenter-20.12.3.tar.xz) = 4250480 Index: head/sysutils/ksystemlog/distinfo =================================================================== --- head/sysutils/ksystemlog/distinfo (revision 567333) +++ head/sysutils/ksystemlog/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330864 -SHA256 (KDE/release-service/20.12.2/ksystemlog-20.12.2.tar.xz) = 8751b926e271c1fcce858de7ac535eab59af56eabee6a834c2e5de58e6bcd9bb -SIZE (KDE/release-service/20.12.2/ksystemlog-20.12.2.tar.xz) = 1936320 +TIMESTAMP = 1614706341 +SHA256 (KDE/release-service/20.12.3/ksystemlog-20.12.3.tar.xz) = 1e3fa2a9e2c9f995ce8aea028ca68ba2487db7212ad298d9d2d7fa98710cf0eb +SIZE (KDE/release-service/20.12.3/ksystemlog-20.12.3.tar.xz) = 1938596 Index: head/sysutils/signon-kwallet-extension/distinfo =================================================================== --- head/sysutils/signon-kwallet-extension/distinfo (revision 567333) +++ head/sysutils/signon-kwallet-extension/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330865 -SHA256 (KDE/release-service/20.12.2/signon-kwallet-extension-20.12.2.tar.xz) = 37f52bdd8f6378cd92beecf48bc42993839ac18c1d3f100a6ba1dc856c039979 -SIZE (KDE/release-service/20.12.2/signon-kwallet-extension-20.12.2.tar.xz) = 10700 +TIMESTAMP = 1614706344 +SHA256 (KDE/release-service/20.12.3/signon-kwallet-extension-20.12.3.tar.xz) = d7b308fc800445cbcd4cec30a0997d8a10fcd23db69c8d49d6436aa3dedcf0a8 +SIZE (KDE/release-service/20.12.3/signon-kwallet-extension-20.12.3.tar.xz) = 10700 Index: head/sysutils/sweeper/distinfo =================================================================== --- head/sysutils/sweeper/distinfo (revision 567333) +++ head/sysutils/sweeper/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330865 -SHA256 (KDE/release-service/20.12.2/sweeper-20.12.2.tar.xz) = 30cc83dc97d77496808f71e6ee660a83666ddb11efcc320c2914ed33386e067a -SIZE (KDE/release-service/20.12.2/sweeper-20.12.2.tar.xz) = 371896 +TIMESTAMP = 1614706342 +SHA256 (KDE/release-service/20.12.3/sweeper-20.12.3.tar.xz) = 17ce3ed4565fcdd4dd7541ab021fda6a7be06e88cfacd54cb89caeae494d978a +SIZE (KDE/release-service/20.12.3/sweeper-20.12.3.tar.xz) = 372484 Index: head/textproc/kompare/distinfo =================================================================== --- head/textproc/kompare/distinfo (revision 567333) +++ head/textproc/kompare/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330866 -SHA256 (KDE/release-service/20.12.2/kompare-20.12.2.tar.xz) = bbf60a63fb1b8ac89191ab18d3eb437e9da2ee8fb460b1fc5b95f3290ad7c5a2 -SIZE (KDE/release-service/20.12.2/kompare-20.12.2.tar.xz) = 921776 +TIMESTAMP = 1614706347 +SHA256 (KDE/release-service/20.12.3/kompare-20.12.3.tar.xz) = 7b57eddfa2c8f232252d4e981359fbe7844050aa2707d95044646d917967fb7f +SIZE (KDE/release-service/20.12.3/kompare-20.12.3.tar.xz) = 929648 Index: head/textproc/libkomparediff2/distinfo =================================================================== --- head/textproc/libkomparediff2/distinfo (revision 567333) +++ head/textproc/libkomparediff2/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330867 -SHA256 (KDE/release-service/20.12.2/libkomparediff2-20.12.2.tar.xz) = a98555dd0a8ee86c08db3f0f20d50de0f4f82e77e7ba2fcf643b7e88031dd60d -SIZE (KDE/release-service/20.12.2/libkomparediff2-20.12.2.tar.xz) = 159388 +TIMESTAMP = 1614706346 +SHA256 (KDE/release-service/20.12.3/libkomparediff2-20.12.3.tar.xz) = 8386c5108fd761aa5b4b8dbd25f36b021c0bf3a42127e41916c8cd646b99c35f +SIZE (KDE/release-service/20.12.3/libkomparediff2-20.12.3.tar.xz) = 159344 Index: head/textproc/markdownpart/distinfo =================================================================== --- head/textproc/markdownpart/distinfo (revision 567333) +++ head/textproc/markdownpart/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330867 -SHA256 (KDE/release-service/20.12.2/markdownpart-20.12.2.tar.xz) = b3a05ade4a7bcb815a2c2edcfdc21ef8c627cf1aca9c4b47845d60403874d121 -SIZE (KDE/release-service/20.12.2/markdownpart-20.12.2.tar.xz) = 26892 +TIMESTAMP = 1614706346 +SHA256 (KDE/release-service/20.12.3/markdownpart-20.12.3.tar.xz) = 74e598e1ae9331f4f442ca7cc3c988f0ec569a6579996bee92f72b22dd0179bc +SIZE (KDE/release-service/20.12.3/markdownpart-20.12.3.tar.xz) = 26720 Index: head/x11/konsole/distinfo =================================================================== --- head/x11/konsole/distinfo (revision 567333) +++ head/x11/konsole/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330872 -SHA256 (KDE/release-service/20.12.2/konsole-20.12.2.tar.xz) = fc1bbdd4b77cc94698dd4d7b90e95577dd5cc99f3b27633a52d49177efea0873 -SIZE (KDE/release-service/20.12.2/konsole-20.12.2.tar.xz) = 1239184 +TIMESTAMP = 1614706348 +SHA256 (KDE/release-service/20.12.3/konsole-20.12.3.tar.xz) = 24cd42fdc4ae2e17526bfab9c5ad516bb25b22d654782e98aa52f6e39bdd138d +SIZE (KDE/release-service/20.12.3/konsole-20.12.3.tar.xz) = 1250536 Index: head/x11/yakuake/distinfo =================================================================== --- head/x11/yakuake/distinfo (revision 567333) +++ head/x11/yakuake/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330873 -SHA256 (KDE/release-service/20.12.2/yakuake-20.12.2.tar.xz) = c4664a037ba01e25665720cbb540a09586909e0557ed4c4fb6cabb6e68ff399a -SIZE (KDE/release-service/20.12.2/yakuake-20.12.2.tar.xz) = 382092 +TIMESTAMP = 1614706349 +SHA256 (KDE/release-service/20.12.3/yakuake-20.12.3.tar.xz) = 7ddd1a47fdd3af67be16ae40182bea97f7c004448391ac52737d3e5f2e0b25f8 +SIZE (KDE/release-service/20.12.3/yakuake-20.12.3.tar.xz) = 382104 Index: head/x11-clocks/kteatime/distinfo =================================================================== --- head/x11-clocks/kteatime/distinfo (revision 567333) +++ head/x11-clocks/kteatime/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330868 -SHA256 (KDE/release-service/20.12.2/kteatime-20.12.2.tar.xz) = 2d22abb604e7dc4024c049eac866fa4cce19d09e390cadb130adb2fcd4b637a3 -SIZE (KDE/release-service/20.12.2/kteatime-20.12.2.tar.xz) = 294256 +TIMESTAMP = 1614706350 +SHA256 (KDE/release-service/20.12.3/kteatime-20.12.3.tar.xz) = f016698e891688f9fbec934b3b66021e49aa05b699920171c57758273b622cf9 +SIZE (KDE/release-service/20.12.3/kteatime-20.12.3.tar.xz) = 294280 Index: head/x11-clocks/ktimer/distinfo =================================================================== --- head/x11-clocks/ktimer/distinfo (revision 567333) +++ head/x11-clocks/ktimer/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330869 -SHA256 (KDE/release-service/20.12.2/ktimer-20.12.2.tar.xz) = 9e176e80f31c1570359d9c191bb1d9d32e22d5d4a2030850789a1094283f5c9f -SIZE (KDE/release-service/20.12.2/ktimer-20.12.2.tar.xz) = 385436 +TIMESTAMP = 1614706349 +SHA256 (KDE/release-service/20.12.3/ktimer-20.12.3.tar.xz) = 9cba81daa1ed2b095637c899d801929fa22f6f28958886d88209d089f3e7d7fb +SIZE (KDE/release-service/20.12.3/ktimer-20.12.3.tar.xz) = 386444 Index: head/x11-fm/dolphin/distinfo =================================================================== --- head/x11-fm/dolphin/distinfo (revision 567333) +++ head/x11-fm/dolphin/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330870 -SHA256 (KDE/release-service/20.12.2/dolphin-20.12.2.tar.xz) = 59f82f599fec19fc3065f034089b6d35a58ddc419e10c370d99d1ca0b7d0baa6 -SIZE (KDE/release-service/20.12.2/dolphin-20.12.2.tar.xz) = 5120044 +TIMESTAMP = 1614706351 +SHA256 (KDE/release-service/20.12.3/dolphin-20.12.3.tar.xz) = 9794b825de2440f53bd237c0bc1c974e89431b5c440ab81ccc1135e696f8a1f3 +SIZE (KDE/release-service/20.12.3/dolphin-20.12.3.tar.xz) = 5134660 Index: head/x11-fm/konqueror/distinfo =================================================================== --- head/x11-fm/konqueror/distinfo (revision 567333) +++ head/x11-fm/konqueror/distinfo (revision 567334) @@ -1,3 +1,3 @@ -TIMESTAMP = 1612330870 -SHA256 (KDE/release-service/20.12.2/konqueror-20.12.2.tar.xz) = 8d588079e28e2244be8f20b31d1fe4657ab045e25f8415c8f0a300f17d38797f -SIZE (KDE/release-service/20.12.2/konqueror-20.12.2.tar.xz) = 7242304 +TIMESTAMP = 1614706351 +SHA256 (KDE/release-service/20.12.3/konqueror-20.12.3.tar.xz) = 472491923e677815e11e6fe9cd8c8919dc52d37b7350eaad82adfbb203bed2f8 +SIZE (KDE/release-service/20.12.3/konqueror-20.12.3.tar.xz) = 7241896