diff --git a/debian/changelog b/debian/changelog index 193ba11b2..9fe170dbb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +dde-shell (1.99.23) UNRELEASED; urgency=medium + + * chore: remove dcc-dock-plugin + + -- zhangkun Fri, 21 Feb 2025 18:17:08 +0800 + dde-shell (1.99.22) UNRELEASED; urgency=medium * fix: record replaced notification to DB (Bug: 296235) diff --git a/debian/control b/debian/control index e3c94919e..1796b5e82 100644 --- a/debian/control +++ b/debian/control @@ -33,7 +33,7 @@ Build-Depends: libdtk6declarative, qml6-module-qtquick-controls2-styles-chameleon, qt6-declarative-private-dev, libyaml-cpp-dev, qt6-l10n-tools, qt6-svg-dev, dde-tray-loader-dev (> 1.99.14), - dde-application-manager-api (> 1.2.23), dde-control-center-dev (>= 6.0.73) + dde-application-manager-api (> 1.2.23) Standards-Version: 3.9.8 Homepage: http://www.deepin.org diff --git a/debian/dde-control-center-dock.install b/debian/dde-control-center-dock.install deleted file mode 100644 index 859904256..000000000 --- a/debian/dde-control-center-dock.install +++ /dev/null @@ -1,2 +0,0 @@ -usr/lib/*/dde-control-center -usr/share/dde-control-center diff --git a/panels/dock/CMakeLists.txt b/panels/dock/CMakeLists.txt index b72d3db1a..7b8c4f02a 100644 --- a/panels/dock/CMakeLists.txt +++ b/panels/dock/CMakeLists.txt @@ -99,10 +99,6 @@ add_subdirectory(multitaskview) find_package(DdeControlCenter) -if (DdeControlCenter_FOUND) - add_subdirectory(dcc-dock-plugin) -endif() - add_subdirectory(searchitem) #add_subdirectory(appruntimeitem) diff --git a/panels/dock/dcc-dock-plugin/CMakeLists.txt b/panels/dock/dcc-dock-plugin/CMakeLists.txt deleted file mode 100644 index 86ac100ce..000000000 --- a/panels/dock/dcc-dock-plugin/CMakeLists.txt +++ /dev/null @@ -1,41 +0,0 @@ -# SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -# -# SPDX-License-Identifier: GPL-3.0-or-later - -cmake_minimum_required(VERSION 3.18) - -set(PLUGIN_NAME dock) - -set(CMAKE_CXX_STANDARD 17) -set(CMAKE_AUTOMOC ON) -set(CMAKE_AUTORCC ON) - -find_package(Qt6 REQUIRED COMPONENTS DBus Network) -find_package(DdeControlCenter REQUIRED) -find_package(Dtk6 COMPONENTS Widget REQUIRED) - -file(GLOB_RECURSE Dock_Plugin_SRCS - "operation/*.cpp" - "operation/*.hpp" - "operation/*.h" - "res/dcc-dock-plugin.qrc" -) - -add_library(${PLUGIN_NAME} MODULE - ${Dock_Plugin_SRCS} -) - -target_include_directories(${PLUGIN_NAME} PRIVATE - Dde::Control-Center - src/dcc-dock-plugin/operation -) - -target_link_libraries(${PLUGIN_NAME} PRIVATE - Dtk6::Widget - Qt6::Gui - Qt6::DBus - Dde::Control-Center -) - -dcc_install_plugin(NAME ${PLUGIN_NAME} TARGET ${PLUGIN_NAME}) -dcc_handle_plugin_translation(NAME ${PLUGIN_NAME}) diff --git a/panels/dock/dcc-dock-plugin/operation/dccdockexport.cpp b/panels/dock/dcc-dock-plugin/operation/dccdockexport.cpp deleted file mode 100644 index 63cffd8a3..000000000 --- a/panels/dock/dcc-dock-plugin/operation/dccdockexport.cpp +++ /dev/null @@ -1,78 +0,0 @@ -// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -// SPDX-License-Identifier: GPL-3.0-or-later - -#include "dde-control-center/dccfactory.h" -#include "operation/dockpluginmodel.h" - -#include "dccdockexport.h" -#include -#include -#include - -#include - -constexpr auto PLUGIN_ICON_DIR = "/usr/share/dde-dock/icons/dcc-setting"; -constexpr auto PLUGIN_ICON_PREFIX = "dcc-"; -constexpr auto PLUGIN_ICON_DEFAULT = "dcc_dock_plug_in"; - -static const QMap pluginIconMap = { - {"AiAssistant", "dcc_dock_assistant"} - , {"show-desktop", "dcc_dock_desktop"} - , {"onboard", "dcc_dock_keyboard"} - , {"notifications", "dcc_dock_notify"} - , {"shutdown", "dcc_dock_power"} - , {"multitasking", "dcc_dock_task"} - , {"datetime", "dcc_dock_time"} - , {"system-monitor", "dcc_dock_systemmonitor"} - , {"grand-search", "dcc_dock_grandsearch"} - , {"trash", "dcc_dock_trash"} - , {"shot-start-plugin", "dcc_dock_shot_start_plugin"} -}; - -DGUI_USE_NAMESPACE; - -DccDockExport::DccDockExport(QObject *parent) -: QObject(parent) -, m_pluginModel(new DockPluginModel(this)) -, m_dockDbusProxy(new DockDBusProxy(this)) -{ - initData(); -} - -void DccDockExport::initData() -{ - QDBusPendingReply pluginInfos = m_dockDbusProxy->plugins(); - auto infos = pluginInfos.value(); - - auto dciPaths = DIconTheme::dciThemeSearchPaths(); - dciPaths.push_back(PLUGIN_ICON_DIR); - DIconTheme::setDciThemeSearchPaths(dciPaths); - - for (auto &info : infos) { - QString pluginIconStr{}; - if (QFile::exists(QString(PLUGIN_ICON_DIR) + QDir::separator() + PLUGIN_ICON_PREFIX + info.name + ".dci")) { - pluginIconStr = PLUGIN_ICON_PREFIX + info.name; - } else if (QFile::exists(QString(PLUGIN_ICON_DIR) + QDir::separator() + info.name + ".dci")) { - pluginIconStr = info.name; - } else if (QFile::exists(info.dcc_icon)) { - pluginIconStr = info.dcc_icon; - } else if (pluginIconMap.contains(info.itemKey)) { - pluginIconStr = pluginIconMap.value(info.itemKey); - } - - QIcon tmpIcon = QIcon::fromTheme(pluginIconStr); - if (tmpIcon.isNull()) { - pluginIconStr = PLUGIN_ICON_DEFAULT; - } - - info.dcc_icon = pluginIconStr; - } - m_pluginModel->resetData(infos); - - connect(m_dockDbusProxy, &DockDBusProxy::pluginVisibleChanged, m_pluginModel, &DockPluginModel::setPluginVisible); -} - -DCC_FACTORY_CLASS(DccDockExport) - -#include "dccdockexport.moc" diff --git a/panels/dock/dcc-dock-plugin/operation/dccdockexport.h b/panels/dock/dcc-dock-plugin/operation/dccdockexport.h deleted file mode 100644 index 5b465d582..000000000 --- a/panels/dock/dcc-dock-plugin/operation/dccdockexport.h +++ /dev/null @@ -1,23 +0,0 @@ -// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -// SPDX-License-Identifier: GPL-3.0-or-later - -#pragma once - -#include "operation/dockdbusproxy.h" - -class DccDockExport : public QObject -{ - Q_OBJECT - Q_PROPERTY(DockDBusProxy *dockInter MEMBER m_dockDbusProxy CONSTANT) - Q_PROPERTY(DockPluginModel *pluginModel MEMBER m_pluginModel CONSTANT) -public: - explicit DccDockExport(QObject *parent = nullptr); - -private: - void initData(); - -private: - DockDBusProxy *m_dockDbusProxy; - DockPluginModel *m_pluginModel; -}; diff --git a/panels/dock/dcc-dock-plugin/operation/dockdbusproxy.cpp b/panels/dock/dcc-dock-plugin/operation/dockdbusproxy.cpp deleted file mode 100644 index aaa1cb525..000000000 --- a/panels/dock/dcc-dock-plugin/operation/dockdbusproxy.cpp +++ /dev/null @@ -1,186 +0,0 @@ -//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -//SPDX-License-Identifier: GPL-3.0-or-later - -#include "dockdbusproxy.h" - -#include -#include -#include -#include - -const static QString DaemonDockService = "org.deepin.dde.daemon.Dock1"; -const static QString DaemonDockPath = "/org/deepin/dde/daemon/Dock1"; -const static QString DaemonDockInterface = "org.deepin.dde.daemon.Dock1"; -const static QString DockService = "org.deepin.dde.Dock1"; -const static QString DockPath = "/org/deepin/dde/Dock1"; -const static QString DockInterface = "org.deepin.dde.Dock1"; - -const static QString PropertiesInterface = "org.freedesktop.DBus.Properties"; -const static QString PropertiesChanged = "PropertiesChanged"; - -QDBusArgument &operator<<(QDBusArgument &arg, const DockItemInfo &info) -{ - arg.beginStructure(); - arg << info.name << info.displayName << info.itemKey << info.settingKey << info.dcc_icon << info.visible; - arg.endStructure(); - return arg; -} - -const QDBusArgument &operator>>(const QDBusArgument &arg, DockItemInfo &info) -{ - arg.beginStructure(); - arg >> info.name >> info.displayName >> info.itemKey >> info.settingKey >> info.dcc_icon >> info.visible; - arg.endStructure(); - return arg; -} - -static void registDockItemType() -{ - static bool isRegister = false; - if (isRegister) - return; - - qRegisterMetaType("DockItemInfo"); - qDBusRegisterMetaType(); - qRegisterMetaType("DockItemInfos"); - qDBusRegisterMetaType(); - isRegister = true; -} - -DockDBusProxy::DockDBusProxy(QObject *parent) - : QObject(parent) - , m_daemonDockInter(new QDBusInterface(DaemonDockService, DaemonDockPath, DaemonDockInterface, QDBusConnection::sessionBus(), this)) - , m_dockInter(new QDBusInterface(DockService, DockPath, DockInterface, QDBusConnection::sessionBus(), this)) -{ - QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, "DisplayModeChanged", this, SIGNAL(DisplayModeChanged(int))); - QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, "PositionChanged", this, SIGNAL(PositionChanged(int))); - QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, "HideModeChanged", this, SIGNAL(HideModeChanged(int))); - QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, "WindowSizeEfficientChanged", this, SIGNAL(WindowSizeEfficientChanged(uint))); - QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, "WindowSizeFashionChanged", this, SIGNAL(WindowSizeFashionChanged(uint))); - QDBusConnection::sessionBus().connect(DaemonDockService, DaemonDockPath, DaemonDockInterface, "showRecentChanged", this, SIGNAL(showRecentChanged(bool))); - - QDBusConnection::sessionBus().connect(DockService, DockPath, DockInterface, "showInPrimaryChanged", this, SLOT(ShowInPrimaryChanged(bool))); - QDBusConnection::sessionBus().connect(DockService, DockPath, DockInterface, "pluginVisibleChanged", this, SLOT(pluginVisibleChanged(const QString &, bool))); - - registDockItemType(); -} - -int DockDBusProxy::displayMode() -{ - return qvariant_cast(m_daemonDockInter->property("DisplayMode")); -} - -void DockDBusProxy::setDisplayMode(int mode) -{ - m_daemonDockInter->setProperty("DisplayMode", QVariant::fromValue(mode)); -} - -int DockDBusProxy::position() -{ - return qvariant_cast(m_daemonDockInter->property("Position")); -} - -void DockDBusProxy::setPosition(int value) -{ - m_daemonDockInter->setProperty("Position", QVariant::fromValue(value)); -} - -int DockDBusProxy::hideMode() -{ - return qvariant_cast(m_daemonDockInter->property("HideMode")); -} - -void DockDBusProxy::setHideMode(int value) -{ - m_daemonDockInter->setProperty("HideMode", QVariant::fromValue(value)); -} - -uint DockDBusProxy::windowSizeEfficient() -{ - return qvariant_cast(m_daemonDockInter->property("WindowSizeEfficient")); -} - -void DockDBusProxy::setWindowSizeEfficient(uint value) -{ - m_daemonDockInter->setProperty("WindowSizeEfficient", QVariant::fromValue(value)); -} - -uint DockDBusProxy::windowSizeFashion() -{ - return qvariant_cast(m_daemonDockInter->property("WindowSizeFashion")); -} - -void DockDBusProxy::setWindowSizeFashion(uint value) -{ - m_daemonDockInter->setProperty("WindowSizeFashion", QVariant::fromValue(value)); -} - -bool DockDBusProxy::showInPrimary() -{ - return qvariant_cast(m_dockInter->property("showInPrimary")); -} - -void DockDBusProxy::setShowInPrimary(bool value) -{ - m_dockInter->setProperty("showInPrimary", QVariant::fromValue(value)); -} - -bool DockDBusProxy::showRecent() -{ - return qvariant_cast(m_daemonDockInter->property("ShowRecent")); -} - -void DockDBusProxy::resizeDock(int offset, bool dragging) -{ - m_dockInter->call(QDBus::CallMode::Block, QStringLiteral("resizeDock"), QVariant::fromValue(offset), QVariant::fromValue(dragging)); -} - -QDBusPendingReply DockDBusProxy::GetLoadedPlugins() -{ - QDBusPendingReply reply = m_dockInter->asyncCall(QStringLiteral("GetLoadedPlugins")); - reply.waitForFinished(); - return reply; -} - -QDBusPendingReply DockDBusProxy::getPluginKey(const QString &pluginName) -{ - QList argumentList; - argumentList << QVariant::fromValue(pluginName); - return m_dockInter->asyncCallWithArgumentList(QStringLiteral("getPluginKey"), argumentList); -} - -QDBusPendingReply DockDBusProxy::getPluginVisible(const QString &pluginName) -{ - QList argumentList; - argumentList << QVariant::fromValue(pluginName); - return m_dockInter->asyncCallWithArgumentList(QStringLiteral("getPluginVisible"), argumentList); -} - -QDBusPendingReply<> DockDBusProxy::setPluginVisible(const QString &pluginName, bool visible) -{ - QList argumentList; - argumentList << QVariant::fromValue(pluginName) << QVariant::fromValue(visible); - return m_dockInter->asyncCallWithArgumentList(QStringLiteral("setPluginVisible"), argumentList); -} - -QDBusPendingReply<> DockDBusProxy::SetShowRecent(bool visible) -{ - QList argumengList; - argumengList << QVariant::fromValue(visible); - return m_daemonDockInter->asyncCallWithArgumentList(QStringLiteral("SetShowRecent"), argumengList); -} - -QDBusPendingReply DockDBusProxy::plugins() -{ - QDBusPendingReply reply = m_dockInter->asyncCall(QStringLiteral("plugins")); - reply.waitForFinished(); - return reply; -} - -QDBusPendingReply<> DockDBusProxy::setItemOnDock(const QString settingKey, const QString &itemKey, bool visible) -{ - QList argumengList; - argumengList << settingKey << itemKey << QVariant::fromValue(visible); - return m_dockInter->asyncCallWithArgumentList("setItemOnDock", argumengList); -} diff --git a/panels/dock/dcc-dock-plugin/operation/dockdbusproxy.h b/panels/dock/dcc-dock-plugin/operation/dockdbusproxy.h deleted file mode 100644 index 86ada4da3..000000000 --- a/panels/dock/dcc-dock-plugin/operation/dockdbusproxy.h +++ /dev/null @@ -1,83 +0,0 @@ -//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -//SPDX-License-Identifier: GPL-3.0-or-later - -#ifndef DOCKDBUSPROXY_H -#define DOCKDBUSPROXY_H - -#include -#include - -#include "dockpluginmodel.h" - -class QDBusInterface; -class QDBusMessage; - -QDBusArgument &operator<<(QDBusArgument &arg, const DockItemInfo &info); -const QDBusArgument &operator>>(const QDBusArgument &arg, DockItemInfo &info); - -Q_DECLARE_METATYPE(DockItemInfo) -Q_DECLARE_METATYPE(DockItemInfos) - -class DockDBusProxy : public QObject -{ - Q_OBJECT -public: - explicit DockDBusProxy(QObject *parent = nullptr); - - Q_PROPERTY(int DisplayMode READ displayMode WRITE setDisplayMode NOTIFY DisplayModeChanged) - int displayMode(); - Q_INVOKABLE void setDisplayMode(int mode); - - Q_PROPERTY(int Position READ position WRITE setPosition NOTIFY PositionChanged) - int position(); - Q_INVOKABLE void setPosition(int value); - - Q_PROPERTY(int HideMode READ hideMode WRITE setHideMode NOTIFY HideModeChanged) - int hideMode(); - Q_INVOKABLE void setHideMode(int value); - - Q_PROPERTY(uint WindowSizeEfficient READ windowSizeEfficient WRITE setWindowSizeEfficient NOTIFY WindowSizeEfficientChanged) - uint windowSizeEfficient(); - void setWindowSizeEfficient(uint value); - - Q_PROPERTY(uint WindowSizeFashion READ windowSizeFashion WRITE setWindowSizeFashion NOTIFY WindowSizeFashionChanged) - uint windowSizeFashion(); - void setWindowSizeFashion(uint value); - - Q_PROPERTY(bool showInPrimary READ showInPrimary WRITE setShowInPrimary NOTIFY ShowInPrimaryChanged) - bool showInPrimary(); - Q_INVOKABLE void setShowInPrimary(bool value); - - Q_PROPERTY(bool ShowRecent READ showRecent NOTIFY showRecentChanged) - bool showRecent(); - -public Q_SLOTS: - void resizeDock(int offset, bool dragging); - QDBusPendingReply GetLoadedPlugins(); - QDBusPendingReply getPluginKey(const QString &pluginName); - QDBusPendingReply getPluginVisible(const QString &pluginName); - QDBusPendingReply<> setPluginVisible(const QString &pluginName, bool visible); - QDBusPendingReply<> SetShowRecent(bool visible); - QDBusPendingReply plugins(); - QDBusPendingReply<> setItemOnDock(const QString settingKey, const QString &itemKey, bool visible); - -Q_SIGNALS: - // property changed signals - void DisplayModeChanged(int displayMode) const; - void PositionChanged(int position) const; - void HideModeChanged(int hideMode) const; - void WindowSizeEfficientChanged(uint windowSizeEfficient) const; - void WindowSizeFashionChanged(uint windowSizeFashion) const; - void ShowInPrimaryChanged(bool showInPrimary) const; - - // real singals - void pluginVisibleChanged(const QString &pluginName, bool visible) const; - void showRecentChanged(bool) const; - -private: - QDBusInterface *m_daemonDockInter; - QDBusInterface *m_dockInter; -}; - -#endif // DOCKDBUSPROXY_H diff --git a/panels/dock/dcc-dock-plugin/operation/dockpluginmodel.cpp b/panels/dock/dcc-dock-plugin/operation/dockpluginmodel.cpp deleted file mode 100644 index df6cef4d4..000000000 --- a/panels/dock/dcc-dock-plugin/operation/dockpluginmodel.cpp +++ /dev/null @@ -1,95 +0,0 @@ -//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -//SPDX-License-Identifier: GPL-3.0-or-later - -#include "dockpluginmodel.h" - -DockPluginModel::DockPluginModel(QObject *parent) -: QAbstractItemModel(parent) -{ - -} - -QModelIndex DockPluginModel::index(int row, int column, const QModelIndex &parent) const -{ - if (row < 0 || row >= rowCount() || parent.isValid() || column != 0) - return QModelIndex(); - - return createIndex(row, 0); -} - -QModelIndex DockPluginModel::parent(const QModelIndex &child) const -{ - Q_UNUSED(child) - return QModelIndex(); -} - -int DockPluginModel::rowCount(const QModelIndex &parent) const -{ - if (parent.isValid()) - return 0; - - return m_dockItemInfos.size(); -} - -int DockPluginModel::columnCount(const QModelIndex &parent) const -{ - Q_UNUSED(parent) - return 1; -} - -QVariant DockPluginModel::data(const QModelIndex &index, int role) const -{ - int row = index.row(); - - if (row < 0 || row >= m_dockItemInfos.size()) { - return {}; - } - - switch (role) { - case PluginNameRole: - return m_dockItemInfos[row].name; - case PlugindisplayNameRole: - return m_dockItemInfos[row].displayName; - case PluginItemKeyRole: - return m_dockItemInfos[row].itemKey; - case PluginSettingKeyRole: - return m_dockItemInfos[row].settingKey; - case PluginIconKeyRole: - qWarning() << m_dockItemInfos[row].dcc_icon; - return m_dockItemInfos[row].dcc_icon; - case PluginVisibleRole: - return m_dockItemInfos[row].visible; - } - return {}; -} - -QHash DockPluginModel::roleNames() const -{ - QHash roles = QAbstractItemModel::roleNames();; - roles[PluginNameRole] = "name"; - roles[PlugindisplayNameRole] = "displayName"; - roles[PluginItemKeyRole] = "key"; - roles[PluginSettingKeyRole] = "settingKey"; - roles[PluginIconKeyRole] = "icon"; - roles[PluginVisibleRole] = "visible"; - return roles; -} - -void DockPluginModel::setPluginVisible(const QString &pluginName, bool visible) -{ - for (int i = 0; i < m_dockItemInfos.size(); ++i) { - if (pluginName == m_dockItemInfos[i].itemKey) { - m_dockItemInfos[i].visible = visible; - emit dataChanged(index(i, 0), index(i, 0)); - return; - } - } -} - -void DockPluginModel::resetData(const DockItemInfos &pluginInfos) -{ - beginResetModel(); - m_dockItemInfos = pluginInfos; - endResetModel(); -} diff --git a/panels/dock/dcc-dock-plugin/operation/dockpluginmodel.h b/panels/dock/dcc-dock-plugin/operation/dockpluginmodel.h deleted file mode 100644 index fca57859c..000000000 --- a/panels/dock/dcc-dock-plugin/operation/dockpluginmodel.h +++ /dev/null @@ -1,51 +0,0 @@ -// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -// SPDX-License-Identifier: GPL-3.0-or-later - -#pragma once - -#include -#include -#include - -struct DockItemInfo -{ - QString name; - QString displayName; - QString itemKey; - QString settingKey; - QString dcc_icon; - bool visible; -}; - -typedef QList DockItemInfos; - -class DockPluginModel : public QAbstractItemModel -{ - Q_OBJECT - enum DockPluginTypeRole { - PluginNameRole = Qt::UserRole + 1, - PlugindisplayNameRole, - PluginItemKeyRole, - PluginSettingKeyRole, - PluginIconKeyRole, - PluginVisibleRole - }; - -public: - explicit DockPluginModel(QObject *parent = nullptr); - QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override; - QModelIndex parent(const QModelIndex &child) const override; - int rowCount(const QModelIndex &parent = QModelIndex()) const override; - int columnCount(const QModelIndex &parent = QModelIndex()) const override; - QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; - - void setPluginVisible(const QString &pluginName, bool visible); - void resetData(const DockItemInfos &pluginInfos); - -protected: - QHash roleNames() const override; - -private: - DockItemInfos m_dockItemInfos; -}; diff --git a/panels/dock/dcc-dock-plugin/qml/CustomComBobox.qml b/panels/dock/dcc-dock-plugin/qml/CustomComBobox.qml deleted file mode 100644 index a43ea6950..000000000 --- a/panels/dock/dcc-dock-plugin/qml/CustomComBobox.qml +++ /dev/null @@ -1,27 +0,0 @@ -//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -//SPDX-License-Identifier: GPL-3.0-or-later - -import QtQuick 2.15 -import QtQuick.Window 2.15 -import QtQuick.Controls 2.3 -import QtQuick.Layouts 1.15 - -import org.deepin.dcc 1.0 -import org.deepin.dtk 1.0 as D - -D.ComboBox { - flat: true - textRole: "text" - valueRole: "value" - - // To replace function: indexOfValue - function indexByValue(value) { - for (var i = 0; i < model.count; i++) { - if (model.get(i).value === value) { - return i; - } - } - return -1; - } -} diff --git a/panels/dock/dcc-dock-plugin/qml/PluginArea.qml b/panels/dock/dcc-dock-plugin/qml/PluginArea.qml deleted file mode 100644 index 84f362c7b..000000000 --- a/panels/dock/dcc-dock-plugin/qml/PluginArea.qml +++ /dev/null @@ -1,61 +0,0 @@ -//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -//SPDX-License-Identifier: GPL-3.0-or-later - -import QtQuick 2.15 -import QtQuick.Window 2.15 -import QtQuick.Controls 2.3 -import QtQuick.Layouts 1.15 - -import org.deepin.dcc 1.0 -import org.deepin.dtk 1.0 as D - -DccObject { - DccObject { - name: "pluginAreaTitle" - weight: 10 - parentName: "personalization/dock/pluginArea" - pageType: DccObject.Item - displayName: qsTr("Plugin Area") - description: qsTr("Select which icons appear in the Dock") - page: ColumnLayout { - Label { - font.family: D.DTK.fontManager.t4.family - font.bold: true - font.pixelSize: D.DTK.fontManager.t4.pixelSize - text: dccObj.displayName - } - Label { - text: dccObj.description - } - } - } - - DccObject { - name: "pluginAreaView" - parentName: "personalization/dock/pluginArea" - weight: 100 - pageType: DccObject.Item - page: DccGroupView {} - - DccRepeater { - model: dccData.pluginModel - delegate: DccObject { - name: "plugin" + model.key - property real iconSize: 16 - parentName: "personalization/dock/pluginArea/pluginAreaView" - weight: 10 + index * 10 - backgroundType: DccObject.Normal - icon: model.icon - displayName: model.displayName - pageType: DccObject.Editor - page: DccCheckIcon { - checked: model.visible - onClicked: { - dccData.dockInter.setItemOnDock(model.settingKey, model.key, !checked) - } - } - } - } - } -} diff --git a/panels/dock/dcc-dock-plugin/qml/dock.qml b/panels/dock/dcc-dock-plugin/qml/dock.qml deleted file mode 100644 index c9f2d43a4..000000000 --- a/panels/dock/dcc-dock-plugin/qml/dock.qml +++ /dev/null @@ -1,20 +0,0 @@ -//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -//SPDX-License-Identifier: GPL-3.0-or-later - -import QtQuick 2.15 -import QtQuick.Window 2.15 -import QtQuick.Controls 2.3 -import QtQuick.Layouts 1.15 - -import org.deepin.dcc 1.0 -import org.deepin.dtk 1.0 as D - -DccObject { - name: "dock" - parentName: "personalization" - displayName: qsTr("Desktop and taskbar") - description: qsTr("Set the display and size of icons on the desktop") - icon: "dock" - weight: 100 -} diff --git a/panels/dock/dcc-dock-plugin/qml/main.qml b/panels/dock/dcc-dock-plugin/qml/main.qml deleted file mode 100644 index 0bd351b23..000000000 --- a/panels/dock/dcc-dock-plugin/qml/main.qml +++ /dev/null @@ -1,247 +0,0 @@ -//SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. -// -//SPDX-License-Identifier: GPL-3.0-or-later - -import QtQuick 2.15 -import QtQuick.Window 2.15 -import QtQuick.Controls 2.3 -import QtQuick.Layouts 1.15 - -import org.deepin.dcc 1.0 -import org.deepin.dtk 1.0 as D - -DccObject { - DccTitleObject { - name: "taskBarTitle" - weight: 500 - parentName: "personalization/dock" - displayName: qsTr("Dock") - } - - DccObject { - name: "taskBarModeGroup" - parentName: "personalization/dock" - weight: 600 - pageType: DccObject.Item - page: DccGroupView {} - - DccObject { - name: "dockmode" - parentName: "personalization/dock/taskBarModeGroup" - displayName: qsTr("Mode") - weight: 10 - pageType: DccObject.Item - page: ColumnLayout { - Label { - Layout.topMargin: 10 - font: D.DTK.fontManager.t7 - text: dccObj.displayName - Layout.leftMargin: 10 - } - Flow { - id: modeLayout - spacing: 10 - Layout.fillWidth: true - Layout.bottomMargin: 10 - Layout.leftMargin: 10 - - ListModel { - id: modeData - ListElement { text: qsTr("Classic Mode"); icon: "effcient_left"; value: 1 } - ListElement { text: qsTr("Centered Mode"); icon: "effcient_center"; value: 0 } - // ListElement { text: qsTr("Fashion Mode"); icon: "fashion"; value: 2 } - } - - Repeater { - model: modeData - ColumnLayout { - Item { - id: borderRect - Layout.preferredWidth: 144 - Layout.preferredHeight: 70 - Layout.alignment: Qt.AlignHCenter - Layout.margins: 0 - - Rectangle { - anchors.fill: parent - radius: 8 - color: "transparent" - border.width: 2 - border.color: D.DTK.platformTheme.activeColor - visible: dccData.dockInter.DisplayMode === model.value - } - - D.DciIcon { - anchors.fill: parent - anchors.margins: 4 - sourceSize: Qt.size(width, height) - name: model.icon - } - MouseArea { - anchors.fill: parent - onClicked: { - dccData.dockInter.setDisplayMode(model.value) - } - } - } - - Text { - text: model.text - Layout.fillWidth: true - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font: D.DTK.fontManager.t9 - color: dccData.dockInter.DisplayMode === model.value ? - D.DTK.platformTheme.activeColor : this.palette.windowText - } - } - } - } - } - } - } - - DccObject { - name: "dockSettingsGroup" - parentName: "personalization/dock" - weight: 700 - pageType: DccObject.Item - page: DccGroupView {} - - DccObject { - name: "docksize" - parentName: "personalization/dock/dockSettingsGroup" - displayName: qsTr("Dock size") - weight: 10 - pageType: DccObject.Editor - page: RowLayout { - spacing: 10 - Label { - Layout.alignment: Qt.AlignVCenter - font: D.DTK.fontManager.t7 - text: qsTr("Small") - } - D.Slider { - Layout.alignment: Qt.AlignVCenter - id: balanceSlider - handleType: Slider.HandleType.ArrowBottom - implicitHeight: 24 - highlightedPassedGroove: true - stepSize: 1 - value: dccData.dockInter.DisplayMode === 2 ? dccData.dockInter.WindowSizeFashion : dccData.dockInter.WindowSizeEfficient - from: 37 - to: 100 - - onValueChanged: { - dccData.dockInter.resizeDock(value, true) - } - - onPressedChanged: { - dccData.dockInter.resizeDock(value, pressed) - } - } - D.Label { - Layout.alignment: Qt.AlignVCenter - font: D.DTK.fontManager.t7 - text: qsTr("Large") - } - } - } - - DccObject { - name: "positionInScreen" - parentName: "personalization/dock/dockSettingsGroup" - displayName: qsTr("Position on the screen") - weight: 100 - pageType: DccObject.Editor - page: CustomComBobox { - flat: true - model: alignModel - currentIndex: indexByValue(dccData.dockInter.Position) - - ListModel { - id: alignModel - ListElement { text: qsTr("Top"); value: 0 } - ListElement { text: qsTr("Bottom"); value: 2 } - ListElement { text: qsTr("Left"); value: 3 } - ListElement { text: qsTr("Right"); value: 1 } - } - - onCurrentIndexChanged: { - var selectedValue = model.get(currentIndex).value; - dccData.dockInter.setPosition(selectedValue) - } - } - } - - DccObject { - name: "positionInScreen" - parentName: "personalization/dock/dockSettingsGroup" - displayName: qsTr("Status") - weight: 200 - pageType: DccObject.Editor - page: CustomComBobox { - flat: true - model: hideModel - currentIndex: indexByValue(dccData.dockInter.HideMode) - - ListModel { - id: hideModel - ListElement { text: qsTr("Keep shown"); value: 0 } - ListElement { text: qsTr("Keep hidden"); value: 1 } - ListElement { text: qsTr("Smart hide"); value: 2 } - } - - onCurrentIndexChanged: { - var selectedValue = model.get(currentIndex).value; - dccData.dockInter.setHideMode(selectedValue) - } - } - } - } - - DccObject { - name: "multiscreenGroup" - parentName: "personalization/dock" - weight: 800 - pageType: DccObject.Item - page: DccGroupView {} - - DccObject { - name: "multiscreenItem" - parentName: "personalization/dock/multiscreenGroup" - displayName: qsTr("Multiple Displays") - description: qsTr("Set the position of the taskbar on the screen") - visible: Qt.application.screens.length > 1 - weight: 10 - pageType: DccObject.Editor - page: CustomComBobox { - flat: true - model: showModeModel - currentIndex: indexByValue(dccData.dockInter.showInPrimary) - - ListModel { - id: showModeModel - ListElement { text: qsTr("Only on main"); value: true } - ListElement { text: qsTr("On screen where the cursor is"); value: false } - } - - onCurrentIndexChanged: { - var selectedValue = model.get(currentIndex).value; - dccData.dockInter.setShowInPrimary(selectedValue) - } - } - } - } - - DccObject { - name: "pluginArea" - weight:900 - icon: "plugin" - parentName: "personalization/dock" - displayName: qsTr("Plugin Area") - description: qsTr("Select which icons appear in the Dock") - - PluginArea {} - } -} diff --git a/panels/dock/dcc-dock-plugin/qml/metadata.json b/panels/dock/dcc-dock-plugin/qml/metadata.json deleted file mode 100644 index 5b62f9791..000000000 --- a/panels/dock/dcc-dock-plugin/qml/metadata.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "Version": "1.0" -} diff --git a/panels/dock/dcc-dock-plugin/res/dark/icons/effcient_center_70px.svg b/panels/dock/dcc-dock-plugin/res/dark/icons/effcient_center_70px.svg deleted file mode 100644 index 171490224..000000000 --- a/panels/dock/dcc-dock-plugin/res/dark/icons/effcient_center_70px.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - 高效-居中 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/dark/icons/effcient_left_70px.svg b/panels/dock/dcc-dock-plugin/res/dark/icons/effcient_left_70px.svg deleted file mode 100644 index a92e4fc84..000000000 --- a/panels/dock/dcc-dock-plugin/res/dark/icons/effcient_left_70px.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - 高效-居左 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/dark/icons/fashion_70px.svg b/panels/dock/dcc-dock-plugin/res/dark/icons/fashion_70px.svg deleted file mode 100644 index 58fbb65cb..000000000 --- a/panels/dock/dcc-dock-plugin/res/dark/icons/fashion_70px.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - 时尚模式 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/dcc-dock-plugin.qrc b/panels/dock/dcc-dock-plugin/res/dcc-dock-plugin.qrc deleted file mode 100644 index 883350932..000000000 --- a/panels/dock/dcc-dock-plugin/res/dcc-dock-plugin.qrc +++ /dev/null @@ -1,30 +0,0 @@ - - - dark/icons/effcient_center_70px.svg - dark/icons/effcient_left_70px.svg - dark/icons/fashion_70px.svg - light/icons/effcient_center_70px.svg - light/icons/effcient_left_70px.svg - light/icons/fashion_70px.svg - - - - icons/plugin.dci - icons/dock.dci - - - - texts/dcc_dock_time_16px.svg - texts/dcc_dock_assistant_16px.svg - texts/dcc_dock_desktop_16px.svg - texts/dcc_dock_keyboard_16px.svg - texts/dcc_dock_notify_16px.svg - texts/dcc_dock_plug_in_16px.svg - texts/dcc_dock_power_16px.svg - texts/dcc_dock_task_16px.svg - texts/dcc_dock_trash_16px.svg - texts/dcc_dock_grandsearch_16px.svg - texts/dcc_dock_systemmonitor_16px.svg - texts/dcc_dock_shot_start_plugin_16px.svg - - diff --git a/panels/dock/dcc-dock-plugin/res/icons/dock.dci b/panels/dock/dcc-dock-plugin/res/icons/dock.dci deleted file mode 100644 index 51ae9c43b..000000000 Binary files a/panels/dock/dcc-dock-plugin/res/icons/dock.dci and /dev/null differ diff --git a/panels/dock/dcc-dock-plugin/res/icons/plugin.dci b/panels/dock/dcc-dock-plugin/res/icons/plugin.dci deleted file mode 100644 index a2d7161a4..000000000 Binary files a/panels/dock/dcc-dock-plugin/res/icons/plugin.dci and /dev/null differ diff --git a/panels/dock/dcc-dock-plugin/res/light/icons/effcient_center_70px.svg b/panels/dock/dcc-dock-plugin/res/light/icons/effcient_center_70px.svg deleted file mode 100644 index 17fa1df83..000000000 --- a/panels/dock/dcc-dock-plugin/res/light/icons/effcient_center_70px.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - 高效-居中 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/light/icons/effcient_left_70px.svg b/panels/dock/dcc-dock-plugin/res/light/icons/effcient_left_70px.svg deleted file mode 100644 index 3031a86dd..000000000 --- a/panels/dock/dcc-dock-plugin/res/light/icons/effcient_left_70px.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - 高效-居左 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/light/icons/fashion_70px.svg b/panels/dock/dcc-dock-plugin/res/light/icons/fashion_70px.svg deleted file mode 100644 index 63dffae82..000000000 --- a/panels/dock/dcc-dock-plugin/res/light/icons/fashion_70px.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - 时尚模式 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_assistant_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_assistant_16px.svg deleted file mode 100644 index 7c2010bf1..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_assistant_16px.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - icon/dock/assistant - - - - - - - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_desktop_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_desktop_16px.svg deleted file mode 100644 index c0fa9ab19..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_desktop_16px.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - icon/dock/desktop - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_grandsearch_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_grandsearch_16px.svg deleted file mode 100644 index b1e0e65ba..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_grandsearch_16px.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - icon/dock-set/search - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_keyboard_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_keyboard_16px.svg deleted file mode 100644 index d9c5718b2..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_keyboard_16px.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - icon/dock/keyboard - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_notify_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_notify_16px.svg deleted file mode 100644 index fba759921..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_notify_16px.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - icon/dock/notify - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_plug_in_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_plug_in_16px.svg deleted file mode 100644 index 5ab6bf7fd..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_plug_in_16px.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - icon/dock/plug-in2 - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_power_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_power_16px.svg deleted file mode 100644 index 66aea8e7c..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_power_16px.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - icon/dock-set/power - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_shot_start_plugin_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_shot_start_plugin_16px.svg deleted file mode 100644 index 9a53f3b4b..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_shot_start_plugin_16px.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - screenshot-dark - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_systemmonitor_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_systemmonitor_16px.svg deleted file mode 100644 index 50ee6bb28..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_systemmonitor_16px.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - icon/dock-set/monitor - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_task_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_task_16px.svg deleted file mode 100644 index 0537c2347..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_task_16px.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - icon/dock/task - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_time_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_time_16px.svg deleted file mode 100644 index da813d6f9..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_time_16px.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - icon/dock/time - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_trash_16px.svg b/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_trash_16px.svg deleted file mode 100644 index 05ce6decf..000000000 --- a/panels/dock/dcc-dock-plugin/res/texts/dcc_dock_trash_16px.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - icon/dock/trash - - - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock.ts b/panels/dock/dcc-dock-plugin/translations/dock.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_ar.ts b/panels/dock/dcc-dock-plugin/translations/dock_ar.ts deleted file mode 100644 index 7344adb0e..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_ar.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - المنطقة الإضافية - - - Select which icons appear in the Dock - حدد أي الرموز تظهر في السلة - - - - dock - - Desktop and taskbar - الطاولة والأداة المساعدة - - - Set the display and size of icons on the desktop - تعيين عرض وحجم الرموز على سطح المكتب - - - - main - - Dock - السلة - - - Mode - وضع - - - Dock size - حجم السلة - - - Small - صغير - - - Large - كبير - - - Position on the screen - موضع على الشاشة - - - Top - أعلى - - - Bottom - أسفل - - - Left - يسار - - - Right - يمين - - - Status - الحالة - - - Keep shown - ابقShown - - - Keep hidden - ابق مخفي - - - Smart hide - ẩn thông minh - - - Multiple Displays - شاشات متعددة - - - Set the position of the taskbar on the screen - تعيين موضع شريط المهام على الشاشة - - - Only on main - فقط على الرئيسي - - - On screen where the cursor is - على الشاشة حيث المؤشر - - - Plugin Area - المنطقة الإضافية - - - Select which icons appear in the Dock - حدد أي الرموز تظهر في السلة - - - Classic Mode - وضع كلاسيكي - - - Centered Mode - وضع المركز - - - Fashion Mode - وضع الموضة - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_az.ts b/panels/dock/dcc-dock-plugin/translations/dock_az.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_az.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_bo.ts b/panels/dock/dcc-dock-plugin/translations/dock_bo.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_bo.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_ca.ts b/panels/dock/dcc-dock-plugin/translations/dock_ca.ts deleted file mode 100644 index d1ccfabcf..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_ca.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Àrea de connectors - - - Select which icons appear in the Dock - Seleccioneu quines icones apareixen a l'acoblador. - - - - dock - - Desktop and taskbar - Escriptori i barra de tasques - - - Set the display and size of icons on the desktop - Establiu la visualització i la mida de les icones a l'escriptori. - - - - main - - Dock - Acoblador - - - Mode - Mode - - - Dock size - Mida de l'acoblador - - - Small - Petita - - - Large - Grossa - - - Position on the screen - Posició a la pantalla - - - Top - A dalt - - - Bottom - A baix - - - Left - A l'esquerra - - - Right - A la dreta - - - Status - Estat - - - Keep shown - Mantén-lo visible - - - Keep hidden - Mantén-lo amagat - - - Smart hide - Ocultació intel·ligent - - - Multiple Displays - Pantalles múltiples - - - Set the position of the taskbar on the screen - Establiu la posició de la barra de tasques a la pantalla. - - - Only on main - Només a la principal - - - On screen where the cursor is - A la pantalla on hi ha el cursor - - - Plugin Area - Àrea de connectors - - - Select which icons appear in the Dock - Seleccioneu quines icones apareixen a l'acoblador. - - - Classic Mode - Mode clàssic - - - Centered Mode - Mode centrat - - - Fashion Mode - Mode de moda - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_de.ts b/panels/dock/dcc-dock-plugin/translations/dock_de.ts deleted file mode 100644 index 0b45cf32b..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_de.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - Wählen Sie aus, welche Symbole im Dock erscheinen sollen - - - - dock - - Desktop and taskbar - Desktop und Taskleiste - - - Set the display and size of icons on the desktop - Festlegen der Anzeige und Größe von Symbolen auf dem Desktop - - - - main - - Dock - Dock - - - Mode - Modus - - - Dock size - Dockgröße - - - Small - Klein - - - Large - Groß - - - Position on the screen - Position auf dem Bildschirm - - - Top - Oben - - - Bottom - Unten - - - Left - Links - - - Right - Rechts - - - Status - Status - - - Keep shown - Angezeigt lassen - - - Keep hidden - Ausgeblendet lassen - - - Smart hide - Intelligentes Ausblenden - - - Multiple Displays - Mehrere Bildschirme - - - Set the position of the taskbar on the screen - Festlegen der Position der Taskleiste auf dem Bildschirm - - - Only on main - - - - On screen where the cursor is - Auf dem Bildschirm, wo sich der Zeiger befindet - - - Plugin Area - - - - Select which icons appear in the Dock - Wählen Sie aus, welche Symbole im Dock erscheinen sollen - - - Classic Mode - Klassischer Modus - - - Centered Mode - - - - Fashion Mode - - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_de_DE.ts b/panels/dock/dcc-dock-plugin/translations/dock_de_DE.ts deleted file mode 100644 index 2cbd261bc..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_de_DE.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Plugin-Bereich - - - Select which icons appear in the Dock - Wähle die Icons aus, die im Dock erscheinen - - - - dock - - Desktop and taskbar - Schreibtisch und Aufgabenleiste - - - Set the display and size of icons on the desktop - Stelle Anzeige und Größe der Symbole auf dem Schreibtisch ein - - - - main - - Dock - Dock - - - Mode - Modus - - - Dock size - Dock-Größe - - - Small - Klein - - - Large - Groß - - - Position on the screen - Position am Bildschirm - - - Top - Oben - - - Bottom - Unten - - - Left - Links - - - Right - Rechts - - - Status - Status - - - Keep shown - Angezeigt lassen - - - Keep hidden - Ausgeblendet lassen - - - Smart hide - Schlaues Ausblenden - - - Multiple Displays - Mehrere Bildschirme - - - Set the position of the taskbar on the screen - Position der Aufgabenleiste am Bildschirm bestimmen - - - Only on main - Nur am Hauptbildschirm - - - On screen where the cursor is - Am Bildschirm, wo der Cursor ist - - - Plugin Area - Plugin-Bereich - - - Select which icons appear in the Dock - Wähle die Icons aus, die im Dock erscheinen - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - Design-Modus - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_es.ts b/panels/dock/dcc-dock-plugin/translations/dock_es.ts deleted file mode 100644 index b145b615c..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_es.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Área de complementos - - - Select which icons appear in the Dock - Seleccione los iconos que aparecerán en el muelle - - - - dock - - Desktop and taskbar - Escritorio y barra de tareas - - - Set the display and size of icons on the desktop - Establecer la visualización y el tamaño de los iconos en el escritorio - - - - main - - Dock - Anclar - - - Mode - Modo - - - Dock size - Tamaño del muelle - - - Small - Pequeño - - - Large - Grande - - - Position on the screen - Posición en la pantalla - - - Top - Arriba - - - Bottom - Abajo - - - Left - Izquierda - - - Right - Derecha - - - Status - Estado - - - Keep shown - Mantener visible - - - Keep hidden - Mantener oculto - - - Smart hide - Ocultar inteligentemente - - - Multiple Displays - Múltiples pantallas - - - Set the position of the taskbar on the screen - Establecer posición de la barra de tareas en la pantalla - - - Only on main - Solo en principal - - - On screen where the cursor is - En la pantalla donde está el cursor - - - Plugin Area - Área de complementos - - - Select which icons appear in the Dock - Seleccione los iconos que aparecerán en el muelle - - - Classic Mode - Modo clásico - - - Centered Mode - Modo centrado - - - Fashion Mode - Modo elegante - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_fi.ts b/panels/dock/dcc-dock-plugin/translations/dock_fi.ts deleted file mode 100644 index f1786badb..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_fi.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Laajennusalue - - - Select which icons appear in the Dock - Valitse paneelissa näkyvät kuvakkeet - - - - dock - - Desktop and taskbar - Pöytä ja tehtäväpalkki - - - Set the display and size of icons on the desktop - Aseta pöydän kuvakkeet ja koko - - - - main - - Dock - Paneeli - - - Mode - Tila - - - Dock size - Paneelin koko - - - Small - Pieni - - - Large - Suuri - - - Position on the screen - Paikka ruudulla - - - Top - Ylös - - - Bottom - Alas - - - Left - Vasen - - - Right - Oikea - - - Status - Tila - - - Keep shown - Näytä aina - - - Keep hidden - Pidä piilossa - - - Smart hide - Älykäs piilotus - - - Multiple Displays - Useita näyttöjä - - - Set the position of the taskbar on the screen - Aseta tehtäväpalkin paikka näytöllä - - - Only on main - Päänäytössä - - - On screen where the cursor is - Näytöllä, jossa kohdistin on - - - Plugin Area - Laajennusalue - - - Select which icons appear in the Dock - Valitse paneelissa näkyvät kuvakkeet - - - Classic Mode - Klassinen - - - Centered Mode - Keskitetty - - - Fashion Mode - Keskitetty - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_fr.ts b/panels/dock/dcc-dock-plugin/translations/dock_fr.ts deleted file mode 100644 index 18aeb0354..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_fr.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Zone de plugins - - - Select which icons appear in the Dock - Sélectionner les icônes qui apparaissent dans le lanceur - - - - dock - - Desktop and taskbar - Bureau et barre des tâches - - - Set the display and size of icons on the desktop - Définir la disposition et la taille des icônes du bureau - - - - main - - Dock - Lanceur - - - Mode - Mode - - - Dock size - Taille du lanceur - - - Small - Petit - - - Large - Grand - - - Position on the screen - Position à l'écran - - - Top - Haut - - - Bottom - Bas - - - Left - Gauche - - - Right - Droite - - - Status - Statut - - - Keep shown - Garder affiché - - - Keep hidden - Garder masqué - - - Smart hide - Masquer intelligemment - - - Multiple Displays - Affichages multiples - - - Set the position of the taskbar on the screen - Définir la position de la barre des tâches à l'écran - - - Only on main - Uniquement sur le principal - - - On screen where the cursor is - Sur l'écran où se trouve le curseur - - - Plugin Area - Zone de plugins - - - Select which icons appear in the Dock - Sélectionner les icônes qui apparaissent dans le lanceur - - - Classic Mode - Mode classique - - - Centered Mode - Mode centré - - - Fashion Mode - Mode fashion - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_hu.ts b/panels/dock/dcc-dock-plugin/translations/dock_hu.ts deleted file mode 100644 index fa7c8982b..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_hu.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Bővítmény terület - - - Select which icons appear in the Dock - Válassza ki, hogy mely ikonok jelenjenek meg a dokkolóban - - - - dock - - Desktop and taskbar - Asztal és Tálca - - - Set the display and size of icons on the desktop - Állítsa be az asztalon lévő ikonok megjelenítését és méretét - - - - main - - Dock - Dokkoló - - - Mode - Mód - - - Dock size - Dokkoló mérete - - - Small - Kicsi - - - Large - Nagy - - - Position on the screen - Képernyőn való pozíció - - - Top - Fent - - - Bottom - Lent - - - Left - Bal - - - Right - Jobb - - - Status - Állapot - - - Keep shown - Megjelenítve tartás - - - Keep hidden - Maradjon rejtett - - - Smart hide - Intelligens elrejtés - - - Multiple Displays - Többképernyős mód - - - Set the position of the taskbar on the screen - Állítsa be a tálca helyzetét a képernyőn - - - Only on main - Megjelenítés csak a Főképernyőn - - - On screen where the cursor is - Azon a képernyőn ahol a kurzor található - - - Plugin Area - Bővítmény terület - - - Select which icons appear in the Dock - Válassza ki, hogy mely ikonok jelenjenek meg a dokkolóban - - - Classic Mode - Klasszikus mód - - - Centered Mode - Középre igazított mód - - - Fashion Mode - Stílusos mód - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_it.ts b/panels/dock/dcc-dock-plugin/translations/dock_it.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_it.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_ja.ts b/panels/dock/dcc-dock-plugin/translations/dock_ja.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_ja.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_ko.ts b/panels/dock/dcc-dock-plugin/translations/dock_ko.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_ko.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_lt.ts b/panels/dock/dcc-dock-plugin/translations/dock_lt.ts deleted file mode 100644 index 063a133dc..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_lt.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - Darbalaukis ir užduočių juosta - - - Set the display and size of icons on the desktop - - - - - main - - Dock - Dokas - - - Mode - Veiksena - - - Dock size - Doko dydis - - - Small - Mažas - - - Large - Didelis - - - Position on the screen - Vieta ekrane - - - Top - Viršus - - - Bottom - Apačia - - - Left - Kairė - - - Right - Dešinė - - - Status - Būsena - - - Keep shown - Laikyti rodomą - - - Keep hidden - Laikyti paslėptą - - - Smart hide - Išmaniai slėpti - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - Tik pagrindiniame - - - On screen where the cursor is - Ekrane, kuriame yra pelės žymeklis - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - Klasikinė veiksena - - - Centered Mode - - - - Fashion Mode - Madinga veiksena - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_nb_NO.ts b/panels/dock/dcc-dock-plugin/translations/dock_nb_NO.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_nb_NO.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_nl.ts b/panels/dock/dcc-dock-plugin/translations/dock_nl.ts deleted file mode 100644 index 375f7ee2b..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_nl.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Systeemvak - - - Select which icons appear in the Dock - Geef aan welke pictogrammen op het dock moeten worden getoond - - - - dock - - Desktop and taskbar - Bureaublad en taakbalk - - - Set the display and size of icons on the desktop - Stel de weergave en grootte van bureaubladpictogrammen in - - - - main - - Dock - Dock - - - Mode - Modus - - - Dock size - Dockgrootte - - - Small - Klein - - - Large - Groot - - - Position on the screen - Schermlocatie - - - Top - Bovenaan - - - Bottom - Onderaan - - - Left - Links - - - Right - Rechts - - - Status - Status - - - Keep shown - Altijd tonen - - - Keep hidden - Altijd verbergen - - - Smart hide - Slim verbergen - - - Multiple Displays - Meerdere beeldschermen - - - Set the position of the taskbar on the screen - Stel de locatie van de taakbalk in - - - Only on main - Alleen op hoofdscherm - - - On screen where the cursor is - Op scherm waar de cursor is - - - Plugin Area - Systeemvak - - - Select which icons appear in the Dock - Geef aan welke pictogrammen op het dock moeten worden getoond - - - Classic Mode - Klassieke modus - - - Centered Mode - Gecentreerde modus - - - Fashion Mode - Moderne modus - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_pl.ts b/panels/dock/dcc-dock-plugin/translations/dock_pl.ts deleted file mode 100644 index dda095330..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_pl.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Strefa wtyczek - - - Select which icons appear in the Dock - Wybierz, które wtyczki pojawią się w doku - - - - dock - - Desktop and taskbar - Pulpit i pasek zadań - - - Set the display and size of icons on the desktop - Ustaw ekran i rozmiar ikon na pulpicie - - - - main - - Dock - Dok - - - Mode - Tryb - - - Dock size - Rozmiar doku - - - Small - Mały - - - Large - Duży - - - Position on the screen - Pozycja na ekranie - - - Top - Góra - - - Bottom - Dół - - - Left - Lewo - - - Right - Prawo - - - Status - Status - - - Keep shown - Zawsze wyświetlaj - - - Keep hidden - Zawsze ukrywaj - - - Smart hide - Inteligentne ukrywanie - - - Multiple Displays - Wiele ekranów - - - Set the position of the taskbar on the screen - Ustaw położenie paska zadań na ekranie - - - Only on main - Tylko na głównym - - - On screen where the cursor is - Na ekranie, tam gdzie jest kursor - - - Plugin Area - Strefa wtyczek - - - Select which icons appear in the Dock - Wybierz, które ikony pojawią się w doku - - - Classic Mode - Tryb klasyczny - - - Centered Mode - Tryb wyśrodkowany - - - Fashion Mode - Tryb modny - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_pt.ts b/panels/dock/dcc-dock-plugin/translations/dock_pt.ts deleted file mode 100644 index a9a195639..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_pt.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Área de plugins - - - Select which icons appear in the Dock - Seleccione quais ícones são visiveis na Dock - - - - dock - - Desktop and taskbar - Ambiente de Trabalho e Barra de Tarefas - - - Set the display and size of icons on the desktop - Definir o tamanho de ecrã e icones no ambiente de trabalho - - - - main - - Dock - Dock - - - Mode - Modo - - - Dock size - Tamanho da Dock - - - Small - Pequeno - - - Large - Grande - - - Position on the screen - Posição no Ecrã - - - Top - Topo - - - Bottom - Fundo - - - Left - Esquerda - - - Right - Direita - - - Status - Estado - - - Keep shown - Manter Visivel - - - Keep hidden - Manter Escondido - - - Smart hide - Esconder Inteligente - - - Multiple Displays - Múltiplos Ecrãs - - - Set the position of the taskbar on the screen - Definir a posição da barra de tarefas no ecrã - - - Only on main - Apenas no principal - - - On screen where the cursor is - No ecrã em que o cursor estiver - - - Plugin Area - Área de plugins - - - Select which icons appear in the Dock - Seleccione quais ícones são visiveis na Dock - - - Classic Mode - Modo Clássico - - - Centered Mode - Modo Centrado - - - Fashion Mode - Modo Elegante - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_pt_BR.ts b/panels/dock/dcc-dock-plugin/translations/dock_pt_BR.ts deleted file mode 100644 index 63c1e736f..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_pt_BR.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Área do plugin - - - Select which icons appear in the Dock - Selecione quais ícones devem aparecer no dock - - - - dock - - Desktop and taskbar - Desktop e barra de tarefas - - - Set the display and size of icons on the desktop - Defina a exibição e o tamanho dos ícones na área de trabalho - - - - main - - Dock - Dock - - - Mode - Modo - - - Dock size - Tamanho da dock - - - Small - Pequeno - - - Large - Grande - - - Position on the screen - Posição na tela - - - Top - Superior - - - Bottom - Inferior - - - Left - Esquerda - - - Right - Direita - - - Status - Exibição - - - Keep shown - Sempre exibir - - - Keep hidden - Manter escondido - - - Smart hide - Ocultação inteligente - - - Multiple Displays - Múltiplas Telas - - - Set the position of the taskbar on the screen - Configurar a posição da barra de tarefa na tela - - - Only on main - Apenas na principal - - - On screen where the cursor is - Na tela onde está o cursor - - - Plugin Area - Área do plugin - - - Select which icons appear in the Dock - Selecione quais ícones devem aparecer no dock - - - Classic Mode - Modo clássico - - - Centered Mode - Modo centralizado - - - Fashion Mode - Fashion - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_ru.ts b/panels/dock/dcc-dock-plugin/translations/dock_ru.ts deleted file mode 100644 index cc50dd007..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_ru.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Зона плагинов - - - Select which icons appear in the Dock - Выбор значков, отображаемых в док-панели - - - - dock - - Desktop and taskbar - Рабочий стол и панель задач - - - Set the display and size of icons on the desktop - Настройте отображение и размер иконок на рабочем столе. - - - - main - - Dock - Док-панель - - - Mode - Режим - - - Dock size - Размер док-панели - - - Small - Маленький - - - Large - Большой - - - Position on the screen - Расположение на экране - - - Top - Сверху - - - Bottom - Снизу - - - Left - Слева - - - Right - Справа - - - Status - Состояние - - - Keep shown - Отображать - - - Keep hidden - Не отображать - - - Smart hide - Умное скрытие - - - Multiple Displays - - - - Set the position of the taskbar on the screen - Настройка положения панели задач на экране - - - Only on main - Только на основном - - - On screen where the cursor is - На экране, где расположен курсор - - - Plugin Area - Зона плагинов - - - Select which icons appear in the Dock - Выбор значков, отображаемых в док-панеле - - - Classic Mode - Классический режим - - - Centered Mode - Режим по центру - - - Fashion Mode - Современный Режим - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_sq.ts b/panels/dock/dcc-dock-plugin/translations/dock_sq.ts deleted file mode 100644 index 56cb12262..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_sq.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Zonë Shtojcash - - - Select which icons appear in the Dock - Përzgjidhni cilat ikona shfaqen te Paneli - - - - dock - - Desktop and taskbar - Desktop dhe panel punësh - - - Set the display and size of icons on the desktop - Caktoni shfaqjen dhe madhësinë e ikonave në desktop - - - - main - - Dock - Panel - - - Mode - Mënyrë - - - Dock size - Madhësi paneli - - - Small - E vogël - - - Large - E madhe - - - Position on the screen - Pozicion në ekran - - - Top - Në krye - - - Bottom - Në fund - - - Left - Majtas - - - Right - Djathtas - - - Status - Gjendje - - - Keep shown - Mbaje të shfaqur - - - Keep hidden - Mbaje të fshehur - - - Smart hide - Fshehje e mençur - - - Multiple Displays - Disa Ekrane - - - Set the position of the taskbar on the screen - Caktoni pozicionin në ekran të panelit të punëve - - - Only on main - Vetëm te kryesore - - - On screen where the cursor is - Te ekrani ku gjendet kursori - - - Plugin Area - Zonë Shtojcash - - - Select which icons appear in the Dock - Përzgjidhni cilat ikona shfaqen te Paneli - - - Classic Mode - Mënyra Klasike - - - Centered Mode - Mënyra e Qendërzuar - - - Fashion Mode - Mënyra Modë - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_uk.ts b/panels/dock/dcc-dock-plugin/translations/dock_uk.ts deleted file mode 100644 index ca58e78be..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_uk.ts +++ /dev/null @@ -1,119 +0,0 @@ - - - PluginArea - - Plugin Area - Область додатків - - - Select which icons appear in the Dock - Виберіть, які піктограми буде показано на бічній панелі - - - - dock - - Desktop and taskbar - Стільниця і панель задач - - - Set the display and size of icons on the desktop - Встановити параметри показу і розміру піктограм на стільниці - - - - main - - Dock - Панель - - - Mode - Режим - - - Dock size - Розмір панелі - - - Small - Малий - - - Large - Великий - - - Position on the screen - Розташування на екрані - - - Top - Вгорі - - - Bottom - Внизу - - - Left - Ліворуч - - - Right - Праворуч - - - Status - Стан - - - Keep shown - Показувати постійно - - - Keep hidden - Приховувати постійно - - - Smart hide - Розумне приховування - - - Multiple Displays - Кілька дисплеїв - - - Set the position of the taskbar on the screen - Встановити розташування панелі задач на екрані - - - Only on main - Лише на головному - - - On screen where the cursor is - На екрані, де перебуває вказівник - - - Plugin Area - Область додатків - - - Select which icons appear in the Dock - Виберіть, які піктограми буде показано на бічній панелі - - - Classic Mode - Класичний режим - - - Centered Mode - Центрований режим - - - Fashion Mode - Модний режим - - - \ No newline at end of file diff --git a/panels/dock/dcc-dock-plugin/translations/dock_zh_CN.ts b/panels/dock/dcc-dock-plugin/translations/dock_zh_CN.ts deleted file mode 100644 index 550d6bc90..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_zh_CN.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - 插件区域 - - - Select which icons appear in the Dock - 选择显示在任务栏插件区域的图标 - - - - dock - - Desktop and taskbar - 桌面和任务栏 - - - Set the display and size of icons on the desktop - 设置桌面上图标的显示以及图标大小等 - - - - main - - Dock - 任务栏 - - - Mode - 模式 - - - Classic Mode - 经典模式 - - - Centered Mode - 居中模式 - - - Fashion Mode - 时尚模式 - - - Dock size - 任务栏大小 - - - Small - - - - Large - - - - Position on the screen - 屏幕中的位置 - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - 状态 - - - Keep shown - 一直显示 - - - Keep hidden - 一直隐藏 - - - Smart hide - 智能隐藏 - - - Multiple Displays - 多屏显示 - - - Set the position of the taskbar on the screen - 设置任务栏在屏幕中的位置 - - - Only on main - 仅主屏显示 - - - On screen where the cursor is - 跟随鼠标位置显示 - - - Plugin Area - 插件区域 - - - Select which icons appear in the Dock - 选择显示在任务栏插件区域的图标 - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_zh_HK.ts b/panels/dock/dcc-dock-plugin/translations/dock_zh_HK.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_zh_HK.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - - diff --git a/panels/dock/dcc-dock-plugin/translations/dock_zh_TW.ts b/panels/dock/dcc-dock-plugin/translations/dock_zh_TW.ts deleted file mode 100644 index e5c83e2f8..000000000 --- a/panels/dock/dcc-dock-plugin/translations/dock_zh_TW.ts +++ /dev/null @@ -1,121 +0,0 @@ - - - - - PluginArea - - Plugin Area - - - - Select which icons appear in the Dock - - - - - dock - - Desktop and taskbar - - - - Set the display and size of icons on the desktop - - - - - main - - Dock - - - - Mode - - - - Dock size - - - - Small - - - - Large - - - - Position on the screen - - - - Top - - - - Bottom - - - - Left - - - - Right - - - - Status - - - - Keep shown - - - - Keep hidden - - - - Smart hide - - - - Multiple Displays - - - - Set the position of the taskbar on the screen - - - - Only on main - - - - On screen where the cursor is - - - - Plugin Area - - - - Select which icons appear in the Dock - - - - Classic Mode - - - - Centered Mode - - - - Fashion Mode - - - -