feat: 删除任务栏中控制中心设置插件
控制中心设置任务栏插件已经移动到dde-control-center中,此处不再需要,删除 Log: 个性化任务栏插件移动到控制中心 Influence: 无 Task: https://pms.uniontech.com/task-view-130353.html Change-Id: I4d94f46fb1c6d6ad61f46334742f736dd7291245
@ -1,10 +0,0 @@
|
||||
[main]
|
||||
host = https://www.transifex.com
|
||||
minimum_perc = 80
|
||||
mode = developer
|
||||
|
||||
[deepin-desktop-environment.dcc-dock-plugin]
|
||||
file_filter = translations/dcc-dock-plugin_<lang>.ts
|
||||
source_file = translations/dcc-dock-plugin.ts
|
||||
source_lang = en
|
||||
type = QT
|
@ -1,53 +0,0 @@
|
||||
cmake_minimum_required(VERSION 3.7)
|
||||
|
||||
set(PLUGIN_NAME "dcc-dock-plugin")
|
||||
|
||||
project(${PLUGIN_NAME})
|
||||
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
file(GLOB_RECURSE SRCS
|
||||
"*.h"
|
||||
"*.cpp")
|
||||
|
||||
find_package(Qt5 COMPONENTS Core Widgets DBus Svg LinguistTools REQUIRED)
|
||||
find_package(DdeControlCenter REQUIRED)
|
||||
find_package(PkgConfig REQUIRED)
|
||||
find_package(DtkWidget REQUIRED)
|
||||
|
||||
pkg_check_modules(DFrameworkDBus REQUIRED dframeworkdbus)
|
||||
pkg_check_modules(QGSettings REQUIRED gsettings-qt)
|
||||
|
||||
add_library(${PLUGIN_NAME} SHARED ${SRCS} resources.qrc)
|
||||
set_target_properties(${PLUGIN_NAME} PROPERTIES LIBRARY_OUTPUT_DIRECTORY ./)
|
||||
target_include_directories(${PLUGIN_NAME} PUBLIC
|
||||
../src
|
||||
../../frame/util
|
||||
${Qt5Widgets_INCLUDE_DIRS}
|
||||
${Qt5Svg_INCLUDE_DIRS}
|
||||
${DtkWidget_INCLUDE_DIRS}
|
||||
${DdeControlCenter_INCLUDE_DIR}
|
||||
${DFrameworkDBus_INCLUDE_DIRS}
|
||||
${QGSettings_INCLUDE_DIRS}
|
||||
${Qt5DBus_INCLUDE_DIRS}
|
||||
)
|
||||
target_link_libraries(${PLUGIN_NAME} PRIVATE
|
||||
${Qt5Widgets_LIBRARIES}
|
||||
${Qt5Svg_LIBRARIES}
|
||||
${DtkWidget_LIBRARIES}
|
||||
${DdeControlCenter_LIBRARIES}
|
||||
${DFrameworkDBus_LIBRARIES}
|
||||
${QGSettings_LIBRARIES}
|
||||
${Qt5DBus_LIBRARIES}
|
||||
)
|
||||
|
||||
file(GLOB TS_FILES "translations/*.ts")
|
||||
qt5_add_translation(QM_FILES ${TS_FILES})
|
||||
add_custom_target(translations ALL DEPENDS ${QM_FILES})
|
||||
install(FILES ${QM_FILES} DESTINATION share/${PLUGIN_NAME}/translations)
|
||||
|
||||
# dconfig
|
||||
file(GLOB DCONFIG_FILES "dde.dock.plugin.dconfig.json")
|
||||
dconfig_meta_files(APPID dde-control-center FILES ${DCONFIG_FILES})
|
||||
|
||||
install(TARGETS ${PLUGIN_NAME} LIBRARY DESTINATION lib/dde-control-center/modules)
|
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="32px" height="32px" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>list2_icon/dock/normal</title>
|
||||
<g id="list2_icon/dock/normal" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M24,8 C25.6568542,8 27,9.34314575 27,11 L27,21 C27,22.6568542 25.6568542,24 24,24 L8,24 C6.34314575,24 5,22.6568542 5,21 L5,11 C5,9.34314575 6.34314575,8 8,8 L24,8 Z M9.5,19 L7.5,19 C7.22385763,19 7,19.2238576 7,19.5 L7,19.5 L7,21.5 C7,21.7761424 7.22385763,22 7.5,22 L7.5,22 L9.5,22 C9.77614237,22 10,21.7761424 10,21.5 L10,21.5 L10,19.5 C10,19.2238576 9.77614237,19 9.5,19 L9.5,19 Z M14.5,19 L12.5,19 C12.2238576,19 12,19.2238576 12,19.5 L12,19.5 L12,21.5 C12,21.7761424 12.2238576,22 12.5,22 L12.5,22 L14.5,22 C14.7761424,22 15,21.7761424 15,21.5 L15,21.5 L15,19.5 C15,19.2238576 14.7761424,19 14.5,19 L14.5,19 Z M19.5,19 L17.5,19 C17.2238576,19 17,19.2238576 17,19.5 L17,19.5 L17,21.5 C17,21.7761424 17.2238576,22 17.5,22 L17.5,22 L19.5,22 C19.7761424,22 20,21.7761424 20,21.5 L20,21.5 L20,19.5 C20,19.2238576 19.7761424,19 19.5,19 L19.5,19 Z M24.5,19 L22.5,19 C22.2238576,19 22,19.2238576 22,19.5 L22,19.5 L22,21.5 C22,21.7761424 22.2238576,22 22.5,22 L22.5,22 L24.5,22 C24.7761424,22 25,21.7761424 25,21.5 L25,21.5 L25,19.5 C25,19.2238576 24.7761424,19 24.5,19 L24.5,19 Z" id="形状结合" fill="#29B2DC"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,102 +0,0 @@
|
||||
/*
|
||||
* This file was generated by qdbusxml2cpp-fix version 0.8
|
||||
* Command line was: qdbusxml2cpp-fix -c Dock -p com_deepin_dde_dock com.deepin.dde.Dock.xml
|
||||
*
|
||||
* qdbusxml2cpp-fix is Copyright (C) 2016 Deepin Technology Co., Ltd.
|
||||
*
|
||||
* This is an auto-generated file.
|
||||
* This file may have been hand-edited. Look for HAND-EDIT comments
|
||||
* before re-generating it.
|
||||
*/
|
||||
|
||||
#include "com_deepin_dde_dock.h"
|
||||
|
||||
/*
|
||||
* Implementation of interface class _Dock
|
||||
*/
|
||||
|
||||
class _DockPrivate
|
||||
{
|
||||
public:
|
||||
_DockPrivate() = default;
|
||||
|
||||
// begin member variables
|
||||
bool showInPrimary;
|
||||
|
||||
public:
|
||||
QMap<QString, QDBusPendingCallWatcher *> m_processingCalls;
|
||||
QMap<QString, QList<QVariant>> m_waittingCalls;
|
||||
};
|
||||
|
||||
_Dock::_Dock(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent)
|
||||
: DBusExtendedAbstractInterface(service, path, staticInterfaceName(), connection, parent)
|
||||
, d_ptr(new _DockPrivate)
|
||||
{
|
||||
connect(this, &_Dock::propertyChanged, this, &_Dock::onPropertyChanged);
|
||||
|
||||
}
|
||||
|
||||
_Dock::~_Dock()
|
||||
{
|
||||
qDeleteAll(d_ptr->m_processingCalls.values());
|
||||
delete d_ptr;
|
||||
}
|
||||
|
||||
void _Dock::onPropertyChanged(const QString &propName, const QVariant &value)
|
||||
{
|
||||
if (propName == QStringLiteral("showInPrimary"))
|
||||
{
|
||||
const bool &showInPrimary = qvariant_cast<bool>(value);
|
||||
if (d_ptr->showInPrimary != showInPrimary)
|
||||
{
|
||||
d_ptr->showInPrimary = showInPrimary;
|
||||
Q_EMIT ShowInPrimaryChanged(d_ptr->showInPrimary);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
qWarning() << "property not handle: " << propName;
|
||||
return;
|
||||
}
|
||||
|
||||
bool _Dock::showInPrimary()
|
||||
{
|
||||
return qvariant_cast<bool>(internalPropGet("showInPrimary", &d_ptr->showInPrimary));
|
||||
}
|
||||
|
||||
void _Dock::setShowInPrimary(bool value)
|
||||
{
|
||||
|
||||
internalPropSet("showInPrimary", QVariant::fromValue(value), &d_ptr->showInPrimary);
|
||||
}
|
||||
|
||||
void _Dock::CallQueued(const QString &callName, const QList<QVariant> &args)
|
||||
{
|
||||
if (d_ptr->m_waittingCalls.contains(callName))
|
||||
{
|
||||
d_ptr->m_waittingCalls[callName] = args;
|
||||
return;
|
||||
}
|
||||
if (d_ptr->m_processingCalls.contains(callName))
|
||||
{
|
||||
d_ptr->m_waittingCalls.insert(callName, args);
|
||||
} else {
|
||||
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(asyncCallWithArgumentList(callName, args));
|
||||
connect(watcher, &QDBusPendingCallWatcher::finished, this, &_Dock::onPendingCallFinished);
|
||||
d_ptr->m_processingCalls.insert(callName, watcher);
|
||||
}
|
||||
}
|
||||
|
||||
void _Dock::onPendingCallFinished(QDBusPendingCallWatcher *w)
|
||||
{
|
||||
w->deleteLater();
|
||||
const auto callName = d_ptr->m_processingCalls.key(w);
|
||||
Q_ASSERT(!callName.isEmpty());
|
||||
if (callName.isEmpty())
|
||||
return;
|
||||
d_ptr->m_processingCalls.remove(callName);
|
||||
if (!d_ptr->m_waittingCalls.contains(callName))
|
||||
return;
|
||||
const auto args = d_ptr->m_waittingCalls.take(callName);
|
||||
CallQueued(callName, args);
|
||||
}
|
@ -1,158 +0,0 @@
|
||||
/*
|
||||
* This file was generated by qdbusxml2cpp-fix version 0.8
|
||||
* Command line was: qdbusxml2cpp-fix -c Dock -p com_deepin_dde_dock com.deepin.dde.Dock.xml
|
||||
*
|
||||
* qdbusxml2cpp-fix is Copyright (C) 2016 Deepin Technology Co., Ltd.
|
||||
*
|
||||
* This is an auto-generated file.
|
||||
* Do not edit! All changes made to it will be lost.
|
||||
*/
|
||||
|
||||
#ifndef COM_DEEPIN_DDE_DOCK_H
|
||||
#define COM_DEEPIN_DDE_DOCK_H
|
||||
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QByteArray>
|
||||
#include <QtCore/QList>
|
||||
#include <QtCore/QMap>
|
||||
#include <QtCore/QString>
|
||||
#include <QtCore/QStringList>
|
||||
#include <QtCore/QVariant>
|
||||
|
||||
#include <DBusExtendedAbstractInterface>
|
||||
#include <QtDBus/QtDBus>
|
||||
|
||||
|
||||
/*
|
||||
* Proxy class for interface com.deepin.dde.Dock
|
||||
*/
|
||||
class _DockPrivate;
|
||||
class _Dock : public DBusExtendedAbstractInterface
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
static inline const char *staticInterfaceName()
|
||||
{ return "com.deepin.dde.Dock"; }
|
||||
|
||||
public:
|
||||
explicit _Dock(const QString &service, const QString &path, const QDBusConnection &connection, QObject *parent = 0);
|
||||
|
||||
~_Dock();
|
||||
|
||||
Q_PROPERTY(bool showInPrimary READ showInPrimary WRITE setShowInPrimary NOTIFY ShowInPrimaryChanged)
|
||||
bool showInPrimary();
|
||||
void setShowInPrimary(bool value);
|
||||
|
||||
public Q_SLOTS: // METHODS
|
||||
inline QDBusPendingReply<QStringList> GetLoadedPlugins()
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
return asyncCallWithArgumentList(QStringLiteral("GetLoadedPlugins"), argumentList);
|
||||
}
|
||||
|
||||
|
||||
|
||||
inline QDBusPendingReply<> ReloadPlugins()
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
return asyncCallWithArgumentList(QStringLiteral("ReloadPlugins"), argumentList);
|
||||
}
|
||||
|
||||
inline void ReloadPluginsQueued()
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
|
||||
CallQueued(QStringLiteral("ReloadPlugins"), argumentList);
|
||||
}
|
||||
|
||||
|
||||
inline QDBusPendingReply<> callShow()
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
return asyncCallWithArgumentList(QStringLiteral("callShow"), argumentList);
|
||||
}
|
||||
|
||||
inline void callShowQueued()
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
|
||||
CallQueued(QStringLiteral("callShow"), argumentList);
|
||||
}
|
||||
|
||||
|
||||
inline QDBusPendingReply<QString> getPluginKey(const QString &pluginName)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(pluginName);
|
||||
return asyncCallWithArgumentList(QStringLiteral("getPluginKey"), argumentList);
|
||||
}
|
||||
|
||||
|
||||
|
||||
inline QDBusPendingReply<bool> getPluginVisible(const QString &pluginName)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(pluginName);
|
||||
return asyncCallWithArgumentList(QStringLiteral("getPluginVisible"), argumentList);
|
||||
}
|
||||
|
||||
|
||||
|
||||
inline QDBusPendingReply<> resizeDock(int offset, bool dragging)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(offset) << QVariant::fromValue(dragging);
|
||||
return asyncCallWithArgumentList(QStringLiteral("resizeDock"), argumentList);
|
||||
}
|
||||
|
||||
inline void resizeDockQueued(int offset, bool dragging)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(offset) << QVariant::fromValue(dragging);
|
||||
|
||||
CallQueued(QStringLiteral("resizeDock"), argumentList);
|
||||
}
|
||||
|
||||
|
||||
inline QDBusPendingReply<> setPluginVisible(const QString &pluginName, bool visible)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(pluginName) << QVariant::fromValue(visible);
|
||||
return asyncCallWithArgumentList(QStringLiteral("setPluginVisible"), argumentList);
|
||||
}
|
||||
|
||||
inline void setPluginVisibleQueued(const QString &pluginName, bool visible)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
argumentList << QVariant::fromValue(pluginName) << QVariant::fromValue(visible);
|
||||
|
||||
CallQueued(QStringLiteral("setPluginVisible"), argumentList);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Q_SIGNALS: // SIGNALS
|
||||
void pluginVisibleChanged(const QString &in0, bool in1);
|
||||
// begin property changed signals
|
||||
void ShowInPrimaryChanged(bool value) const;
|
||||
|
||||
public Q_SLOTS:
|
||||
void CallQueued(const QString &callName, const QList<QVariant> &args);
|
||||
|
||||
private Q_SLOTS:
|
||||
void onPendingCallFinished(QDBusPendingCallWatcher *w);
|
||||
void onPropertyChanged(const QString &propName, const QVariant &value);
|
||||
|
||||
private:
|
||||
_DockPrivate *d_ptr;
|
||||
};
|
||||
|
||||
namespace com {
|
||||
namespace deepin {
|
||||
namespace dde {
|
||||
typedef ::_Dock Dock;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
@ -1,91 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 ~ 2021 Uniontech Technology Co., Ltd.
|
||||
*
|
||||
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* Maintainer: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "config_watcher.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include <QGSettings>
|
||||
#include <QListView>
|
||||
#include <QStandardItem>
|
||||
#include <QStandardItemModel>
|
||||
#include <QVariant>
|
||||
#include <QWidget>
|
||||
|
||||
#include <DConfig>
|
||||
|
||||
using namespace dcc_dock_plugin;
|
||||
|
||||
DCORE_USE_NAMESPACE
|
||||
/**
|
||||
* @brief GSettingWatcher::GSettingWatcher 用于监听处于 \a baseSchemasId + "." + \a module 配置下的配置项内容变化,并将变化应用到绑定的控件上
|
||||
*/
|
||||
ConfigWatcher::ConfigWatcher(const QString &fileName, QObject *parent)
|
||||
: QObject(parent)
|
||||
, m_config(new DConfig(fileName, QString(), this))
|
||||
{
|
||||
if (m_config->isValid()) {
|
||||
connect(m_config, &DConfig::valueChanged, this, &ConfigWatcher::onStatusModeChanged);
|
||||
} else {
|
||||
qWarning() << "config parse failed:" << fileName;
|
||||
}
|
||||
}
|
||||
|
||||
ConfigWatcher::~ConfigWatcher()
|
||||
{
|
||||
m_map.clear();
|
||||
}
|
||||
|
||||
void ConfigWatcher::bind(const QString &key, QWidget *binder)
|
||||
{
|
||||
m_map.insert(key, binder);
|
||||
|
||||
setStatus(key, binder);
|
||||
// 自动解绑
|
||||
connect(binder, &QObject::destroyed, this, [=] {
|
||||
m_map.remove(m_map.key(binder), binder);
|
||||
});
|
||||
}
|
||||
|
||||
void ConfigWatcher::setStatus(const QString &key, QWidget *binder)
|
||||
{
|
||||
if (!binder || !m_config->isValid() || !m_config->keyList().contains(key))
|
||||
return;
|
||||
|
||||
const QString setting = m_config->value(key).toString();
|
||||
|
||||
if ("Enabled" == setting) {
|
||||
binder->setEnabled(true);
|
||||
} else if ("Disabled" == setting) {
|
||||
binder->setEnabled(false);
|
||||
}
|
||||
|
||||
binder->setVisible("Hidden" != setting);
|
||||
}
|
||||
|
||||
void ConfigWatcher::onStatusModeChanged(const QString &key)
|
||||
{
|
||||
if (!m_map.isEmpty() && m_map.contains(key)) {
|
||||
for (auto it = m_map.begin(); it != m_map.end(); ++it) {
|
||||
if (key == it.key()) {
|
||||
setStatus(key, it.value());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 ~ 2021 Uniontech Technology Co., Ltd.
|
||||
*
|
||||
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* Maintainer: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef GSETTINGWATCHER_H
|
||||
#define GSETTINGWATCHER_H
|
||||
|
||||
#include <dtkcore_global.h>
|
||||
|
||||
#include <QObject>
|
||||
#include <QHash>
|
||||
#include <QMap>
|
||||
|
||||
class QGSettings;
|
||||
class QListView;
|
||||
class QStandardItem;
|
||||
|
||||
DCORE_BEGIN_NAMESPACE
|
||||
class DConfig;
|
||||
DCORE_END_NAMESPACE
|
||||
|
||||
namespace dcc_dock_plugin {
|
||||
class ConfigWatcher : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
ConfigWatcher(const QString &fileName, QObject *parent = nullptr);
|
||||
~ConfigWatcher();
|
||||
|
||||
void bind(const QString &key, QWidget *binder);
|
||||
|
||||
private:
|
||||
void setStatus(const QString &key, QWidget *binder);
|
||||
void onStatusModeChanged(const QString &key);
|
||||
|
||||
private:
|
||||
QMultiHash<QString, QWidget *> m_map;
|
||||
DTK_CORE_NAMESPACE::DConfig *m_config;
|
||||
};
|
||||
}
|
||||
|
||||
#endif // GSETTINGWATCHER_H
|
@ -1,72 +0,0 @@
|
||||
{
|
||||
"magic":"dsg.config.meta",
|
||||
"version":"1.0",
|
||||
"contents":{
|
||||
"Control-Center_Dock_Model":{
|
||||
"value":"Enabled",
|
||||
"serial":0,
|
||||
"flags":"",
|
||||
"name":"Model",
|
||||
"name[zh_CN]":"模式",
|
||||
"description[zh_CN]":"此配置为模式选择功能的是否启用,默认为启用;当配置为启用时,该设置项可以设置;当配置为禁用时,该设置项置灰;当配置为隐藏时,该设置项隐藏;",
|
||||
"description":"",
|
||||
"permissions":"readwrite",
|
||||
"visibility":"public"
|
||||
},
|
||||
"Control-Center_Dock_Location":{
|
||||
"value":"Enabled",
|
||||
"serial":0,
|
||||
"flags":"",
|
||||
"name":"Location",
|
||||
"name[zh_CN]":"位置",
|
||||
"description[zh_CN]":"此配置为位置选择功能的是否启用,默认为启用;当配置为启用时,该设置项可以设置;当配置为禁用时,该设置项置灰;当配置为隐藏时,该设置项隐藏;",
|
||||
"description":"",
|
||||
"permissions":"readwrite",
|
||||
"visibility":"public"
|
||||
},
|
||||
"Control-Center_Dock_State":{
|
||||
"value":"Enabled",
|
||||
"serial":0,
|
||||
"flags":"",
|
||||
"name":"State",
|
||||
"name[zh_CN]":"状态",
|
||||
"description[zh_CN]":"此配置为状态选择功能的是否启用,默认为启用;当配置为启用时,该设置项可以设置;当配置为禁用时,该设置项置灰;当配置为隐藏时,该设置项隐藏;",
|
||||
"description":"",
|
||||
"permissions":"readwrite",
|
||||
"visibility":"public"
|
||||
},
|
||||
"Control-Center_Dock_Size":{
|
||||
"value":"Enabled",
|
||||
"serial":0,
|
||||
"flags":"",
|
||||
"name":"Size",
|
||||
"name[zh_CN]":"调整大小",
|
||||
"description[zh_CN]":"此配置为调整大小功能的是否启用,默认为启用;当配置为启用时,该设置项可以设置;当配置为禁用时,该设置项置灰;当配置为隐藏时,该设置项隐藏;",
|
||||
"description":"",
|
||||
"permissions":"readwrite",
|
||||
"visibility":"public"
|
||||
},
|
||||
"Control-Center_Dock_Multi-screen":{
|
||||
"value":"Enabled",
|
||||
"serial":0,
|
||||
"flags":"",
|
||||
"name":"Multi-screen",
|
||||
"name[zh_CN]":"多屏显示设置",
|
||||
"description[zh_CN]":"此配置为多屏显示设置项功能的是否启用,默认为启用;当配置为启用时,该设置项可以设置;当配置为禁用时,该设置项置灰;当配置为隐藏时,该设置项隐藏;",
|
||||
"description":"",
|
||||
"permissions":"readwrite",
|
||||
"visibility":"public"
|
||||
},
|
||||
"Control-Center_Dock_Plugins":{
|
||||
"value":"Enabled",
|
||||
"serial":0,
|
||||
"flags":"",
|
||||
"name":"Plugins",
|
||||
"name[zh_CN]":"插件",
|
||||
"description[zh_CN]":"此配置为插件显示功能的是否启用,默认为启用;当配置为启用时,该设置项可以设置;当配置为禁用时,该设置项置灰;当配置为隐藏时,该设置项隐藏;",
|
||||
"description":"",
|
||||
"permissions":"readwrite",
|
||||
"visibility":"public"
|
||||
}
|
||||
}
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
"api" : "1.0.0"
|
||||
}
|
@ -1,439 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 ~ 2021 Uniontech Technology Co., Ltd.
|
||||
*
|
||||
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* Maintainer: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "module_widget.h"
|
||||
#include "utils.h"
|
||||
|
||||
#include <widgets/comboxwidget.h>
|
||||
#include <widgets/titledslideritem.h>
|
||||
#include <widgets/dccslider.h>
|
||||
#include <widgets/titlelabel.h>
|
||||
|
||||
#include <DSlider>
|
||||
#include <DListView>
|
||||
#include <DTipLabel>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QScreen>
|
||||
#include <QLabel>
|
||||
#include <QVBoxLayout>
|
||||
#include <QDBusConnection>
|
||||
#include <QDBusInterface>
|
||||
#include <QDBusError>
|
||||
#include <QMap>
|
||||
#include <QScrollArea>
|
||||
#include <QScroller>
|
||||
#include <QComboBox>
|
||||
#include <QTimer>
|
||||
|
||||
DWIDGET_USE_NAMESPACE
|
||||
|
||||
enum DisplayMode {
|
||||
Fashion = 0,
|
||||
Efficient = 1,
|
||||
};
|
||||
|
||||
enum HideMode {
|
||||
KeepShowing = 0,
|
||||
KeepHidden = 1,
|
||||
SmartHide = 3,
|
||||
};
|
||||
|
||||
enum Position {
|
||||
Top = 0,
|
||||
Right = 1,
|
||||
Bottom = 2,
|
||||
Left = 3,
|
||||
};
|
||||
|
||||
#ifdef USE_AM
|
||||
static const QString serviceName = QString("org.deepin.dde.daemon.Dock1");
|
||||
static const QString servicePath = QString("org.deepin.dde.daemon.Dock1");
|
||||
#else
|
||||
static const QString serviceName = QString("com.deepin.dde.daemon.Dock");
|
||||
static const QString servicePath = QString("/com/deepin/dde/daemon/Dock");
|
||||
#endif
|
||||
|
||||
ModuleWidget::ModuleWidget(QWidget *parent)
|
||||
: QScrollArea(parent)
|
||||
, m_modeComboxWidget(new ComboxWidget(this))
|
||||
, m_positionComboxWidget(new ComboxWidget(this))
|
||||
, m_stateComboxWidget(new ComboxWidget(this))
|
||||
, m_screenSettingComboxWidget(new ComboxWidget(this))
|
||||
, m_pluginTips(new DTipLabel(tr("Select which icons appear in the Dock"), this))
|
||||
, m_pluginView(new DListView(this))
|
||||
, m_pluginModel(new QStandardItemModel(this))
|
||||
, m_daemonDockInter(new DBusDock(serviceName, servicePath, QDBusConnection::sessionBus(), this))
|
||||
, m_dockInter(new DBusInter("com.deepin.dde.Dock", "/com/deepin/dde/Dock", QDBusConnection::sessionBus(), this))
|
||||
, m_dconfigWatcher(new ConfigWatcher("dde.dock.plugin.dconfig", this))
|
||||
, m_sliderPressed(false)
|
||||
{
|
||||
//~ contents_path /personalization/Dock
|
||||
//~ child_page Dock
|
||||
m_pluginAreaTitle = new TitleLabel(tr("Plugin Area"), this);
|
||||
|
||||
//~ contents_path /personalization/Dock
|
||||
//~ child_page Dock
|
||||
m_sizeSlider = new TitledSliderItem(tr("Size"), this);
|
||||
|
||||
//~ contents_path /personalization/Dock
|
||||
//~ child_page Dock
|
||||
m_screenSettingTitle = new TitleLabel(tr("Multiple Displays"), this);
|
||||
|
||||
// 异步,否则频繁调用可能会导致卡顿
|
||||
m_daemonDockInter->setSync(false);
|
||||
initUI();
|
||||
|
||||
connect(m_dockInter, &DBusInter::pluginVisibleChanged, this, &ModuleWidget::updateItemCheckStatus);
|
||||
}
|
||||
|
||||
ModuleWidget::~ModuleWidget()
|
||||
{
|
||||
}
|
||||
|
||||
void ModuleWidget::initUI()
|
||||
{
|
||||
setBackgroundRole(QPalette::Base);
|
||||
setFrameShape(QFrame::NoFrame);
|
||||
setWidgetResizable(true);
|
||||
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||
|
||||
QVBoxLayout *layout = new QVBoxLayout;
|
||||
layout->setContentsMargins(10, 10, 10, 10);
|
||||
layout->setSpacing(10);
|
||||
|
||||
static QMap<QString, int> g_modeMap = {{tr("Fashion mode"), Fashion}
|
||||
, {tr("Efficient mode"), Efficient}};
|
||||
// 模式
|
||||
if (Utils::SettingValue("com.deepin.dde.dock.module.menu", QByteArray(), "modeVisible", true).toBool()) {
|
||||
//~ contents_path /personalization/Dock
|
||||
//~ child_page Dock
|
||||
m_modeComboxWidget->setTitle(tr("Mode"));
|
||||
m_modeComboxWidget->addBackground();
|
||||
m_modeComboxWidget->setComboxOption(QStringList() << tr("Fashion mode") << tr("Efficient mode"));
|
||||
m_modeComboxWidget->setCurrentText(g_modeMap.key(m_daemonDockInter->displayMode()));
|
||||
connect(m_modeComboxWidget, &ComboxWidget::onSelectChanged, this, [ = ] (const QString &text) {
|
||||
m_daemonDockInter->setDisplayMode(g_modeMap.value(text));
|
||||
});
|
||||
connect(m_daemonDockInter, &DBusDock::DisplayModeChanged, this, [ = ] (int value) {
|
||||
DisplayMode mode = static_cast<DisplayMode>(value);
|
||||
if (g_modeMap.key(mode) == m_modeComboxWidget->comboBox()->currentText())
|
||||
return;
|
||||
|
||||
m_modeComboxWidget->setCurrentText(g_modeMap.key(mode));
|
||||
});
|
||||
layout->addWidget(m_modeComboxWidget);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Model", m_modeComboxWidget);
|
||||
} else {
|
||||
m_modeComboxWidget->setVisible(false);
|
||||
}
|
||||
|
||||
if (Utils::SettingValue("com.deepin.dde.dock.module.menu", QByteArray(), "locationVisible", true).toBool()) {
|
||||
// 位置
|
||||
static QMap<QString, int> g_positionMap = {{tr("Top"), Top}
|
||||
, {tr("Bottom"), Bottom}
|
||||
, {tr("Left"), Left}
|
||||
, {tr("Right"), Right}};
|
||||
|
||||
//~ contents_path /personalization/Dock
|
||||
//~ child_page Dock
|
||||
m_positionComboxWidget->setTitle(tr("Location"));
|
||||
m_positionComboxWidget->addBackground();
|
||||
m_positionComboxWidget->setComboxOption(QStringList() << tr("Top") << tr("Bottom") << tr("Left") << tr("Right"));
|
||||
m_positionComboxWidget->setCurrentText(g_positionMap.key(m_daemonDockInter->position()));
|
||||
connect(m_positionComboxWidget, &ComboxWidget::onSelectChanged, this, [ = ] (const QString &text) {
|
||||
m_daemonDockInter->setPosition(g_positionMap.value(text));
|
||||
});
|
||||
connect(m_daemonDockInter, &DBusDock::PositionChanged, this, [ = ] (int position) {
|
||||
Position pos = static_cast<Position>(position);
|
||||
if (g_positionMap.key(pos) == m_positionComboxWidget->comboBox()->currentText())
|
||||
return;
|
||||
|
||||
m_positionComboxWidget->setCurrentText(g_positionMap.key(pos));
|
||||
});
|
||||
layout->addWidget(m_positionComboxWidget);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Location", m_positionComboxWidget);
|
||||
} else {
|
||||
m_positionComboxWidget->setVisible(false);
|
||||
}
|
||||
|
||||
// 状态
|
||||
if (Utils::SettingValue("com.deepin.dde.dock.module.menu", QByteArray(), "statusVisible", true).toBool()) {
|
||||
static QMap<QString, int> g_stateMap = {{tr("Keep shown"), KeepShowing}
|
||||
, {tr("Keep hidden"), KeepHidden}
|
||||
, {tr("Smart hide"), SmartHide}};
|
||||
|
||||
//~ contents_path /personalization/Dock
|
||||
//~ child_page Dock
|
||||
m_stateComboxWidget->setTitle(tr("Status"));
|
||||
m_stateComboxWidget->addBackground();
|
||||
m_stateComboxWidget->setComboxOption(QStringList() << tr("Keep shown") << tr("Keep hidden") << tr("Smart hide"));
|
||||
m_stateComboxWidget->setCurrentText(g_stateMap.key(m_daemonDockInter->hideMode()));
|
||||
connect(m_stateComboxWidget, &ComboxWidget::onSelectChanged, this, [ = ] (const QString &text) {
|
||||
m_daemonDockInter->setHideMode(g_stateMap.value(text));
|
||||
});
|
||||
connect(m_daemonDockInter, &DBusDock::HideModeChanged, this, [ = ] (int value) {
|
||||
HideMode mode = static_cast<HideMode>(value);
|
||||
if (g_stateMap.key(mode) == m_stateComboxWidget->comboBox()->currentText())
|
||||
return;
|
||||
|
||||
m_stateComboxWidget->setCurrentText(g_stateMap.key(mode));
|
||||
});
|
||||
layout->addWidget(m_stateComboxWidget);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_State", m_stateComboxWidget);
|
||||
} else {
|
||||
m_stateComboxWidget->setVisible(false);
|
||||
}
|
||||
|
||||
// 高度调整控件
|
||||
m_sizeSlider->addBackground();
|
||||
m_sizeSlider->slider()->setRange(40, 100);
|
||||
QStringList ranges;
|
||||
ranges << tr("Small") << "" << tr("Large");
|
||||
m_sizeSlider->setAnnotations(ranges);
|
||||
connect(m_daemonDockInter, &DBusDock::DisplayModeChanged, this, &ModuleWidget::updateSliderValue);
|
||||
connect(m_daemonDockInter, &DBusDock::WindowSizeFashionChanged, this, &ModuleWidget::updateSliderValue);
|
||||
connect(m_daemonDockInter, &DBusDock::WindowSizeEfficientChanged, this, &ModuleWidget::updateSliderValue);
|
||||
connect(m_sizeSlider->slider(), &DSlider::sliderMoved, m_sizeSlider->slider(), &DSlider::valueChanged);
|
||||
connect(m_sizeSlider->slider(), &DSlider::valueChanged, this, [ = ] (int value) {
|
||||
m_dockInter->resizeDock(value, true);
|
||||
});
|
||||
connect(m_sizeSlider->slider(), &DSlider::sliderPressed, m_dockInter, [ = ] {
|
||||
m_daemonDockInter->blockSignals(true);
|
||||
m_sliderPressed = true;
|
||||
});
|
||||
connect(m_sizeSlider->slider(), &DSlider::sliderReleased, m_dockInter, [ = ] {
|
||||
m_daemonDockInter->blockSignals(false);
|
||||
m_sliderPressed = false;
|
||||
|
||||
// 松开手后通知dock拖拽状态接触
|
||||
QTimer::singleShot(0, this, [ = ] {
|
||||
int offset = m_sizeSlider->slider()->value();
|
||||
m_dockInter->resizeDock(offset, false);
|
||||
});
|
||||
});
|
||||
|
||||
updateSliderValue();
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Size", m_sizeSlider);
|
||||
|
||||
layout->addWidget(m_sizeSlider);
|
||||
|
||||
// 多屏显示设置
|
||||
if (QDBusConnection::sessionBus().interface()->isServiceRegistered("com.deepin.dde.Dock")
|
||||
&& QApplication::screens().size() > 1
|
||||
&& !isCopyMode()
|
||||
&& Utils::SettingValue("com.deepin.dde.dock.module.menu", QByteArray(), "multiscreenVisible", true).toBool()) {
|
||||
static QMap<QString, bool> g_screenSettingMap = {{tr("On screen where the cursor is"), false}
|
||||
, {tr("Only on main screen"), true}};
|
||||
|
||||
layout->addSpacing(10);
|
||||
layout->addWidget(m_screenSettingTitle);
|
||||
m_screenSettingComboxWidget->setTitle(tr("Show Dock"));
|
||||
m_screenSettingComboxWidget->addBackground();
|
||||
m_screenSettingComboxWidget->setComboxOption(QStringList() << tr("On screen where the cursor is") << tr("Only on main screen"));
|
||||
m_screenSettingComboxWidget->setCurrentText(g_screenSettingMap.key(m_dockInter->showInPrimary()));
|
||||
connect(m_screenSettingComboxWidget, &ComboxWidget::onSelectChanged, this, [ = ] (const QString &text) {
|
||||
m_dockInter->setShowInPrimary(g_screenSettingMap.value(text));
|
||||
});
|
||||
connect(qApp, &QApplication::screenAdded, this, [ = ] {
|
||||
m_screenSettingTitle->setVisible(qApp->screens().count() > 1);
|
||||
m_screenSettingComboxWidget->setVisible(qApp->screens().count() > 1);
|
||||
});
|
||||
connect(qApp, &QApplication::screenRemoved, this, [ = ] {
|
||||
m_screenSettingTitle->setVisible(qApp->screens().count() > 1);
|
||||
m_screenSettingComboxWidget->setVisible(qApp->screens().count() > 1);
|
||||
});
|
||||
|
||||
// 这里不会生效,但实际场景中也不存在有其他可配置的地方,可以不用处理
|
||||
connect(m_dockInter, &DBusInter::ShowInPrimaryChanged, this, [ = ] (bool showInPrimary) {
|
||||
if (m_screenSettingComboxWidget->comboBox()->currentText() == g_screenSettingMap.key(showInPrimary))
|
||||
return;
|
||||
|
||||
m_screenSettingComboxWidget->blockSignals(true);
|
||||
m_screenSettingComboxWidget->setCurrentText(g_screenSettingMap.key(showInPrimary));
|
||||
m_screenSettingComboxWidget->blockSignals(false);
|
||||
});
|
||||
layout->addWidget(m_screenSettingComboxWidget);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Multi-screen", m_screenSettingTitle);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Multi-screen", m_screenSettingComboxWidget);
|
||||
} else {
|
||||
m_screenSettingTitle->setVisible(false);
|
||||
m_screenSettingComboxWidget->setVisible(false);
|
||||
}
|
||||
|
||||
// 插件区域
|
||||
QDBusPendingReply<QStringList> reply = m_dockInter->GetLoadedPlugins();
|
||||
QStringList plugins = reply.value();
|
||||
if (reply.error().type() != QDBusError::ErrorType::NoError
|
||||
|| !Utils::SettingValue("com.deepin.dde.dock.module.menu", QByteArray(), "hideVisible", true).toBool()) {
|
||||
m_pluginAreaTitle->setVisible(false);
|
||||
m_pluginTips->setVisible(false);
|
||||
m_pluginView->setVisible(false);
|
||||
qWarning() << "dbus call failed, method: 'GetLoadedPlugins()'";
|
||||
} else {
|
||||
const QMap<QString, QString> &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"}};
|
||||
if (plugins.size() != 0) {
|
||||
layout->addSpacing(10);
|
||||
layout->addWidget(m_pluginAreaTitle);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Plugins", m_pluginAreaTitle);
|
||||
|
||||
DFontSizeManager::instance()->bind(m_pluginTips, DFontSizeManager::T8);
|
||||
m_pluginTips->adjustSize();
|
||||
m_pluginTips->setWordWrap(true);
|
||||
m_pluginTips->setContentsMargins(10, 5, 10, 5);
|
||||
m_pluginTips->setAlignment(Qt::AlignLeft);
|
||||
layout->addWidget(m_pluginTips);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Plugins", m_pluginTips);
|
||||
|
||||
m_pluginView->setAccessibleName("pluginList");
|
||||
m_pluginView->setBackgroundType(DStyledItemDelegate::BackgroundType::ClipCornerBackground);
|
||||
m_pluginView->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
||||
m_pluginView->setSelectionMode(QListView::SelectionMode::NoSelection);
|
||||
m_pluginView->setEditTriggers(DListView::NoEditTriggers);
|
||||
m_pluginView->setFrameShape(DListView::NoFrame);
|
||||
m_pluginView->setViewportMargins(0, 0, 0, 0);
|
||||
m_pluginView->setItemSpacing(1);
|
||||
|
||||
QMargins itemMargins(m_pluginView->itemMargins());
|
||||
itemMargins.setLeft(14);
|
||||
m_pluginView->setItemMargins(itemMargins);
|
||||
|
||||
m_pluginView->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
|
||||
QScroller *scroller = QScroller::scroller(m_pluginView->viewport());
|
||||
QScrollerProperties sp;
|
||||
sp.setScrollMetric(QScrollerProperties::VerticalOvershootPolicy, QScrollerProperties::OvershootAlwaysOff);
|
||||
scroller->setScrollerProperties(sp);
|
||||
|
||||
m_pluginView->setModel(m_pluginModel);
|
||||
|
||||
layout->addWidget(m_pluginView);
|
||||
m_dconfigWatcher->bind("Control-Center_Dock_Plugins", m_pluginView);
|
||||
|
||||
for (auto name : plugins) {
|
||||
DStandardItem *item = new DStandardItem(name);
|
||||
item->setFontSize(DFontSizeManager::T8);
|
||||
QSize size(16, 16);
|
||||
|
||||
// 插件图标
|
||||
auto leftAction = new DViewItemAction(Qt::AlignVCenter, size, size, true);
|
||||
leftAction->setIcon(QIcon::fromTheme(pluginIconMap.value(m_dockInter->getPluginKey(name), "dcc_dock_plug_in")));
|
||||
item->setActionList(Qt::Edge::LeftEdge, {leftAction});
|
||||
|
||||
auto rightAction = new DViewItemAction(Qt::AlignVCenter, size, size, true);
|
||||
bool visible = m_dockInter->getPluginVisible(name);
|
||||
auto checkstatus = visible ? DStyle::SP_IndicatorChecked : DStyle::SP_IndicatorUnchecked ;
|
||||
auto checkIcon = qobject_cast<DStyle *>(style())->standardIcon(checkstatus);
|
||||
rightAction->setIcon(checkIcon);
|
||||
item->setActionList(Qt::Edge::RightEdge, {rightAction});
|
||||
m_pluginModel->appendRow(item);
|
||||
|
||||
connect(rightAction, &DViewItemAction::triggered, this, [ = ] {
|
||||
bool checked = m_dockInter->getPluginVisible(name);
|
||||
m_dockInter->setPluginVisible(name, !checked);
|
||||
updateItemCheckStatus(name, !checked);
|
||||
});
|
||||
}
|
||||
// 固定大小,防止滚动
|
||||
int lineHeight = m_pluginView->visualRect(m_pluginView->indexAt(QPoint(0, 0))).height();
|
||||
m_pluginView->setMinimumHeight(lineHeight * plugins.size() + 10);
|
||||
} else {
|
||||
m_pluginAreaTitle->setVisible(false);
|
||||
m_pluginTips->setVisible(false);
|
||||
m_pluginView->setVisible(false);
|
||||
}
|
||||
}
|
||||
|
||||
// 支持在触摸屏上滚动
|
||||
QScroller::grabGesture(this->window(), QScroller::LeftMouseButtonGesture);
|
||||
QScroller *scroller = QScroller::scroller(this->window());
|
||||
QScrollerProperties sp;
|
||||
sp.setScrollMetric(QScrollerProperties::VerticalOvershootPolicy, QScrollerProperties::OvershootAlwaysOff);
|
||||
scroller->setScrollerProperties(sp);
|
||||
|
||||
// 保持内容正常铺满
|
||||
layout->addStretch();
|
||||
|
||||
// 界面内容过多时可滚动查看
|
||||
QWidget *widget = new QWidget;
|
||||
widget->setLayout(layout);
|
||||
setWidget(widget);
|
||||
}
|
||||
|
||||
/**判断屏幕是否为复制模式的依据,第一个屏幕的X和Y值是否和其他的屏幕的X和Y值相等
|
||||
* 对于复制模式,这两个值肯定是相等的,如果不是复制模式,这两个值肯定不等,目前支持双屏
|
||||
* @brief DisplayManager::isCopyMode
|
||||
* @return
|
||||
*/
|
||||
bool ModuleWidget::isCopyMode()
|
||||
{
|
||||
QList<QScreen *> screens = qApp->screens();
|
||||
if (screens.size() < 2)
|
||||
return false;
|
||||
|
||||
// 在多个屏幕的情况下,如果所有屏幕的位置的X和Y值都相等,则认为是复制模式
|
||||
QRect screenRect = screens[0]->availableGeometry();
|
||||
for (int i = 1; i < screens.size(); i++) {
|
||||
QRect rect = screens[i]->availableGeometry();
|
||||
if (screenRect.x() != rect.x() || screenRect.y() != rect.y())
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void ModuleWidget::updateSliderValue()
|
||||
{
|
||||
auto displayMode = m_daemonDockInter->displayMode();
|
||||
|
||||
m_sizeSlider->slider()->blockSignals(true);
|
||||
if (displayMode == DisplayMode::Fashion) {
|
||||
if (int(m_daemonDockInter->windowSizeFashion()) != m_sizeSlider->slider()->value())
|
||||
m_sizeSlider->slider()->setValue(int(m_daemonDockInter->windowSizeFashion()));
|
||||
} else if (displayMode == DisplayMode::Efficient) {
|
||||
if (int(m_daemonDockInter->windowSizeEfficient()) != m_sizeSlider->slider()->value())
|
||||
m_sizeSlider->slider()->setValue(int(m_daemonDockInter->windowSizeEfficient()));
|
||||
}
|
||||
m_sizeSlider->slider()->blockSignals(false);
|
||||
}
|
||||
|
||||
void ModuleWidget::updateItemCheckStatus(const QString &name, bool visible)
|
||||
{
|
||||
for (int i = 0; i < m_pluginModel->rowCount(); ++i) {
|
||||
auto item = static_cast<DStandardItem *>(m_pluginModel->item(i));
|
||||
if (item->text() != name || item->actionList(Qt::Edge::RightEdge).size() < 1)
|
||||
continue;
|
||||
|
||||
auto action = item->actionList(Qt::Edge::RightEdge).first();
|
||||
auto checkstatus = visible ? DStyle::SP_IndicatorChecked : DStyle::SP_IndicatorUnchecked ;
|
||||
auto icon = qobject_cast<DStyle *>(style())->standardIcon(checkstatus);
|
||||
action->setIcon(icon);
|
||||
m_pluginView->update(item->index());
|
||||
break;
|
||||
}
|
||||
}
|
@ -1,100 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 ~ 2021 Uniontech Technology Co., Ltd.
|
||||
*
|
||||
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* Maintainer: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef MODULE_WIDGET_H
|
||||
#define MODULE_WIDGET_H
|
||||
|
||||
#ifdef USE_AM
|
||||
#include "dockinterface.h"
|
||||
#else
|
||||
#include <com_deepin_dde_daemon_dock.h>
|
||||
#endif
|
||||
|
||||
#include <QScrollArea>
|
||||
|
||||
#include <dtkwidget_global.h>
|
||||
|
||||
#include "com_deepin_dde_dock.h"
|
||||
#include "config_watcher.h"
|
||||
|
||||
namespace dcc {
|
||||
namespace widgets {
|
||||
class ComboxWidget;
|
||||
class TitledSliderItem;
|
||||
}
|
||||
}
|
||||
|
||||
DWIDGET_BEGIN_NAMESPACE
|
||||
class DListView;
|
||||
class DTipLabel;
|
||||
DWIDGET_END_NAMESPACE
|
||||
|
||||
class TitleLabel;
|
||||
class QStandardItemModel;
|
||||
|
||||
using namespace dcc::widgets;
|
||||
using namespace dcc_dock_plugin;
|
||||
|
||||
#ifdef USE_AM
|
||||
using DBusDock = org::deepin::dde::daemon::DdeDock;
|
||||
#else
|
||||
using DBusDock = com::deepin::dde::daemon::Dock;
|
||||
#endif
|
||||
|
||||
using DBusInter = com::deepin::dde::Dock;
|
||||
|
||||
class ModuleWidget : public QScrollArea
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit ModuleWidget(QWidget *parent = nullptr);
|
||||
~ ModuleWidget();
|
||||
|
||||
private:
|
||||
void initUI();
|
||||
bool isCopyMode();
|
||||
|
||||
private Q_SLOTS:
|
||||
void updateSliderValue();
|
||||
void updateItemCheckStatus(const QString &name, bool visible);
|
||||
|
||||
private:
|
||||
ComboxWidget *m_modeComboxWidget;
|
||||
ComboxWidget *m_positionComboxWidget;
|
||||
ComboxWidget *m_stateComboxWidget;
|
||||
|
||||
TitledSliderItem *m_sizeSlider;
|
||||
|
||||
TitleLabel *m_screenSettingTitle;
|
||||
ComboxWidget *m_screenSettingComboxWidget;
|
||||
|
||||
TitleLabel *m_pluginAreaTitle;
|
||||
DTK_WIDGET_NAMESPACE::DTipLabel *m_pluginTips;
|
||||
DTK_WIDGET_NAMESPACE::DListView *m_pluginView;
|
||||
QStandardItemModel *m_pluginModel;
|
||||
|
||||
DBusDock *m_daemonDockInter;
|
||||
DBusInter *m_dockInter;
|
||||
ConfigWatcher *m_dconfigWatcher;
|
||||
|
||||
bool m_sliderPressed;
|
||||
};
|
||||
|
||||
#endif // MODULE_WIDGET_H
|
@ -1,41 +0,0 @@
|
||||
<RCC>
|
||||
<qresource prefix="/icons/deepin/builtin">
|
||||
<file>actions/icon_dock_32px.svg</file>
|
||||
<file>texts/dcc_dock_time_16px.svg</file>
|
||||
<file>texts/dcc_dock_assistant_16px.svg</file>
|
||||
<file>texts/dcc_dock_desktop_16px.svg</file>
|
||||
<file>texts/dcc_dock_keyboard_16px.svg</file>
|
||||
<file>texts/dcc_dock_notify_16px.svg</file>
|
||||
<file>texts/dcc_dock_plug_in_16px.svg</file>
|
||||
<file>texts/dcc_dock_power_16px.svg</file>
|
||||
<file>texts/dcc_dock_task_16px.svg</file>
|
||||
<file>texts/dcc_dock_trash_16px.svg</file>
|
||||
<file>texts/dcc_dock_grandsearch_16px.svg</file>
|
||||
<file>texts/dcc_dock_systemmonitor_16px.svg</file>
|
||||
</qresource>
|
||||
<qresource prefix="/">
|
||||
<file>translations/dcc-dock-plugin.ts</file>
|
||||
<file>translations/dcc-dock-plugin_bo.ts</file>
|
||||
<file>translations/dcc-dock-plugin_az.ts</file>
|
||||
<file>translations/dcc-dock-plugin_cs.ts</file>
|
||||
<file>translations/dcc-dock-plugin_fi.ts</file>
|
||||
<file>translations/dcc-dock-plugin_hu.ts</file>
|
||||
<file>translations/dcc-dock-plugin_nl.ts</file>
|
||||
<file>translations/dcc-dock-plugin_pt.ts</file>
|
||||
<file>translations/dcc-dock-plugin_sq.ts</file>
|
||||
<file>translations/dcc-dock-plugin_ug.ts</file>
|
||||
<file>translations/dcc-dock-plugin_uk.ts</file>
|
||||
<file>translations/dcc-dock-plugin_zh_CN.ts</file>
|
||||
<file>translations/dcc-dock-plugin_zh_HK.ts</file>
|
||||
<file>translations/dcc-dock-plugin_zh_TW.ts</file>
|
||||
<file>translations/dcc-dock-plugin_de.ts</file>
|
||||
<file>translations/dcc-dock-plugin_ca.ts</file>
|
||||
<file>translations/dcc-dock-plugin_es.ts</file>
|
||||
<file>translations/dcc-dock-plugin_hr.ts</file>
|
||||
<file>translations/dcc-dock-plugin_it.ts</file>
|
||||
<file>translations/dcc-dock-plugin_pl.ts</file>
|
||||
<file>translations/dcc-dock-plugin_pt_BR.ts</file>
|
||||
<file>translations/dcc-dock-plugin_ru.ts</file>
|
||||
<file>translations/dcc-dock-plugin_en_US.ts</file>
|
||||
</qresource>
|
||||
</RCC>
|
@ -1,151 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 ~ 2021 Uniontech Technology Co., Ltd.
|
||||
*
|
||||
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* Maintainer: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "settings_module.h"
|
||||
#include "module_widget.h"
|
||||
#include "config_watcher.h"
|
||||
|
||||
#include <QLayout>
|
||||
|
||||
#include <DApplication>
|
||||
#include <DConfig>
|
||||
|
||||
DWIDGET_USE_NAMESPACE
|
||||
DCORE_USE_NAMESPACE
|
||||
|
||||
SettingsModule::SettingsModule()
|
||||
: QObject()
|
||||
, ModuleInterface()
|
||||
, m_moduleWidget(nullptr)
|
||||
, m_config(new DConfig("dde.dock.plugin.dconfig", QString(), this))
|
||||
{
|
||||
QTranslator *translator = new QTranslator(this);
|
||||
translator->load(QString("/usr/share/dcc-dock-plugin/translations/dcc-dock-plugin_%1.qm").arg(QLocale::system().name()));
|
||||
QCoreApplication::installTranslator(translator);
|
||||
}
|
||||
|
||||
SettingsModule::~SettingsModule()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void SettingsModule::initialize()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void SettingsModule::active()
|
||||
{
|
||||
m_moduleWidget = new ModuleWidget;
|
||||
|
||||
m_frameProxy->pushWidget(this, m_moduleWidget);
|
||||
m_moduleWidget->setVisible(true);
|
||||
}
|
||||
|
||||
QStringList SettingsModule::availPage() const
|
||||
{
|
||||
return QStringList() << "Dock";
|
||||
}
|
||||
|
||||
const QString SettingsModule::displayName() const
|
||||
{
|
||||
return tr("Dock");
|
||||
}
|
||||
|
||||
QIcon SettingsModule::icon() const
|
||||
{
|
||||
return QIcon::fromTheme("icon_dock");
|
||||
}
|
||||
|
||||
QString SettingsModule::translationPath() const
|
||||
{
|
||||
return QString(":/translations/dcc-dock-plugin_%1.ts");
|
||||
}
|
||||
|
||||
QString SettingsModule::path() const
|
||||
{
|
||||
return PERSONALIZATION;
|
||||
}
|
||||
|
||||
QString SettingsModule::follow() const
|
||||
{
|
||||
return "10";
|
||||
}
|
||||
|
||||
const QString SettingsModule::name() const
|
||||
{
|
||||
return QStringLiteral("Dock");
|
||||
}
|
||||
|
||||
void SettingsModule::showPage(const QString &pageName)
|
||||
{
|
||||
Q_UNUSED(pageName);
|
||||
}
|
||||
|
||||
void SettingsModule::addChildPageTrans() const
|
||||
{
|
||||
if (!m_frameProxy)
|
||||
return;
|
||||
|
||||
m_frameProxy->addChildPageTrans("Dock", tr("Dock"));
|
||||
}
|
||||
|
||||
void SettingsModule::initSearchData()
|
||||
{
|
||||
onStatusChanged();
|
||||
|
||||
if (m_config->isValid())
|
||||
connect(m_config, &DConfig::valueChanged, this, &SettingsModule::onStatusChanged);
|
||||
}
|
||||
|
||||
void SettingsModule::preInitialize(bool sync, FrameProxyInterface::PushType)
|
||||
{
|
||||
Q_UNUSED(sync);
|
||||
addChildPageTrans();
|
||||
initSearchData();
|
||||
}
|
||||
|
||||
void SettingsModule::onStatusChanged()
|
||||
{
|
||||
if (!m_frameProxy)
|
||||
return;
|
||||
|
||||
// 模块名称
|
||||
const QString &module = m_frameProxy->moduleDisplayName(PERSONALIZATION);
|
||||
|
||||
// 子模块名称
|
||||
const QString &dock = tr("Dock");
|
||||
|
||||
// 二级菜单显示状态设置
|
||||
m_frameProxy->setWidgetVisible(module, dock, true);
|
||||
|
||||
auto visibleState = [ = ](const QString &key) {
|
||||
return (m_config->value(QString("%1").arg(key)).toString() == "Enabled");
|
||||
};
|
||||
|
||||
// 三级菜单显示状态设置
|
||||
m_frameProxy->setDetailVisible(module, dock, tr("Mode"), visibleState("Control-Center_Dock_Model"));
|
||||
m_frameProxy->setDetailVisible(module, dock, tr("Location"), visibleState("Control-Center_Dock_Location"));
|
||||
m_frameProxy->setDetailVisible(module, dock, tr("Status"), visibleState("Control-Center_Dock_State"));
|
||||
m_frameProxy->setDetailVisible(module, dock, tr("Size"), visibleState("Control-Center_Dock_Size"));
|
||||
m_frameProxy->setDetailVisible(module, dock, tr("Show Dock"), visibleState("Control-Center_Dock_Multi-screen"));
|
||||
m_frameProxy->setDetailVisible(module, dock, tr("Plugin Area"), visibleState("Control-Center_Dock_Plugins"));
|
||||
m_frameProxy->updateSearchData(module);
|
||||
}
|
@ -1,91 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011 ~ 2021 Uniontech Technology Co., Ltd.
|
||||
*
|
||||
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* Maintainer: fanpengcheng <fanpengcheng@uniontech.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#ifndef SETTINGSMODULE_H
|
||||
#define SETTINGSMODULE_H
|
||||
|
||||
#include <dtkcore_global.h>
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include "interface/namespace.h"
|
||||
#include "interface/moduleinterface.h"
|
||||
#include "interface/frameproxyinterface.h"
|
||||
|
||||
namespace DCC_NAMESPACE {
|
||||
class ModuleInterface;
|
||||
class FrameProxyInterface;
|
||||
}
|
||||
|
||||
using namespace DCC_NAMESPACE;
|
||||
|
||||
DCORE_BEGIN_NAMESPACE
|
||||
class DConfig;
|
||||
DCORE_END_NAMESPACE
|
||||
|
||||
class ModuleWidget;
|
||||
class SettingsModule : public QObject, public ModuleInterface
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
Q_PLUGIN_METADATA(IID ModuleInterface_iid FILE "dock_settings.json")
|
||||
Q_INTERFACES(DCC_NAMESPACE::ModuleInterface)
|
||||
|
||||
public:
|
||||
explicit SettingsModule();
|
||||
|
||||
~SettingsModule() Q_DECL_OVERRIDE;
|
||||
|
||||
void initialize() Q_DECL_OVERRIDE;
|
||||
|
||||
QStringList availPage() const Q_DECL_OVERRIDE;
|
||||
|
||||
const QString displayName() const Q_DECL_OVERRIDE;
|
||||
|
||||
QIcon icon() const Q_DECL_OVERRIDE;
|
||||
|
||||
QString translationPath() const Q_DECL_OVERRIDE;
|
||||
|
||||
QString path() const Q_DECL_OVERRIDE;
|
||||
|
||||
QString follow() const Q_DECL_OVERRIDE;
|
||||
|
||||
const QString name() const Q_DECL_OVERRIDE;
|
||||
|
||||
void showPage(const QString &pageName) Q_DECL_OVERRIDE;
|
||||
|
||||
void addChildPageTrans() const Q_DECL_OVERRIDE;
|
||||
|
||||
void initSearchData() Q_DECL_OVERRIDE;
|
||||
|
||||
void preInitialize(bool sync = false,FrameProxyInterface::PushType = FrameProxyInterface::PushType::Normal) Q_DECL_OVERRIDE;
|
||||
|
||||
private:
|
||||
void onStatusChanged();
|
||||
|
||||
public Q_SLOTS:
|
||||
void active() Q_DECL_OVERRIDE;
|
||||
|
||||
private:
|
||||
ModuleWidget *m_moduleWidget;
|
||||
DTK_CORE_NAMESPACE::DConfig *m_config;
|
||||
};
|
||||
|
||||
#endif // SETTINGSMODULE_H
|
@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/assistant</title>
|
||||
<defs>
|
||||
<path d="M7,0 C10.8659932,0 14,3.13400675 14,7 C14,10.8659932 10.8659932,14 7,14 C3.13400675,14 0,10.8659932 0,7 C0,3.13400675 3.13400675,0 7,0 Z M7.5,4 C7.22385763,4 7,4.22385763 7,4.5 L7,4.5 L7,9.5 C7,9.77614237 7.22385763,10 7.5,10 C7.77614237,10 8,9.77614237 8,9.5 L8,9.5 L8,4.5 C8,4.22385763 7.77614237,4 7.5,4 Z M5.5,5 C5.22385763,5 5,5.22385763 5,5.5 L5,5.5 L5,8.5 C5,8.77614237 5.22385763,9 5.5,9 C5.77614237,9 6,8.77614237 6,8.5 L6,8.5 L6,5.5 C6,5.22385763 5.77614237,5 5.5,5 Z M9.5,5 C9.22385763,5 9,5.22385763 9,5.5 L9,5.5 L9,8.5 C9,8.77614237 9.22385763,9 9.5,9 C9.77614237,9 10,8.77614237 10,8.5 L10,8.5 L10,5.5 C10,5.22385763 9.77614237,5 9.5,5 Z M3.5,6 C3.22385763,6 3,6.22385763 3,6.5 L3,6.5 L3,7.5 C3,7.77614237 3.22385763,8 3.5,8 C3.77614237,8 4,7.77614237 4,7.5 L4,7.5 L4,6.5 C4,6.22385763 3.77614237,6 3.5,6 Z M11.5,6 C11.2238576,6 11,6.22385763 11,6.5 L11,6.5 L11,7.5 C11,7.77614237 11.2238576,8 11.5,8 C11.7761424,8 12,7.77614237 12,7.5 L12,7.5 L12,6.5 C12,6.22385763 11.7761424,6 11.5,6 Z" id="path-1"></path>
|
||||
</defs>
|
||||
<g id="icon/dock/assistant" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="路径-5" transform="translate(1.000000, 1.000000)">
|
||||
<mask id="mask-2" fill="white">
|
||||
<use xlink:href="#path-1"></use>
|
||||
</mask>
|
||||
<use id="形状结合" fill="#536076" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/desktop</title>
|
||||
<g id="icon/dock/desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M13,2 C14.1045695,2 15,2.8954305 15,4 L15,12 C15,13.1045695 14.1045695,14 13,14 L3,14 C1.8954305,14 1,13.1045695 1,12 L1,4 C1,2.8954305 1.8954305,2 3,2 L13,2 Z M12.5,11 L3.5,11 C3.22385763,11 3,11.2238576 3,11.5 L3,11.5 L3,12.5 C3,12.7761424 3.22385763,13 3.5,13 L3.5,13 L12.5,13 C12.7761424,13 13,12.7761424 13,12.5 L13,12.5 L13,11.5 C13,11.2238576 12.7761424,11 12.5,11 L12.5,11 Z M4.5,7 L3.5,7 C3.22385763,7 3,7.22385763 3,7.5 L3,7.5 L3,8.5 C3,8.77614237 3.22385763,9 3.5,9 L3.5,9 L4.5,9 C4.77614237,9 5,8.77614237 5,8.5 L5,8.5 L5,7.5 C5,7.22385763 4.77614237,7 4.5,7 L4.5,7 Z M4.5,4 L3.5,4 C3.22385763,4 3,4.22385763 3,4.5 L3,4.5 L3,5.5 C3,5.77614237 3.22385763,6 3.5,6 L3.5,6 L4.5,6 C4.77614237,6 5,5.77614237 5,5.5 L5,5.5 L5,4.5 C5,4.22385763 4.77614237,4 4.5,4 L4.5,4 Z" id="形状结合" fill="#536076"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock-set/search</title>
|
||||
<g id="icon/dock-set/search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="ICON-/-Action-/-Search" transform="translate(1.000000, 1.000000)" fill="#536076">
|
||||
<path d="M6,0 C9.3137085,0 12,2.6862915 12,6 C12,7.38645854 11.5297397,8.6630819 10.7400213,9.67906791 L14.0303301,12.9696699 C14.3232233,13.2625631 14.3232233,13.7374369 14.0303301,14.0303301 C13.7640635,14.2965966 13.3473998,14.3208027 13.0537883,14.1029482 L12.9696699,14.0303301 L9.67906791,10.7400213 C8.6630819,11.5297397 7.38645854,12 6,12 C2.6862915,12 0,9.3137085 0,6 C0,2.6862915 2.6862915,0 6,0 Z M6,1.5 C3.51471863,1.5 1.5,3.51471863 1.5,6 C1.5,8.48528137 3.51471863,10.5 6,10.5 C8.48528137,10.5 10.5,8.48528137 10.5,6 C10.5,3.51471863 8.48528137,1.5 6,1.5 Z" id="形状结合"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.0 KiB |
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/keyboard</title>
|
||||
<g id="icon/dock/keyboard" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M14,2 C15.1045695,2 16,2.8954305 16,4 L16,12 C16,13.1045695 15.1045695,14 14,14 L2,14 C0.8954305,14 1.3527075e-16,13.1045695 0,12 L0,4 C-1.3527075e-16,2.8954305 0.8954305,2 2,2 L14,2 Z M13.9931545,3 L2.00684547,3 C1.45078007,3 1,3.4556644 1,3.99539757 L1,12.0046024 C1,12.5543453 1.44994876,13 2.00684547,13 L13.9931545,13 C14.5492199,13 15,12.5443356 15,12.0046024 L15,3.99539757 C15,3.44565467 14.5500512,3 13.9931545,3 Z M5,10 L5,12 L2,12 L2,10 L5,10 Z M11,10 L11,12 L6,12 L6,10 L11,10 Z M14,10 L14,12 L12,12 L12,10 L14,10 Z M6,7 L6,9 L2,9 L2,7 L6,7 Z M9,7 L9,9 L7,9 L7,7 L9,7 Z M14,7 L14,9 L10,9 L10,7 L14,7 Z M5,4 L5,6 L2,6 L2,4 L5,4 Z M8,4 L8,6 L6,6 L6,4 L8,4 Z M11,4 L11,6 L9,6 L9,4 L11,4 Z M14,4 L14,6 L12,6 L12,4 L14,4 Z" id="形状结合" fill="#536076"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/notify</title>
|
||||
<g id="icon/dock/notify" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M10,13 C10,14.1045695 9.1045695,15 8,15 C6.9456382,15 6.08183488,14.1841222 6.00548574,13.1492623 L6,13 L10,13 Z M8.37736851,0.580039239 C10.8942381,0.580039239 12.0585627,2.6474214 12.2115228,5.19766654 L12.2344541,5.57999124 C12.4012564,8.36102233 13.0559216,9.54402205 14.7140591,12 L1.41306267,12 C3.07120014,9.54402205 3.59874356,8.36102233 3.76554589,5.57999124 L3.78847718,5.19766654 C3.94143729,2.6474214 5.1057619,0.580039239 7.62263149,0.580039239 L8.37736851,0.580039239 Z" id="Combined-Shape" fill="#536076"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 873 B |
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/plug-in2</title>
|
||||
<g id="icon/dock/plug-in2" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M7.5,1 C8.6045695,1 9.5,1.8954305 9.5,3 C9.5,3.364732 9.4023677,3.70666076 9.23181186,4.0010775 L12,4 C12.5522847,4 13,4.44771525 13,5 L12.9996679,7.26775657 C13.2939163,7.09746762 13.6355757,7 14,7 C15.1045695,7 16,7.8954305 16,9 C16,10.1045695 15.1045695,11 14,11 C13.6355757,11 13.2939163,10.9025324 12.9996679,10.7322434 L13,13 C13,13.5522847 12.5522847,14 12,14 L3,14 C2.44771525,14 2,13.5522847 2,13 L1.99858626,10.5809198 C2.22625932,10.6893264 2.48104412,10.75 2.75,10.75 C3.71649831,10.75 4.5,9.96649831 4.5,9 C4.5,8.03350169 3.71649831,7.25 2.75,7.25 C2.48104412,7.25 2.22625932,7.31067361 1.99858626,7.41908017 L2,5 C2,4.44771525 2.44771525,4 3,4 L5.76818814,4.0010775 C5.5976323,3.70666076 5.5,3.364732 5.5,3 C5.5,1.8954305 6.3954305,1 7.5,1 Z" id="形状结合" fill="#536076"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock-set/power</title>
|
||||
<g id="icon/dock-set/power" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M8,1 C11.8659932,1 15,4.13400675 15,8 C15,11.8659932 11.8659932,15 8,15 C4.13400675,15 1,11.8659932 1,8 C1,4.13400675 4.13400675,1 8,1 Z M5.35903478,3.72431037 C5.19110576,3.5050971 4.87726493,3.46352301 4.65805167,3.63145203 C3.30807232,4.665608 2.5,6.26636725 2.5,8 C2.5,11.0375661 4.96243388,13.5 8,13.5 C11.0375661,13.5 13.5,11.0375661 13.5,8 C13.5,6.27318712 12.698307,4.67801229 11.357281,3.64324033 C11.1386573,3.47454441 10.8246728,3.51501883 10.6559769,3.73364248 C10.487281,3.95226613 10.5277554,4.26625067 10.746379,4.43494659 C11.8445789,5.28234731 12.5,6.58647654 12.5,8 C12.5,10.4852814 10.4852814,12.5 8,12.5 C5.51471863,12.5 3.5,10.4852814 3.5,8 C3.5,6.58090106 4.1606451,5.27218928 5.26617644,4.42529349 C5.4853897,4.25736447 5.5269638,3.94352364 5.35903478,3.72431037 Z M8,2.5 C7.72385763,2.5 7.5,2.72385763 7.5,3 L7.5,3 L7.5,7.5 C7.5,7.77614237 7.72385763,8 8,8 C8.27614237,8 8.5,7.77614237 8.5,7.5 L8.5,7.5 L8.5,3 C8.5,2.72385763 8.27614237,2.5 8,2.5 Z" id="形状结合" fill="#536076"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock-set/monitor</title>
|
||||
<g id="icon/dock-set/monitor" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="plugin" transform="translate(1.000000, 1.000000)" fill="#536076">
|
||||
<path d="M7,0 C10.8659932,0 14,3.13400675 14,7 C14,10.8659932 10.8659932,14 7,14 C3.13400675,14 0,10.8659932 0,7 C0,3.13400675 3.13400675,0 7,0 Z M7,0.945 C3.65591584,0.945 0.945,3.65591584 0.945,7 C0.945,8.38131917 1.40945487,9.69294991 2.24885232,10.7539807 C2.72621454,11.357385 3.31465528,11.8658708 3.98137962,12.2499873 C4.19911821,12.3754318 4.47732316,12.3006127 4.60276776,12.0828742 C4.72821236,11.8651356 4.65339329,11.5869306 4.43565469,11.4614861 C3.86894241,11.134989 3.36848562,10.7025323 2.96252556,10.1893831 C2.24916805,9.28767161 1.855,8.17453238 1.855,7 C1.855,4.15849496 4.15849496,1.855 7,1.855 C9.84150503,1.855 12.145,4.15849496 12.145,7 C12.145,8.2354804 11.7086274,9.40242114 10.926164,10.3252761 C10.5518115,10.766796 10.1055064,11.143028 9.6069708,11.4366552 C9.39044617,11.5641838 9.3183006,11.843094 9.44582912,12.0596186 C9.57335771,12.2761432 9.85226788,12.3482888 10.0687925,12.2207602 C10.6552948,11.8753224 11.1800825,11.4329301 11.620257,10.9137784 C12.5408416,9.82802009 13.055,8.45306588 13.055,7 C13.055,3.65591584 10.3440842,0.945 7,0.945 Z M6.14105816,4.495 C5.50116297,4.495 5.18416622,4.83633522 4.90582529,5.77511311 L4.82649982,6.06085546 L4.73234063,6.44176056 L4.62671,6.90560555 L4.56190269,7.17901737 L4.49991454,7.42095739 L4.44006074,7.63301735 L4.38180608,7.81626811 L4.32469407,7.97170619 L4.28562417,8.06399685 C4.18241314,8.29231802 4.08614343,8.3805064 3.97613719,8.3805064 C3.86668889,8.3805064 3.75492139,8.31451453 3.64265705,8.17713687 C3.590764,8.11363546 3.54533748,8.04344016 3.51412587,7.98357483 L3.48793955,7.92778336 L3.45795778,7.86852724 C3.35533873,7.70099386 3.14358589,7.62764513 2.95581257,7.70436884 C2.74717556,7.78961743 2.64714947,8.02785879 2.73239807,8.23649582 C2.7911169,8.38020407 2.88738493,8.54274071 3.01066476,8.69359799 C3.27613883,9.01845798 3.60198971,9.19668421 3.97613719,9.19668421 C4.64075184,9.19668421 4.95612039,8.83258404 5.2460487,7.79607626 L5.3499402,7.39588885 L5.52328424,6.64533944 L5.58658899,6.38789258 L5.64743971,6.16103027 L5.70643091,5.9635046 L5.76406409,5.7942793 L5.80239381,5.69521553 C5.91627732,5.41736693 6.02110531,5.31117787 6.14105816,5.31117787 C6.24325628,5.31117787 6.32653129,5.3992481 6.41313618,5.64227159 L6.45834986,5.78392307 L6.47942327,5.8607465 L6.54450741,6.14194013 L6.58792534,6.36698952 L6.63137458,6.62094314 L6.70003119,7.06780466 L6.74872615,7.36996939 L6.79819261,7.64534715 L6.84953245,7.8945755 L6.882077,8.03296361 C7.09281104,8.88118308 7.39529511,9.19668421 8.01732295,9.19668421 C8.58697462,9.19668421 8.84126341,8.90212617 9.01953871,8.1217962 L9.08342281,7.81789288 L9.1180369,7.66673516 L9.14898334,7.55254983 L9.1609,7.5166 L9.20322326,7.65582622 L9.27559458,7.92759744 L9.33606009,8.13140076 L9.38017871,8.25537384 C9.65654508,8.9762274 10.1446365,9.28366432 10.9490039,9.19418227 C11.1730034,9.16926339 11.3343901,8.96747516 11.3094712,8.74347565 C11.2845524,8.51947614 11.0827641,8.35808946 10.8587646,8.38300834 C10.4277966,8.43095148 10.2589596,8.32454889 10.1167863,7.89403132 L10.0748964,7.75579483 L9.98406619,7.41835227 L9.9502025,7.30700894 C9.78920005,6.80922761 9.58280729,6.61436713 9.17194754,6.61436713 C8.66007877,6.61436713 8.46003886,6.85896582 8.29229499,7.61574793 L8.22887135,7.91867419 L8.19047201,8.07878484 L8.16988704,8.15227483 C8.1164769,8.33153783 8.07389828,8.3805064 8.01732295,8.3805064 C7.9065455,8.3805064 7.81619125,8.27502879 7.72298618,7.98338212 L7.67828579,7.8285018 L7.63506429,7.64881887 L7.59201688,7.44017841 L7.54880371,7.20159447 L7.50500765,6.93199414 L7.45838443,6.6241055 L7.40965498,6.32171483 L7.3601885,6.04633705 L7.30884868,5.79710872 L7.27630414,5.65872064 C7.06557012,4.81050119 6.76308601,4.495 6.14105816,4.495 Z" id="形状结合"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 4.1 KiB |
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/task</title>
|
||||
<g id="icon/dock/task" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<path d="M13,2 C14.1045695,2 15,2.8954305 15,4 L15,12 C15,13.1045695 14.1045695,14 13,14 L3,14 C1.8954305,14 1,13.1045695 1,12 L1,4 C1,2.8954305 1.8954305,2 3,2 L13,2 Z M5.5,9 L3.5,9 C3.22385763,9 3,9.22385763 3,9.5 L3,9.5 L3,11.5 C3,11.7761424 3.22385763,12 3.5,12 L3.5,12 L5.5,12 C5.77614237,12 6,11.7761424 6,11.5 L6,11.5 L6,9.5 C6,9.22385763 5.77614237,9 5.5,9 L5.5,9 Z M12.5,9 L8.5,9 C8.22385763,9 8,9.22385763 8,9.5 L8,9.5 L8,11.5 C8,11.7761424 8.22385763,12 8.5,12 L8.5,12 L12.5,12 C12.7761424,12 13,11.7761424 13,11.5 L13,11.5 L13,9.5 C13,9.22385763 12.7761424,9 12.5,9 L12.5,9 Z M7.5,4 L3.5,4 C3.22385763,4 3,4.22385763 3,4.5 L3,4.5 L3,6.5 C3,6.77614237 3.22385763,7 3.5,7 L3.5,7 L7.5,7 C7.77614237,7 8,6.77614237 8,6.5 L8,6.5 L8,4.5 C8,4.22385763 7.77614237,4 7.5,4 L7.5,4 Z M12.5,4 L10.5,4 C10.2238576,4 10,4.22385763 10,4.5 L10,4.5 L10,6.5 C10,6.77614237 10.2238576,7 10.5,7 L10.5,7 L12.5,7 C12.7761424,7 13,6.77614237 13,6.5 L13,6.5 L13,4.5 C13,4.22385763 12.7761424,4 12.5,4 L12.5,4 Z" id="形状结合" fill="#536076"></path>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/time</title>
|
||||
<g id="icon/dock/time" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="ICON-/-Place-/-Recent" transform="translate(1.000000, 1.000000)" fill="#536076">
|
||||
<path d="M7,0 C10.8659932,0 14,3.13400675 14,7 C14,10.8659932 10.8659932,14 7,14 C3.13400675,14 0,10.8659932 0,7 C0,3.13400675 3.13400675,0 7,0 Z M6.5,2.5 C6.22385763,2.5 6,2.72385763 6,3 L6,7.5 C6,7.77614237 6.22385763,8 6.5,8 L11,8 C11.2761424,8 11.5,7.77614237 11.5,7.5 C11.5,7.22385763 11.2761424,7 11,7 L7,7 L7,3 C7,2.72385763 6.77614237,2.5 6.5,2.5 Z" id="Combined-Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 831 B |
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16px" height="16px" viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>icon/dock/trash</title>
|
||||
<g id="icon/dock/trash" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="ICON-/-Action-/-Delete" transform="translate(2.000000, 1.000000)" fill="#536076">
|
||||
<path d="M6,0 C9.3137085,0 12,0.927517607 12,2.33333333 C12,2.36106207 11.953792,2.58428654 11.8613761,3.00300675 L11.8113175,3.22865817 C11.5058314,4.59966698 10.8293981,7.54007214 9.78201742,12.0498737 L9.68861237,12.451864 C9.6289802,12.7085364 9.47044588,12.9312968 9.24747157,13.0717216 C8.26482407,13.6905739 7.18233355,14 6,14 C4.91617954,14 3.91625723,13.739989 3.00023307,13.2199671 L2.75248331,13.0717045 C2.52951762,12.9312828 2.37098512,12.7085342 2.31134306,12.4518733 C0.770447686,5.82085682 0,2.44801015 0,2.33333333 C0,0.927517607 2.6862915,0 6,0 Z M6,1.16666667 C3.3490332,1.16666667 1.2,1.68900113 1.2,2.33333333 C1.2,2.97766554 3.3490332,3.5 6,3.5 C8.6509668,3.5 10.8,2.97766554 10.8,2.33333333 C10.8,1.68900113 8.6509668,1.16666667 6,1.16666667 Z" id="形状结合"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
@ -1,11 +0,0 @@
|
||||
#!/bin/bash
|
||||
# this file is used to auto-generate .qm file from .ts file.
|
||||
# author: shibowen at linuxdeepin.com
|
||||
|
||||
ts_list=(`ls translations/*.ts`)
|
||||
|
||||
for ts in "${ts_list[@]}"
|
||||
do
|
||||
printf "\nprocess ${ts}\n"
|
||||
lrelease "${ts}"
|
||||
done
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="en" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Size</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Multiple Displays</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plugin Area</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Select which icons appear in the Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Fashion mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Efficient mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Top</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Bottom</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Left</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Right</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Location</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Keep shown</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Keep hidden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Smart hide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Small</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Large</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>On screen where the cursor is</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Only on main screen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Show Dock</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Location</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Show Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plugin Area</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="az" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Ölçü</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Çoxsaylı ekran</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plaqin sahəsi</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Dok paneldə görünəcək nişanları seçin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Müasir rejim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Səmərəli rejim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Rejim</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Yuxarıda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Aşağıda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Sol</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Sağ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Yerləşmə</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Görünsün</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Gizli qalsın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Ağıllı gizlənmə</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Vəziyyəti</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Kiçik</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Geniş</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Kursorun olduğu ekranda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Yalnız əsas ekranda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dok paneli göstərmək</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dok panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Rejim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Yerləşmə</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Vəziyyəti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Ölçü</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dok paneli göstərmək</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plaqin sahəsi</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="bo" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>ཆེ་ཆུང་།</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>བརྙན་མང་མངོན་སྟོན་སྒྲིག་འགོད།</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>ལྷུ་ལག་ཁུལ་ཁོངས།</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>ལས་འགན་ཚན་བྱང་གི་ལྷུ་ལག་ཁུལ་དུ་མངོན་པའི་པར་རིས་འདེམས་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>དར་སྲོལ་དཔེ་རྣམ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>ལས་ཆོད་ཆེ་བའི་དཔེ་རྣམ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>དཔེ་རྣམ།</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>གོང་།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>འོག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>གཡོན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>གཡས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>གནས་ས།</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>རྟག་ཏུ་མངོན་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>རྟག་ཏུ་ཡིབ་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>རིག་ནུས་གབ་ཡིབ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>རྣམ་པ།</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>ཆུང་ངུ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>ཆེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>ཙི་གུའི་གནས་ཡུལ་ལྟར་མངོན་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>བརྙན་ཡོལ་ཨ་མ་ཁོ་ན་མངོན་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>ལས་འགན་ཚན་བྱང་གི་གནས་ས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>ལས་འགན་ཚན་བྱང་།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>དཔེ་རྣམ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>གནས་ས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>རྣམ་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>ཆེ་ཆུང་།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>ལས་འགན་ཚན་བྱང་གི་གནས་ས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>ལྷུ་ལག་ཁུལ་ཁོངས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ca" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Mida</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Pantalles múltiples</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Àrea de connectors</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Seleccioneu quines icones apareixen a l'acoblador.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Mode de moda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Mode eficient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Dalt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>A baix</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>A l'esquerra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>A la dreta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Ubicació</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Mantén-lo visible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Mantén-lo amagat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Ocultació intel·ligent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Estat</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>petit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>gros</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>A la pantalla el cursor és</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Només a la pantalla principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostra l'acoblador</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Acoblador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Ubicació</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Estat</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Mida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostra l'acoblador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Àrea de connectors</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="cs" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Velikost </translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Více displejů </translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Oblast pluginu </translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Vyberte, které ikony se zobrazí v panelu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Líbivý režim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Nenáročný režim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Režim </translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Nahoře</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Dole</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Vlevo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Vpravo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Umístění </translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Ponechat zobrazený</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Ponechat skrytý</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Chytré skrývání</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Stav</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Malý</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Velký</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Na obrazovce, na které se nachází ukazatel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Pouze na hlavní obrazovce </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Zobrazit panel</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Režim</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Umístění </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Stav</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Velikost</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Zobrazit panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Oblast pluginu </translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="de" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Größe</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Mehrfachbildschirm</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Pluginbereich</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Wählen Sie aus, welche Symbole im Dock erscheinen sollen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Design-Modus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Leistungs-Modus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modus</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Oben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Unten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Rechts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Standort</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Angezeigt lassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Ausgeblendet lassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Intelligentes Ausblenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Klein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Groß</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Auf dem Bildschirm, wo sich der Zeiger befindet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Nur auf dem Hauptbildschirm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dock anzeigen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Standort</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Größe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dock anzeigen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Pluginbereich</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,130 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="el" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="68"/>
|
||||
<source>Size</source>
|
||||
<translation>Μέγεθος</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="69"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Πολλαπλές Οθόνες</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="71"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="102"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Μοντέρνα λειτουργία</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="103"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Αποτελεσματική λειτουργία</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="105"/>
|
||||
<source>Mode</source>
|
||||
<translation>Λειτουργία</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="123"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Top</source>
|
||||
<translation>Πάνω μέρος</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="124"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Κάτω μέρος</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="125"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Left</source>
|
||||
<translation>Αριστερά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="126"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Right</source>
|
||||
<translation>Δεξιά</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="128"/>
|
||||
<source>Location</source>
|
||||
<translation>Τοποθεσία</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep shown</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="146"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Κρατήστε κρυφό</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="147"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Έξυπνη απόκρυψη</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Status</source>
|
||||
<translation>Κατάσταση</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Small</source>
|
||||
<translation>Μικρό</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Large</source>
|
||||
<translation>Μεγάλο</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Στην οθόνη όπου βρίσκεται ο κέρσορας</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="202"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Μόνο στην κύρια οθόνη</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="206"/>
|
||||
<source>Show Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="68"/>
|
||||
<source>Dock</source>
|
||||
<translation>Προσθήκη στην γραμμή εργασιών</translation>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,175 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="en">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Size</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Multiple Displays</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plugin Area</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Select which icons appear in the Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Fashion mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Efficient mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Top</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Bottom</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Left</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Right</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Location</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Keep shown</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Keep hidden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Smart hide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Small</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Large</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>On screen where the cursor is</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Only on main screen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Show Dock</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Location</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Show Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plugin Area</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="es" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamaño</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Múltiples pantallas</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Área de complementos</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Seleccionar los iconos que aparecen en el Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Modo elegante</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Modo eficiente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modo</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Arriba</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Abajo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Izquierda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Derecha</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Ubicación</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Mantener visible</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Mantener oculto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Ocultar inteligentemente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Estado</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Pequeña</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Grande</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>En la pantalla donde está el cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Solo en la pantalla principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostrar el dock</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Ubicación</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Estado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamaño</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostrar el dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Área de complementos</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="fi" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Koko</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Useita näyttöjä</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Laajennusalue</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Valitse mitkä kuvakkeet näkyvät telakassa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Muodikas </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Tehokas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Tila</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Ylhäällä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Alhaalla</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Vasen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Oikea</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Sijainti</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Näytä aina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Pidä piilossa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Älykäs piilotus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Tila</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Pieni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Suuri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Näytöllä, jossa kohdistin on</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Vain päänäytöllä</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Näytä telakka</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Telakka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Tila</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Sijainti</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Tila</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Koko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Näytä telakka</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Laajennusalue</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,130 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="fr" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="68"/>
|
||||
<source>Size</source>
|
||||
<translation>Taille</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="69"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Affichages multiples</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="71"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="102"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Mode dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="103"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Mode étendu </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="105"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="123"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Top</source>
|
||||
<translation>Haut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="124"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Bas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="125"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Left</source>
|
||||
<translation>Gauche</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="126"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Right</source>
|
||||
<translation>Droite</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="128"/>
|
||||
<source>Location</source>
|
||||
<translation>Emplacement</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep shown</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="146"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Maintenir caché</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="147"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Masquer intelligemment</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Status</source>
|
||||
<translation>Statut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Small</source>
|
||||
<translation>Petit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Large</source>
|
||||
<translation>Grand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Sur l'écran où se trouve le curseur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="202"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Uniquement sur l'écran principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="206"/>
|
||||
<source>Show Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="68"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,130 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="hr" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="68"/>
|
||||
<source>Size</source>
|
||||
<translation>Veličina</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="69"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Višestruki zasloni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="71"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="102"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Moderan način</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="103"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Učinkoviti način</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="105"/>
|
||||
<source>Mode</source>
|
||||
<translation>Način</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="123"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Top</source>
|
||||
<translation>Gore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="124"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Dolje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="125"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Left</source>
|
||||
<translation>Lijevo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="126"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Right</source>
|
||||
<translation>Desno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="128"/>
|
||||
<source>Location</source>
|
||||
<translation>Lokacija</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Drži prikazano</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="146"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Drži skriveno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="147"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Pametno skrivanje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Small</source>
|
||||
<translation>Maleno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Large</source>
|
||||
<translation>Veliko</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Na zaslon gdje je pokazivač</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="202"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Samo na glavni zaslon</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="206"/>
|
||||
<source>Show Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="68"/>
|
||||
<source>Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="hu" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Méret</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Többképernyős mód</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Bővítmény terület</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Válassza ki, hogy mely ikonok jelenjenek meg a dokkolóban</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Stílusos mód</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Hatékony mód</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mód</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Fent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Lent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Bal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Jobb</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Hely</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Megjelenítve tartás</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Maradjon rejtett</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Intelligens elrejtés</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Állapot</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Kicsi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Nagy</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>A képernyőn, ahol a kurzor található</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Csak a főképernyőn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dokkoló mutatása</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dokkoló</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mód</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Hely</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Állapot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Méret</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dokkoló mutatása</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Bővítmény terület</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="it" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Dimensione</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Display multipli</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Area plugin</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Seleziona quali icone appaiono nel Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Modalità Fashion</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Modalità Efficient</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modalità</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Sopra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Sotto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Sinistra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Destra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Posizione</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Mostra sempre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Lascia nascosta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Nascondi automaticamente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Comportamento</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Piccolo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Grande</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Sullo schermo dove è presente il cursore</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Solo sullo schermo principale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostra la Dock</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modalità</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Posizione</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Comportamento</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Dimensioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostra la Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Area plugin</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,130 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ms" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="68"/>
|
||||
<source>Size</source>
|
||||
<translation>Saiz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="69"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Paparan Berbilang</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="71"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="102"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Mod fesyen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="103"/>
|
||||
<location filename="../module_widget.cpp" line="107"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Mod efisyen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="105"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mod</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="123"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Top</source>
|
||||
<translation>Teratas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="124"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Bawah</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="125"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Left</source>
|
||||
<translation>Kiri</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="126"/>
|
||||
<location filename="../module_widget.cpp" line="130"/>
|
||||
<source>Right</source>
|
||||
<translation>Kanan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="128"/>
|
||||
<source>Location</source>
|
||||
<translation>Lokasi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep shown</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="146"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Kekal tersembunyi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="147"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Sembunyi pintar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Small</source>
|
||||
<translation>Kecil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="170"/>
|
||||
<source>Large</source>
|
||||
<translation>Besar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Atas skrin yang mana kursor berada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="202"/>
|
||||
<location filename="../module_widget.cpp" line="208"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Hanya dalam skrin utama</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="206"/>
|
||||
<source>Show Dock</source>
|
||||
<translation type="unfinished"/>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="68"/>
|
||||
<source>Dock</source>
|
||||
<translation>Labuh</translation>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="nl" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Grootte</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Meerdere beeldschermen</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Invoegtoepassingsgebied</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Geef aan welke pictogrammen moeten worden getoond op het dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Moderne modus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Efficiënte modus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modus</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Bovenaan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Onderaan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Links</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Rechts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Locatie</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Altijd tonen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Altijd verbergen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Slim verbergen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Klein</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Groot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Op het scherm waar de cursor is</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Alleen op hoofdscherm</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dock tonen</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Vastmaken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modus</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Locatie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Grootte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Dock tonen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Invoegtoepassingsgebied</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pl" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Rozmiar</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Wiele ekranów</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Strefa wtyczek</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Wybierz, które wtyczki pojawią się w Doku</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Tryb modny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Tryb wydajny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Tryb</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Góra</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Dół</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Lewo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Prawo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Położenie</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Zawsze wyświetlaj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Zawsze ukrywaj</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Inteligentne ukrywanie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Mały</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Ogromny</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Na ekranie, tam gdzie jest kursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Tylko na ekranie głównym</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Pokaż dok</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Tryb</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Położenie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Rozmiar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Pokaż dok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Strefa wtyczek</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pt" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamanho</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Vários ecrãs</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Área de plugins</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Selecione quais os ícones que aparecem na Doca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Modo Elegante</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Modo eficiente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modo</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Superior</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Inferior</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Esquerda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Direita</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Localização</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Manter visível</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Manter ocultada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Ocultação inteligente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Estado</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Pequeno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Grande</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>No ecrã onde se encontra o cursor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Apenas no ecrã principal</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostrar Doca</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Doca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Modo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Localização</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Estado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamanho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Mostrar Doca</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Área de plugins</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="pt_BR" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Size</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Multiple Displays</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plugin Area</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Select which icons appear in the Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Fashion mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Efficient mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Top</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Bottom</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Left</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Right</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Location</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Keep shown</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Keep hidden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Smart hide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Small</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Large</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>On screen where the cursor is</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Only on main screen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Show Dock</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mode</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Location</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Status</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Tamanho</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Show Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Plugin Area</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ru" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Размер</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Несколько Дисплеев</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Область Плагина</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Выбрать какие значки будут отображаться в Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Стильный режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Эффективный режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Режим</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>На верху</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Внизу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Слева</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Справа</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Расположение</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Отображать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Скрывать</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Умное скрытие</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Статус</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Маленький</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Большой</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>На экране, где находится курсор</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Только на главном экране</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Показывать Dock</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Расположение</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Статус</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Размер</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Показывать Dock</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Область Плагина</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="sq" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Madhësi</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Shumë Ekrane</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Zonë Shtojcash</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Përzgjidhni cilat ikona shfaqen te Paneli</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Mënyra “Në modë”</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Mënyra efikasitet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mënyrë</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Në Krye</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Në Fund</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Majtas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Djathtas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Vendndodhje</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Mbaje të shfaqur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Mbaje të fshehur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Fshehje e mençur</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Gjendje</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>I vogël</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>I madh</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>Në ekranin ku është kursori</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Vetëm në ekranin kryesor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Shfaqe Panelin</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Panel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Mënyrë</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Vendndodhje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Gjendje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Madhësi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Shfaqe Panelin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Zonë Shtojcash</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="tr" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Boyut</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Çoklu Ekran</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Eklenti Alanı</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Rıhtım'da hangi simgelerin görüneceğini seçin</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Moda Kip</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Verimli Kip</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Kip</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Üst</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Alt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Sol</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Sağ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Konum</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Gösterilmeyi sürdür</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Gizli tut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Akıll gizle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Durum</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Küçük</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Büyük</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>İmlecin bulunduğu ekranda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Sadece ana ekranda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Rıhtımı Göster</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Rıhtım</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Kip</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Konum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Durum</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Boyut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Rıhtımı Göster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Eklenti Alanı</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="ug" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>چوڭلۇقى</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>كۆپ ئېكرانلىق كۆرسىتىش تەڭشىكى</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>قىستۇرما رايونى</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>ۋەزىپە ئىستونى قىستۇرما رايونىدا كۆرسىتىلىدىغان سىنبەلگىنى تاللاڭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>مودا ھالەت</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>يۇقىرى ئۈنۈملۈك ھالەت</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>ھالىتى</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>ئۈستى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>ئاستى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>سول</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>ئوڭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>ئورنى</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>داۋاملىق كۆرسىتىش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>داۋاملىق يوشۇرۇش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>ئەقلىي يوشۇرۇش</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>ھالىتى </translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>كىچىك</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>چوڭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>مائۇسنىڭ ئورنىغا ئەگىشىپ كۆرۈنسۇن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>ئاساسىي ئېكراندىلا كۆرۈنسۇن</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>ۋەزىپە ئىستونىنىڭ ئورنى</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>ۋەزىپە ئىستونى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>ھالىتى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>ئورنى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>ھالىتى </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>چوڭلۇقى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>ۋەزىپە ئىستونىنىڭ ئورنى</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>قىستۇرما رايونى</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="uk" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>Розмір</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>Кілька дисплеїв</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Область додатків</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>Виберіть, які піктограми буде показано на бічній панелі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>Модний режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>Ефективний режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>Режим</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>Вгорі</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>Внизу</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>Ліворуч</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>Праворуч</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>Розташування</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>Показувати постійно</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>Залишати прихованим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>Розумне приховування</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>Стан</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>Малий</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>Великий</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>На екрані, де перебуває вказівник</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>Лише на головному екрані</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Показувати панель</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>Панель</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>Режим</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>Розташування</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>Стан</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>Розмір</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>Показувати панель</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>Область додатків</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="zh_CN" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>大小</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>多屏显示设置</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>插件区域</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>选择显示在任务栏插件区域的图标</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>时尚模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>高效模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>模式</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>上</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>下</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>左</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>右</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>位置</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>一直显示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>一直隐藏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>智能隐藏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>状态</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>大</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>跟随鼠标位置显示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>仅主屏显示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>任务栏位置</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>任务栏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>状态</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>任务栏位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>插件区域</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="zh_HK" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>大小</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>多屏顯示設置</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>插件區域</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>選擇顯示在任務欄插件區域的圖標</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>時尚模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>高效模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>模式</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>頂</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>底</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>左</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>右</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>位置</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>一直顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>一直隱藏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>智能隱藏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>狀態</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>大</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>跟隨鼠標位置顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>僅主屏顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>任務欄位置</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>任務欄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>狀態</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>任務欄位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>插件區域</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
@ -1,173 +0,0 @@
|
||||
<?xml version="1.0" ?><!DOCTYPE TS><TS language="zh_TW" version="2.0">
|
||||
<context>
|
||||
<name>ModuleWidget</name>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="86"/>
|
||||
<source>Size</source>
|
||||
<translation>大小</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="90"/>
|
||||
<source>Multiple Displays</source>
|
||||
<translation>多屏顯示設定</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="82"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>外掛程式區域</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="72"/>
|
||||
<source>Select which icons appear in the Dock</source>
|
||||
<translation>選擇顯示在任務欄外掛程式區域的圖示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="114"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Fashion mode</source>
|
||||
<translation>時尚模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="115"/>
|
||||
<location filename="../module_widget.cpp" line="122"/>
|
||||
<source>Efficient mode</source>
|
||||
<translation>高效模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="120"/>
|
||||
<source>Mode</source>
|
||||
<translation>模式</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="142"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Top</source>
|
||||
<translation>頂部</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="143"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Bottom</source>
|
||||
<translation>底部</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="144"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Left</source>
|
||||
<translation>左側</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="145"/>
|
||||
<location filename="../module_widget.cpp" line="151"/>
|
||||
<source>Right</source>
|
||||
<translation>右側</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="149"/>
|
||||
<source>Location</source>
|
||||
<translation>位置</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="171"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep shown</source>
|
||||
<translation>永遠顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="172"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Keep hidden</source>
|
||||
<translation>永遠隱藏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="173"/>
|
||||
<location filename="../module_widget.cpp" line="179"/>
|
||||
<source>Smart hide</source>
|
||||
<translation>智慧隱藏</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="177"/>
|
||||
<source>Status</source>
|
||||
<translation>狀態</translation>
|
||||
<extra-child_page>Dock</extra-child_page>
|
||||
<extra-contents_path>/personalization/Dock</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Small</source>
|
||||
<translation>小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="201"/>
|
||||
<source>Large</source>
|
||||
<translation>大</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="235"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>On screen where the cursor is</source>
|
||||
<translation>跟隨滑鼠位置顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="236"/>
|
||||
<location filename="../module_widget.cpp" line="242"/>
|
||||
<source>Only on main screen</source>
|
||||
<translation>僅主屏顯示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../module_widget.cpp" line="240"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>任務欄位置</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SettingsModule</name>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="69"/>
|
||||
<location filename="../settings_module.cpp" line="107"/>
|
||||
<location filename="../settings_module.cpp" line="134"/>
|
||||
<source>Dock</source>
|
||||
<translation>任務欄</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="144"/>
|
||||
<source>Mode</source>
|
||||
<translation>模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="145"/>
|
||||
<source>Location</source>
|
||||
<translation>位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="146"/>
|
||||
<source>Status</source>
|
||||
<translation>狀態</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="147"/>
|
||||
<source>Size</source>
|
||||
<translation>大小</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="148"/>
|
||||
<source>Show Dock</source>
|
||||
<translation>任務欄位置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../settings_module.cpp" line="149"/>
|
||||
<source>Plugin Area</source>
|
||||
<translation>外掛程式區域</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|