merge(代码合并):合并主线代码,更新upstream
This commit is contained in:
commit
c051d72b6b
20
kylin-nm.pro
20
kylin-nm.pro
|
@ -2,24 +2,12 @@ TEMPLATE = subdirs
|
|||
|
||||
CONFIG += \
|
||||
ordered \
|
||||
qt
|
||||
qt \
|
||||
|
||||
SUBDIRS = \
|
||||
plugins/plugin.pro \
|
||||
src-vpn/src-vpn.pro \
|
||||
src
|
||||
src \
|
||||
sys-dbus-register \
|
||||
|
||||
TRANSLATIONS += \
|
||||
translations/kylin-nm_zh_CN.ts \
|
||||
translations/kylin-nm_tr.ts \
|
||||
translations/kylin-nm_bo.ts \
|
||||
translations/kylin-nm_bo_CN.ts
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
!system($$PWD/translate_generation.sh): error("Failed to generate translation")
|
||||
}
|
||||
|
||||
qm_files.path = $${PREFIX}/share/kylin-nm/kylin-nm/
|
||||
qm_files.files = translations/*.qm
|
||||
|
||||
INSTALLS += qm_files \
|
||||
QT += widgets
|
||||
|
|
|
@ -79,17 +79,16 @@ void AddNetBtn::leaveEvent(QEvent *event){
|
|||
|
||||
void AddNetBtn::paintEvent(QPaintEvent *event)
|
||||
{
|
||||
// QPalette pal = qApp->palette();
|
||||
|
||||
QPainter painter(this);
|
||||
painter.setRenderHint(QPainter:: Antialiasing, true); //设置渲染,启动反锯齿
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.setBrush(this->palette().base().color());
|
||||
|
||||
// QColor color = pal.color(QPalette::Button);
|
||||
// color.setAlphaF(0.5);
|
||||
// pal.setColor(QPalette::Button, color);
|
||||
// this->setPalette(pal);
|
||||
QPalette pal = qApp->palette();
|
||||
QColor color = pal.color(QPalette::Button);
|
||||
color.setAlphaF(0.5);
|
||||
pal.setColor(QPalette::Button, color);
|
||||
this->setPalette(pal);
|
||||
|
||||
QRect rect = this->rect();
|
||||
QPainterPath path;
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
#include <QPainter>
|
||||
#include <QApplication>
|
||||
#include <QDebug>
|
||||
#include <QPainterPath>
|
||||
|
||||
#define BUTTON_SIZE 36,36
|
||||
#define ICON_SIZE 16,16
|
||||
|
|
|
@ -4,6 +4,11 @@ CONFIG += plugin
|
|||
|
||||
TARGET = $$qtLibraryTarget(mobilehotspot)
|
||||
DESTDIR = ../..
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
!system($$PWD/translate_generation.sh): error("Failed to generate translation")
|
||||
}
|
||||
|
||||
target.path = $$[QT_INSTALL_LIBS]/ukui-control-center
|
||||
trans.files = translations/*
|
||||
trans.path = /usr/share/kylin-nm/mobilehotspot/
|
||||
|
@ -50,4 +55,5 @@ TRANSLATIONS += \
|
|||
translations/tr.ts \
|
||||
translations/bo.ts\
|
||||
translations/bo_CN.ts \
|
||||
translations/en_US.ts
|
||||
translations/en_US.ts \
|
||||
translations/mn.ts
|
||||
|
|
|
@ -35,10 +35,10 @@
|
|||
#define LINE_MIN_SIZE 0, 1
|
||||
#define ICON_SIZE 24,24
|
||||
#define PASSWORD_FRAME_MIN_HIGHT 60
|
||||
#define PASSWORD_FRAME_FIX_HIGHT 80
|
||||
#define PASSWORD_FRAME_FIX_HIGHT 90
|
||||
#define PASSWORD_FRAME_MIN_SIZE 550, 60
|
||||
#define PASSWORD_FRAME_MAX_SIZE 16777215, 86
|
||||
#define PASSWORD_ITEM_MARGINS 16, 12, 16, 14
|
||||
#define PASSWORD_ITEM_MARGINS 16, 10, 16, 10
|
||||
|
||||
#define WIRELESS 1
|
||||
|
||||
|
@ -58,10 +58,10 @@ void MobileHotspotWidget::showDesktopNotify(const QString &message)
|
|||
"org.freedesktop.Notifications",
|
||||
QDBusConnection::sessionBus());
|
||||
QList<QVariant> args;
|
||||
args<<(tr("ukui control center"))
|
||||
args<<(tr("Settings"))
|
||||
<<((unsigned int) 0)
|
||||
<<QString("ukui-control-center")
|
||||
<<tr("ukui control center desktop message") //显示的是什么类型的信息
|
||||
<<tr("Settings desktop message") //显示的是什么类型的信息
|
||||
<<message //显示的具体信息
|
||||
<<QStringList()
|
||||
<<QVariantMap()
|
||||
|
@ -114,10 +114,18 @@ MobileHotspotWidget::MobileHotspotWidget(QWidget *parent) : QWidget(parent)
|
|||
m_Vlayout->addStretch();
|
||||
|
||||
connect(m_switchBtn, &KSwitchButton::stateChanged, this, &MobileHotspotWidget::setUiEnabled);
|
||||
connect(m_interfaceComboBox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, &MobileHotspotWidget::onInterfaceChanged);
|
||||
connect(m_interfaceComboBox, QOverload<int>::of(&QComboBox::currentIndexChanged), this, [=]() {
|
||||
UkccCommon::buriedSettings("MobileHotspot", "Net card", QString("select"), m_interfaceComboBox->currentText());
|
||||
m_interfaceName = m_interfaceComboBox->currentText();
|
||||
updateBandCombox();
|
||||
});
|
||||
connect(m_freqBandComboBox, QOverload<int>::of(&QComboBox::currentIndexChanged), [=](){
|
||||
if (m_isUserSelect && !m_freqBandComboBox->currentText().isEmpty()) {
|
||||
UkccCommon::buriedSettings("MobileHotspot", "Frequency band", QString("select"), m_freqBandComboBox->currentText());
|
||||
}
|
||||
});
|
||||
onInterfaceChanged();
|
||||
|
||||
#ifdef HOTSPOT_CONTROL
|
||||
m_connectDevPage->refreshStalist();
|
||||
|
@ -139,7 +147,6 @@ bool MobileHotspotWidget::eventFilter(QObject *watched, QEvent *event)
|
|||
return true;
|
||||
}
|
||||
|
||||
|
||||
if (watched == m_switchBtn) {
|
||||
if (event->type() == QEvent::MouseButtonRelease) {
|
||||
if (!m_interface->isValid()) {
|
||||
|
@ -149,6 +156,7 @@ bool MobileHotspotWidget::eventFilter(QObject *watched, QEvent *event)
|
|||
showDesktopNotify(tr("wirless switch is close or no wireless device"));
|
||||
return true;
|
||||
}
|
||||
UkccCommon::buriedSettings("MobileHotspot", "Open", QString("settings"), !m_switchBtn->isChecked() ? "true":"false");
|
||||
if (m_switchBtn->isChecked()) {
|
||||
// showDesktopNotify(tr("start to close hotspot"));
|
||||
QDBusReply<void> reply = m_interface->call("deactiveWirelessAp", m_apNameLine->text(), m_uuid);
|
||||
|
@ -258,7 +266,7 @@ void MobileHotspotWidget::initDbusConnect()
|
|||
if(m_interface->isValid()) {
|
||||
connect(m_interface,SIGNAL(activateFailed(QString)), this, SLOT(onActivateFailed(QString)), Qt::QueuedConnection);
|
||||
connect(m_interface,SIGNAL(deactivateFailed(QString)), this, SLOT(onDeactivateFailed(QString)), Qt::QueuedConnection);
|
||||
connect(m_interface,SIGNAL(deviceStatusChanged()), this, SLOT(onDeviceStatusChanged()), Qt::QueuedConnection);
|
||||
connect(m_interface,SIGNAL(wirelessDeviceStatusChanged()), this, SLOT(onDeviceStatusChanged()), Qt::QueuedConnection);
|
||||
connect(m_interface,SIGNAL(deviceNameChanged(QString, QString, int)), this, SLOT(onDeviceNameChanged(QString, QString, int)), Qt::QueuedConnection);
|
||||
connect(m_interface,SIGNAL(hotspotDeactivated(QString, QString)), this, SLOT(onHotspotDeactivated(QString, QString)), Qt::QueuedConnection);
|
||||
connect(m_interface,SIGNAL(hotspotActivated(QString, QString, QString, QString, QString)), this, SLOT(onHotspotActivated(QString, QString, QString, QString, QString)), Qt::QueuedConnection);
|
||||
|
@ -268,7 +276,6 @@ void MobileHotspotWidget::initDbusConnect()
|
|||
connect(m_interface, SIGNAL(wirelessSwitchBtnChanged(bool)), this, SLOT(onWirelessBtnChanged(bool)), Qt::QueuedConnection);
|
||||
}
|
||||
|
||||
|
||||
connect(m_apNameLine, &QLineEdit::textEdited, this, &MobileHotspotWidget::onApLineEditTextEdit);
|
||||
#ifdef HOTSPOT_CONTROL
|
||||
connect(m_connectDevPage, SIGNAL(setStaIntoBlacklist(QString, QString)), m_blacklistPage, SLOT(onsetStaIntoBlacklist(QString, QString)));
|
||||
|
@ -284,11 +291,10 @@ void MobileHotspotWidget::onApLineEditTextEdit(QString text)
|
|||
for ( ; i < text.length(); ++i) {
|
||||
count += text.mid(i,1).toLocal8Bit().length();
|
||||
if (count > AP_NAME_MAX_LENGTH) {
|
||||
break;
|
||||
m_apNameLine->setText(text.left(i));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
m_apNameLine->setText(text.left(i));
|
||||
}
|
||||
|
||||
void MobileHotspotWidget::onPwdTextChanged()
|
||||
|
@ -304,6 +310,47 @@ void MobileHotspotWidget::onPwdTextChanged()
|
|||
this->update();
|
||||
}
|
||||
|
||||
void MobileHotspotWidget::onInterfaceChanged()
|
||||
{
|
||||
m_interfaceName = m_interfaceComboBox->currentText();
|
||||
if(m_interface->isValid()) {
|
||||
QDBusMessage result = m_interface->call(QStringLiteral("getWirelessList"));
|
||||
if(result.type() == QDBusMessage::ErrorMessage)
|
||||
{
|
||||
qWarning() << "getWirelessList error:" << result.errorMessage();
|
||||
return;
|
||||
}
|
||||
bool flag = false;
|
||||
auto dbusArg = result.arguments().at(0).value<QDBusArgument>();
|
||||
QMap<QString, QVector<QStringList>> variantList;
|
||||
dbusArg >> variantList;
|
||||
if (variantList.size() != 0) {
|
||||
QMap<QString, QVector<QStringList>>::iterator iter;
|
||||
for (iter = variantList.begin(); iter != variantList.end(); iter++) {
|
||||
if (m_interfaceName == iter.key()) {
|
||||
QVector<QStringList> wlanListInfo = iter.value();
|
||||
if (!wlanListInfo.isEmpty() && wlanListInfo.at(0).size() > 1) {
|
||||
flag = true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (flag) {
|
||||
m_interfaceWarnLabel->setText(tr("use ") + m_interfaceName +
|
||||
tr(" share network, will interrupt local wireless connection"));
|
||||
m_interfaceFrame->setFixedHeight(PASSWORD_FRAME_FIX_HIGHT);
|
||||
m_warnWidget->show();
|
||||
} else {
|
||||
m_interfaceFrame->setFixedHeight(PASSWORD_FRAME_MIN_HIGHT);
|
||||
m_warnWidget->hide();
|
||||
}
|
||||
resetFrameSize();
|
||||
}
|
||||
|
||||
updateBandCombox();
|
||||
}
|
||||
|
||||
void MobileHotspotWidget::onActiveConnectionChanged(QString deviceName, QString ssid, QString uuid, int status)
|
||||
{
|
||||
if(m_uuid == uuid && status == 4) {
|
||||
|
@ -312,11 +359,19 @@ void MobileHotspotWidget::onActiveConnectionChanged(QString deviceName, QString
|
|||
setUiEnabled(false);
|
||||
m_uuid.clear();
|
||||
}
|
||||
|
||||
if (deviceName != m_interfaceName) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_interfaceComboBox && status == 2) {
|
||||
onInterfaceChanged();
|
||||
}
|
||||
}
|
||||
|
||||
void MobileHotspotWidget::onWirelessBtnChanged(bool state)
|
||||
{
|
||||
if (!state) {
|
||||
if (!state) {
|
||||
m_switchBtn->setChecked(state);
|
||||
m_uuid.clear();
|
||||
m_switchBtn->setCheckable(false);
|
||||
|
@ -330,6 +385,10 @@ void MobileHotspotWidget::initInterfaceInfo()
|
|||
if(!m_interface->isValid()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_interfaceComboBox->isVisible()) {
|
||||
m_interfaceComboBox->hidePopup();
|
||||
}
|
||||
m_interfaceComboBox->clear();
|
||||
QDBusReply<QMap<QString, bool> > reply = m_interface->call("getDeviceListAndEnabled",WIRELESS);
|
||||
|
||||
|
@ -348,7 +407,6 @@ void MobileHotspotWidget::initInterfaceInfo()
|
|||
}
|
||||
QMap<QString, int> devCapMap = capReply.value();
|
||||
|
||||
|
||||
if (devMap.isEmpty()) {
|
||||
qDebug() << LOG_HEAD << "no wireless device";
|
||||
setWidgetHidden(true);
|
||||
|
@ -357,7 +415,7 @@ void MobileHotspotWidget::initInterfaceInfo()
|
|||
QMap<QString, bool>::Iterator iter = devMap.begin();
|
||||
while (iter != devMap.end()) {
|
||||
QString interfaceName = iter.key();
|
||||
if (devCapMap[interfaceName] & 0x01) {
|
||||
if (!(devCapMap[interfaceName] & 0x01)) {
|
||||
m_interfaceComboBox->addItem(interfaceName);
|
||||
}
|
||||
iter++;
|
||||
|
@ -402,24 +460,32 @@ void MobileHotspotWidget::getApInfo()
|
|||
m_pwdNameLine->setText("12345678");
|
||||
return;
|
||||
} else {
|
||||
m_apNameLine->setText(apInfo.at(0));
|
||||
m_pwdNameLine->setText(apInfo.at(1));
|
||||
|
||||
int index = m_interfaceComboBox->findText(apInfo.at(2));
|
||||
if (index >= 0) {
|
||||
m_apNameLine->setText(apInfo.at(0));
|
||||
m_pwdNameLine->setText(apInfo.at(1));
|
||||
m_interfaceComboBox->setCurrentIndex(index);
|
||||
m_interfaceName = apInfo.at(2);
|
||||
if (apInfo.at(3) == "true") {
|
||||
m_switchBtn->setChecked(true);
|
||||
setUiEnabled(true);
|
||||
m_uuid = apInfo.at(4);
|
||||
} else {
|
||||
m_switchBtn->setChecked(false);
|
||||
setUiEnabled(false);
|
||||
m_uuid = apInfo.at(4);
|
||||
}
|
||||
} else {
|
||||
qDebug() << LOG_HEAD << "no such interface " << apInfo.at(2);
|
||||
}
|
||||
|
||||
if (apInfo.at(3) == "true") {
|
||||
m_switchBtn->setChecked(true);
|
||||
setUiEnabled(true);
|
||||
m_uuid = apInfo.at(4);
|
||||
} else {
|
||||
m_switchBtn->setChecked(false);
|
||||
setUiEnabled(false);
|
||||
m_uuid = apInfo.at(4);
|
||||
}
|
||||
int i = m_freqBandComboBox->findText(apInfo.at(5));
|
||||
if (i >= 0) {
|
||||
m_isUserSelect = false;
|
||||
m_freqBandComboBox->setCurrentIndex(i);
|
||||
m_isUserSelect = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -496,10 +562,12 @@ void MobileHotspotWidget::setPasswordFrame()
|
|||
pwdInputVLayout->addWidget(m_pwdNameLine);
|
||||
pwdInputVLayout->addWidget(m_pwdHintLabel);
|
||||
|
||||
QFormLayout *pwdLayout = new QFormLayout(m_passwordFrame);
|
||||
QGridLayout *pwdLayout = new QGridLayout(m_passwordFrame);
|
||||
pwdLayout->setContentsMargins(PASSWORD_ITEM_MARGINS);
|
||||
pwdLayout->setSpacing(0);
|
||||
pwdLayout->addRow(m_pwdLabel, pwdInputWidget);
|
||||
pwdLayout->addWidget(m_pwdLabel, 0, 0);
|
||||
pwdLayout->addWidget(m_pwdNameLine, 0, 1);
|
||||
pwdLayout->addWidget(m_pwdHintLabel, 1, 1);
|
||||
|
||||
m_passwordFrame->setLayout(pwdLayout);
|
||||
|
||||
|
@ -516,8 +584,9 @@ void MobileHotspotWidget::setFreqBandFrame()
|
|||
|
||||
QHBoxLayout *freqBandHLayout = new QHBoxLayout(m_freqBandFrame);
|
||||
|
||||
m_freqBandLabel = new QLabel(tr("Frequency band"), this);
|
||||
m_freqBandLabel->setMinimumWidth(LABLE_MIN_WIDTH);
|
||||
m_freqBandLabel = new FixLabel(this);
|
||||
m_freqBandLabel->setText(tr("Frequency band"));
|
||||
m_freqBandLabel->setFixedWidth(LABLE_MIN_WIDTH - 8);
|
||||
m_freqBandComboBox = new QComboBox(this);
|
||||
m_freqBandComboBox->setInsertPolicy(QComboBox::NoInsert);
|
||||
m_freqBandComboBox->setMinimumWidth(COMBOBOX_MIN_WIDTH);
|
||||
|
@ -525,7 +594,7 @@ void MobileHotspotWidget::setFreqBandFrame()
|
|||
m_freqBandComboBox->addItem("2.4GHz");
|
||||
m_freqBandComboBox->addItem("5GHz");
|
||||
freqBandHLayout->setContentsMargins(ITEM_MARGINS);
|
||||
freqBandHLayout->setSpacing(0);
|
||||
freqBandHLayout->setSpacing(8);
|
||||
freqBandHLayout->addWidget(m_freqBandLabel);
|
||||
freqBandHLayout->addWidget(m_freqBandComboBox);
|
||||
|
||||
|
@ -537,23 +606,48 @@ void MobileHotspotWidget::setInterFaceFrame()
|
|||
/* key tips */
|
||||
m_interfaceFrame = new QFrame(this);
|
||||
m_interfaceFrame->setFrameShape(QFrame::Shape::NoFrame);
|
||||
m_interfaceFrame->setMinimumSize(FRAME_MIN_SIZE);
|
||||
m_interfaceFrame->setMaximumSize(CONTECT_FRAME_MAX_SIZE);
|
||||
|
||||
QHBoxLayout *interfaceHLayout = new QHBoxLayout(m_interfaceFrame);
|
||||
m_interfaceFrame->setMinimumSize(PASSWORD_FRAME_MIN_SIZE);
|
||||
m_interfaceFrame->setMaximumSize(PASSWORD_FRAME_MAX_SIZE);
|
||||
|
||||
m_interfaceLabel = new QLabel(tr("Net card"), this);
|
||||
m_interfaceLabel->setMinimumWidth(LABLE_MIN_WIDTH);
|
||||
m_interfaceLabel->setFixedWidth(LABLE_MIN_WIDTH);
|
||||
m_interfaceComboBox = new QComboBox(this);
|
||||
m_interfaceComboBox->setInsertPolicy(QComboBox::NoInsert);
|
||||
m_interfaceComboBox->setMinimumWidth(COMBOBOX_MIN_WIDTH);
|
||||
m_interfaceComboBox->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Fixed);
|
||||
interfaceHLayout->setContentsMargins(ITEM_MARGINS);
|
||||
interfaceHLayout->setSpacing(0);
|
||||
interfaceHLayout->addWidget(m_interfaceLabel);
|
||||
interfaceHLayout->addWidget(m_interfaceComboBox);
|
||||
|
||||
m_interfaceFrame->setLayout(interfaceHLayout);
|
||||
m_warnWidget = new QWidget(this);
|
||||
m_warnWidget->setFixedHeight(20);
|
||||
m_warnWidget->setContentsMargins(8,0,0,0);
|
||||
|
||||
QHBoxLayout *warnTextHLayout = new QHBoxLayout(m_warnWidget);
|
||||
QLabel* warnIcon = new QLabel(this);
|
||||
warnIcon->setContentsMargins(0,0,0,0);
|
||||
warnIcon->setPixmap(QIcon::fromTheme("dialog-warning").pixmap(16,16));
|
||||
|
||||
m_interfaceWarnLabel= new FixLabel(this);
|
||||
m_interfaceWarnLabel->setFixedHeight(20);
|
||||
|
||||
QPalette hintTextColor;
|
||||
hintTextColor.setColor(QPalette::WindowText, Qt::red);
|
||||
m_interfaceWarnLabel->setPalette(hintTextColor);
|
||||
|
||||
warnTextHLayout->setSpacing(8);
|
||||
warnTextHLayout->setContentsMargins(0,0,0,0);
|
||||
warnTextHLayout->addWidget(warnIcon);
|
||||
warnTextHLayout->addWidget(m_interfaceWarnLabel);
|
||||
warnIcon->setFixedWidth(16);
|
||||
m_warnWidget->setLayout(warnTextHLayout);
|
||||
|
||||
QGridLayout *interfaceFLayout = new QGridLayout(m_interfaceFrame);
|
||||
interfaceFLayout->setContentsMargins(PASSWORD_ITEM_MARGINS);
|
||||
interfaceFLayout->setSpacing(0);
|
||||
interfaceFLayout->addWidget(m_interfaceLabel, 0, 0);
|
||||
interfaceFLayout->addWidget(m_interfaceComboBox, 0, 1);
|
||||
interfaceFLayout->addWidget(m_warnWidget, 1, 1);
|
||||
|
||||
m_interfaceFrame->setLayout(interfaceFLayout);
|
||||
|
||||
m_warnWidget->hide();
|
||||
}
|
||||
|
||||
void MobileHotspotWidget::onActivateFailed(QString errorMessage)
|
||||
|
@ -590,6 +684,12 @@ void MobileHotspotWidget::onDeviceNameChanged(QString oldName, QString newName,
|
|||
m_interfaceName = newName;
|
||||
}
|
||||
}
|
||||
|
||||
QTimer::singleShot(100, this, [=]() {
|
||||
if (m_interfaceComboBox->currentText() == newName) {
|
||||
updateBandCombox();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//热点断开
|
||||
|
@ -650,15 +750,15 @@ void MobileHotspotWidget::onHotspotActivated(QString devName, QString ssid, QStr
|
|||
updateBandCombox();
|
||||
index = m_freqBandComboBox->findText(info.at(1));
|
||||
if (index >= 0) {
|
||||
m_isUserSelect = false;
|
||||
m_freqBandComboBox->setCurrentIndex(index);
|
||||
m_isUserSelect = true;
|
||||
}
|
||||
m_uuid = uuid;
|
||||
} else {
|
||||
qDebug() << "no such device in combo box";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
bool MobileHotspotWidget::getApInfoBySsid(QString devName, QString ssid, QStringList &info)
|
||||
|
@ -724,6 +824,7 @@ void MobileHotspotWidget::setWidgetHidden(bool isHidden)
|
|||
|
||||
void MobileHotspotWidget::updateBandCombox()
|
||||
{
|
||||
QString tmp = m_freqBandComboBox->currentText();
|
||||
m_freqBandComboBox->clear();
|
||||
QDBusReply<QMap<QString, int> > capReply = m_interface->call("getWirelessDeviceCap");
|
||||
if (!capReply.isValid()) {
|
||||
|
@ -731,6 +832,8 @@ void MobileHotspotWidget::updateBandCombox()
|
|||
setWidgetHidden(true);
|
||||
return;
|
||||
}
|
||||
|
||||
m_isUserSelect = false;
|
||||
QMap<QString, int> devCapMap = capReply.value();
|
||||
if (devCapMap[m_interfaceName] & 0x02) {
|
||||
m_freqBandComboBox->addItem("2.4GHz");
|
||||
|
@ -738,6 +841,12 @@ void MobileHotspotWidget::updateBandCombox()
|
|||
if (devCapMap[m_interfaceName] & 0x04) {
|
||||
m_freqBandComboBox->addItem("5GHz");
|
||||
}
|
||||
|
||||
int index = m_freqBandComboBox->findText(tmp);
|
||||
if (index >= 0) {
|
||||
m_freqBandComboBox->setCurrentIndex(index);
|
||||
}
|
||||
m_isUserSelect = true;
|
||||
}
|
||||
|
||||
QFrame* MobileHotspotWidget::myLine()
|
||||
|
|
|
@ -46,8 +46,11 @@
|
|||
#include "connectdevlistitem.h"
|
||||
#include "blacklistpage.h"
|
||||
#include "connectdevpage.h"
|
||||
#include "fixlabel.h"
|
||||
#include "ukcccommon.h"
|
||||
|
||||
using namespace kdk;
|
||||
using namespace ukcc;
|
||||
|
||||
class MobileHotspotWidget : public QWidget
|
||||
{
|
||||
|
@ -71,7 +74,7 @@ private:
|
|||
QLabel *m_apNameLabel;
|
||||
QLabel *m_pwdLabel;
|
||||
QLabel *m_pwdHintLabel;
|
||||
QLabel *m_freqBandLabel;
|
||||
FixLabel *m_freqBandLabel;
|
||||
QLabel *m_interfaceLabel;
|
||||
|
||||
QFrame *switchAndApNameLine;
|
||||
|
@ -87,6 +90,9 @@ private:
|
|||
QComboBox *m_freqBandComboBox;
|
||||
QComboBox *m_interfaceComboBox;
|
||||
|
||||
FixLabel *m_interfaceWarnLabel;
|
||||
QWidget* m_warnWidget;
|
||||
|
||||
QDBusInterface *m_interface = nullptr;
|
||||
|
||||
QString m_interfaceName = "";
|
||||
|
@ -138,6 +144,8 @@ private:
|
|||
void initConnectDevPage();
|
||||
void initBlackListPage();
|
||||
|
||||
bool m_isUserSelect = true; //是否用户操作
|
||||
|
||||
signals:
|
||||
|
||||
private slots:
|
||||
|
@ -158,6 +166,8 @@ private slots:
|
|||
void onApLineEditTextEdit(QString text);
|
||||
|
||||
void onPwdTextChanged();
|
||||
|
||||
void onInterfaceChanged();
|
||||
};
|
||||
|
||||
#endif // MOBILEHOTSPOTWIDGET_H
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
ts_list=(`ls translations/*.ts`)
|
||||
source /etc/os-release
|
||||
version=(`echo $ID`)
|
||||
|
||||
for ts in "${ts_list[@]}"
|
||||
do
|
||||
printf "\nprocess ${ts}\n"
|
||||
if [ "$version" == "fedora" ] || [ "$version" == "opensuse-leap" ] || [ "$version" == "opensuse-tumbleweed" ];then
|
||||
lrelease-qt5 "${ts}"
|
||||
else
|
||||
lrelease "${ts}"
|
||||
fi
|
||||
done
|
|
@ -1 +0,0 @@
|
|||
<クdハ<>箆!ソ`。スン
|
|
@ -56,69 +56,79 @@
|
|||
<context>
|
||||
<name>MobileHotspotWidget</name>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>ukui control center</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="149"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="156"/>
|
||||
<source>wirless switch is close or no wireless device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="169"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="177"/>
|
||||
<source>hotpots name or device is invalid</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="490"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="556"/>
|
||||
<source>Contains at least 8 characters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="223"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="231"/>
|
||||
<source>Hotspot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="310"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="605"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="340"/>
|
||||
<source>use </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="341"/>
|
||||
<source> share network, will interrupt local wireless connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="357"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="705"/>
|
||||
<source>hotspot already close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="436"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="502"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="457"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="523"/>
|
||||
<source>Wi-Fi Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="478"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="544"/>
|
||||
<source>Password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="519"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="588"/>
|
||||
<source>Frequency band</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="545"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="612"/>
|
||||
<source>Net card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="635"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="643"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="735"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="743"/>
|
||||
<source>hotspot already open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -56,17 +56,15 @@
|
|||
<context>
|
||||
<name>MobileHotspotWidget</name>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>ཝུའུ་ཁི་ལན་གྱི་ཚོད་འཛིན་ལྟེ་གནས།</translation>
|
||||
<translation type="vanished">ཝུའུ་ཁི་ལན་གྱི་ཚོད་འཛིན་ལྟེ་གནས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>ukui ཚོད་འཛིན་ལྟེ་གནས་ཀྱི་ཅོག་ངོས་ཆ་འཕྲིན།</translation>
|
||||
<translation type="vanished">ukui ཚོད་འཛིན་ལྟེ་གནས་ཀྱི་ཅོག་ངོས་ཆ་འཕྲིན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="149"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="156"/>
|
||||
<source>wirless switch is close or no wireless device</source>
|
||||
<translation>སྐུད་མེད་གློག་སྒོ་རྒྱག་པའམ་ཡང་ན་སྐུད་མེད་སྒྲིག་ཆས་མེད་པ།</translation>
|
||||
</message>
|
||||
|
@ -75,7 +73,7 @@
|
|||
<translation type="vanished">སྒོ་རྒྱག་འགོ་བརྩམས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="169"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="177"/>
|
||||
<source>hotpots name or device is invalid</source>
|
||||
<translation>ཚ་བ་ཆེ་བའི་མིང་ངམ་སྒྲིག་ཆས་ལ་ནུས་པ་མེད།</translation>
|
||||
</message>
|
||||
|
@ -88,49 +86,69 @@
|
|||
<translation type="vanished">ཀུན་གྱིས་དོ་སྣང་བྱེད་ཡུལ་གསར་སྐྲུན་བྱེད་འགོ་ </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="490"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="556"/>
|
||||
<source>Contains at least 8 characters</source>
|
||||
<translation>མ་མཐར་ཡང་ཡིག་རྟགས་བརྒྱད་འདུས་ཡོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="223"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="231"/>
|
||||
<source>Hotspot</source>
|
||||
<translation>ཚ་བ་ཆེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="310"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="605"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>Settings</source>
|
||||
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས། ཅོག་ངོས་ལ་བརྡ་ཐོ་གཏོང་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="340"/>
|
||||
<source>use </source>
|
||||
<translation>བེད་སྤྱོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="341"/>
|
||||
<source> share network, will interrupt local wireless connection</source>
|
||||
<translation>གླེང་མང་མཉམ་སྤྱོད་བྱས་ནས་འཕྲུལ་ཆས་ཀྱི་སྐུད་མེད་དྲ་བ་སྦྲེལ་མཐུད་བྱེད་ངེས་རེད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="357"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="705"/>
|
||||
<source>hotspot already close</source>
|
||||
<translation>ཚ་བ་ཆེ་བའི་གནད་དོན་ཐག་ཉེ་རུ་སོང་ཡོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="436"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="502"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="457"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="523"/>
|
||||
<source>Wi-Fi Name</source>
|
||||
<translation>Wi-Fiཡི་མིང་།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="478"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="544"/>
|
||||
<source>Password</source>
|
||||
<translation>གསང་གྲངས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="519"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="588"/>
|
||||
<source>Frequency band</source>
|
||||
<translation>ཐེངས་གྲངས་ཀྱི་རོལ་ཆའི་རུ་ཁག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="545"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="612"/>
|
||||
<source>Net card</source>
|
||||
<translation>དྲ་རྒྱའི་བྱང་བུ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="635"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="643"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="735"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="743"/>
|
||||
<source>hotspot already open</source>
|
||||
<translation>ཚ་བ་ཆེ་བའི་གནད་དོན་དེ་སྒོ་ཕྱེ་ཟིན།</translation>
|
||||
</message>
|
||||
|
|
|
@ -56,69 +56,87 @@
|
|||
<context>
|
||||
<name>MobileHotspotWidget</name>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>ukui control center</translation>
|
||||
<translation type="vanished">ukui control center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="vanished">ukui control center desktop message</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>ukui control center desktop message</translation>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="149"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="156"/>
|
||||
<source>wirless switch is close or no wireless device</source>
|
||||
<translation>wirless switch is close or no wireless device</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="169"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="177"/>
|
||||
<source>hotpots name or device is invalid</source>
|
||||
<translation>hotpots name or device is invalid</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="223"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="231"/>
|
||||
<source>Hotspot</source>
|
||||
<translation>Hotspot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="310"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="605"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="340"/>
|
||||
<source>use </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="341"/>
|
||||
<source> share network, will interrupt local wireless connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="357"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="705"/>
|
||||
<source>hotspot already close</source>
|
||||
<translation>hotspot already close</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="436"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="502"/>
|
||||
<source>Open</source>
|
||||
<translation>Open</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="457"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="523"/>
|
||||
<source>Wi-Fi Name</source>
|
||||
<translation>Wi-Fi Name</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="478"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="544"/>
|
||||
<source>Password</source>
|
||||
<translation>Password</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="490"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="556"/>
|
||||
<source>Contains at least 8 characters</source>
|
||||
<translation>Contains at least 8 characters</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="519"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="588"/>
|
||||
<source>Frequency band</source>
|
||||
<translation>Frequency band</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="545"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="612"/>
|
||||
<source>Net card</source>
|
||||
<translation>Net card</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="635"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="643"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="735"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="743"/>
|
||||
<source>hotspot already open</source>
|
||||
<translation>hotspot already open</translation>
|
||||
</message>
|
||||
|
|
|
@ -0,0 +1,156 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="mn">
|
||||
<context>
|
||||
<name>BlacklistItem</name>
|
||||
<message>
|
||||
<location filename="../blacklistitem.cpp" line="50"/>
|
||||
<source>Remove</source>
|
||||
<translation>ᠰᠢᠯᠵᠢᠬᠦᠯᠦᠨ ᠬᠠᠰᠤᠬᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>BlacklistPage</name>
|
||||
<message>
|
||||
<location filename="../blacklistpage.cpp" line="47"/>
|
||||
<source>Blacklist</source>
|
||||
<translation>ᠬᠠᠷᠠ ᠳᠠᠩᠰᠠ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ConnectDevListItem</name>
|
||||
<message>
|
||||
<location filename="../connectdevlistitem.cpp" line="50"/>
|
||||
<source>drag into blacklist</source>
|
||||
<translation>ᠬᠠᠷᠠ ᠳᠠᠩᠰᠠᠨ ᠳ᠋ᠤ᠌ ᠤᠷᠤᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ConnectdevPage</name>
|
||||
<message>
|
||||
<location filename="../connectdevpage.cpp" line="48"/>
|
||||
<source>Connect device</source>
|
||||
<translation>ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠵᠢ ᠴᠦᠷᠬᠡᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MobileHotspot</name>
|
||||
<message>
|
||||
<location filename="../mobilehotspot.cpp" line="35"/>
|
||||
<source>MobileHotspot</source>
|
||||
<translation>ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspot.cpp" line="101"/>
|
||||
<source>mobilehotspot</source>
|
||||
<translation>ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ</translation>
|
||||
<extra-contents_path>/mobilehotspot/mobilehotspot</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspot.cpp" line="103"/>
|
||||
<source>mobilehotspot open</source>
|
||||
<translation>ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠡᠬᠢᠯᠡᠬᠦ</translation>
|
||||
<extra-contents_path>/mobilehotspot/mobilehotspot open</extra-contents_path>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MobileHotspotWidget</name>
|
||||
<message>
|
||||
<source>ukui control center</source>
|
||||
<translation type="vanished">ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠬᠠᠪᠳᠠᠰᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="vanished">ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠬᠠᠪᠳᠠᠰᠤᠨ ᠤ᠋ ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷ ᠤ᠋ᠨ ᠮᠡᠳᠡᠭᠳᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="156"/>
|
||||
<source>wirless switch is close or no wireless device</source>
|
||||
<translation>ᠤᠲᠠᠰᠤ ᠦᠭᠡᠢ ᠨᠡᠭᠡᠭᠡᠯᠭᠡ ᠨᠢᠭᠡᠨᠲᠡ ᠬᠠᠭᠠᠭᠰᠠᠨ ᠪᠤᠶᠤ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠤ᠋ᠨ ᠴᠢᠳᠠᠮᠵᠢ ᠲᠠᠢ ᠤᠲᠠᠰᠤ ᠦᠭᠡᠢ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠺᠠᠷᠲ ᠪᠠᠢᠬᠤ ᠦᠭᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>start to close hotspot</source>
|
||||
<translation type="vanished">ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠡᠬᠢᠯᠡᠵᠤ ᠬᠠᠭᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="177"/>
|
||||
<source>hotpots name or device is invalid</source>
|
||||
<translation>ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠤ᠋ᠨ ᠨᠡᠷᠡᠢᠳᠦᠯ ᠪᠤᠶᠤ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠪᠤᠷᠤᠭᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>can not create hotspot with password length less than eight!</source>
|
||||
<translation type="vanished">不能创建密码长度小于八位的热点!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>start to open hotspot </source>
|
||||
<translation type="vanished">ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠡᠬᠢᠯᠡᠵᠤ ᠪᠠᠢᠭᠤᠯᠬᠤ </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="556"/>
|
||||
<source>Contains at least 8 characters</source>
|
||||
<translation>ᠠᠳᠠᠭ ᠲᠤ᠌ ᠪᠡᠨ 8 ᠦᠰᠦᠭ ᠳᠡᠮᠳᠡᠭ ᠠᠭᠤᠯᠠᠭᠳᠠᠵᠤ ᠪᠠᠢᠨᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="231"/>
|
||||
<source>Hotspot</source>
|
||||
<translation>ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>Settings</source>
|
||||
<translation>ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷᠤ᠋ᠨ ᠵᠠᠩᠭᠢᠶ᠋ᠢ ᠵᠣᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="340"/>
|
||||
<source>use </source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠯᠡᠬᠦ </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="341"/>
|
||||
<source> share network, will interrupt local wireless connection</source>
|
||||
<translation> ᠬᠠᠮᠲᠤ ᠡᠳ᠋ᠯᠡᠬᠦ ᠲᠣᠣᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠂ ᠲᠤᠰ ᠭᠠᠵᠠᠷᠤ᠋ᠨ ᠤᠲᠠᠰᠤᠭᠤᠢ ᠵᠠᠯᠭᠠᠯᠲᠠᠶ᠋ᠢ ᠲᠠᠰᠤᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="357"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="705"/>
|
||||
<source>hotspot already close</source>
|
||||
<translation>ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠬᠠᠭᠠᠪᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="502"/>
|
||||
<source>Open</source>
|
||||
<translation>ᠨᠡᠭᠡᠭᠡᠭᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="523"/>
|
||||
<source>Wi-Fi Name</source>
|
||||
<translation>Wi-Fi ᠨᠡᠷᠡᠢᠳᠦᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="544"/>
|
||||
<source>Password</source>
|
||||
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="588"/>
|
||||
<source>Frequency band</source>
|
||||
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠠᠪᠳᠠᠮᠵᠢ ᠵᠢᠨ ᠪᠦᠰᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="612"/>
|
||||
<source>Net card</source>
|
||||
<translation>ᠬᠠᠮᠳᠤᠪᠠᠷ ᠡᠳ᠋ᠯᠡᠬᠦ ᠨᠧᠲ ᠤ᠋ᠨ ᠦᠵᠦᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="735"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="743"/>
|
||||
<source>hotspot already open</source>
|
||||
<translation>ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠨᠡᠬᠡᠬᠡᠪᠡ</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -1 +0,0 @@
|
|||
<クdハ<>箆!ソ`。スン
|
|
@ -56,69 +56,79 @@
|
|||
<context>
|
||||
<name>MobileHotspotWidget</name>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>ukui control center</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="149"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="156"/>
|
||||
<source>wirless switch is close or no wireless device</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="169"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="177"/>
|
||||
<source>hotpots name or device is invalid</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="490"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="556"/>
|
||||
<source>Contains at least 8 characters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="223"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="231"/>
|
||||
<source>Hotspot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="310"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="605"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="340"/>
|
||||
<source>use </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="341"/>
|
||||
<source> share network, will interrupt local wireless connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="357"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="705"/>
|
||||
<source>hotspot already close</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="436"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="502"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="457"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="523"/>
|
||||
<source>Wi-Fi Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="478"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="544"/>
|
||||
<source>Password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="519"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="588"/>
|
||||
<source>Frequency band</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="545"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="612"/>
|
||||
<source>Net card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="635"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="643"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="735"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="743"/>
|
||||
<source>hotspot already open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -56,17 +56,15 @@
|
|||
<context>
|
||||
<name>MobileHotspotWidget</name>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>控制面板</translation>
|
||||
<translation type="vanished">控制面板</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>控制面板桌面通知</translation>
|
||||
<translation type="vanished">控制面板桌面通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="149"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="156"/>
|
||||
<source>wirless switch is close or no wireless device</source>
|
||||
<translation>无线开关已关闭或不存在有热点功能的无线网卡</translation>
|
||||
</message>
|
||||
|
@ -75,7 +73,7 @@
|
|||
<translation type="vanished">开始关闭热点</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="169"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="177"/>
|
||||
<source>hotpots name or device is invalid</source>
|
||||
<translation>热点名称或设备错误</translation>
|
||||
</message>
|
||||
|
@ -88,49 +86,69 @@
|
|||
<translation type="vanished">开始创建热点</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="490"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="556"/>
|
||||
<source>Contains at least 8 characters</source>
|
||||
<translation>至少包含8个字符</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="223"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="231"/>
|
||||
<source>Hotspot</source>
|
||||
<translation>移动热点</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="310"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="605"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="61"/>
|
||||
<source>Settings</source>
|
||||
<translation>设置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="64"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>设置 桌面通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="340"/>
|
||||
<source>use </source>
|
||||
<translation>使用 </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="341"/>
|
||||
<source> share network, will interrupt local wireless connection</source>
|
||||
<translation> 进行热点共享,会中断本机无线网络连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="357"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="705"/>
|
||||
<source>hotspot already close</source>
|
||||
<translation>热点已关闭</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="436"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="502"/>
|
||||
<source>Open</source>
|
||||
<translation>开启</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="457"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="523"/>
|
||||
<source>Wi-Fi Name</source>
|
||||
<translation>Wi-Fi名称</translation>
|
||||
<translation>Wi-Fi 名称</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="478"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="544"/>
|
||||
<source>Password</source>
|
||||
<translation>网络密码</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="519"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="588"/>
|
||||
<source>Frequency band</source>
|
||||
<translation>网络频带</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="545"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="612"/>
|
||||
<source>Net card</source>
|
||||
<translation>共享网卡端口</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="635"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="643"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="735"/>
|
||||
<location filename="../mobilehotspotwidget.cpp" line="743"/>
|
||||
<source>hotspot already open</source>
|
||||
<translation>热点已开启</translation>
|
||||
</message>
|
||||
|
|
|
@ -87,8 +87,6 @@ LanItem::~LanItem()
|
|||
|
||||
}
|
||||
|
||||
|
||||
|
||||
void LanItem::updateIcon()
|
||||
{
|
||||
if (currentIconIndex > 6) {
|
||||
|
@ -145,17 +143,16 @@ void LanItem::onDeletetTriggered()
|
|||
|
||||
void LanItem::paintEvent(QPaintEvent *event)
|
||||
{
|
||||
// QPalette pal = qApp->palette();
|
||||
|
||||
QPainter painter(this);
|
||||
painter.setRenderHint(QPainter:: Antialiasing, true); //设置渲染,启动反锯齿
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.setBrush(this->palette().base().color());
|
||||
|
||||
// QColor color = pal.color(QPalette::Button);
|
||||
// color.setAlphaF(0.5);
|
||||
// pal.setColor(QPalette::Button, color);
|
||||
// this->setPalette(pal);
|
||||
QPalette pal = qApp->palette();
|
||||
QColor color = pal.color(QPalette::Button);
|
||||
color.setAlphaF(0.5);
|
||||
pal.setColor(QPalette::Button, color);
|
||||
this->setPalette(pal);
|
||||
|
||||
QRect rect = this->rect();
|
||||
|
||||
|
|
|
@ -64,10 +64,10 @@ void NetConnect::showDesktopNotify(const QString &message)
|
|||
"org.freedesktop.Notifications",
|
||||
QDBusConnection::sessionBus());
|
||||
QList<QVariant> args;
|
||||
args<<(tr("ukui control center"))
|
||||
args<<(tr("Settings"))
|
||||
<<((unsigned int) 0)
|
||||
<<QString("gnome-dev-ethernet")
|
||||
<<tr("ukui control center desktop message") //显示的是什么类型的信息
|
||||
<<tr("Settings desktop message") //显示的是什么类型的信息
|
||||
<<message //显示的具体信息
|
||||
<<QStringList()
|
||||
<<QVariantMap()
|
||||
|
@ -171,6 +171,7 @@ bool NetConnect::eventFilter(QObject *w, QEvent *e) {
|
|||
if (!wiredSwitch->isCheckable()) {
|
||||
showDesktopNotify(tr("No ethernet device avaliable"));
|
||||
} else {
|
||||
UkccCommon::buriedSettings(QString("netconnect"), QString("Open"), QString("settings"),wiredSwitch->isChecked()?"false":"true");
|
||||
if (m_interface != nullptr && m_interface->isValid()) {
|
||||
m_interface->call(QStringLiteral("setWiredSwitchEnable"), !wiredSwitch->isChecked());
|
||||
}
|
||||
|
@ -240,6 +241,7 @@ void NetConnect::initComponent() {
|
|||
|
||||
connect(ui->detailBtn, &QPushButton::clicked, this, [=](bool checked) {
|
||||
Q_UNUSED(checked)
|
||||
UkccCommon::buriedSettings(QString("netconnect"), QString("Advanced settings"), QString("clicked"));
|
||||
runExternalApp();
|
||||
});
|
||||
}
|
||||
|
@ -466,6 +468,7 @@ void NetConnect::addLanItem(ItemFrame *frame, QString devName, QStringList infoL
|
|||
if (m_interface == nullptr || !m_interface->isValid()) {
|
||||
return;
|
||||
}
|
||||
UkccCommon::buriedSettings(QString("netconnect"), QString("info"), QString("clicked"));
|
||||
qDebug() << "[NetConnect]call showPropertyWidget" << __LINE__;
|
||||
m_interface->call(QStringLiteral("showPropertyWidget"), devName, infoList.at(1));
|
||||
qDebug() << "[NetConnect]call showPropertyWidget respond" << __LINE__;
|
||||
|
@ -539,6 +542,7 @@ void NetConnect::addDeviceFrame(QString devName)
|
|||
qDebug() << "[NetConnect]deviceFrameMap insert" << devName;
|
||||
|
||||
connect(itemFrame->deviceFrame, &DeviceFrame::deviceSwitchClicked ,this, [=] (bool checked) {
|
||||
UkccCommon::buriedSettings(QString("netconnect"), "device open", QString("settings"), checked?"true":"fasle");
|
||||
qDebug() << "[NetConnect]call setDeviceEnable" << devName << checked << __LINE__;
|
||||
m_interface->call(QStringLiteral("setDeviceEnable"), devName, checked);
|
||||
qDebug() << "[NetConnect]call setDeviceEnable Respond" << __LINE__;
|
||||
|
@ -563,6 +567,7 @@ void NetConnect::addDeviceFrame(QString devName)
|
|||
});
|
||||
|
||||
connect(itemFrame->addLanWidget, &AddNetBtn::clicked, this, [=](){
|
||||
UkccCommon::buriedSettings(pluginName, "Add net", QString("clicked"));
|
||||
if (m_interface != nullptr && m_interface->isValid()) {
|
||||
qDebug() << "[NetConnect]call showCreateWiredConnectWidget" << devName << __LINE__;
|
||||
m_interface->call(QStringLiteral("showCreateWiredConnectWidget"), devName);
|
||||
|
@ -763,6 +768,7 @@ void NetConnect::addOneLanFrame(ItemFrame *frame, QString deviceName, QStringLis
|
|||
if (m_interface == nullptr || !m_interface->isValid()) {
|
||||
return;
|
||||
}
|
||||
UkccCommon::buriedSettings(QString("netconnect"), QString("info"), QString("clicked"));
|
||||
qDebug() << "[NetConnect]call showPropertyWidget" << deviceName << connUuid << __LINE__;
|
||||
m_interface->call(QStringLiteral("showPropertyWidget"), deviceName, connUuid);
|
||||
qDebug() << "[NetConnect]call showPropertyWidget respond" << __LINE__;
|
||||
|
@ -906,7 +912,6 @@ void NetConnect::itemActiveConnectionStatusChanged(LanItem *item, int status)
|
|||
item->statusLabel->setText(tr("not connected"));
|
||||
}
|
||||
item->setConnectActionText(item->isAcitve);
|
||||
|
||||
// QIcon searchIcon = QIcon::fromTheme(iconPath);
|
||||
// item->iconLabel->setPixmap(searchIcon.pixmap(searchIcon.actualSize(QSize(24, 24))));
|
||||
}
|
||||
|
|
|
@ -54,8 +54,10 @@
|
|||
#include "itemframe.h"
|
||||
#include "kwidget.h"
|
||||
#include "kswitchbutton.h"
|
||||
#include "ukcccommon.h"
|
||||
|
||||
using namespace kdk;
|
||||
using namespace ukcc;
|
||||
|
||||
enum {
|
||||
DISCONNECTED,
|
||||
|
@ -100,7 +102,6 @@ private:
|
|||
|
||||
int getInsertPos(QString connName, QString deviceName);
|
||||
|
||||
|
||||
void deleteOneLan(QString ssid, int type);
|
||||
void activeConnect(QString ssid, QString deviceName, int type);
|
||||
void deActiveConnect(QString ssid, QString deviceName, int type);
|
||||
|
|
|
@ -7,6 +7,11 @@ include(../component/addbtn.pri)
|
|||
|
||||
TARGET = $$qtLibraryTarget(netconnect)
|
||||
DESTDIR = ../..
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
!system($$PWD/translate_generation.sh): error("Failed to generate translation")
|
||||
}
|
||||
|
||||
target.path = $$[QT_INSTALL_LIBS]/ukui-control-center
|
||||
trans.files = translations/*
|
||||
trans.path = /usr/share/kylin-nm/netconnect/
|
||||
|
@ -52,4 +57,5 @@ TRANSLATIONS += \
|
|||
translations/tr.ts \
|
||||
translations/bo.ts \
|
||||
translations/bo_CN.ts \
|
||||
translations/en_US.ts
|
||||
translations/en_US.ts \
|
||||
translations/mn.ts
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
ts_list=(`ls translations/*.ts`)
|
||||
source /etc/os-release
|
||||
version=(`echo $ID`)
|
||||
|
||||
for ts in "${ts_list[@]}"
|
||||
do
|
||||
printf "\nprocess ${ts}\n"
|
||||
if [ "$version" == "fedora" ] || [ "$version" == "opensuse-leap" ] || [ "$version" == "opensuse-tumbleweed" ];then
|
||||
lrelease-qt5 "${ts}"
|
||||
else
|
||||
lrelease "${ts}"
|
||||
fi
|
||||
done
|
|
@ -14,26 +14,6 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LanItem</name>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="57"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="120"/>
|
||||
<location filename="../lanitem.cpp" line="133"/>
|
||||
<source>Disconnect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="122"/>
|
||||
<location filename="../lanitem.cpp" line="131"/>
|
||||
<source>Connect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NetConnect</name>
|
||||
<message>
|
||||
|
@ -43,54 +23,47 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="112"/>
|
||||
<location filename="../netconnect.cpp" line="158"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<source>open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/netconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="198"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<location filename="../netconnect.cpp" line="152"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/netconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="64"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>ukui control center</source>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="70"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="84"/>
|
||||
<location filename="../netconnect.cpp" line="156"/>
|
||||
<location filename="../netconnect.cpp" line="81"/>
|
||||
<location filename="../netconnect.cpp" line="153"/>
|
||||
<source>LAN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="172"/>
|
||||
<location filename="../netconnect.cpp" line="169"/>
|
||||
<source>No ethernet device avaliable</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="450"/>
|
||||
<location filename="../netconnect.cpp" line="896"/>
|
||||
<location filename="../netconnect.cpp" line="437"/>
|
||||
<location filename="../netconnect.cpp" line="861"/>
|
||||
<source>connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="452"/>
|
||||
<location filename="../netconnect.cpp" line="749"/>
|
||||
<location filename="../netconnect.cpp" line="906"/>
|
||||
<source>not connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="528"/>
|
||||
<location filename="../netconnect.cpp" line="504"/>
|
||||
<source>card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -14,26 +14,6 @@
|
|||
<translation>སྐུད་ཡོད་བརྙན་འཕྲིན་ཁ་སྣོན་བྱས་ཡོད།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LanItem</name>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="57"/>
|
||||
<source>Delete</source>
|
||||
<translation>སུབ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="120"/>
|
||||
<location filename="../lanitem.cpp" line="133"/>
|
||||
<source>Disconnect</source>
|
||||
<translation>བར་མཚམས་ཆད་པ་རེད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="122"/>
|
||||
<location filename="../lanitem.cpp" line="131"/>
|
||||
<source>Connect</source>
|
||||
<translation>འབྲེལ་མཐུད་བཅས་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NetConnect</name>
|
||||
<message>
|
||||
|
@ -43,58 +23,59 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="112"/>
|
||||
<location filename="../netconnect.cpp" line="158"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<source>open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
<extra-contents_path>/netconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="198"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<location filename="../netconnect.cpp" line="152"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>སྔོན་ཐོན་གྱི་སྒྲིག་བཀོད།</translation>
|
||||
<extra-contents_path>/netconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>ཝུའུ་ཁི་ལན་གྱི་ཚོད་འཛིན་ལྟེ་གནས།</translation>
|
||||
<translation type="vanished">ཝུའུ་ཁི་ལན་གྱི་ཚོད་འཛིན་ལྟེ་གནས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="70"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>ukui ཚོད་འཛིན་ལྟེ་གནས་ཀྱི་ཅོག་ངོས་ཆ་འཕྲིན།</translation>
|
||||
<translation type="vanished">ukui ཚོད་འཛིན་ལྟེ་གནས་ཀྱི་ཅོག་ངོས་ཆ་འཕྲིན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>WiredConnect</source>
|
||||
<translation type="vanished">སྐུད་ཡོད་སྦྲེལ་མཐུད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="84"/>
|
||||
<location filename="../netconnect.cpp" line="156"/>
|
||||
<location filename="../netconnect.cpp" line="64"/>
|
||||
<source>Settings</source>
|
||||
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས། ཅོག་ངོས་ལ་བརྡ་ཐོ་གཏོང་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="81"/>
|
||||
<location filename="../netconnect.cpp" line="153"/>
|
||||
<source>LAN</source>
|
||||
<translation>སྐུད་ཡོད་དྲ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="172"/>
|
||||
<location filename="../netconnect.cpp" line="169"/>
|
||||
<source>No ethernet device avaliable</source>
|
||||
<translation>ཨེ་ཙི་དྲ་རྒྱའི་སྒྲིག་ཆས་ལ་བཙན་འཛུལ་བྱས་མི་ཆོག།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="450"/>
|
||||
<location filename="../netconnect.cpp" line="896"/>
|
||||
<location filename="../netconnect.cpp" line="437"/>
|
||||
<location filename="../netconnect.cpp" line="861"/>
|
||||
<source>connected</source>
|
||||
<translation>འབྲེལ་མཐུད་བྱེད་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="452"/>
|
||||
<location filename="../netconnect.cpp" line="749"/>
|
||||
<location filename="../netconnect.cpp" line="906"/>
|
||||
<source>not connected</source>
|
||||
<translation>འབྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="528"/>
|
||||
<location filename="../netconnect.cpp" line="504"/>
|
||||
<source>card</source>
|
||||
<translation>བྱང་བུ།</translation>
|
||||
</message>
|
||||
|
|
|
@ -14,26 +14,6 @@
|
|||
<translation>Add WiredNetork</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LanItem</name>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="57"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="120"/>
|
||||
<location filename="../lanitem.cpp" line="133"/>
|
||||
<source>Disconnect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="122"/>
|
||||
<location filename="../lanitem.cpp" line="131"/>
|
||||
<source>Connect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NetConnect</name>
|
||||
<message>
|
||||
|
@ -43,54 +23,55 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="112"/>
|
||||
<location filename="../netconnect.cpp" line="158"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<source>open</source>
|
||||
<translation>open</translation>
|
||||
<extra-contents_path>/netconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="198"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<location filename="../netconnect.cpp" line="152"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>Advanced settings</translation>
|
||||
<extra-contents_path>/netconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>ukui control center</translation>
|
||||
<translation type="vanished">ukui control center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="70"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>ukui control center desktop message</translation>
|
||||
<translation type="vanished">ukui control center desktop message</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="84"/>
|
||||
<location filename="../netconnect.cpp" line="156"/>
|
||||
<location filename="../netconnect.cpp" line="64"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="81"/>
|
||||
<location filename="../netconnect.cpp" line="153"/>
|
||||
<source>LAN</source>
|
||||
<translation>LAN</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="172"/>
|
||||
<location filename="../netconnect.cpp" line="169"/>
|
||||
<source>No ethernet device avaliable</source>
|
||||
<translation>No ethernet device avaliable</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="450"/>
|
||||
<location filename="../netconnect.cpp" line="896"/>
|
||||
<location filename="../netconnect.cpp" line="437"/>
|
||||
<location filename="../netconnect.cpp" line="861"/>
|
||||
<source>connected</source>
|
||||
<translation>connected</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="452"/>
|
||||
<location filename="../netconnect.cpp" line="749"/>
|
||||
<location filename="../netconnect.cpp" line="906"/>
|
||||
<source>not connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="528"/>
|
||||
<location filename="../netconnect.cpp" line="504"/>
|
||||
<source>card</source>
|
||||
<translation>card</translation>
|
||||
</message>
|
||||
|
|
|
@ -0,0 +1,83 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="mn">
|
||||
<context>
|
||||
<name>AddNetBtn</name>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="44"/>
|
||||
<source>Add Others</source>
|
||||
<translation>ᠪᠤᠰᠤᠳ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠵᠠᠯᠭᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="48"/>
|
||||
<source>Add WiredNetork</source>
|
||||
<translation>ᠤᠲᠠᠰᠤᠲᠤ ᠨᠧᠲ ᠨᠡᠮᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NetConnect</name>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="50"/>
|
||||
<source>Wired Network</source>
|
||||
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="112"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<source>open</source>
|
||||
<translation>ᠨᠡᠭᠡᠭᠡᠬᠦ</translation>
|
||||
<extra-contents_path>/netconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="198"/>
|
||||
<location filename="../netconnect.cpp" line="152"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>ᠦᠨᠳᠦᠷ ᠵᠡᠷᠬᠡ ᠵᠢᠨ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠤᠯᠳᠠ</translation>
|
||||
<extra-contents_path>/netconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<source>ukui control center</source>
|
||||
<translation type="vanished">ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠬᠠᠪᠳᠠᠰᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="vanished">ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠬᠠᠪᠳᠠᠰᠤᠨ ᠤ᠋ ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷ ᠤ᠋ᠨ ᠮᠡᠳᠡᠭᠳᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>WiredConnect</source>
|
||||
<translation type="vanished">ᠤᠳᠠᠰᠤᠳᠤ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="64"/>
|
||||
<source>Settings</source>
|
||||
<translation>ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷᠤ᠋ᠨ ᠵᠠᠩᠭᠢᠶ᠋ᠢ ᠵᠣᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="81"/>
|
||||
<location filename="../netconnect.cpp" line="153"/>
|
||||
<source>LAN</source>
|
||||
<translation>ᠤᠲᠠᠰᠤᠲᠤ ᠲᠣᠣᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠃</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="169"/>
|
||||
<source>No ethernet device avaliable</source>
|
||||
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠵᠢ ᠪᠠᠢᠴᠠᠭᠠᠵᠤ ᠤᠯᠤᠭᠰᠠᠨ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="437"/>
|
||||
<location filename="../netconnect.cpp" line="861"/>
|
||||
<source>connected</source>
|
||||
<translation>ᠨᠢᠬᠡᠨᠳᠡ ᠴᠦᠷᠬᠡᠯᠡᠪᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="504"/>
|
||||
<source>card</source>
|
||||
<translation>ᠨᠧᠲ ᠤ᠋ᠨ ᠺᠠᠷᠲ</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -14,26 +14,6 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LanItem</name>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="57"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="120"/>
|
||||
<location filename="../lanitem.cpp" line="133"/>
|
||||
<source>Disconnect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="122"/>
|
||||
<location filename="../lanitem.cpp" line="131"/>
|
||||
<source>Connect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NetConnect</name>
|
||||
<message>
|
||||
|
@ -43,54 +23,47 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="112"/>
|
||||
<location filename="../netconnect.cpp" line="158"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<source>open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/netconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="198"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<location filename="../netconnect.cpp" line="152"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/netconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="64"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>ukui control center</source>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="70"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="84"/>
|
||||
<location filename="../netconnect.cpp" line="156"/>
|
||||
<location filename="../netconnect.cpp" line="81"/>
|
||||
<location filename="../netconnect.cpp" line="153"/>
|
||||
<source>LAN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="172"/>
|
||||
<location filename="../netconnect.cpp" line="169"/>
|
||||
<source>No ethernet device avaliable</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="450"/>
|
||||
<location filename="../netconnect.cpp" line="896"/>
|
||||
<location filename="../netconnect.cpp" line="437"/>
|
||||
<location filename="../netconnect.cpp" line="861"/>
|
||||
<source>connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="452"/>
|
||||
<location filename="../netconnect.cpp" line="749"/>
|
||||
<location filename="../netconnect.cpp" line="906"/>
|
||||
<source>not connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="528"/>
|
||||
<location filename="../netconnect.cpp" line="504"/>
|
||||
<source>card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -14,26 +14,6 @@
|
|||
<translation>添加有线网络</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LanItem</name>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="57"/>
|
||||
<source>Delete</source>
|
||||
<translation>删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="120"/>
|
||||
<location filename="../lanitem.cpp" line="133"/>
|
||||
<source>Disconnect</source>
|
||||
<translation>断开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../lanitem.cpp" line="122"/>
|
||||
<location filename="../lanitem.cpp" line="131"/>
|
||||
<source>Connect</source>
|
||||
<translation>连接</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NetConnect</name>
|
||||
<message>
|
||||
|
@ -43,58 +23,59 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="112"/>
|
||||
<location filename="../netconnect.cpp" line="158"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<source>open</source>
|
||||
<translation>开启</translation>
|
||||
<extra-contents_path>/netconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.ui" line="198"/>
|
||||
<location filename="../netconnect.cpp" line="155"/>
|
||||
<location filename="../netconnect.cpp" line="152"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>高级设置</translation>
|
||||
<extra-contents_path>/netconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>控制面板</translation>
|
||||
<translation type="vanished">控制面板</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="70"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>控制面板桌面通知</translation>
|
||||
<translation type="vanished">控制面板桌面通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>WiredConnect</source>
|
||||
<translation type="vanished">有线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="84"/>
|
||||
<location filename="../netconnect.cpp" line="156"/>
|
||||
<location filename="../netconnect.cpp" line="64"/>
|
||||
<source>Settings</source>
|
||||
<translation>设置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="67"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>设置 桌面通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="81"/>
|
||||
<location filename="../netconnect.cpp" line="153"/>
|
||||
<source>LAN</source>
|
||||
<translation>有线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="172"/>
|
||||
<location filename="../netconnect.cpp" line="169"/>
|
||||
<source>No ethernet device avaliable</source>
|
||||
<translation>未检测到有线设备</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="450"/>
|
||||
<location filename="../netconnect.cpp" line="896"/>
|
||||
<location filename="../netconnect.cpp" line="437"/>
|
||||
<location filename="../netconnect.cpp" line="861"/>
|
||||
<source>connected</source>
|
||||
<translation>已连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="452"/>
|
||||
<location filename="../netconnect.cpp" line="749"/>
|
||||
<location filename="../netconnect.cpp" line="906"/>
|
||||
<source>not connected</source>
|
||||
<translation>未连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../netconnect.cpp" line="528"/>
|
||||
<location filename="../netconnect.cpp" line="504"/>
|
||||
<source>card</source>
|
||||
<translation>网卡</translation>
|
||||
</message>
|
||||
|
|
|
@ -43,12 +43,11 @@ void AppListWidget::setAppChecked(bool flag)
|
|||
|
||||
/**
|
||||
* @brief AppListWidget::setAppIcon
|
||||
* @param icon 应用图标的名称
|
||||
* @param icon 应用图标
|
||||
*/
|
||||
void AppListWidget::setAppIcon(const QPixmap &icon)
|
||||
void AppListWidget::setAppIcon(const QIcon &icon)
|
||||
{
|
||||
m_iconLabel->setAlignment(Qt::AlignCenter);
|
||||
m_iconLabel->setPixmap(icon);
|
||||
m_iconBtn->setIcon(icon);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -119,12 +118,19 @@ void AppListWidget::initUI()
|
|||
mainLayout->setSpacing(8);
|
||||
m_checkBox = new QCheckBox(this);
|
||||
m_checkBox->setAttribute(Qt::WA_TransparentForMouseEvents, true); //m_checkBox不响应鼠标事件,将其传递给父窗口
|
||||
m_iconLabel = new QLabel(this);
|
||||
m_iconLabel->setFixedSize(24, 24);
|
||||
|
||||
m_iconBtn = new QToolButton(this);
|
||||
m_iconBtn->setToolButtonStyle(Qt::ToolButtonStyle::ToolButtonIconOnly);
|
||||
m_iconBtn->setAttribute(Qt::WA_TranslucentBackground, true); //透明
|
||||
m_iconBtn->setAttribute(Qt::WA_TransparentForMouseEvents, true);
|
||||
m_iconBtn->setAutoRaise(true);
|
||||
m_iconBtn->setFixedSize(24, 24);
|
||||
m_iconBtn->setIconSize(QSize(24, 24));
|
||||
|
||||
m_nameLabel = new QLabel(this);
|
||||
|
||||
mainLayout->addWidget(m_checkBox);
|
||||
mainLayout->addWidget(m_iconLabel);
|
||||
mainLayout->addWidget(m_iconBtn);
|
||||
mainLayout->addWidget(m_nameLabel);
|
||||
mainLayout->addStretch();
|
||||
}
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#include <QHBoxLayout>
|
||||
#include <QDBusInterface>
|
||||
#include <QDBusReply>
|
||||
#include <QToolButton>
|
||||
|
||||
class AppListWidget : public QWidget
|
||||
{
|
||||
|
@ -37,7 +38,7 @@ public:
|
|||
~AppListWidget();
|
||||
|
||||
void setAppChecked(bool flag);
|
||||
void setAppIcon(const QPixmap &icon);
|
||||
void setAppIcon(const QIcon &icon);
|
||||
void setAppName(const QString &text);
|
||||
void onAppCheckStateChanged();
|
||||
void AddAppProxyConfig();
|
||||
|
@ -51,7 +52,7 @@ private:
|
|||
void initDbus();
|
||||
|
||||
QCheckBox *m_checkBox = nullptr;
|
||||
QLabel *m_iconLabel = nullptr;
|
||||
QToolButton *m_iconBtn = nullptr;
|
||||
QLabel *m_nameLabel = nullptr;
|
||||
QString m_path = nullptr;
|
||||
QDBusInterface *m_dbusInterface = nullptr;
|
||||
|
|
|
@ -21,7 +21,7 @@ AptProxyDialog::~AptProxyDialog()
|
|||
|
||||
void AptProxyDialog::initUi()
|
||||
{
|
||||
setWindowTitle(tr("Set Apt Proxy"));
|
||||
setWindowTitle(tr("Set APT Proxy"));
|
||||
this->setFixedSize(480, 200);
|
||||
|
||||
QVBoxLayout *mAptProxyLyt = new QVBoxLayout(this);
|
||||
|
|
|
@ -127,6 +127,7 @@ QWidget *Proxy::pluginUi() {
|
|||
} else {
|
||||
qCritical() << "Xml needed by Proxy is not installed";
|
||||
}
|
||||
setUkccProxySettings();
|
||||
}
|
||||
return pluginWidget;
|
||||
}
|
||||
|
@ -428,14 +429,21 @@ void Proxy::initUi(QWidget *widget)
|
|||
AptLayout->addWidget(line_7);
|
||||
AptLayout->addWidget(mAPTFrame_2);
|
||||
|
||||
m_sysSpacerFrame = new QFrame(widget);
|
||||
m_sysSpacerFrame->setFixedHeight(32);
|
||||
m_appListSpacerFrame = new QFrame(widget);
|
||||
m_appListSpacerFrame->setFixedHeight(4);
|
||||
m_appSpacerFrame = new QFrame(widget);;
|
||||
m_appSpacerFrame->setFixedHeight(32);;
|
||||
|
||||
mverticalLayout->addWidget(mTitleLabel);
|
||||
mverticalLayout->addWidget(mProxyFrame);
|
||||
mverticalLayout->addSpacing(32);
|
||||
mverticalLayout->addWidget(m_sysSpacerFrame);
|
||||
mverticalLayout->addWidget(m_appProxyLabel);
|
||||
mverticalLayout->addWidget(m_appProxyFrame);
|
||||
mverticalLayout->addSpacing(4);
|
||||
mverticalLayout->addWidget(m_appListSpacerFrame);
|
||||
mverticalLayout->addWidget(m_appListFrame);
|
||||
mverticalLayout->addSpacing(32);
|
||||
mverticalLayout->addWidget(m_appSpacerFrame);
|
||||
mverticalLayout->addWidget(mAptProxyLabel);
|
||||
mverticalLayout->addWidget(mAPTFrame);
|
||||
mverticalLayout->addStretch();
|
||||
|
@ -464,8 +472,11 @@ void Proxy::retranslateUi()
|
|||
mSOCKSPortLabel->setText(tr("Port"));
|
||||
mIgnoreLabel->setText(tr("List of ignored hosts. more than one entry, please separate with english semicolon(;)"));
|
||||
|
||||
//~ contents_path /Proxy/Apt Proxy
|
||||
mAptProxyLabel->setText(tr("Apt Proxy"));
|
||||
//~ contents_path /Proxy/App Proxy
|
||||
tr("App Proxy");
|
||||
|
||||
//~ contents_path /Proxy/APT Proxy
|
||||
mAptProxyLabel->setText(tr("APT Proxy"));
|
||||
mAptLabel->setText(tr("Open"));
|
||||
mAPTHostLabel_1->setText(tr("Server Address : "));
|
||||
mAPTPortLabel_1->setText(tr("Port : "));
|
||||
|
@ -517,6 +528,7 @@ void Proxy::setupComponent(){
|
|||
|
||||
void Proxy::setupConnect(){
|
||||
connect(mEnableBtn, &KSwitchButton::stateChanged, this ,[=](bool checked) {
|
||||
UkccCommon::buriedSettings(QString("Proxy"), QString("System Proxy Open"), QString("settings"), checked?"true":"false");
|
||||
mSelectFrame->setVisible(checked);
|
||||
line_8->setVisible(checked);
|
||||
mAutoBtn->setChecked(checked);
|
||||
|
@ -530,9 +542,11 @@ void Proxy::setupConnect(){
|
|||
|
||||
connect(mProxyBtnGroup, QOverload<QAbstractButton *>::of(&QButtonGroup::buttonClicked), [=](QAbstractButton * eBtn){
|
||||
if (eBtn == mAutoBtn) {
|
||||
UkccCommon::buriedSettings(QString("Proxy"), QString("auto"), QString("clicked"));
|
||||
mManualBtn->setChecked(false);
|
||||
proxysettings->set(PROXY_MODE_KEY,"auto");
|
||||
} else if (eBtn == mManualBtn){
|
||||
UkccCommon::buriedSettings(QString("Proxy"), QString("manual"), QString("clicked"));
|
||||
mAutoBtn->setChecked(false);
|
||||
proxysettings->set(PROXY_MODE_KEY,"manual");
|
||||
}
|
||||
|
@ -557,6 +571,7 @@ void Proxy::setupConnect(){
|
|||
});
|
||||
|
||||
connect(mAptBtn , &KSwitchButton::stateChanged, this ,[=](bool checked){
|
||||
UkccCommon::buriedSettings(QString("Proxy"), QString("Apt Proxy Open"), QString("settings"), checked?"true":"false");
|
||||
if (checked) {
|
||||
emit mEditBtn->click();
|
||||
} else { // 关闭APT代理,删除对应的配置文件
|
||||
|
@ -567,7 +582,7 @@ void Proxy::setupConnect(){
|
|||
} else {
|
||||
QMessageBox *mReboot = new QMessageBox(pluginWidget->topLevelWidget());
|
||||
mReboot->setIcon(QMessageBox::Warning);
|
||||
mReboot->setText(tr("The apt proxy has been turned off and needs to be restarted to take effect"));
|
||||
mReboot->setText(tr("The APT proxy has been turned off and needs to be restarted to take effect"));
|
||||
QPushButton *laterbtn = mReboot->addButton(tr("Reboot Later"), QMessageBox::RejectRole);
|
||||
QPushButton *nowbtn = mReboot->addButton(tr("Reboot Now"), QMessageBox::AcceptRole);
|
||||
mReboot->exec();
|
||||
|
@ -716,13 +731,10 @@ void Proxy::initDbus()
|
|||
void Proxy::initAppProxyStatus()
|
||||
{
|
||||
bool state = getAppProxyState();
|
||||
m_appEnableBtn->setChecked(state);
|
||||
onappProxyEnableChanged(state);
|
||||
|
||||
appProxyInfoPadding();
|
||||
// m_cancelBtn->setEnabled(false);
|
||||
// m_saveBtn->setEnabled(false);
|
||||
appListPadding();
|
||||
m_appEnableBtn->setChecked(state);
|
||||
setAppProxyUiEnable(state);
|
||||
}
|
||||
|
||||
int Proxy::_getCurrentProxyMode(){
|
||||
|
@ -807,7 +819,7 @@ void Proxy::setAptInfo()
|
|||
{
|
||||
QMessageBox *mReboot = new QMessageBox(pluginWidget->topLevelWidget());
|
||||
mReboot->setIcon(QMessageBox::Warning);
|
||||
mReboot->setText(tr("The system needs to be restarted to set the Apt proxy, whether to reboot"));
|
||||
mReboot->setText(tr("The system needs to be restarted to set the APT proxy, whether to reboot"));
|
||||
QPushButton *laterbtn = mReboot->addButton(tr("Reboot Later"), QMessageBox::RejectRole);
|
||||
QPushButton *nowbtn = mReboot->addButton(tr("Reboot Now"), QMessageBox::AcceptRole);
|
||||
mReboot->exec();
|
||||
|
@ -967,6 +979,50 @@ QMap<QString, QStringList> Proxy::getAppListProxy()
|
|||
return appList;
|
||||
}
|
||||
|
||||
void Proxy::setUkccProxySettings()
|
||||
{
|
||||
setSystemProxyFrameHidden(false);
|
||||
setAppProxyFrameHidden(false);
|
||||
setAPTProxyFrameHidden(false);
|
||||
|
||||
QDBusInterface ukccDbusInterface("org.ukui.ukcc.session",
|
||||
"/",
|
||||
"org.ukui.ukcc.session.interface",
|
||||
QDBusConnection::sessionBus());
|
||||
|
||||
if(!ukccDbusInterface.isValid()) {
|
||||
qWarning() << "ukccDbusInterface is invalid";
|
||||
return;
|
||||
}
|
||||
|
||||
QDBusReply<QMap<QString, QVariant> > reply = ukccDbusInterface.call("getModuleHideStatus");
|
||||
if (!reply.isValid()) {
|
||||
qWarning() << "reply of getModuleHideStatus is invalid";
|
||||
return;
|
||||
}
|
||||
|
||||
QStringList proxySettingList;
|
||||
if (reply.value().contains("proxySettings")) {
|
||||
QString proxySettings = reply.value()["proxySettings"].toString();
|
||||
qDebug() << "proxySettings" << proxySettings;
|
||||
|
||||
if (proxySettings.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
proxySettingList = proxySettings.split(",");
|
||||
}
|
||||
|
||||
for (const QString setting : proxySettingList) {
|
||||
if (setting.contains("SystemProxyFrame") && setting.contains("false")) {
|
||||
setSystemProxyFrameHidden(true);
|
||||
} else if (setting.contains("AppProxyFrame") && setting.contains("false")) {
|
||||
setAppProxyFrameHidden(true);
|
||||
} else if (setting.contains("APTProxyFrame") && setting.contains("false")) {
|
||||
setAPTProxyFrameHidden(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
bool Proxy::checkIsChanged(QStringList info)
|
||||
{
|
||||
|
@ -1130,22 +1186,32 @@ void Proxy::setAppProxyFrameUi(QWidget *widget)
|
|||
m_appLine4 = setLine(m_appProxyFrame);
|
||||
m_appLine5 = setLine(m_appProxyFrame);
|
||||
|
||||
m_appProxyInfoWidget = new QWidget(m_appProxyFrame);
|
||||
QVBoxLayout *widgetHLayout = new QVBoxLayout(m_appProxyInfoWidget);
|
||||
widgetHLayout->setContentsMargins(0, 0, 0, 0);
|
||||
widgetHLayout->setSpacing(0);
|
||||
widgetHLayout->addWidget(m_appLine1);
|
||||
widgetHLayout->addWidget(m_proxyTypeFrame);
|
||||
widgetHLayout->addWidget(m_appLine2);
|
||||
widgetHLayout->addWidget(m_ipAddressFrame);
|
||||
widgetHLayout->addWidget(m_appLine3);
|
||||
widgetHLayout->addWidget(m_portFrame);
|
||||
widgetHLayout->addWidget(m_appLine4);
|
||||
widgetHLayout->addWidget(m_userNameFrame);
|
||||
widgetHLayout->addWidget(m_appLine5);
|
||||
widgetHLayout->addWidget(m_pwdFrame);
|
||||
|
||||
appProxyLayout->addWidget(m_appEnableFrame);
|
||||
appProxyLayout->addWidget(m_appLine1);
|
||||
appProxyLayout->addWidget(m_proxyTypeFrame);
|
||||
appProxyLayout->addWidget(m_appLine2);
|
||||
appProxyLayout->addWidget(m_ipAddressFrame);
|
||||
appProxyLayout->addWidget(m_appLine3);
|
||||
appProxyLayout->addWidget(m_portFrame);
|
||||
appProxyLayout->addWidget(m_appLine4);
|
||||
appProxyLayout->addWidget(m_userNameFrame);
|
||||
appProxyLayout->addWidget(m_appLine5);
|
||||
appProxyLayout->addWidget(m_pwdFrame);
|
||||
appProxyLayout->addWidget(m_appProxyInfoWidget);
|
||||
|
||||
// appProxyLayout->addWidget(line5);
|
||||
// appProxyLayout->addWidget(m_appBtnFrame);
|
||||
|
||||
connect(m_appEnableBtn, &KSwitchButton::stateChanged, this, &Proxy::onappProxyEnableChanged);
|
||||
connect(m_appEnableBtn, &KSwitchButton::stateChanged, this, &Proxy::setAppProxyUiEnable);
|
||||
connect(m_appEnableBtn, &KSwitchButton::stateChanged, this, &Proxy::setAppProxyState);
|
||||
connect(m_appEnableBtn, &KSwitchButton::stateChanged, [=](bool checked) {
|
||||
UkccCommon::buriedSettings(QString("Proxy"), QString("App Proxy Open"), QString("settings"), checked?"true":"false");
|
||||
});
|
||||
connect(m_proxyTypeComboBox, SIGNAL(currentTextChanged(QString)), this, SLOT(onAppProxyConfChanged()));
|
||||
connect(m_ipAddressLineEdit, SIGNAL(textChanged(QString)), this, SLOT(onipEditStateChanged()));
|
||||
connect(m_ipAddressLineEdit, SIGNAL(textChanged(QString)), this, SLOT(onAppProxyConfChanged()));
|
||||
|
@ -1180,6 +1246,7 @@ void Proxy::setAppListFrameUi(QWidget *widget)
|
|||
m_appListWidget->setMinimumHeight(240);
|
||||
m_appListWidget->setFocusPolicy(Qt::FocusPolicy::NoFocus);
|
||||
m_appListWidget->setFrameShape(QFrame::Shape::Panel);
|
||||
m_appListWidget->setVerticalScrollMode(QAbstractItemView::ScrollMode::ScrollPerPixel);
|
||||
|
||||
appListLayout->addWidget(m_allowAppProxyLabel);
|
||||
appListLayout->addWidget(m_appListWidget);
|
||||
|
@ -1223,7 +1290,7 @@ void Proxy::appListPadding()
|
|||
|
||||
AppListWidget *appWidget = new AppListWidget(index, m_appListWidget);
|
||||
appWidget->setAppName(appInfo.value(0));
|
||||
appWidget->setAppIcon(QIcon::fromTheme(appInfo.value(1)).pixmap(24, 24));
|
||||
appWidget->setAppIcon(QIcon::fromTheme(appInfo.value(1)));
|
||||
appWidget->setAppChecked(flag);
|
||||
|
||||
QListWidgetItem *appListWidgetItem = new QListWidgetItem(m_appListWidget);
|
||||
|
@ -1247,6 +1314,32 @@ bool Proxy::getipEditState(QString text)
|
|||
return match;
|
||||
}
|
||||
|
||||
void Proxy::setSystemProxyFrameHidden(bool state)
|
||||
{
|
||||
mTitleLabel->setHidden(state);
|
||||
mProxyFrame->setHidden(state);
|
||||
m_sysSpacerFrame->setHidden(state);
|
||||
}
|
||||
|
||||
void Proxy::setAppProxyFrameHidden(bool state)
|
||||
{
|
||||
m_appProxyLabel->setHidden(state);
|
||||
m_appProxyFrame->setHidden(state);
|
||||
if (state) {
|
||||
m_appListFrame->setHidden(state);
|
||||
} else {
|
||||
m_appListFrame->setHidden(!m_appEnableBtn->isChecked());
|
||||
}
|
||||
m_appListSpacerFrame->setHidden(state);
|
||||
m_appSpacerFrame->setHidden(state);
|
||||
}
|
||||
|
||||
void Proxy::setAPTProxyFrameHidden(bool state)
|
||||
{
|
||||
mAptProxyLabel->setHidden(state);
|
||||
mAPTFrame->setHidden(state);
|
||||
}
|
||||
|
||||
void Proxy::onipEditStateChanged()
|
||||
{
|
||||
if (!getipEditState(m_ipAddressLineEdit->text())) {
|
||||
|
@ -1298,19 +1391,15 @@ void Proxy::onPaletteChanged()
|
|||
m_appListWidget->setPalette(mpal);
|
||||
}
|
||||
|
||||
void Proxy::onappProxyEnableChanged(bool enable)
|
||||
void Proxy::setAppProxyUiEnable(bool enable)
|
||||
{
|
||||
m_proxyTypeFrame->setVisible(enable);
|
||||
m_ipAddressFrame->setVisible(enable);
|
||||
m_portFrame->setVisible(enable);
|
||||
m_userNameFrame->setVisible(enable);
|
||||
m_pwdFrame->setVisible(enable);
|
||||
m_appListFrame->setVisible(enable);
|
||||
m_appLine1->setVisible(enable);
|
||||
m_appLine2->setVisible(enable);
|
||||
m_appLine3->setVisible(enable);
|
||||
m_appLine4->setVisible(enable);
|
||||
m_appLine5->setVisible(enable);
|
||||
if (enable) {
|
||||
m_appProxyInfoWidget->show();
|
||||
m_appListFrame->show();
|
||||
} else {
|
||||
m_appProxyInfoWidget->hide();
|
||||
m_appListFrame->hide();
|
||||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
|
|
|
@ -52,8 +52,10 @@
|
|||
|
||||
#include "kswitchbutton.h"
|
||||
#include "kpasswordedit.h"
|
||||
#include "ukcccommon.h"
|
||||
|
||||
using namespace kdk;
|
||||
using namespace ukcc;
|
||||
|
||||
/* qt会将glib里的signals成员识别为宏,所以取消该宏
|
||||
* 后面如果用到signals时,使用Q_SIGNALS代替即可
|
||||
|
@ -136,13 +138,20 @@ public:
|
|||
void setAppProxyConf(QStringList list); //设置应用代理配置信息--调用Dbus
|
||||
static QMap<QString, QStringList> getAppListProxy();
|
||||
// bool checkIsChanged(QStringList info);
|
||||
|
||||
void setUkccProxySettings(); // 设置控制面板代理模块显示/隐藏
|
||||
private:
|
||||
void setAppProxyFrameUi(QWidget *widget);
|
||||
void setAppListFrameUi(QWidget *widget);
|
||||
void appProxyInfoPadding();
|
||||
void appListPadding();
|
||||
bool getipEditState(QString text);
|
||||
void setSystemProxyFrameHidden(bool state);
|
||||
void setAppProxyFrameHidden(bool state);
|
||||
void setAPTProxyFrameHidden(bool state);
|
||||
|
||||
QFrame *m_sysSpacerFrame;
|
||||
QFrame *m_appListSpacerFrame;
|
||||
QFrame *m_appSpacerFrame;
|
||||
|
||||
QString pluginName;
|
||||
int pluginType;
|
||||
|
@ -250,6 +259,7 @@ private:
|
|||
// QPushButton *m_cancelBtn;
|
||||
// QPushButton *m_saveBtn;
|
||||
QListWidget *m_appListWidget = nullptr;
|
||||
QWidget *m_appProxyInfoWidget;
|
||||
|
||||
QTextEdit *mIgnoreLineEdit;
|
||||
|
||||
|
@ -274,7 +284,7 @@ private:
|
|||
|
||||
private slots:
|
||||
void setAptProxySlot(); //处理apt代理前端交互逻辑
|
||||
void onappProxyEnableChanged(bool enable); //IP地址无效提示
|
||||
void setAppProxyUiEnable(bool enable);
|
||||
void onipEditStateChanged(); //IP地址无效提示
|
||||
void onAppProxyConfChanged(); //应用代理配置信息变化
|
||||
void onAppProxyConfEditFinished();
|
||||
|
|
|
@ -7,6 +7,11 @@ CONFIG += plugin
|
|||
|
||||
TARGET = $$qtLibraryTarget(proxy)
|
||||
DESTDIR = ../..
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
!system($$PWD/translate_generation.sh): error("Failed to generate translation")
|
||||
}
|
||||
|
||||
target.path = $$[QT_INSTALL_LIBS]/ukui-control-center
|
||||
trans.files = translations/*
|
||||
trans.path = /usr/share/kylin-nm/proxy/
|
||||
|
@ -49,4 +54,9 @@ INSTALLS += target \
|
|||
TRANSLATIONS += \
|
||||
translations/zh_CN.ts \
|
||||
translations/tr.ts \
|
||||
translations/bo_CN.ts
|
||||
translations/bo_CN.ts \
|
||||
translations/en_US.ts \
|
||||
translations/mn.ts
|
||||
|
||||
DISTFILES += \
|
||||
translations/en_US.ts
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
ts_list=(`ls translations/*.ts`)
|
||||
source /etc/os-release
|
||||
version=(`echo $ID`)
|
||||
|
||||
for ts in "${ts_list[@]}"
|
||||
do
|
||||
printf "\nprocess ${ts}\n"
|
||||
if [ "$version" == "fedora" ] || [ "$version" == "opensuse-leap" ] || [ "$version" == "opensuse-tumbleweed" ];then
|
||||
lrelease-qt5 "${ts}"
|
||||
else
|
||||
lrelease "${ts}"
|
||||
fi
|
||||
done
|
Binary file not shown.
|
@ -5,8 +5,8 @@
|
|||
<name>AptProxyDialog</name>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="24"/>
|
||||
<source>Set Apt Proxy</source>
|
||||
<translation>Apt ངོ་ཚབ་ བཙུགས་པ།</translation>
|
||||
<source>Set APT Proxy</source>
|
||||
<translation>APT ངོ་ཚབ་ བཙུགས་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="41"/>
|
||||
|
@ -37,130 +37,136 @@
|
|||
<translation>ཚབ་བྱེད་མི་སྣ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="194"/>
|
||||
<location filename="../proxy.cpp" line="200"/>
|
||||
<source>Start using</source>
|
||||
<translation>བཀོལ་སྤྱོད་བྱེད་འགོ་ཚུགས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="207"/>
|
||||
<location filename="../proxy.cpp" line="213"/>
|
||||
<source>Proxy mode</source>
|
||||
<translation>ཚབ་བྱེད་དཔེ་དབྱིབས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="211"/>
|
||||
<location filename="../proxy.cpp" line="217"/>
|
||||
<source>Auto</source>
|
||||
<translation>རང་འགུལ་གྱིས་རླངས་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="214"/>
|
||||
<location filename="../proxy.cpp" line="220"/>
|
||||
<source>Manual</source>
|
||||
<translation>ལག་དེབ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="369"/>
|
||||
<location filename="../proxy.cpp" line="375"/>
|
||||
<source>Application Proxy</source>
|
||||
<translation>ཉེར་སྤྱོད་ངོ་ཚབ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="444"/>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<source>System Proxy</source>
|
||||
<translation>མ་ལག་གི་ཚབ་བྱེད་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="446"/>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<source>Auto url</source>
|
||||
<translation>རླངས་འཁོར་གྱི་དྲ་ཚིགས།</translation>
|
||||
<extra-contents_path>/Proxy/Auto url</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="448"/>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<source>Http Proxy</source>
|
||||
<translation>HTTP ཚབ་བྱེད་མི་སྣ།</translation>
|
||||
<extra-contents_path>/Proxy/Http Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<source>Https Proxy</source>
|
||||
<translation>HTTPS ཚབ་བྱེད་མི་སྣ།</translation>
|
||||
<extra-contents_path>/Proxy/Https Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<source>Ftp Proxy</source>
|
||||
<translation>FTP ཚབ་བྱེད་མི་སྣ།</translation>
|
||||
<extra-contents_path>/Proxy/Ftp Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<location filename="../proxy.cpp" line="460"/>
|
||||
<source>Socks Proxy</source>
|
||||
<translation>SOCKS ཚབ་བྱེད་མི་སྣ།</translation>
|
||||
<extra-contents_path>/Proxy/Socks Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="455"/>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<location filename="../proxy.cpp" line="457"/>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<location filename="../proxy.cpp" line="1047"/>
|
||||
<location filename="../proxy.cpp" line="461"/>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="1068"/>
|
||||
<source>Port</source>
|
||||
<translation>གྲུ་ཁ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="459"/>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<source>List of ignored hosts. more than one entry, please separate with english semicolon(;)</source>
|
||||
<translation>སྣང་མེད་དུ་བཞག་པའི་བདག་པོའི་མིང་ཐོ། འཇུག་སྒོ་གཅིག་ལས་བརྒལ་ན་དབྱིན་ཡིག་གི་ཕྱེད་ཀ་དང་ཁ་གྱེས་རོགས། (;)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<source>Apt Proxy</source>
|
||||
<translation>APT ཚབ་བྱེད་མི་སྣ།</translation>
|
||||
<extra-contents_path>/Proxy/Apt Proxy</extra-contents_path>
|
||||
<location filename="../proxy.cpp" line="468"/>
|
||||
<source>App Proxy</source>
|
||||
<translation>ཉེར་སྤྱོད་ངོ་ཚབ།</translation>
|
||||
<extra-contents_path>/Proxy/App Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="984"/>
|
||||
<location filename="../proxy.cpp" line="471"/>
|
||||
<source>APT Proxy</source>
|
||||
<translation>APT ཚབ་བྱེད་མི་སྣ།</translation>
|
||||
<extra-contents_path>/Proxy/APT Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="472"/>
|
||||
<location filename="../proxy.cpp" line="1005"/>
|
||||
<source>Open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="473"/>
|
||||
<source>Server Address : </source>
|
||||
<translation>ཞབས་ཞུའི་ཡོ་བྱད་ཀྱི་གནས་ཡུལ </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<location filename="../proxy.cpp" line="474"/>
|
||||
<source>Port : </source>
|
||||
<translation>གྲུ་ཁ། </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="466"/>
|
||||
<location filename="../proxy.cpp" line="475"/>
|
||||
<source>Edit</source>
|
||||
<translation>རྩོམ་སྒྲིག</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="564"/>
|
||||
<source>The apt proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<location filename="../proxy.cpp" line="573"/>
|
||||
<source>The APT proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<translation>ངོ་ཚབ་ཀྱི་སྒོ་བརྒྱབ་ཟིན་པས་ཡང་བསྐྱར་ནུས་པ་ཐོན་པར་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="565"/>
|
||||
<location filename="../proxy.cpp" line="797"/>
|
||||
<location filename="../proxy.cpp" line="574"/>
|
||||
<location filename="../proxy.cpp" line="814"/>
|
||||
<source>Reboot Later</source>
|
||||
<translation>རྗེས་སུ་ཡང་བསྐྱར་ཐེངས་གཅིག་ལ་བསྐྱར་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="566"/>
|
||||
<location filename="../proxy.cpp" line="798"/>
|
||||
<location filename="../proxy.cpp" line="575"/>
|
||||
<location filename="../proxy.cpp" line="815"/>
|
||||
<source>Reboot Now</source>
|
||||
<translation>ད་ལྟ་བསྐྱར་དུ་ལས་ཀ་བྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="796"/>
|
||||
<source>The system needs to be restarted to set the Apt proxy, whether to reboot</source>
|
||||
<translation>མ་ལག་འདི་བསྐྱར་དུ་འགོ་ཚུགས་ནས་Aptཡི་ཚབ་བྱེད་འཕྲུལ་ཆས་གཏན་འཁེལ་བྱེད་དགོས་པ་དང་། བསྐྱར་དུ་འགོ་འཛུགས་དགོས་མིན་</translation>
|
||||
<location filename="../proxy.cpp" line="813"/>
|
||||
<source>The system needs to be restarted to set the APT proxy, whether to reboot</source>
|
||||
<translation>མ་ལག་འདི་བསྐྱར་དུ་འགོ་ཚུགས་ནས་APT ཡི་ཚབ་བྱེད་འཕྲུལ་ཆས་གཏན་འཁེལ་བྱེད་དགོས་པ་དང་། བསྐྱར་དུ་འགོ་འཛུགས་དགོས་མིན་</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="996"/>
|
||||
<location filename="../proxy.cpp" line="1017"/>
|
||||
<source>Proxy type</source>
|
||||
<translation>ངོ་ཚབ་ཀྱི་རིགས་དབྱིབས།</translation>
|
||||
</message>
|
||||
|
@ -177,49 +183,49 @@
|
|||
<translation type="vanished">རྐང་འབོབ་5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1013"/>
|
||||
<location filename="../proxy.cpp" line="1034"/>
|
||||
<source>IP address</source>
|
||||
<translation>IPས་གནས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1019"/>
|
||||
<location filename="../proxy.cpp" line="1050"/>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1071"/>
|
||||
<source>Required</source>
|
||||
<translation>བླང་བྱ་བཏོན་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<source>Invalid IP Address</source>
|
||||
<translation>གོ་མི་ཆོད་པའི་IPས་གནས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<location filename="../proxy.cpp" line="1082"/>
|
||||
<source>Username</source>
|
||||
<translation>སྤྱོད་མཁན་གྱི་མིང་།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1064"/>
|
||||
<location filename="../proxy.cpp" line="1078"/>
|
||||
<location filename="../proxy.cpp" line="1085"/>
|
||||
<location filename="../proxy.cpp" line="1099"/>
|
||||
<source>Optional</source>
|
||||
<translation>བསལ་འདེམས་ཀྱི་རང་བཞིན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1074"/>
|
||||
<location filename="../proxy.cpp" line="1095"/>
|
||||
<source>Password</source>
|
||||
<translation>གསང་གྲངས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1097"/>
|
||||
<location filename="../proxy.cpp" line="1118"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ཕྱིར་འཐེན།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1098"/>
|
||||
<location filename="../proxy.cpp" line="1119"/>
|
||||
<source>Save</source>
|
||||
<translation>གྲོན་ཆུང་བྱེད་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1160"/>
|
||||
<location filename="../proxy.cpp" line="1181"/>
|
||||
<source>The following applications are allowed to use this configuration:</source>
|
||||
<translation>གཤམ་གྱི་ཉེར་སྤྱོད་གོ་རིམ་ཁྲོད་དུ་བཀོད་སྒྲིག་འདི་བཀོལ་ཆོག་པ་སྟེ།</translation>
|
||||
</message>
|
||||
|
|
|
@ -0,0 +1,221 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1">
|
||||
<context>
|
||||
<name>AptProxyDialog</name>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="24"/>
|
||||
<source>Set APT Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="41"/>
|
||||
<source>Server Address</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="59"/>
|
||||
<source>Port</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="80"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="84"/>
|
||||
<source>Confirm</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Proxy</name>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="63"/>
|
||||
<source>Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="200"/>
|
||||
<source>Start using</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="213"/>
|
||||
<source>Proxy mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="217"/>
|
||||
<source>Auto</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="220"/>
|
||||
<source>Manual</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="375"/>
|
||||
<source>Application Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<source>System Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<source>Auto url</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Auto url</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<source>Http Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Http Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<source>Https Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Https Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<source>Ftp Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Ftp Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="460"/>
|
||||
<source>Socks Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Socks Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="461"/>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="1068"/>
|
||||
<source>Port</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<source>List of ignored hosts. more than one entry, please separate with english semicolon(;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="468"/>
|
||||
<source>App Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/App Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="471"/>
|
||||
<source>APT Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/APT Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="472"/>
|
||||
<location filename="../proxy.cpp" line="1005"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="473"/>
|
||||
<source>Server Address : </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="474"/>
|
||||
<source>Port : </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="475"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="573"/>
|
||||
<source>The APT proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="574"/>
|
||||
<location filename="../proxy.cpp" line="814"/>
|
||||
<source>Reboot Later</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="575"/>
|
||||
<location filename="../proxy.cpp" line="815"/>
|
||||
<source>Reboot Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="813"/>
|
||||
<source>The system needs to be restarted to set the APT proxy, whether to reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1017"/>
|
||||
<source>Proxy type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1034"/>
|
||||
<source>IP address</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1071"/>
|
||||
<source>Required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<source>Invalid IP Address</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1082"/>
|
||||
<source>Username</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1085"/>
|
||||
<location filename="../proxy.cpp" line="1099"/>
|
||||
<source>Optional</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1095"/>
|
||||
<source>Password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1118"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1119"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1181"/>
|
||||
<source>The following applications are allowed to use this configuration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -0,0 +1,221 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="mn">
|
||||
<context>
|
||||
<name>AptProxyDialog</name>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="24"/>
|
||||
<source>Set APT Proxy</source>
|
||||
<translation>APT ᠤᠷᠤᠯᠠᠭᠴᠢ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="41"/>
|
||||
<source>Server Address</source>
|
||||
<translation>ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ ᠤ᠋ᠨ ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="59"/>
|
||||
<source>Port</source>
|
||||
<translation>ᠦᠵᠦᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="80"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ᠦᠬᠡᠢᠰᠬᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="84"/>
|
||||
<source>Confirm</source>
|
||||
<translation>ᠪᠠᠳᠤᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Proxy</name>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="63"/>
|
||||
<source>Proxy</source>
|
||||
<translation>ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="200"/>
|
||||
<source>Start using</source>
|
||||
<translation>ᠡᠬᠢᠯᠡᠬᠦᠯᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="213"/>
|
||||
<source>Proxy mode</source>
|
||||
<translation>ᠤᠷᠤᠯᠠᠭᠴᠢ ᠵᠢᠨ ᠳᠦᠷᠦᠯ ᠵᠦᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="217"/>
|
||||
<source>Auto</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="220"/>
|
||||
<source>Manual</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋ ᠪᠤᠰᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="375"/>
|
||||
<source>Application Proxy</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠯᠡᠭᠡᠨ ᠤ᠋ ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<source>System Proxy</source>
|
||||
<translation>ᠰᠢᠰᠲ᠋ᠧᠮ ᠤ᠋ᠨ ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<source>Auto url</source>
|
||||
<translation>URL ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
<extra-contents_path>/Proxy/Auto url</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<source>Http Proxy</source>
|
||||
<translation>HTTP ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
<extra-contents_path>/Proxy/Http Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<source>Https Proxy</source>
|
||||
<translation>HTTPS ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
<extra-contents_path>/Proxy/Https Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<source>Ftp Proxy</source>
|
||||
<translation>FTP ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
<extra-contents_path>/Proxy/Ftp Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="460"/>
|
||||
<source>Socks Proxy</source>
|
||||
<translation>SOCKS ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
<extra-contents_path>/Proxy/Socks Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="461"/>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="1068"/>
|
||||
<source>Port</source>
|
||||
<translation>ᠦᠵᠦᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<source>List of ignored hosts. more than one entry, please separate with english semicolon(;)</source>
|
||||
<translation>ᠤᠮᠳᠤᠭᠠᠢᠯᠠᠭᠰᠠᠨ ᠭᠤᠤᠯ ᠮᠠᠰᠢᠨ ᠤ᠋ ᠵᠢᠭᠰᠠᠭᠠᠯᠳᠠ᠂ ᠠᠩᠭ᠌ᠯᠢ ᠬᠡᠯᠡᠨ ᠤ᠋ ᠵᠠᠭᠠᠭᠯᠠᠬᠤ ᠳᠡᠮᠳᠡᠭ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠡᠷᠡᠢ (;)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="468"/>
|
||||
<source>App Proxy</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠯᠡᠭᠡᠨ ᠤ᠋ ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
<extra-contents_path>/Proxy/App Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="471"/>
|
||||
<source>APT Proxy</source>
|
||||
<translation>APT ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
<extra-contents_path>/Proxy/APT Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="472"/>
|
||||
<location filename="../proxy.cpp" line="1005"/>
|
||||
<source>Open</source>
|
||||
<translation>ᠨᠡᠬᠡᠬᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="473"/>
|
||||
<source>Server Address : </source>
|
||||
<translation>ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ ᠤ᠋ᠨ ᠬᠠᠶᠢᠭ: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="474"/>
|
||||
<source>Port : </source>
|
||||
<translation>ᠫᠤᠷᠲ : </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="475"/>
|
||||
<source>Edit</source>
|
||||
<translation>ᠨᠠᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="573"/>
|
||||
<source>The APT proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<translation>APT ᠤᠷᠤᠯᠠᠭᠴᠢ ᠬᠠᠭᠠᠭᠳᠠᠪᠠ᠂ ᠳᠠᠬᠢᠵᠤ ᠨᠡᠬᠡᠬᠡᠭᠰᠡᠨ ᠤ᠋ ᠳᠠᠷᠠᠭᠠ ᠰᠠᠶᠢ ᠬᠦᠴᠦᠨ ᠲᠠᠢ ᠪᠤᠯᠤᠨᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="574"/>
|
||||
<location filename="../proxy.cpp" line="814"/>
|
||||
<source>Reboot Later</source>
|
||||
<translation>ᠤᠳᠠᠰᠬᠢᠭᠠᠳ ᠳᠠᠬᠢᠨ ᠡᠬᠢᠯᠡᠬᠦᠯᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="575"/>
|
||||
<location filename="../proxy.cpp" line="815"/>
|
||||
<source>Reboot Now</source>
|
||||
<translation>ᠳᠠᠷᠤᠢ ᠳᠠᠬᠢᠨ ᠡᠬᠢᠯᠡᠬᠦᠯᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="813"/>
|
||||
<source>The system needs to be restarted to set the APT proxy, whether to reboot</source>
|
||||
<translation>ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠤᠭᠰᠠᠨ APT ᠤᠷᠤᠯᠠᠭᠴᠢ ᠰᠢᠰᠲ᠋ᠧᠮ ᠢ᠋ ᠳᠠᠬᠢᠨ ᠡᠬᠢᠯᠡᠬᠦᠯᠦᠭᠰᠡᠨ ᠤ᠋ ᠳᠠᠷᠠᠭᠠ ᠰᠠᠶᠢ ᠬᠦᠴᠦᠨ ᠲᠠᠢ ᠪᠤᠯᠤᠨᠠ᠂ ᠰᠢᠰᠲ᠋ᠧᠮ ᠢ᠋ ᠳᠠᠬᠢᠨ ᠡᠬᠢᠯᠡᠬᠦᠯᠬᠦ ᠤᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1017"/>
|
||||
<source>Proxy type</source>
|
||||
<translation>ᠤᠷᠤᠯᠠᠭᠴᠢ ᠵᠢᠨ ᠳᠦᠷᠦᠯ ᠵᠦᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1034"/>
|
||||
<source>IP address</source>
|
||||
<translation>IP ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1071"/>
|
||||
<source>Required</source>
|
||||
<translation>ᠡᠷᠬᠡᠪᠰᠢ ᠳᠠᠭᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<source>Invalid IP Address</source>
|
||||
<translation>ᠬᠦᠴᠦᠨ ᠦᠭᠡᠢ IP ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1082"/>
|
||||
<source>Username</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠨᠡᠷᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1085"/>
|
||||
<location filename="../proxy.cpp" line="1099"/>
|
||||
<source>Optional</source>
|
||||
<translation>ᠰᠤᠩᠭᠤᠵᠤ ᠳᠠᠭᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1095"/>
|
||||
<source>Password</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1118"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ᠦᠬᠡᠢᠰᠬᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1119"/>
|
||||
<source>Save</source>
|
||||
<translation>ᠬᠠᠳᠠᠭᠠᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1181"/>
|
||||
<source>The following applications are allowed to use this configuration:</source>
|
||||
<translation>ᠳᠤᠤᠷᠠᠬᠢ ᠬᠡᠷᠡᠭᠯᠡᠭᠡ ᠲᠤᠰ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ ᠵᠢ ᠵᠦᠪᠰᠢᠶᠡᠷᠡᠨᠡ:</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -5,7 +5,7 @@
|
|||
<name>AptProxyDialog</name>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="24"/>
|
||||
<source>Set Apt Proxy</source>
|
||||
<source>Set APT Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -37,177 +37,183 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="194"/>
|
||||
<location filename="../proxy.cpp" line="200"/>
|
||||
<source>Start using</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="207"/>
|
||||
<location filename="../proxy.cpp" line="213"/>
|
||||
<source>Proxy mode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="211"/>
|
||||
<location filename="../proxy.cpp" line="217"/>
|
||||
<source>Auto</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="214"/>
|
||||
<location filename="../proxy.cpp" line="220"/>
|
||||
<source>Manual</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="369"/>
|
||||
<location filename="../proxy.cpp" line="375"/>
|
||||
<source>Application Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="444"/>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<source>System Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="446"/>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<source>Auto url</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Auto url</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="448"/>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<source>Http Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Http Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<source>Https Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Https Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<source>Ftp Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Ftp Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<location filename="../proxy.cpp" line="460"/>
|
||||
<source>Socks Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Socks Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="455"/>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<location filename="../proxy.cpp" line="457"/>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<location filename="../proxy.cpp" line="1047"/>
|
||||
<location filename="../proxy.cpp" line="461"/>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="1068"/>
|
||||
<source>Port</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="459"/>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<source>List of ignored hosts. more than one entry, please separate with english semicolon(;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<source>Apt Proxy</source>
|
||||
<location filename="../proxy.cpp" line="468"/>
|
||||
<source>App Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/Apt Proxy</extra-contents_path>
|
||||
<extra-contents_path>/Proxy/App Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="984"/>
|
||||
<location filename="../proxy.cpp" line="471"/>
|
||||
<source>APT Proxy</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Proxy/APT Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="472"/>
|
||||
<location filename="../proxy.cpp" line="1005"/>
|
||||
<source>Open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="473"/>
|
||||
<source>Server Address : </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<location filename="../proxy.cpp" line="474"/>
|
||||
<source>Port : </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="466"/>
|
||||
<location filename="../proxy.cpp" line="475"/>
|
||||
<source>Edit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="564"/>
|
||||
<source>The apt proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<location filename="../proxy.cpp" line="573"/>
|
||||
<source>The APT proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="565"/>
|
||||
<location filename="../proxy.cpp" line="797"/>
|
||||
<location filename="../proxy.cpp" line="574"/>
|
||||
<location filename="../proxy.cpp" line="814"/>
|
||||
<source>Reboot Later</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="566"/>
|
||||
<location filename="../proxy.cpp" line="798"/>
|
||||
<location filename="../proxy.cpp" line="575"/>
|
||||
<location filename="../proxy.cpp" line="815"/>
|
||||
<source>Reboot Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="796"/>
|
||||
<source>The system needs to be restarted to set the Apt proxy, whether to reboot</source>
|
||||
<location filename="../proxy.cpp" line="813"/>
|
||||
<source>The system needs to be restarted to set the APT proxy, whether to reboot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="996"/>
|
||||
<location filename="../proxy.cpp" line="1017"/>
|
||||
<source>Proxy type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1013"/>
|
||||
<location filename="../proxy.cpp" line="1034"/>
|
||||
<source>IP address</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1019"/>
|
||||
<location filename="../proxy.cpp" line="1050"/>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1071"/>
|
||||
<source>Required</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<source>Invalid IP Address</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<location filename="../proxy.cpp" line="1082"/>
|
||||
<source>Username</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1064"/>
|
||||
<location filename="../proxy.cpp" line="1078"/>
|
||||
<location filename="../proxy.cpp" line="1085"/>
|
||||
<location filename="../proxy.cpp" line="1099"/>
|
||||
<source>Optional</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1074"/>
|
||||
<location filename="../proxy.cpp" line="1095"/>
|
||||
<source>Password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1097"/>
|
||||
<location filename="../proxy.cpp" line="1118"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1098"/>
|
||||
<location filename="../proxy.cpp" line="1119"/>
|
||||
<source>Save</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1160"/>
|
||||
<location filename="../proxy.cpp" line="1181"/>
|
||||
<source>The following applications are allowed to use this configuration:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -5,8 +5,8 @@
|
|||
<name>AptProxyDialog</name>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="24"/>
|
||||
<source>Set Apt Proxy</source>
|
||||
<translation>设置APT代理</translation>
|
||||
<source>Set APT Proxy</source>
|
||||
<translation>设置 APT 代理</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../aptproxydialog.cpp" line="41"/>
|
||||
|
@ -37,177 +37,183 @@
|
|||
<translation>代理</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="194"/>
|
||||
<location filename="../proxy.cpp" line="200"/>
|
||||
<source>Start using</source>
|
||||
<translation>启用</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="207"/>
|
||||
<location filename="../proxy.cpp" line="213"/>
|
||||
<source>Proxy mode</source>
|
||||
<translation>代理类型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="211"/>
|
||||
<location filename="../proxy.cpp" line="217"/>
|
||||
<source>Auto</source>
|
||||
<translation>自动</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="214"/>
|
||||
<location filename="../proxy.cpp" line="220"/>
|
||||
<source>Manual</source>
|
||||
<translation>手动</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="369"/>
|
||||
<location filename="../proxy.cpp" line="375"/>
|
||||
<source>Application Proxy</source>
|
||||
<translation>应用代理</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="444"/>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<source>System Proxy</source>
|
||||
<translation>系统代理</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="446"/>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<source>Auto url</source>
|
||||
<translation>配置URL</translation>
|
||||
<translation>配置 URL</translation>
|
||||
<extra-contents_path>/Proxy/Auto url</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="448"/>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<source>Http Proxy</source>
|
||||
<translation>HTTP代理</translation>
|
||||
<translation>HTTP 代理</translation>
|
||||
<extra-contents_path>/Proxy/Http Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="450"/>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<source>Https Proxy</source>
|
||||
<translation>HTTPS代理</translation>
|
||||
<translation>HTTPS 代理</translation>
|
||||
<extra-contents_path>/Proxy/Https Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="452"/>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<source>Ftp Proxy</source>
|
||||
<translation>FTP代理</translation>
|
||||
<translation>FTP 代理</translation>
|
||||
<extra-contents_path>/Proxy/Ftp Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="454"/>
|
||||
<location filename="../proxy.cpp" line="460"/>
|
||||
<source>Socks Proxy</source>
|
||||
<translation>SOCKS代理</translation>
|
||||
<translation>SOCKS 代理</translation>
|
||||
<extra-contents_path>/Proxy/Socks Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="455"/>
|
||||
<location filename="../proxy.cpp" line="456"/>
|
||||
<location filename="../proxy.cpp" line="457"/>
|
||||
<location filename="../proxy.cpp" line="458"/>
|
||||
<location filename="../proxy.cpp" line="1047"/>
|
||||
<location filename="../proxy.cpp" line="461"/>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="1068"/>
|
||||
<source>Port</source>
|
||||
<translation>端口</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="459"/>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<source>List of ignored hosts. more than one entry, please separate with english semicolon(;)</source>
|
||||
<translation>忽略的主机列表,请使用英文分号(;)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="462"/>
|
||||
<source>Apt Proxy</source>
|
||||
<translation>APT代理</translation>
|
||||
<extra-contents_path>/Proxy/Apt Proxy</extra-contents_path>
|
||||
<location filename="../proxy.cpp" line="468"/>
|
||||
<source>App Proxy</source>
|
||||
<translation>应用代理</translation>
|
||||
<extra-contents_path>/Proxy/App Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="463"/>
|
||||
<location filename="../proxy.cpp" line="984"/>
|
||||
<location filename="../proxy.cpp" line="471"/>
|
||||
<source>APT Proxy</source>
|
||||
<translation>APT 代理</translation>
|
||||
<extra-contents_path>/Proxy/APT Proxy</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="472"/>
|
||||
<location filename="../proxy.cpp" line="1005"/>
|
||||
<source>Open</source>
|
||||
<translation>开启</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="464"/>
|
||||
<location filename="../proxy.cpp" line="473"/>
|
||||
<source>Server Address : </source>
|
||||
<translation>服务器地址: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="465"/>
|
||||
<location filename="../proxy.cpp" line="474"/>
|
||||
<source>Port : </source>
|
||||
<translation>端口: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="466"/>
|
||||
<location filename="../proxy.cpp" line="475"/>
|
||||
<source>Edit</source>
|
||||
<translation>编辑</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="564"/>
|
||||
<source>The apt proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<translation>APT代理已关闭,需要重启才能生效</translation>
|
||||
<location filename="../proxy.cpp" line="573"/>
|
||||
<source>The APT proxy has been turned off and needs to be restarted to take effect</source>
|
||||
<translation>APT 代理已关闭,需要重启才能生效</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="565"/>
|
||||
<location filename="../proxy.cpp" line="797"/>
|
||||
<location filename="../proxy.cpp" line="574"/>
|
||||
<location filename="../proxy.cpp" line="814"/>
|
||||
<source>Reboot Later</source>
|
||||
<translation>稍后重启</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="566"/>
|
||||
<location filename="../proxy.cpp" line="798"/>
|
||||
<location filename="../proxy.cpp" line="575"/>
|
||||
<location filename="../proxy.cpp" line="815"/>
|
||||
<source>Reboot Now</source>
|
||||
<translation>立即重启</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="796"/>
|
||||
<source>The system needs to be restarted to set the Apt proxy, whether to reboot</source>
|
||||
<translation>设置APT代理需要重启系统后生效,是否重启系统</translation>
|
||||
<location filename="../proxy.cpp" line="813"/>
|
||||
<source>The system needs to be restarted to set the APT proxy, whether to reboot</source>
|
||||
<translation>设置 APT 代理需要重启系统后生效,是否重启系统</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="996"/>
|
||||
<location filename="../proxy.cpp" line="1017"/>
|
||||
<source>Proxy type</source>
|
||||
<translation>代理类型</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1013"/>
|
||||
<location filename="../proxy.cpp" line="1034"/>
|
||||
<source>IP address</source>
|
||||
<translation>IP地址</translation>
|
||||
<translation>IP 地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1019"/>
|
||||
<location filename="../proxy.cpp" line="1050"/>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1071"/>
|
||||
<source>Required</source>
|
||||
<translation>必填</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1040"/>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<source>Invalid IP Address</source>
|
||||
<translation>无效的IP地址</translation>
|
||||
<translation>无效的 IP 地址</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1061"/>
|
||||
<location filename="../proxy.cpp" line="1082"/>
|
||||
<source>Username</source>
|
||||
<translation>用户名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1064"/>
|
||||
<location filename="../proxy.cpp" line="1078"/>
|
||||
<location filename="../proxy.cpp" line="1085"/>
|
||||
<location filename="../proxy.cpp" line="1099"/>
|
||||
<source>Optional</source>
|
||||
<translation>选填</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1074"/>
|
||||
<location filename="../proxy.cpp" line="1095"/>
|
||||
<source>Password</source>
|
||||
<translation>密码</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1097"/>
|
||||
<location filename="../proxy.cpp" line="1118"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1098"/>
|
||||
<location filename="../proxy.cpp" line="1119"/>
|
||||
<source>Save</source>
|
||||
<translation>保存</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../proxy.cpp" line="1160"/>
|
||||
<location filename="../proxy.cpp" line="1181"/>
|
||||
<source>The following applications are allowed to use this configuration:</source>
|
||||
<translation>允许以下应用使用该配置:</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
ts_list=(`ls translations/*.ts`)
|
||||
source /etc/os-release
|
||||
version=(`echo $ID`)
|
||||
|
||||
for ts in "${ts_list[@]}"
|
||||
do
|
||||
printf "\nprocess ${ts}\n"
|
||||
if [ "$version" == "fedora" ] || [ "$version" == "opensuse-leap" ] || [ "$version" == "opensuse-tumbleweed" ];then
|
||||
lrelease-qt5 "${ts}"
|
||||
else
|
||||
lrelease "${ts}"
|
||||
fi
|
||||
done
|
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="zh_CN" sourcelanguage="en">
|
||||
<context>
|
||||
<name>AddNetBtn</name>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="44"/>
|
||||
<source>Add Others</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="48"/>
|
||||
<source>Add WiredNetork</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ItemFrame</name>
|
||||
<message>
|
||||
<location filename="../itemframe.cpp" line="38"/>
|
||||
<source>Add VPN</source>
|
||||
<translation>ཁ་སྣོན་རྒྱག་པ།VPN</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Vpn</name>
|
||||
<message>
|
||||
<location filename="../vpn.ui" line="53"/>
|
||||
<location filename="../vpn.cpp" line="68"/>
|
||||
<source>VPN</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.ui" line="68"/>
|
||||
<source>import</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="157"/>
|
||||
<location filename="../vpn.cpp" line="284"/>
|
||||
<source>Show on Taskbar</source>
|
||||
<translation>ལས་འགན་གྱི་ངོས་སུ་དཔེ་རིས་གསལ་པོར་མངོན་པ།</translation>
|
||||
<extra-contents_path>/Vpn/Show on Taskbar</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="286"/>
|
||||
<source>Add VPN</source>
|
||||
<translation type="unfinished">ཁ་སྣོན་རྒྱག་པ།VPN</translation>
|
||||
<extra-contents_path>/Vpn/Add VPN</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="372"/>
|
||||
<location filename="../vpn.cpp" line="479"/>
|
||||
<source>connected</source>
|
||||
<translation>འབྲེལ་མཐུད་བྱུང་ཡོད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="374"/>
|
||||
<location filename="../vpn.cpp" line="489"/>
|
||||
<source>not connected</source>
|
||||
<translation>འབྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnItem</name>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="56"/>
|
||||
<source>Delete</source>
|
||||
<translation>སུབ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="108"/>
|
||||
<location filename="../vpnitem.cpp" line="121"/>
|
||||
<source>Disconnect</source>
|
||||
<translation>བར་མཚམས་ཆད་པ་རེད།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="110"/>
|
||||
<location filename="../vpnitem.cpp" line="119"/>
|
||||
<source>Connect</source>
|
||||
<translation>འབྲེལ་མཐུད་བཅས་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1">
|
||||
<context>
|
||||
<name>AddNetBtn</name>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="44"/>
|
||||
<source>Add Others</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="48"/>
|
||||
<source>Add WiredNetork</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ItemFrame</name>
|
||||
<message>
|
||||
<location filename="../itemframe.cpp" line="38"/>
|
||||
<source>Add VPN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Vpn</name>
|
||||
<message>
|
||||
<location filename="../vpn.ui" line="53"/>
|
||||
<location filename="../vpn.cpp" line="68"/>
|
||||
<source>VPN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.ui" line="68"/>
|
||||
<source>import</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="157"/>
|
||||
<location filename="../vpn.cpp" line="284"/>
|
||||
<source>Show on Taskbar</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Vpn/Show on Taskbar</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="286"/>
|
||||
<source>Add VPN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/Vpn/Add VPN</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="372"/>
|
||||
<location filename="../vpn.cpp" line="479"/>
|
||||
<source>connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="374"/>
|
||||
<location filename="../vpn.cpp" line="489"/>
|
||||
<source>not connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnItem</name>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="56"/>
|
||||
<source>Delete</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="108"/>
|
||||
<location filename="../vpnitem.cpp" line="121"/>
|
||||
<source>Disconnect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="110"/>
|
||||
<location filename="../vpnitem.cpp" line="119"/>
|
||||
<source>Connect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -0,0 +1,75 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="mn" sourcelanguage="en">
|
||||
<context>
|
||||
<name>AddNetBtn</name>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="47"/>
|
||||
<source>Add Others</source>
|
||||
<translation>ᠪᠤᠰᠤᠳ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠵᠠᠯᠭᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="51"/>
|
||||
<source>Add WiredNetork</source>
|
||||
<translation>ᠤᠲᠠᠰᠤᠲᠤ ᠨᠧᠲ ᠨᠡᠮᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>ItemFrame</name>
|
||||
<message>
|
||||
<location filename="../itemframe.cpp" line="38"/>
|
||||
<source>Add VPN</source>
|
||||
<translation>VPN ᠨᠡᠮᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Vpn</name>
|
||||
<message>
|
||||
<location filename="../vpn.ui" line="53"/>
|
||||
<source>VPN</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.ui" line="68"/>
|
||||
<source>import</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="151"/>
|
||||
<source>Show on Taskbar</source>
|
||||
<translation>ᠡᠬᠦᠷᠬᠡ ᠵᠢᠨ ᠪᠠᠭᠠᠷ ᠲᠤ᠌ ᠢᠺᠦᠨ ᠵᠢᠷᠤᠭ ᠢ᠋ ᠢᠯᠡᠷᠡᠬᠦᠯᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="347"/>
|
||||
<location filename="../vpn.cpp" line="454"/>
|
||||
<source>connected</source>
|
||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠪᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="349"/>
|
||||
<location filename="../vpn.cpp" line="464"/>
|
||||
<source>not connected</source>
|
||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠭᠡ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnItem</name>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="58"/>
|
||||
<source>Delete</source>
|
||||
<translation>ᠬᠠᠰᠤᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="111"/>
|
||||
<location filename="../vpnitem.cpp" line="124"/>
|
||||
<source>Disconnect</source>
|
||||
<translation>ᠳᠠᠰᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="113"/>
|
||||
<location filename="../vpnitem.cpp" line="122"/>
|
||||
<source>Connect</source>
|
||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
Binary file not shown.
|
@ -4,12 +4,12 @@
|
|||
<context>
|
||||
<name>AddNetBtn</name>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="47"/>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="44"/>
|
||||
<source>Add Others</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="51"/>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="48"/>
|
||||
<source>Add WiredNetork</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -19,13 +19,14 @@
|
|||
<message>
|
||||
<location filename="../itemframe.cpp" line="38"/>
|
||||
<source>Add VPN</source>
|
||||
<translation>添加VPN</translation>
|
||||
<translation>添加 VPN</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Vpn</name>
|
||||
<message>
|
||||
<location filename="../vpn.ui" line="53"/>
|
||||
<location filename="../vpn.cpp" line="68"/>
|
||||
<source>VPN</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -35,24 +36,27 @@
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="68"/>
|
||||
<source>VPN</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="151"/>
|
||||
<location filename="../vpn.cpp" line="157"/>
|
||||
<location filename="../vpn.cpp" line="284"/>
|
||||
<source>Show on Taskbar</source>
|
||||
<translation>在任务栏显示图标</translation>
|
||||
<extra-contents_path>/Vpn/Show on Taskbar</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="347"/>
|
||||
<location filename="../vpn.cpp" line="454"/>
|
||||
<location filename="../vpn.cpp" line="286"/>
|
||||
<source>Add VPN</source>
|
||||
<translation>添加 VPN 连接</translation>
|
||||
<extra-contents_path>/Vpn/Add VPN</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="372"/>
|
||||
<location filename="../vpn.cpp" line="479"/>
|
||||
<source>connected</source>
|
||||
<translation>已连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpn.cpp" line="349"/>
|
||||
<location filename="../vpn.cpp" line="464"/>
|
||||
<location filename="../vpn.cpp" line="374"/>
|
||||
<location filename="../vpn.cpp" line="489"/>
|
||||
<source>not connected</source>
|
||||
<translation>未连接</translation>
|
||||
</message>
|
||||
|
@ -60,19 +64,19 @@
|
|||
<context>
|
||||
<name>VpnItem</name>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="58"/>
|
||||
<location filename="../vpnitem.cpp" line="56"/>
|
||||
<source>Delete</source>
|
||||
<translation>删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="111"/>
|
||||
<location filename="../vpnitem.cpp" line="124"/>
|
||||
<location filename="../vpnitem.cpp" line="108"/>
|
||||
<location filename="../vpnitem.cpp" line="121"/>
|
||||
<source>Disconnect</source>
|
||||
<translation>断开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../vpnitem.cpp" line="113"/>
|
||||
<location filename="../vpnitem.cpp" line="122"/>
|
||||
<location filename="../vpnitem.cpp" line="110"/>
|
||||
<location filename="../vpnitem.cpp" line="119"/>
|
||||
<source>Connect</source>
|
||||
<translation>连接</translation>
|
||||
</message>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -107,6 +107,7 @@ QWidget *Vpn::pluginUi(){
|
|||
initComponent();
|
||||
initConnect();
|
||||
initNet();
|
||||
initSearchText();
|
||||
}
|
||||
return m_pluginWidget;
|
||||
}
|
||||
|
@ -131,6 +132,11 @@ bool Vpn::isEnable() const
|
|||
return true;
|
||||
}
|
||||
|
||||
QString Vpn::translationPath() const
|
||||
{
|
||||
return "/usr/share/kylin-nm/vpn/%1.ts";
|
||||
}
|
||||
|
||||
void Vpn::initComponent(){
|
||||
//在任务栏上显示图标
|
||||
//显示已连接时间
|
||||
|
@ -187,6 +193,7 @@ void Vpn::initComponent(){
|
|||
ui->verticalLayout_3->addWidget(m_listFrame);
|
||||
|
||||
connect(m_listFrame->m_addVpnWidget, &AddNetBtn::clicked, this, [=]() {
|
||||
UkccCommon::buriedSettings(QString("VPN"), QString("Add VPN"), QString("clicked"));
|
||||
runExternalApp();
|
||||
});
|
||||
|
||||
|
@ -211,6 +218,10 @@ void Vpn::initComponent(){
|
|||
}
|
||||
});
|
||||
|
||||
connect(m_showBtn, &KSwitchButton::clicked, this, [=](bool checked){
|
||||
UkccCommon::buriedSettings(QString("VPN"), QString("Show on Taskbar"), QString("settings"), checked ? "true":"false");
|
||||
});
|
||||
|
||||
// connect(m_timeBtn, &KSwitchButton::stateChanged, this, [=](bool state){
|
||||
// if (m_switchGsettings != nullptr) {
|
||||
// m_switchGsettings->set(VISIBLE, state);
|
||||
|
@ -266,6 +277,14 @@ void Vpn::setShowSwitchStatus()
|
|||
}
|
||||
}
|
||||
|
||||
void Vpn::initSearchText()
|
||||
{
|
||||
//~ contents_path /Vpn/Show on Taskbar
|
||||
tr("Show on Taskbar");
|
||||
//~ contents_path /Vpn/Add VPN
|
||||
tr("Add VPN");
|
||||
}
|
||||
|
||||
void Vpn::runExternalApp(){
|
||||
// QString cmd = "nm-connection-editor";
|
||||
// QProcess process(this);
|
||||
|
@ -487,6 +506,10 @@ int Vpn::getInsertPos(QString connName)
|
|||
auto dbusArg = result.arguments().at(0).value<QDBusArgument>();
|
||||
QVector<QStringList> variantList;
|
||||
dbusArg >> variantList;
|
||||
if (variantList.isEmpty()) {
|
||||
qDebug() << "[Vpn] virtualList is empty, getInsertPos return 0";
|
||||
return 0;
|
||||
}
|
||||
for (int i = 0; i < variantList.size(); ++i ) {
|
||||
if (variantList.at(i).at(0) == connName) {
|
||||
qDebug() << "pos in kylin-nm is " << i;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -32,8 +32,10 @@
|
|||
#include "kwidget.h"
|
||||
#include "kswitchbutton.h"
|
||||
#include "itemframe.h"
|
||||
#include "ukcccommon.h"
|
||||
|
||||
using namespace kdk;
|
||||
using namespace ukcc;
|
||||
|
||||
namespace Ui {
|
||||
class Vpn;
|
||||
|
@ -56,6 +58,7 @@ public:
|
|||
bool isShowOnHomePage() const Q_DECL_OVERRIDE;
|
||||
QIcon icon() const Q_DECL_OVERRIDE;
|
||||
bool isEnable() const Q_DECL_OVERRIDE;
|
||||
QString translationPath() const Q_DECL_OVERRIDE;
|
||||
|
||||
public:
|
||||
void initComponent();
|
||||
|
@ -106,8 +109,9 @@ private:
|
|||
//单个lan连接状态变化
|
||||
void itemActiveConnectionStatusChanged(VpnItem *item, int status);
|
||||
|
||||
|
||||
void setShowSwitchStatus();
|
||||
// 搜索词条
|
||||
void initSearchText();
|
||||
|
||||
private slots:
|
||||
void onVpnAdd(QStringList);
|
||||
|
|
|
@ -47,4 +47,11 @@ INSTALLS += target \
|
|||
trans
|
||||
|
||||
TRANSLATIONS += \
|
||||
translations/zh_CN.ts
|
||||
translations/zh_CN.ts \
|
||||
translations/bo_CN.ts \
|
||||
translations/en_US.ts \
|
||||
translations/mn.ts
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
!system($$PWD/translate_generation.sh): error("Failed to generate translation")
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -19,6 +19,8 @@
|
|||
*/
|
||||
#include "vpnitem.h"
|
||||
#include <QPainter>
|
||||
#include <QPainterPath>
|
||||
#include <QApplication>
|
||||
#define FRAME_SPEED 150
|
||||
#define LIMIT_TIME 60*1000
|
||||
#define TOTAL_PAGE 8
|
||||
|
@ -33,11 +35,6 @@ VpnItem::VpnItem(bool bAcitve, QWidget *parent)
|
|||
this->setMinimumSize(550, 58);
|
||||
this->setProperty("useButtonPalette", true);
|
||||
this->setFlat(true);
|
||||
QPalette pal = this->palette();
|
||||
QColor color = pal.color(QPalette::Button);
|
||||
color.setAlphaF(0.5);
|
||||
pal.setColor(QPalette::Button, color);
|
||||
this->setPalette(pal);
|
||||
QHBoxLayout *mLanLyt = new QHBoxLayout(this);
|
||||
mLanLyt->setContentsMargins(16,0,16,0);
|
||||
mLanLyt->setSpacing(16);
|
||||
|
@ -136,12 +133,16 @@ void VpnItem::onDeletetTriggered()
|
|||
|
||||
void VpnItem::paintEvent(QPaintEvent *event)
|
||||
{
|
||||
QPalette pal = this->palette();
|
||||
|
||||
QPainter painter(this);
|
||||
painter.setRenderHint(QPainter:: Antialiasing, true); //设置渲染,启动反锯齿
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.setBrush(pal.color(QPalette::Base));
|
||||
painter.setBrush(this->palette().base().color());
|
||||
|
||||
QPalette pal = qApp->palette();
|
||||
QColor color = pal.color(QPalette::Button);
|
||||
color.setAlphaF(0.5);
|
||||
pal.setColor(QPalette::Button, color);
|
||||
this->setPalette(pal);
|
||||
|
||||
QRect rect = this->rect();
|
||||
|
||||
|
@ -175,11 +176,11 @@ bool VpnItem::eventFilter(QObject *watched, QEvent *event)
|
|||
{
|
||||
//菜单右边界与按钮右边界对齐
|
||||
if (event->type() == QEvent::Show && watched == m_moreMenu) {
|
||||
int menuXPos = m_moreMenu->pos().x();
|
||||
int menuWidth = m_moreMenu->size().width();
|
||||
int btnWidth = m_moreButton->size().width();
|
||||
int btnGlobalXPos = mapToGlobal(m_moreButton->pos()).x();
|
||||
|
||||
QPoint pos = QPoint (menuXPos - menuWidth + btnWidth, m_moreMenu->pos().y());
|
||||
QPoint pos = QPoint (btnGlobalXPos - menuWidth + btnWidth, m_moreMenu->pos().y());
|
||||
m_moreMenu->move(pos);
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
ts_list=(`ls translations/*.ts`)
|
||||
source /etc/os-release
|
||||
version=(`echo $ID`)
|
||||
|
||||
for ts in "${ts_list[@]}"
|
||||
do
|
||||
printf "\nprocess ${ts}\n"
|
||||
if [ "$version" == "fedora" ] || [ "$version" == "opensuse-leap" ] || [ "$version" == "opensuse-tumbleweed" ];then
|
||||
lrelease-qt5 "${ts}"
|
||||
else
|
||||
lrelease "${ts}"
|
||||
fi
|
||||
done
|
|
@ -1 +0,0 @@
|
|||
<クdハ<>箆!ソ`。スン
|
|
@ -23,49 +23,49 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="35"/>
|
||||
<location filename="../wlanconnect.cpp" line="144"/>
|
||||
<location filename="../wlanconnect.cpp" line="215"/>
|
||||
<location filename="../wlanconnect.cpp" line="140"/>
|
||||
<location filename="../wlanconnect.cpp" line="211"/>
|
||||
<source>WLAN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="94"/>
|
||||
<location filename="../wlanconnect.cpp" line="217"/>
|
||||
<location filename="../wlanconnect.cpp" line="213"/>
|
||||
<source>open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/wlanconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="147"/>
|
||||
<location filename="../wlanconnect.cpp" line="214"/>
|
||||
<location filename="../wlanconnect.cpp" line="210"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/wlanconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="127"/>
|
||||
<source>ukui control center</source>
|
||||
<location filename="../wlanconnect.cpp" line="123"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="130"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<location filename="../wlanconnect.cpp" line="126"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="232"/>
|
||||
<location filename="../wlanconnect.cpp" line="228"/>
|
||||
<source>No wireless network card detected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="368"/>
|
||||
<location filename="../wlanconnect.cpp" line="1039"/>
|
||||
<location filename="../wlanconnect.cpp" line="1101"/>
|
||||
<location filename="../wlanconnect.cpp" line="364"/>
|
||||
<location filename="../wlanconnect.cpp" line="1033"/>
|
||||
<location filename="../wlanconnect.cpp" line="1095"/>
|
||||
<source>connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="976"/>
|
||||
<location filename="../wlanconnect.cpp" line="970"/>
|
||||
<source>card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -23,49 +23,57 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="35"/>
|
||||
<location filename="../wlanconnect.cpp" line="144"/>
|
||||
<location filename="../wlanconnect.cpp" line="215"/>
|
||||
<location filename="../wlanconnect.cpp" line="140"/>
|
||||
<location filename="../wlanconnect.cpp" line="211"/>
|
||||
<source>WLAN</source>
|
||||
<translation>སྐུད་མེད་ཅུས་ཁོངས་ཀྱི་དྲ་བ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="94"/>
|
||||
<location filename="../wlanconnect.cpp" line="217"/>
|
||||
<location filename="../wlanconnect.cpp" line="213"/>
|
||||
<source>open</source>
|
||||
<translation>སྒོ་ཕྱེ་བ།</translation>
|
||||
<extra-contents_path>/wlanconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="147"/>
|
||||
<location filename="../wlanconnect.cpp" line="214"/>
|
||||
<location filename="../wlanconnect.cpp" line="210"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>སྔོན་ཐོན་གྱི་སྒྲིག་བཀོད།</translation>
|
||||
<extra-contents_path>/wlanconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="127"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>ཝུའུ་ཁི་ལན་གྱི་ཚོད་འཛིན་ལྟེ་གནས།</translation>
|
||||
<translation type="vanished">ཝུའུ་ཁི་ལན་གྱི་ཚོད་འཛིན་ལྟེ་གནས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="130"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>ངོས་ལེབ་ངོས་ཀྱི་བརྡ་ཐོ་ཚོད་འཛིན་བྱ་དགོས།</translation>
|
||||
<translation type="vanished">ངོས་ལེབ་ངོས་ཀྱི་བརྡ་ཐོ་ཚོད་འཛིན་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="232"/>
|
||||
<location filename="../wlanconnect.cpp" line="123"/>
|
||||
<source>Settings</source>
|
||||
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="126"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས། ཅོག་ངོས་ལ་བརྡ་ཐོ་གཏོང་དགོས།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="228"/>
|
||||
<source>No wireless network card detected</source>
|
||||
<translation>སྐུད་མེད་དྲ་རྒྱའི་བྱང་བུ་མ་རྙེད་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="368"/>
|
||||
<location filename="../wlanconnect.cpp" line="1039"/>
|
||||
<location filename="../wlanconnect.cpp" line="1101"/>
|
||||
<location filename="../wlanconnect.cpp" line="364"/>
|
||||
<location filename="../wlanconnect.cpp" line="1033"/>
|
||||
<location filename="../wlanconnect.cpp" line="1095"/>
|
||||
<source>connected</source>
|
||||
<translation>འབྲེལ་མཐུད་བྱེད་པ།</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="976"/>
|
||||
<location filename="../wlanconnect.cpp" line="970"/>
|
||||
<source>card</source>
|
||||
<translation>བྱང་བུ།</translation>
|
||||
</message>
|
||||
|
|
|
@ -23,49 +23,57 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="35"/>
|
||||
<location filename="../wlanconnect.cpp" line="144"/>
|
||||
<location filename="../wlanconnect.cpp" line="215"/>
|
||||
<location filename="../wlanconnect.cpp" line="140"/>
|
||||
<location filename="../wlanconnect.cpp" line="211"/>
|
||||
<source>WLAN</source>
|
||||
<translation>WLAN</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="94"/>
|
||||
<location filename="../wlanconnect.cpp" line="217"/>
|
||||
<location filename="../wlanconnect.cpp" line="213"/>
|
||||
<source>open</source>
|
||||
<translation>open</translation>
|
||||
<extra-contents_path>/wlanconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="147"/>
|
||||
<location filename="../wlanconnect.cpp" line="214"/>
|
||||
<location filename="../wlanconnect.cpp" line="210"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>Advanced settings</translation>
|
||||
<extra-contents_path>/wlanconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="127"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>ukui control center</translation>
|
||||
<translation type="vanished">ukui control center</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="130"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>ukui control center desktop message</translation>
|
||||
<translation type="vanished">ukui control center desktop message</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="232"/>
|
||||
<location filename="../wlanconnect.cpp" line="123"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="126"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="228"/>
|
||||
<source>No wireless network card detected</source>
|
||||
<translation>No wireless network card detected</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="368"/>
|
||||
<location filename="../wlanconnect.cpp" line="1039"/>
|
||||
<location filename="../wlanconnect.cpp" line="1101"/>
|
||||
<location filename="../wlanconnect.cpp" line="364"/>
|
||||
<location filename="../wlanconnect.cpp" line="1033"/>
|
||||
<location filename="../wlanconnect.cpp" line="1095"/>
|
||||
<source>connected</source>
|
||||
<translation>connected</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="976"/>
|
||||
<location filename="../wlanconnect.cpp" line="970"/>
|
||||
<source>card</source>
|
||||
<translation>card</translation>
|
||||
</message>
|
||||
|
|
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="mn">
|
||||
<context>
|
||||
<name>AddNetBtn</name>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="44"/>
|
||||
<source>Add Others</source>
|
||||
<translation>ᠪᠤᠰᠤᠳ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠵᠠᠯᠭᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../component/AddBtn/addnetbtn.cpp" line="48"/>
|
||||
<source>Add WiredNetork</source>
|
||||
<translation>ᠤᠲᠠᠰᠤᠲᠤ ᠨᠧᠲ ᠨᠡᠮᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>WlanConnect</name>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="14"/>
|
||||
<source>WlanConnect</source>
|
||||
<translation>ᠤᠳᠠᠰᠤ ᠦᠬᠡᠢ ᠬᠡᠰᠡᠭ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="35"/>
|
||||
<location filename="../wlanconnect.cpp" line="140"/>
|
||||
<location filename="../wlanconnect.cpp" line="211"/>
|
||||
<source>WLAN</source>
|
||||
<translation>ᠤᠳᠠᠰᠤ ᠦᠬᠡᠢ ᠬᠡᠰᠡᠭ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="94"/>
|
||||
<location filename="../wlanconnect.cpp" line="213"/>
|
||||
<source>open</source>
|
||||
<translation>ᠨᠡᠭᠡᠭᠡᠬᠦ</translation>
|
||||
<extra-contents_path>/wlanconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="147"/>
|
||||
<location filename="../wlanconnect.cpp" line="210"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>ᠦᠨᠳᠦᠷ ᠵᠡᠷᠬᠡ ᠵᠢᠨ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠤᠯᠳᠠ</translation>
|
||||
<extra-contents_path>/wlanconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<source>ukui control center</source>
|
||||
<translation type="vanished">ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠬᠠᠪᠳᠠᠰᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation type="vanished">ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠬᠠᠪᠳᠠᠰᠤᠨ ᠤ᠋ ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷ ᠤ᠋ᠨ ᠮᠡᠳᠡᠭᠳᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="123"/>
|
||||
<source>Settings</source>
|
||||
<translation>ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="126"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷᠤ᠋ᠨ ᠵᠠᠩᠭᠢᠶ᠋ᠢ ᠵᠣᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="228"/>
|
||||
<source>No wireless network card detected</source>
|
||||
<translation>ᠤᠳᠠᠰᠤ ᠦᠬᠡᠢ ᠨᠧᠲ ᠺᠠᠷᠲᠢ ᠬᠢᠨᠠᠨ ᠬᠡᠮᠵᠢᠵᠤ ᠤᠯᠤᠭᠰᠠᠨ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="364"/>
|
||||
<location filename="../wlanconnect.cpp" line="1033"/>
|
||||
<location filename="../wlanconnect.cpp" line="1095"/>
|
||||
<source>connected</source>
|
||||
<translation>ᠨᠢᠬᠡᠨᠳᠡ ᠴᠦᠷᠬᠡᠯᠡᠪᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="970"/>
|
||||
<source>card</source>
|
||||
<translation>ᠨᠧᠲ ᠺᠠᠷᠲ</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
|
@ -1 +0,0 @@
|
|||
<クdハ<>箆!ソ`。スン
|
|
@ -23,49 +23,49 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="35"/>
|
||||
<location filename="../wlanconnect.cpp" line="144"/>
|
||||
<location filename="../wlanconnect.cpp" line="215"/>
|
||||
<location filename="../wlanconnect.cpp" line="140"/>
|
||||
<location filename="../wlanconnect.cpp" line="211"/>
|
||||
<source>WLAN</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="94"/>
|
||||
<location filename="../wlanconnect.cpp" line="217"/>
|
||||
<location filename="../wlanconnect.cpp" line="213"/>
|
||||
<source>open</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/wlanconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="147"/>
|
||||
<location filename="../wlanconnect.cpp" line="214"/>
|
||||
<location filename="../wlanconnect.cpp" line="210"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<extra-contents_path>/wlanconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="127"/>
|
||||
<source>ukui control center</source>
|
||||
<location filename="../wlanconnect.cpp" line="123"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="130"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<location filename="../wlanconnect.cpp" line="126"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="232"/>
|
||||
<location filename="../wlanconnect.cpp" line="228"/>
|
||||
<source>No wireless network card detected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="368"/>
|
||||
<location filename="../wlanconnect.cpp" line="1039"/>
|
||||
<location filename="../wlanconnect.cpp" line="1101"/>
|
||||
<location filename="../wlanconnect.cpp" line="364"/>
|
||||
<location filename="../wlanconnect.cpp" line="1033"/>
|
||||
<location filename="../wlanconnect.cpp" line="1095"/>
|
||||
<source>connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="976"/>
|
||||
<location filename="../wlanconnect.cpp" line="970"/>
|
||||
<source>card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -23,49 +23,57 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="35"/>
|
||||
<location filename="../wlanconnect.cpp" line="144"/>
|
||||
<location filename="../wlanconnect.cpp" line="215"/>
|
||||
<location filename="../wlanconnect.cpp" line="140"/>
|
||||
<location filename="../wlanconnect.cpp" line="211"/>
|
||||
<source>WLAN</source>
|
||||
<translation>无线局域网</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="94"/>
|
||||
<location filename="../wlanconnect.cpp" line="217"/>
|
||||
<location filename="../wlanconnect.cpp" line="213"/>
|
||||
<source>open</source>
|
||||
<translation>开启</translation>
|
||||
<extra-contents_path>/wlanconnect/open</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.ui" line="147"/>
|
||||
<location filename="../wlanconnect.cpp" line="214"/>
|
||||
<location filename="../wlanconnect.cpp" line="210"/>
|
||||
<source>Advanced settings</source>
|
||||
<translation>高级设置</translation>
|
||||
<extra-contents_path>/wlanconnect/Advanced settings"</extra-contents_path>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="127"/>
|
||||
<source>ukui control center</source>
|
||||
<translation>控制面板</translation>
|
||||
<translation type="vanished">控制面板</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="130"/>
|
||||
<source>ukui control center desktop message</source>
|
||||
<translation>控制面板桌面通知</translation>
|
||||
<translation type="vanished">控制面板桌面通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="232"/>
|
||||
<location filename="../wlanconnect.cpp" line="123"/>
|
||||
<source>Settings</source>
|
||||
<translation>设置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="126"/>
|
||||
<source>Settings desktop message</source>
|
||||
<translation>设置 桌面通知</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="228"/>
|
||||
<source>No wireless network card detected</source>
|
||||
<translation>未检测到无线网卡</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="368"/>
|
||||
<location filename="../wlanconnect.cpp" line="1039"/>
|
||||
<location filename="../wlanconnect.cpp" line="1101"/>
|
||||
<location filename="../wlanconnect.cpp" line="364"/>
|
||||
<location filename="../wlanconnect.cpp" line="1033"/>
|
||||
<location filename="../wlanconnect.cpp" line="1095"/>
|
||||
<source>connected</source>
|
||||
<translation>已连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../wlanconnect.cpp" line="976"/>
|
||||
<location filename="../wlanconnect.cpp" line="970"/>
|
||||
<source>card</source>
|
||||
<translation>网卡</translation>
|
||||
</message>
|
||||
|
|
|
@ -124,10 +124,10 @@ void WlanConnect::showDesktopNotify(const QString &message)
|
|||
"org.freedesktop.Notifications",
|
||||
QDBusConnection::sessionBus());
|
||||
QList<QVariant> args;
|
||||
args<<(tr("ukui control center"))
|
||||
args<<(tr("Settings"))
|
||||
<<((unsigned int) 0)
|
||||
<<QString("gnome-dev-ethernet")
|
||||
<<tr("ukui control center desktop message") //显示的是什么类型的信息
|
||||
<<tr("Settings desktop message") //显示的是什么类型的信息
|
||||
<<message //显示的具体信息
|
||||
<<QStringList()
|
||||
<<QVariantMap()
|
||||
|
@ -231,6 +231,7 @@ bool WlanConnect::eventFilter(QObject *w, QEvent *e) {
|
|||
if (!getSwitchBtnEnable()) {
|
||||
showDesktopNotify(tr("No wireless network card detected"));
|
||||
} else {
|
||||
UkccCommon::buriedSettings(QString("wlanconnect"), QString("Open"), QString("settings"),!getSwitchBtnState()?"true":"false");
|
||||
if (m_interface != nullptr && m_interface->isValid()) {
|
||||
m_interface->call(QStringLiteral("setWirelessSwitchEnable"), !getSwitchBtnState());
|
||||
}
|
||||
|
@ -276,7 +277,7 @@ void WlanConnect::initComponent() {
|
|||
//删除无线网络
|
||||
connect(m_interface, SIGNAL(wlanRemove(QString, QString)), this, SLOT(onNetworkRemove(QString, QString)), Qt::QueuedConnection);
|
||||
//网卡插拔处理
|
||||
connect(m_interface, SIGNAL(deviceStatusChanged()), this, SLOT(onDeviceStatusChanged()), Qt::QueuedConnection);
|
||||
connect(m_interface, SIGNAL(wirelessDeviceStatusChanged()), this, SLOT(onDeviceStatusChanged()), Qt::QueuedConnection);
|
||||
//信号更新处理 改为每过固定时间 主动获取
|
||||
// connect(m_interface, SIGNAL(signalStrengthChange(QString, QString, int)), this, SLOT(updateStrengthList(QString, QString, int)));
|
||||
//网卡name处理
|
||||
|
@ -287,6 +288,7 @@ void WlanConnect::initComponent() {
|
|||
//高级设置
|
||||
connect(ui->detailBtn, &QPushButton::clicked, this, [=](bool checked) {
|
||||
Q_UNUSED(checked)
|
||||
UkccCommon::buriedSettings(QString("wlanconnect"), QString("Advanced settings"), QString("clicked"));
|
||||
runExternalApp();
|
||||
});
|
||||
|
||||
|
@ -607,23 +609,33 @@ void WlanConnect::onActiveConnectionChanged(QString deviceName, QString ssid, QS
|
|||
if (!deviceFrameMap.contains(deviceName)) {
|
||||
return;
|
||||
}
|
||||
for (int i = 0; i < deviceFrameMap[deviceName]->itemMap.size(); ++i) {
|
||||
if (deviceFrameMap[deviceName]->itemMap.contains(ssid)) {
|
||||
item = deviceFrameMap[deviceName]->itemMap[ssid];
|
||||
if (status == ACTIVATED || status == ACTIVATING) {
|
||||
deviceFrameMap[deviceName]->itemMap[ssid]->uuid = uuid;
|
||||
deviceFrameMap[deviceName]->uuid = uuid;
|
||||
if (status == ACTIVATED) {
|
||||
deviceFrameMap[deviceName]->lanItemLayout->removeWidget(item);
|
||||
deviceFrameMap[deviceName]->lanItemLayout->insertWidget(0,item);
|
||||
deviceFrameMap[deviceName]->filletStyleChange();
|
||||
}
|
||||
} else if (status == DEACTIVATED) {
|
||||
deviceFrameMap[deviceName]->itemMap[ssid]->uuid.clear();
|
||||
deviceFrameMap[deviceName]->uuid.clear();
|
||||
//todo 断开后排序 现在等下次更新列表 自动排序
|
||||
if (deviceFrameMap[deviceName]->itemMap.contains(ssid)) {
|
||||
item = deviceFrameMap[deviceName]->itemMap[ssid];
|
||||
if (status == ACTIVATED || status == ACTIVATING) {
|
||||
deviceFrameMap[deviceName]->itemMap[ssid]->uuid = uuid;
|
||||
deviceFrameMap[deviceName]->uuid = uuid;
|
||||
if (status == ACTIVATED) {
|
||||
deviceFrameMap[deviceName]->lanItemLayout->removeWidget(item);
|
||||
deviceFrameMap[deviceName]->lanItemLayout->insertWidget(0,item);
|
||||
deviceFrameMap[deviceName]->filletStyleChange();
|
||||
}
|
||||
} else if (status == DEACTIVATED) {
|
||||
deviceFrameMap[deviceName]->itemMap[ssid]->uuid.clear();
|
||||
deviceFrameMap[deviceName]->uuid.clear();
|
||||
//todo 断开后排序 现在等下次更新列表 自动排序
|
||||
}
|
||||
} else {
|
||||
if (uuid == deviceFrameMap[deviceName]->uuid) {
|
||||
QMap<QString, WlanItem*>::iterator itemIter;
|
||||
for (itemIter = deviceFrameMap[deviceName]->itemMap.begin(); itemIter != deviceFrameMap[deviceName]->itemMap.end(); itemIter++) {
|
||||
if (itemIter.value()->uuid == uuid ) {
|
||||
item = itemIter.value();
|
||||
if (status == DEACTIVATED) {
|
||||
itemIter.value()->uuid.clear();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -704,7 +716,14 @@ void WlanConnect::getDeviceList(QStringList &list)
|
|||
auto dbusArg = result.arguments().at(0).value<QDBusArgument>();
|
||||
QMap<QString,bool> map;
|
||||
dbusArg >> map;
|
||||
list = map.keys();
|
||||
|
||||
//筛选已托管(managed)网卡
|
||||
QMap<QString, bool>::iterator iters;
|
||||
for (iters = map.begin(); iters != map.end(); ++iters) {
|
||||
if (iters.value() == true) {
|
||||
list << iters.key();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void WlanConnect::initSwtichState()
|
||||
|
@ -977,6 +996,7 @@ void WlanConnect::addDeviceFrame(QString devName)
|
|||
deviceFrameMap.insert(devName, itemFrame);
|
||||
|
||||
connect(itemFrame->addWlanWidget, &AddNetBtn::clicked, this, [=](){
|
||||
UkccCommon::buriedSettings(QString("wlanconnect"), QString("Add wlan"), QString("clicked"));
|
||||
if (m_interface != nullptr && m_interface->isValid()) {
|
||||
qDebug() << "[NetConnect]call showAddOtherWlanWidget" << devName << __LINE__;
|
||||
m_interface->call(QStringLiteral("showAddOtherWlanWidget"), devName);
|
||||
|
@ -1048,6 +1068,7 @@ void WlanConnect::addOneWlanFrame(ItemFrame *frame, QString deviceName, QString
|
|||
if (m_interface == nullptr || !m_interface->isValid()) {
|
||||
return;
|
||||
}
|
||||
UkccCommon::buriedSettings(QString("wlanconnect"), QString("info"), QString("clicked"));
|
||||
qDebug() << "[WlanConnect]call showPropertyWidget" << __LINE__;
|
||||
m_interface->call(QStringLiteral("showPropertyWidget"), deviceName, name);
|
||||
qDebug() << "[WlanConnect]call showPropertyWidget respond" << __LINE__;
|
||||
|
|
|
@ -47,8 +47,10 @@
|
|||
#include "wlanitem.h"
|
||||
#include "kwidget.h"
|
||||
#include "kswitchbutton.h"
|
||||
#include "ukcccommon.h"
|
||||
|
||||
using namespace kdk;
|
||||
using namespace ukcc;
|
||||
|
||||
namespace Ui {
|
||||
class WlanConnect;
|
||||
|
@ -148,8 +150,8 @@ private:
|
|||
return m_wifiSwitch->isChecked();
|
||||
}
|
||||
}
|
||||
|
||||
bool LaunchApp(QString desktopFile);
|
||||
|
||||
protected:
|
||||
bool eventFilter(QObject *w,QEvent *e);
|
||||
|
||||
|
|
|
@ -7,6 +7,11 @@ include(../component/addbtn.pri)
|
|||
|
||||
TARGET = $$qtLibraryTarget(wlanconnect)
|
||||
DESTDIR = ../..
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
!system($$PWD/translate_generation.sh): error("Failed to generate translation")
|
||||
}
|
||||
|
||||
target.path = $$[QT_INSTALL_LIBS]/ukui-control-center
|
||||
trans.files = translations/*
|
||||
trans.path = /usr/share/kylin-nm/wlanconnect/
|
||||
|
@ -52,4 +57,5 @@ TRANSLATIONS += \
|
|||
translations/tr.ts \
|
||||
translations/bo.ts \
|
||||
translations/bo_CN.ts \
|
||||
translations/en_US.ts
|
||||
translations/en_US.ts \
|
||||
translations/mn.ts
|
||||
|
|
|
@ -92,17 +92,16 @@ void WlanItem::stopLoading(){
|
|||
|
||||
void WlanItem::paintEvent(QPaintEvent *event)
|
||||
{
|
||||
// QPalette pal = qApp->palette();
|
||||
|
||||
QPainter painter(this);
|
||||
painter.setRenderHint(QPainter:: Antialiasing, true); //设置渲染,启动反锯齿
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.setBrush(this->palette().base().color());
|
||||
|
||||
// QColor color = pal.color(QPalette::Button);
|
||||
// color.setAlphaF(0.5);
|
||||
// pal.setColor(QPalette::Button, color);
|
||||
// this->setPalette(pal);
|
||||
QPalette pal = qApp->palette();
|
||||
QColor color = pal.color(QPalette::Button);
|
||||
color.setAlphaF(0.5);
|
||||
pal.setColor(QPalette::Button, color);
|
||||
this->setPalette(pal);
|
||||
|
||||
QRect rect = this->rect();
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -19,6 +19,7 @@
|
|||
*/
|
||||
#include "listitem.h"
|
||||
#include <QDebug>
|
||||
#include "themepalette.h"
|
||||
|
||||
#define MAIN_LAYOUT_MARGINS 0,0,0,0
|
||||
#define MAIN_LAYOUT_SPACING 0
|
||||
|
@ -28,8 +29,9 @@
|
|||
#define FRAME_WIDTH 404
|
||||
#define INFO_ICON_WIDTH 16
|
||||
#define INFO_ICON_HEIGHT 16
|
||||
#define LIGHT_HOVER_COLOR QColor(240,240,240,255)
|
||||
#define DARK_HOVER_COLOR QColor(15,15,15,255)
|
||||
|
||||
#define THEME_SCHAME "org.ukui.style"
|
||||
#define COLOR_THEME "styleName"
|
||||
|
||||
ListItem::ListItem(QWidget *parent) : QFrame(parent)
|
||||
{
|
||||
|
@ -39,6 +41,7 @@ ListItem::ListItem(QWidget *parent) : QFrame(parent)
|
|||
initConnection();
|
||||
connect(qApp, &QApplication::paletteChanged, this, &ListItem::onPaletteChanged);
|
||||
// m_itemFrame->installEventFilter(this);
|
||||
onPaletteChanged();
|
||||
}
|
||||
|
||||
ListItem::~ListItem()
|
||||
|
@ -144,8 +147,22 @@ void ListItem::initConnection()
|
|||
|
||||
void ListItem::onPaletteChanged()
|
||||
{
|
||||
// QPalette pal = qApp->palette();
|
||||
// pal.setColor(QPalette::Window, qApp->palette().base().color());
|
||||
// this->setPalette(pal);
|
||||
QPalette pal = qApp->palette();
|
||||
QGSettings * styleGsettings = nullptr;
|
||||
const QByteArray style_id(THEME_SCHAME);
|
||||
if (QGSettings::isSchemaInstalled(style_id)) {
|
||||
styleGsettings = new QGSettings(style_id, QByteArray(), this);
|
||||
QString currentTheme = styleGsettings->get(COLOR_THEME).toString();
|
||||
if(currentTheme == "ukui-default"){
|
||||
pal = themePalette(true, this);
|
||||
}
|
||||
}
|
||||
this->setPalette(pal);
|
||||
|
||||
if (m_menu != nullptr) {
|
||||
pal.setColor(QPalette::Base, pal.color(QPalette::Base));
|
||||
pal.setColor(QPalette::Text, pal.color(QPalette::Text));
|
||||
m_menu->setPalette(pal);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -74,10 +74,10 @@ public:
|
|||
private:
|
||||
void initUI();
|
||||
void initConnection();
|
||||
void onPaletteChanged();
|
||||
|
||||
public Q_SLOTS:
|
||||
virtual void onNetButtonClicked() = 0;
|
||||
void onPaletteChanged();
|
||||
virtual void onMenuTriggered(QAction *action)=0;
|
||||
|
||||
Q_SIGNALS:
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -191,11 +191,16 @@ void VpnListItem::runExternalApp() {
|
|||
|
||||
void VpnListItem::onInfoButtonClicked()
|
||||
{
|
||||
#ifdef VPNDETAIL
|
||||
if (m_vpnConnectItem.m_itemType != NetworkManager::ConnectionSettings::ConnectionType::Vpn) {
|
||||
#else
|
||||
if (true) {
|
||||
#endif
|
||||
runExternalApp();
|
||||
return;
|
||||
}
|
||||
|
||||
#ifdef VPNDETAIL
|
||||
if(m_vpnDetail != nullptr){
|
||||
m_vpnDetail->activateWindow();
|
||||
return;
|
||||
|
@ -209,6 +214,7 @@ void VpnListItem::onInfoButtonClicked()
|
|||
|
||||
m_vpnDetail->show();
|
||||
m_vpnDetail->centerToScreen();
|
||||
#endif
|
||||
}
|
||||
|
||||
void VpnListItem::updateConnectionState(ConnectState state)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -23,14 +23,19 @@
|
|||
#include <QLabel>
|
||||
#include <QApplication>
|
||||
#include <QDBusReply>
|
||||
|
||||
#include <QPainterPath>
|
||||
#include <KWindowEffects>
|
||||
|
||||
#define THEME_SCHAME "org.ukui.style"
|
||||
#define COLOR_THEME "styleName"
|
||||
|
||||
SinglePage::SinglePage(QWidget *parent) : QWidget(parent)
|
||||
{
|
||||
setThemePalette();
|
||||
initUI();
|
||||
initWindowProperties();
|
||||
initTransparency();
|
||||
initWindowTheme();
|
||||
}
|
||||
|
||||
SinglePage::~SinglePage()
|
||||
|
@ -53,7 +58,7 @@ void SinglePage::initUI()
|
|||
m_titleLayout->addWidget(m_titleLabel);
|
||||
m_titleLayout->addStretch();
|
||||
|
||||
m_netDivider = new Divider(this);
|
||||
m_netDivider = new Divider(true, this);
|
||||
|
||||
m_listFrame = new QFrame(this);
|
||||
m_listLayout = new QVBoxLayout(m_listFrame);
|
||||
|
@ -61,8 +66,9 @@ void SinglePage::initUI()
|
|||
m_listFrame->setLayout(m_listLayout);
|
||||
m_listWidget = new QListWidget(m_listFrame);
|
||||
m_listLayout->addWidget(m_listWidget);
|
||||
m_listWidget->setProperty("needTranslucent", true);
|
||||
|
||||
m_setDivider = new Divider(this);
|
||||
m_setDivider = new Divider(true, this);
|
||||
|
||||
m_settingsFrame = new QFrame(this);
|
||||
m_settingsFrame->setFixedHeight(TITLE_FRAME_HEIGHT);
|
||||
|
@ -104,6 +110,20 @@ void SinglePage::initWindowProperties()
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief SinglePage::initWindowTheme 初始化窗口主题并创建信号槽
|
||||
*/
|
||||
void SinglePage::initWindowTheme()
|
||||
{
|
||||
const QByteArray style_id(THEME_SCHAME);
|
||||
if (QGSettings::isSchemaInstalled(style_id)) {
|
||||
m_styleGsettings = new QGSettings(style_id, QByteArray(), this);
|
||||
connect(m_styleGsettings, &QGSettings::changed, this, &SinglePage::onThemeChanged);
|
||||
} else {
|
||||
qWarning() << "Gsettings interface \"org.ukui.style\" is not exist!" << Q_FUNC_INFO << __LINE__;
|
||||
}
|
||||
}
|
||||
|
||||
void SinglePage::showDesktopNotify(const QString &message, QString soundName)
|
||||
{
|
||||
QDBusInterface iface("org.freedesktop.Notifications",
|
||||
|
@ -111,8 +131,8 @@ void SinglePage::showDesktopNotify(const QString &message, QString soundName)
|
|||
"org.freedesktop.Notifications",
|
||||
QDBusConnection::sessionBus());
|
||||
QStringList actions; //跳转动作
|
||||
actions.append("kylin-vpn");
|
||||
actions.append("default"); //默认动作:点击消息体时打开麒麟录音
|
||||
actions.append("default");
|
||||
actions.append("kylin-vpn"); //默认动作:点击消息体时打开麒麟录音
|
||||
QMap<QString, QVariant> hints;
|
||||
if (!soundName.isEmpty()) {
|
||||
hints.insert("sound-name",soundName); //添加声音
|
||||
|
@ -134,7 +154,7 @@ void SinglePage::paintEvent(QPaintEvent *event) {
|
|||
QPainter painter(this);
|
||||
painter.setRenderHint(QPainter::Antialiasing);
|
||||
painter.setPen(Qt::transparent);
|
||||
QColor col = qApp->palette().window().color();
|
||||
QColor col = this->palette().window().color();
|
||||
|
||||
QPainterPath rectPath;
|
||||
|
||||
|
@ -165,10 +185,37 @@ void SinglePage::onTransChanged()
|
|||
paintWithTrans();
|
||||
}
|
||||
|
||||
void SinglePage::onThemeChanged(const QString &key)
|
||||
{
|
||||
if (key == COLOR_THEME) {
|
||||
setThemePalette();
|
||||
paintWithTrans();
|
||||
Q_EMIT qApp->paletteChanged(qApp->palette());
|
||||
} else if ("themeColor" == key) {
|
||||
setThemePalette();
|
||||
}
|
||||
}
|
||||
|
||||
void SinglePage::setThemePalette()
|
||||
{
|
||||
QPalette pal = qApp->palette();
|
||||
QGSettings * styleGsettings = nullptr;
|
||||
const QByteArray style_id(THEME_SCHAME);
|
||||
if (QGSettings::isSchemaInstalled(style_id)) {
|
||||
styleGsettings = new QGSettings(style_id, QByteArray(), this);
|
||||
QString currentTheme = styleGsettings->get(COLOR_THEME).toString();
|
||||
if(currentTheme == "ukui-default"){
|
||||
pal = themePalette(true, this);
|
||||
}
|
||||
}
|
||||
pal.setColor(QPalette::Background, pal.base().color());
|
||||
this->setPalette(pal);
|
||||
}
|
||||
|
||||
void SinglePage::paintWithTrans()
|
||||
{
|
||||
QPalette pal = this->palette();
|
||||
QColor color = qApp->palette().base().color();
|
||||
QColor color = this->palette().base().color();
|
||||
color.setAlphaF(m_transparency);
|
||||
pal.setColor(QPalette::Window, color);
|
||||
this->setPalette(pal);
|
||||
|
@ -181,5 +228,3 @@ void SinglePage::keyPressEvent(QKeyEvent *event)
|
|||
}
|
||||
return QWidget::keyPressEvent(event);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -41,9 +41,9 @@ using namespace kdk;
|
|||
|
||||
#define MAIN_LAYOUT_MARGINS 0,0,0,0
|
||||
#define MAIN_LAYOUT_SPACING 0
|
||||
#define TITLE_FRAME_HEIGHT 60 //TabWidget的tab和widget有间隙,和设计稿看起来一致就不能设为设计稿里的高度
|
||||
#define TITLE_FRAME_HEIGHT 50
|
||||
#define TITLE_LAYOUT_MARGINS 24,0,24,0
|
||||
#define NET_LAYOUT_MARGINS 8,8,0,8
|
||||
#define NET_LAYOUT_MARGINS 8,4,0,4
|
||||
#define TEXT_HEIGHT 20
|
||||
#define SETTINGS_LAYOUT_MARGINS 23,0,24,0
|
||||
|
||||
|
@ -71,6 +71,8 @@ Q_SIGNALS:
|
|||
|
||||
private Q_SLOTS:
|
||||
void onTransChanged();
|
||||
void onThemeChanged(const QString &key);
|
||||
void setThemePalette();
|
||||
|
||||
protected:
|
||||
void paintEvent(QPaintEvent *event);
|
||||
|
@ -84,6 +86,7 @@ protected:
|
|||
|
||||
private:
|
||||
void initWindowProperties();
|
||||
void initWindowTheme();
|
||||
|
||||
protected:
|
||||
QVBoxLayout * m_mainLayout = nullptr;
|
||||
|
@ -106,6 +109,8 @@ protected:
|
|||
|
||||
QGSettings * m_transGsettings = nullptr;
|
||||
double m_transparency = 1.0; //透明度
|
||||
//监听主题的Gsettings
|
||||
QGSettings * m_styleGsettings = nullptr;
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -628,8 +628,7 @@ void VpnPage::showUI()
|
|||
|
||||
void VpnPage::resetWindowPosition()
|
||||
{
|
||||
|
||||
#define MARGIN 4
|
||||
#define MARGIN 8
|
||||
#define PANEL_TOP 1
|
||||
#define PANEL_LEFT 2
|
||||
#define PANEL_RIGHT 3
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* 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 2 of the License, or
|
||||
* the Free Software Foundation; either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
|
@ -38,7 +38,7 @@
|
|||
#define VPNPAGE_LAYOUT_MARGINS 0,0,0,0
|
||||
#define VPN_LIST_SPACING 0
|
||||
#define ITEM_HEIGHT 50
|
||||
#define ITEM_SPACE 16
|
||||
#define ITEM_SPACE 8
|
||||
#define PAGE_SPACE 22
|
||||
|
||||
#define LOG_FLAG "[VpnPage]"
|
||||
|
|
|
@ -1,18 +1,26 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#include "vpnaddpage.h"
|
||||
#include <QDebug>
|
||||
#include "vpnconfigpage.h"
|
||||
|
||||
#define VPNADDPAGE_SIZE 520,272
|
||||
#define MAINLAYOUT_MARGINS 24, 16, 24, 24
|
||||
#define MAINLAYOUT_SPACE 24
|
||||
#define NULL_MARGINS 0,0,0,0
|
||||
#define NULL_SPACE 0
|
||||
#define VPNADDPAGE_NAME_MAX_LENGTH 32
|
||||
#define VPNADDPAGE_LABLE_FIXEDWIDTH 112
|
||||
#define VPNADDPAGE_COMBOBOX_FIXEDWIDTH 360
|
||||
#define VPNADDPAGE_INPUTBOX_FIXEDWIDTH 360
|
||||
|
||||
|
||||
vpnAddPage::vpnAddPage(QWidget *parent) : QWidget(parent)
|
||||
{
|
||||
m_vpnConnOperation = new KyVpnConnectOperation(this);
|
||||
|
@ -44,8 +52,8 @@ void vpnAddPage::initWindow()
|
|||
void vpnAddPage::initUI()
|
||||
{
|
||||
QVBoxLayout *mainLayout = new QVBoxLayout(this);
|
||||
mainLayout->setContentsMargins(MAINLAYOUT_MARGINS);
|
||||
mainLayout->setSpacing(MAINLAYOUT_SPACE);
|
||||
mainLayout->setContentsMargins(VPNADDPAGE_MAINLAYOUT_MARGINS);
|
||||
mainLayout->setSpacing(VPNADDPAGE_NULLSPACE);
|
||||
|
||||
initVpnTypeFrame();
|
||||
initVpnNameFrame();
|
||||
|
@ -65,10 +73,11 @@ void vpnAddPage::initVpnTypeFrame()
|
|||
{
|
||||
m_vpnTypeFrame = new QFrame(this);
|
||||
m_vpnTypeFrame->setFrameShape(QFrame::Shape::NoFrame);
|
||||
m_vpnTypeFrame->setFixedSize(VPNADDPAGE_FRAME_FIXEDSIZE);
|
||||
|
||||
QHBoxLayout *typeLayout = new QHBoxLayout(m_vpnTypeFrame);
|
||||
typeLayout->setContentsMargins(NULL_MARGINS);
|
||||
typeLayout->setSpacing(NULL_SPACE);
|
||||
typeLayout->setContentsMargins(VPNADDPAGE_ITEM_MARGINS);
|
||||
typeLayout->setSpacing(VPNADDPAGE_NULLSPACE);
|
||||
|
||||
QLabel *vpnTypeLabel = new QLabel(tr("VPN Type"), this);
|
||||
vpnTypeLabel->setFixedWidth(VPNADDPAGE_LABLE_FIXEDWIDTH);
|
||||
|
@ -93,10 +102,11 @@ void vpnAddPage::initVpnNameFrame()
|
|||
{
|
||||
m_vpnNameFrame = new QFrame(this);
|
||||
m_vpnNameFrame->setFrameShape(QFrame::Shape::NoFrame);
|
||||
m_vpnNameFrame->setFixedSize(VPNADDPAGE_FRAME_FIXEDSIZE);
|
||||
|
||||
QHBoxLayout *nameLayout = new QHBoxLayout(m_vpnNameFrame);
|
||||
nameLayout->setContentsMargins(NULL_MARGINS);
|
||||
nameLayout->setSpacing(NULL_SPACE);
|
||||
nameLayout->setContentsMargins(VPNADDPAGE_ITEM_MARGINS);
|
||||
nameLayout->setSpacing(VPNADDPAGE_NULLSPACE);
|
||||
|
||||
QLabel *vpnNameLabel = new QLabel(tr("VPN Name"), this);
|
||||
vpnNameLabel->setFixedWidth(VPNADDPAGE_LABLE_FIXEDWIDTH);
|
||||
|
@ -115,10 +125,11 @@ void vpnAddPage::initVpnServerFrame()
|
|||
{
|
||||
m_vpnServerFrame = new QFrame(this);
|
||||
m_vpnServerFrame->setFrameShape(QFrame::Shape::NoFrame);
|
||||
m_vpnServerFrame->setFixedSize(VPNADDPAGE_FRAME_FIXEDSIZE);
|
||||
|
||||
QHBoxLayout *serverLayout = new QHBoxLayout(m_vpnServerFrame);
|
||||
serverLayout->setContentsMargins(NULL_MARGINS);
|
||||
serverLayout->setSpacing(NULL_SPACE);
|
||||
serverLayout->setContentsMargins(VPNADDPAGE_ITEM_MARGINS);
|
||||
serverLayout->setSpacing(VPNADDPAGE_NULLSPACE);
|
||||
|
||||
QLabel *vpnServerLabel = new QLabel(tr("VPN Server"), this);
|
||||
vpnServerLabel->setFixedWidth(VPNADDPAGE_LABLE_FIXEDWIDTH);
|
||||
|
@ -140,22 +151,35 @@ void vpnAddPage::initVpnServerFrame()
|
|||
void vpnAddPage::initButtonFrame()
|
||||
{
|
||||
m_buttonFrame = new QFrame(this);
|
||||
m_buttonFrame->setFixedSize(VPNDETAILPAGE_FRAME_FIXEDSIZE);
|
||||
|
||||
QHBoxLayout *buttonLayout = new QHBoxLayout(m_buttonFrame);
|
||||
buttonLayout->setContentsMargins(NULL_MARGINS);
|
||||
buttonLayout->setSpacing(NULL_SPACE);
|
||||
buttonLayout->setContentsMargins(VPNDETAILPAGE_ITEM_MARGINS);
|
||||
buttonLayout->setSpacing(VPNDETAILPAGE_NULLSPACE);
|
||||
|
||||
QLabel *autoConnectLabel = new QLabel(this);
|
||||
m_autoConnectBox = new QCheckBox(this);
|
||||
m_autoConnectBox->setText(tr("Auto Connection"));
|
||||
autoConnectLabel->setText(tr("Auto Connection"));
|
||||
QWidget *autoConWidget = new QWidget(this);
|
||||
QHBoxLayout *autoLayout = new QHBoxLayout(autoConWidget);
|
||||
|
||||
autoLayout->setContentsMargins(VPNDETAILPAGE_NULLMAGINS);
|
||||
autoLayout->setSpacing(VPNDETAILPAGE_NULLSPACE);
|
||||
autoLayout->addWidget(m_autoConnectBox);
|
||||
autoLayout->addWidget(autoConnectLabel);
|
||||
autoConWidget->setLayout(autoLayout);
|
||||
|
||||
m_confimBtn = new QPushButton(this);
|
||||
m_confimBtn->setFixedSize(VPNDETAILPAGE_BUTTON_FIXEDSIZE);
|
||||
m_confimBtn->setText(tr("Confirm"));
|
||||
m_cancelBtn = new QPushButton(this);
|
||||
m_cancelBtn->setFixedSize(VPNDETAILPAGE_BUTTON_FIXEDSIZE);
|
||||
m_cancelBtn->setText(tr("Cancel"));
|
||||
|
||||
buttonLayout->addWidget(m_autoConnectBox);
|
||||
buttonLayout->addWidget(autoConWidget);
|
||||
buttonLayout->addStretch();
|
||||
buttonLayout->addWidget(m_cancelBtn);
|
||||
buttonLayout->addSpacing(16);
|
||||
buttonLayout->addSpacing(VPNDETAILPAGE_BUTTON_SPACE);
|
||||
buttonLayout->addWidget(m_confimBtn);
|
||||
m_buttonFrame->setLayout(buttonLayout);
|
||||
}
|
||||
|
@ -227,14 +251,3 @@ vpnAddPage::~vpnAddPage()
|
|||
{
|
||||
Q_EMIT this->closed();
|
||||
}
|
||||
|
||||
void vpnAddPage::paintEvent(QPaintEvent *event)
|
||||
{
|
||||
QPalette pal = qApp->palette();
|
||||
QPainter painter(this);
|
||||
painter.setBrush(pal.color(QPalette::Base));
|
||||
painter.drawRect(this->rect());
|
||||
painter.fillRect(rect(), QBrush(pal.color(QPalette::Base)));
|
||||
|
||||
return QWidget::paintEvent(event);
|
||||
}
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifndef VPNADDPAGE_H
|
||||
#define VPNADDPAGE_H
|
||||
|
||||
|
@ -13,10 +32,33 @@
|
|||
#include <QFormLayout>
|
||||
#include <QDesktopWidget>
|
||||
#include <QApplication>
|
||||
#include <QPainter>
|
||||
|
||||
#include "kyvpnconnectoperation.h"
|
||||
|
||||
#define VPNADDPAGE_MAINLAYOUT_MARGINS 0, 12, 0, 12
|
||||
#define VPNADDPAGE_ITEM_MARGINS 24, 0, 24, 0
|
||||
#define VPNADDPAGE_NULLMAGINS 0, 0, 0, 0
|
||||
|
||||
#define VPNADDPAGE_SIZE 520,312
|
||||
#define VPNADDPAGE_FRAME_FIXEDSIZE 520, 60
|
||||
#define VPNADDPAGE_BUTTON_FIXEDSIZE 96, 36
|
||||
|
||||
#define VPNADDPAGE_NULLSPACE 0
|
||||
#define VPNADDPAGE_BUTTON_SPACE 16
|
||||
#define VPNADDPAGE_NAME_MAX_LENGTH 32
|
||||
#define VPNADDPAGE_LABLE_FIXEDWIDTH 112
|
||||
#define VPNADDPAGE_COMBOBOX_FIXEDWIDTH 360
|
||||
#define VPNADDPAGE_INPUTBOX_FIXEDWIDTH 360
|
||||
|
||||
#define VPNDETAILPAGE_ITEM_MARGINS 24, 0, 24, 0
|
||||
#define VPNDETAILPAGE_NULLMAGINS 0, 0, 0, 0
|
||||
|
||||
#define VPNDETAILPAGE_FRAME_FIXEDSIZE 520, 60
|
||||
#define VPNDETAILPAGE_BUTTON_FIXEDSIZE 96, 36
|
||||
|
||||
#define VPNDETAILPAGE_NULLSPACE 0
|
||||
#define VPNDETAILPAGE_BUTTON_SPACE 16
|
||||
|
||||
class vpnAddPage : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
@ -25,9 +67,6 @@ public:
|
|||
void centerToScreen();
|
||||
~vpnAddPage();
|
||||
|
||||
protected:
|
||||
void paintEvent(QPaintEvent *event);
|
||||
|
||||
private:
|
||||
void initWindow();
|
||||
void initUI();
|
||||
|
@ -41,6 +80,7 @@ private:
|
|||
bool checkConfimBtnIsEnabled();
|
||||
bool createVpnConnect();
|
||||
|
||||
private:
|
||||
QFrame *m_vpnTypeFrame = nullptr;
|
||||
QFrame *m_vpnNameFrame = nullptr;
|
||||
QFrame *m_vpnServerFrame = nullptr;
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#include "vpnadvancedpage.h"
|
||||
|
||||
#include <QApplication>
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifndef VPNADVANCEDPAGE_H
|
||||
#define VPNADVANCEDPAGE_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#include "vpnconfigpage.h"
|
||||
#include <QApplication>
|
||||
#include <QFileDialog>
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifndef VPNCONFIGPAGE_H
|
||||
#define VPNCONFIGPAGE_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#include "vpndetail.h"
|
||||
|
||||
#define WINDOW_WIDTH 520
|
||||
|
@ -83,7 +102,7 @@ void VpnDetail::initUI()
|
|||
m_topWidget = new QWidget(this);
|
||||
m_centerWidget = new QWidget(this);
|
||||
m_bottomWidget = new QWidget(this);
|
||||
m_divider = new Divider(this);
|
||||
m_divider = new Divider(false, this);
|
||||
m_vpnTabBar = new VpnTabBar(this);
|
||||
m_autoConnectBox = new QCheckBox(this);
|
||||
m_autoConnectLabel = new QLabel(this);
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifndef VPNDETAIL_H
|
||||
#define VPNDETAIL_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#include "vpnipv4page.h"
|
||||
#include "math.h"
|
||||
#include <QDebug>
|
||||
|
@ -90,7 +109,6 @@ void VpnIpv4Page::updateVpnIpv4Info(KyVpnConfig &vpnInfo)
|
|||
QString netMask("");
|
||||
QString gateWay("");
|
||||
vpnInfo.setIpConfigType(IPADDRESS_V4, CONFIG_IP_DHCP);
|
||||
vpnInfo.ipv4AddressConstruct(ipv4address, netMask, gateWay);
|
||||
qDebug() << LOG_FLAG << "IPv4 method" << vpnInfo.m_ipv4ConfigIpType;
|
||||
qDebug() << LOG_FLAG << "Update IPv4 info finished";
|
||||
} else {
|
||||
|
@ -99,7 +117,6 @@ void VpnIpv4Page::updateVpnIpv4Info(KyVpnConfig &vpnInfo)
|
|||
QString gateWay = m_gateWayEdit->text();
|
||||
qDebug() << ipv4address << netMask << gateWay;
|
||||
vpnInfo.setIpConfigType(IPADDRESS_V4, CONFIG_IP_MANUAL);
|
||||
vpnInfo.ipv4AddressConstruct(ipv4address, netMask, gateWay);
|
||||
vpnInfo.dumpInfo();
|
||||
qDebug() << LOG_FLAG << "Update IPv4 info finished";
|
||||
}
|
||||
|
@ -109,7 +126,6 @@ void VpnIpv4Page::updateVpnIpv4Info(KyVpnConfig &vpnInfo)
|
|||
if (!m_dnsServerEdit->text().isEmpty()) {
|
||||
ipv4DnsList.append(QHostAddress(m_dnsServerEdit->text()));
|
||||
}
|
||||
vpnInfo.ipv4DnsConstruct(ipv4DnsList);
|
||||
|
||||
vpnInfo.m_ipv4DnsSearch.clear();
|
||||
vpnInfo.m_ipv4DnsSearch.append(m_searchDomainEdit->text());
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifndef VPNIPV4PAGE_H
|
||||
#define VPNIPV4PAGE_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#include "vpnipv6page.h"
|
||||
#include "math.h"
|
||||
#include <QDebug>
|
||||
|
@ -83,7 +102,6 @@ void VpnIpv6Page::updateVpnIpv6Info(KyVpnConfig &vpnInfo)
|
|||
QString netMask("");
|
||||
QString gateWay("");
|
||||
vpnInfo.setIpConfigType(IPADDRESS_V6, CONFIG_IP_DHCP);
|
||||
vpnInfo.ipv6AddressConstruct(ipv6address, netMask, gateWay);
|
||||
qDebug() << LOG_FLAG << "IPv6 method" << vpnInfo.m_ipv6ConfigIpType;
|
||||
qDebug() << LOG_FLAG << "Update IPv6 info finished";
|
||||
} else {
|
||||
|
@ -92,7 +110,6 @@ void VpnIpv6Page::updateVpnIpv6Info(KyVpnConfig &vpnInfo)
|
|||
QString gateWay = m_gateWayEdit->text();
|
||||
qDebug() << ipv6address << netMask << gateWay;
|
||||
vpnInfo.setIpConfigType(IPADDRESS_V6, CONFIG_IP_MANUAL);
|
||||
vpnInfo.ipv6AddressConstruct(ipv6address, netMask, gateWay);
|
||||
vpnInfo.dumpInfo();
|
||||
qDebug() << LOG_FLAG << "Update IPv6 info finished";
|
||||
}
|
||||
|
@ -102,7 +119,6 @@ void VpnIpv6Page::updateVpnIpv6Info(KyVpnConfig &vpnInfo)
|
|||
if (!m_dnsServerEdit->text().isEmpty()) {
|
||||
ipv6DnsList.append(QHostAddress(m_dnsServerEdit->text()));
|
||||
}
|
||||
vpnInfo.ipv6DnsConstruct(ipv6DnsList);
|
||||
|
||||
vpnInfo.m_ipv6DnsSearch.clear();
|
||||
vpnInfo.m_ipv6DnsSearch.append(m_searchDomainEdit->text());
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifndef VPNIPV6PAGE_H
|
||||
#define VPNIPV6PAGE_H
|
||||
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#include "vpnobject.h"
|
||||
#include <QApplication>
|
||||
|
||||
|
@ -127,13 +146,41 @@ void vpnObject::onTabletModeChanged(bool mode)
|
|||
m_vpnPage->hide();
|
||||
}
|
||||
|
||||
bool vpnObject::launchApp(QString desktopFile)
|
||||
{
|
||||
QDBusInterface appManagerDbusInterface(KYLIN_APP_MANAGER_NAME,
|
||||
KYLIN_APP_MANAGER_PATH,
|
||||
KYLIN_APP_MANAGER_INTERFACE,
|
||||
QDBusConnection::sessionBus());
|
||||
|
||||
if (!appManagerDbusInterface.isValid()) {
|
||||
qWarning()<<"appManagerDbusInterface init error";
|
||||
return false;
|
||||
} else {
|
||||
QDBusReply<bool> reply = appManagerDbusInterface.call("LaunchApp", desktopFile);
|
||||
return reply;
|
||||
}
|
||||
}
|
||||
|
||||
void vpnObject::runExternalApp() {
|
||||
if (!launchApp("nm-connection-editor.desktop")){
|
||||
QString cmd = "nm-connection-editor";
|
||||
QProcess process(this);
|
||||
process.startDetached(cmd);
|
||||
}
|
||||
}
|
||||
|
||||
void vpnObject::showVpnAddWidget()
|
||||
{
|
||||
#ifdef VPNDETAIL
|
||||
if (m_vpnAddPage == nullptr) {
|
||||
m_vpnAddPage = new vpnAddPage();
|
||||
connect(m_vpnAddPage, &vpnAddPage::closed, [&] () {m_vpnAddPage = nullptr;});
|
||||
m_vpnAddPage->show();
|
||||
m_vpnAddPage->centerToScreen();
|
||||
}
|
||||
m_vpnAddPage->raise();
|
||||
#else
|
||||
runExternalApp();
|
||||
return;
|
||||
#endif
|
||||
}
|
||||
|
|
|
@ -1,3 +1,22 @@
|
|||
/*
|
||||
*
|
||||
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
||||
*
|
||||
* 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
|
||||
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
#ifndef VPNOBJECT_H
|
||||
#define VPNOBJECT_H
|
||||
|
||||
|
@ -40,6 +59,8 @@ private:
|
|||
void initVpnIconVisible();
|
||||
void initDbusConnnect();
|
||||
|
||||
bool launchApp(QString desktopFile);
|
||||
void runExternalApp();
|
||||
|
||||
private:
|
||||
VpnPage *m_vpnPage = nullptr;
|
||||
|
|
|
@ -88,17 +88,31 @@ int main(int argc, char *argv[])
|
|||
|
||||
QApplication::setQuitOnLastWindowClosed(false);
|
||||
|
||||
QThread thread;
|
||||
QDBusInterface interface("com.kylin.kylinvpn",
|
||||
"/com/kylin/kylinvpn",
|
||||
"com.kylin.kylinvpn",
|
||||
QDBusConnection::sessionBus());
|
||||
if(interface.isValid()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
QThread *thread = new QThread();
|
||||
KyNetworkResourceManager *p_networkResource = KyNetworkResourceManager::getInstance();
|
||||
p_networkResource->moveToThread(&thread);
|
||||
QObject::connect(&thread, SIGNAL(started()), p_networkResource, SLOT(onInitNetwork()));
|
||||
thread.start();
|
||||
p_networkResource->moveToThread(thread);
|
||||
QObject::connect(thread, &QThread::started, p_networkResource, &KyNetworkResourceManager::onInitNetwork);
|
||||
QObject::connect(&a,&QtSingleApplication::aboutToQuit, thread, &QThread::quit);
|
||||
QObject::connect(thread, &QThread::finished, thread, &QThread::deleteLater);
|
||||
QObject::connect(thread, &QThread::finished, [=](){
|
||||
qDebug() << "release" ;
|
||||
p_networkResource->Release();
|
||||
});
|
||||
thread->start();
|
||||
|
||||
// Internationalization
|
||||
QString locale = QLocale::system().name();
|
||||
QTranslator trans_global;
|
||||
qDebug() << "QLocale " << QLocale();
|
||||
if (trans_global.load(QLocale(), "kylin-vpn", "_", ":/translations/"))
|
||||
if (trans_global.load(QLocale(), "kylin-vpn", "_", "/usr/share/kylin-nm/kylin-vpn/"))
|
||||
{
|
||||
a.installTranslator(&trans_global);
|
||||
qDebug()<<"Translations load success";
|
||||
|
|
|
@ -19,7 +19,8 @@ PKGCONFIG +=kysdk-sysinfo
|
|||
|
||||
INCLUDEPATH += /usr/include/KF5/NetworkManagerQt
|
||||
|
||||
LIBS += -L/usr/lib/ -lgsettings-qt -lX11 -lKF5NetworkManagerQt -lukui-log4qt -lkysec
|
||||
LIBS += -L/usr/lib/ -lgsettings-qt -lX11 -lKF5NetworkManagerQt -lukui-log4qt
|
||||
#LIBS += -lkysec
|
||||
|
||||
target.path = /usr/bin
|
||||
target.source += $$TARGET
|
||||
|
@ -27,10 +28,13 @@ desktop.path = /etc/xdg/autostart/
|
|||
desktop.files = kylin-vpn.desktop
|
||||
gschema.files = org.ukui.kylin-vpn.switch.gschema.xml
|
||||
gschema.path = /usr/share/glib-2.0/schemas/
|
||||
qm_files.path = $${PREFIX}/share/kylin-nm/kylin-vpn/
|
||||
qm_files.files = translations/*.qm
|
||||
|
||||
INSTALLS += target \
|
||||
desktop \
|
||||
gschema \
|
||||
qm_files \
|
||||
|
||||
# The following define makes your compiler emit warnings if you use
|
||||
# any feature of Qt which has been marked as deprecated (the exact warnings
|
||||
|
@ -53,9 +57,6 @@ include(singleapplication/qt-single-application.pri)
|
|||
include(backend/backend.pri)
|
||||
include(frontend/frontend.pri)
|
||||
|
||||
RESOURCES += \
|
||||
vpnqrc.qrc
|
||||
|
||||
SOURCES += \
|
||||
main.cpp
|
||||
|
||||
|
@ -70,4 +71,9 @@ DISTFILES += \
|
|||
|
||||
TRANSLATIONS += \
|
||||
translations/kylin-vpn_zh_CN.ts \
|
||||
translations/kylin-vpn_bo_CN.ts
|
||||
translations/kylin-vpn_bo_CN.ts \
|
||||
translations/kylin-vpn_mn.ts
|
||||
|
||||
CONFIG(release, debug|release) {
|
||||
!system($$PWD/translate_generation.sh): error("Failed to generate translation")
|
||||
}
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
ts_list=(`ls translations/*.ts`)
|
||||
source /etc/os-release
|
||||
version=(`echo $ID`)
|
||||
|
||||
for ts in "${ts_list[@]}"
|
||||
do
|
||||
printf "\nprocess ${ts}\n"
|
||||
if [ "$version" == "fedora" ] || [ "$version" == "opensuse-leap" ] || [ "$version" == "opensuse-tumbleweed" ];then
|
||||
lrelease-qt5 "${ts}"
|
||||
else
|
||||
lrelease "${ts}"
|
||||
fi
|
||||
done
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,835 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="mn">
|
||||
<context>
|
||||
<name>SinglePage</name>
|
||||
<message>
|
||||
<location filename="../frontend/single-pages/singlepage.cpp" line="73"/>
|
||||
<source>Settings</source>
|
||||
<translation>ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/single-pages/singlepage.cpp" line="121"/>
|
||||
<source>Kylin VPN</source>
|
||||
<translation>VPN ᠪᠠᠭᠠᠵᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/single-pages/singlepage.cpp" line="124"/>
|
||||
<source>kylin vpn applet desktop message</source>
|
||||
<translation>VPN ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷ ᠤ᠋ᠨ ᠠᠩᠬᠠᠷᠤᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnAdvancedPage</name>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="791"/>
|
||||
<source>MPPE encryption algorithm:</source>
|
||||
<translation>MPPE ᠨᠢᠭᠤᠴᠠᠯᠠᠨ ᠪᠤᠳᠤᠬᠤ ᠠᠷᠭᠠ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="792"/>
|
||||
<source>Use Stateful encryption</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠᠯᠠᠭᠰᠠᠨ ᠪᠠᠢᠳᠠᠯ ᠳᠦᠯᠦᠪ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="793"/>
|
||||
<source>Send PPP echo packets</source>
|
||||
<translation>PPP ᠪᠤᠴᠠᠭᠠᠨ ᠢᠯᠡᠷᠡᠬᠦᠯᠬᠦ ᠪᠠᠭᠯᠠᠭᠠ ᠵᠢ ᠢᠯᠡᠭᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="794"/>
|
||||
<source>Authentication Mode:</source>
|
||||
<translation>ᠬᠡᠷᠡᠴᠢᠯᠡᠬᠦ ᠠᠷᠭᠠ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="795"/>
|
||||
<source>PAP authentication</source>
|
||||
<translation>PAP ᠬᠡᠷᠡᠴᠢᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="796"/>
|
||||
<source>CHAP authentication</source>
|
||||
<translation>CHAP ᠭᠡᠷᠡᠴᠢᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="797"/>
|
||||
<source>MSCHAP authentication</source>
|
||||
<translation>MSCHAP ᠭᠡᠷᠡᠴᠢᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="798"/>
|
||||
<source>MSCHAP2 authentication</source>
|
||||
<translation>MSCHAP2 ᠭᠡᠷᠡᠴᠢᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="799"/>
|
||||
<source>EAP authentication</source>
|
||||
<translation>EAP ᠭᠡᠷᠡᠴᠢᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="800"/>
|
||||
<source>Compression Mode:</source>
|
||||
<translation>ᠠᠪᠴᠢᠭᠤᠯᠬᠤ ᠠᠷᠭᠠ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="801"/>
|
||||
<source>Allow BSD data compression</source>
|
||||
<translation>BSD ᠠᠪᠴᠢᠭᠤᠯᠤᠯ ᠢ᠋ ᠵᠦᠪᠰᠢᠶᠡᠷᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="802"/>
|
||||
<source>Allow Default data compression</source>
|
||||
<translation>Default ᠠᠪᠴᠢᠭᠤᠯᠤᠯ ᠢ᠋ ᠵᠦᠪᠰᠢᠶᠡᠷᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="803"/>
|
||||
<source>Allow TCP header compression</source>
|
||||
<translation>TCP ᠲᠤᠯᠤᠭᠠᠢ ᠠᠪᠴᠢᠭᠤᠯᠤᠯ ᠢ᠋ ᠵᠦᠪᠰᠢᠶᠡᠷᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="804"/>
|
||||
<source>Use protocol field compression negotiation</source>
|
||||
<translation>ᠭᠡᠷᠡ ᠵᠢᠨ ᠬᠡᠰᠡᠭ ᠤ᠋ᠨ ᠠᠪᠴᠢᠭᠤᠯᠬᠤ ᠵᠦᠪᠰᠢᠯᠴᠡᠯ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="805"/>
|
||||
<source>Use Address/Control compression</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠯᠡᠬᠦ ᠬᠠᠶᠢᠭ / ᠠᠪᠴᠢᠭᠤᠯᠤᠯ ᠢ᠋ ᠡᠵᠡᠮᠳᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="811"/>
|
||||
<source>All Available</source>
|
||||
<translation>ᠶᠠᠮᠠᠷᠪᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="812"/>
|
||||
<source>128-bit</source>
|
||||
<translation>128- ᠤᠷᠤᠨ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="813"/>
|
||||
<source>40-bit</source>
|
||||
<translation>40- ᠤᠷᠤᠨ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1010"/>
|
||||
<source>Use custom gateway port</source>
|
||||
<translation>ᠦᠪᠡᠷᠳᠡᠭᠡᠨ ᠳᠤᠭᠳᠠᠭᠠᠭᠰᠠᠨ ᠨᠸᠲ ᠪᠤᠭᠤᠮᠳᠠ ᠵᠢᠨ ᠦᠵᠦᠬᠦᠷ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1011"/>
|
||||
<source>Use compression</source>
|
||||
<translation>ᠠᠪᠴᠢᠭᠤᠯᠤᠯ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1012"/>
|
||||
<source>Use a TCP connection</source>
|
||||
<translation>TCP ᠴᠦᠷᠬᠡᠯᠡᠬᠡ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1013"/>
|
||||
<source>Set virtual device type</source>
|
||||
<translation>ᠳᠠᠭᠤᠷᠢᠶᠠᠮᠠᠯ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠵᠢᠨ ᠳᠦᠷᠦᠯ ᠵᠦᠢᠯ ᠢ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1014"/>
|
||||
<source>Set virtual device name</source>
|
||||
<translation>ᠳᠠᠭᠤᠷᠢᠶᠠᠮᠠᠯ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠵᠢᠨ ᠨᠡᠷᠡᠢᠳᠦᠯ ᠢ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1015"/>
|
||||
<source>Limit TCP Maximum Segment Size(MSS)</source>
|
||||
<translation>TCP ᠤ᠋ᠨ/ ᠵᠢᠨ ᠬᠠᠮᠤᠭ ᠤ᠋ᠨ ᠶᠡᠬᠡ ᠬᠡᠰᠡᠭ ᠤ᠋ᠨ ᠬᠡᠮᠵᠢᠶᠡ ᠵᠢ ᠬᠢᠵᠠᠭᠠᠷᠯᠠᠬᠤ (MSS)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1016"/>
|
||||
<source>Randomize remote hosts</source>
|
||||
<translation>ᠳᠠᠰᠢᠷᠠᠮᠴᠢᠯᠠᠭᠰᠠᠨ ᠠᠯᠤᠰ ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠭᠤᠤᠯ ᠮᠠᠰᠢᠨ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1017"/>
|
||||
<source>IPv6 tun link</source>
|
||||
<translation>IPv6 tun ᠴᠦᠷᠬᠡᠯᠡᠬᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1018"/>
|
||||
<source>Specify ping interval</source>
|
||||
<translation>ping ᠤ᠋ᠨ/ ᠵᠢᠨ ᠦᠶᠡᠯᠡᠯ ᠢ᠋ ᠳᠤᠭᠳᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1019"/>
|
||||
<source>Specify exit or restart ping</source>
|
||||
<translation>ᠪᠤᠴᠠᠵᠤ ᠭᠠᠷᠤᠭᠰᠠᠨ ᠪᠤᠶᠤ ᠳᠠᠬᠢᠨ ᠡᠬᠢᠯᠡᠭᠰᠡᠨ ping ᠢ᠋/ ᠵᠢ ᠳᠤᠭᠳᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1020"/>
|
||||
<source>Specify max routes</source>
|
||||
<translation>ᠵᠠᠮᠴᠢᠯᠠᠭᠤᠷ ᠤ᠋ᠨ ᠳᠡᠭᠡᠳᠦ ᠬᠢᠵᠠᠭᠠᠷ ᠢ᠋ ᠳᠤᠭᠳᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1021"/>
|
||||
<source>Infinite retry on error</source>
|
||||
<translation>ᠠᠯᠳᠠᠭᠠ ᠭᠠᠷᠬᠤ ᠦᠶᠡ ᠳ᠋ᠤ᠌ ᠬᠢᠵᠠᠭᠠᠷ ᠦᠬᠡᠢ ᠳᠠᠬᠢᠵᠤ ᠳᠤᠷᠰᠢᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1022"/>
|
||||
<source>Use custom key size</source>
|
||||
<translation>ᠦᠪᠡᠷᠳᠡᠭᠡᠨ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠤᠭᠰᠠᠨ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠤ᠋ᠨ ᠬᠡᠮᠵᠢᠶᠡ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1023"/>
|
||||
<source>Choose</source>
|
||||
<translation>ᠰᠤᠩᠭᠤᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1026"/>
|
||||
<source>Use custom renegotiation interval</source>
|
||||
<translation>ᠦᠪᠡᠷᠳᠡᠭᠡᠨ ᠳᠤᠭᠳᠠᠭᠠᠭᠰᠠᠨ ᠳᠠᠬᠢᠨ ᠵᠦᠪᠰᠢᠯᠴᠡᠬᠦ ᠵᠠᠭᠠᠭ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1028"/>
|
||||
<source>Use custom tunnel Maximum Transmission Umit(MTU)</source>
|
||||
<translation>ᠦᠪᠡᠷᠳᠡᠭᠡᠨ ᠳᠤᠭᠳᠠᠭᠠᠭᠰᠠᠨ ᠰᠤᠪᠠᠭ ᠤ᠋ᠨ ᠬᠠᠮᠤᠭ ᠤ᠋ᠨ ᠶᠡᠬᠡ ᠨᠢᠭᠡᠴᠢ ᠵᠢᠨ ᠳᠠᠮᠵᠢᠭᠤᠯᠭᠠ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ (MTU)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1030"/>
|
||||
<source>Use custom UDP fragment size</source>
|
||||
<translation>ᠦᠪᠡᠷᠳᠡᠭᠡᠨ ᠳᠤᠭᠳᠠᠭᠠᠭᠰᠠᠨ UDP ᠬᠤᠪᠢᠶᠠᠷᠢ ᠬᠡᠰᠡᠭ ᠤ᠋ᠨ ᠬᠡᠮᠵᠢᠶᠡ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1032"/>
|
||||
<source>Accept authenticated packets from any address (Float)</source>
|
||||
<translation>ᠶᠠᠮᠠᠷᠪᠠ ᠬᠠᠶᠢᠭ (Float) ᠵᠢᠡᠷ ᠢᠷᠡᠭᠰᠡᠨ ᠨᠢᠭᠡᠨᠳᠡ ᠪᠡᠶᠡ ᠵᠢᠨ ᠭᠠᠷᠤᠯ ᠢ᠋ ᠪᠠᠳᠤᠯᠠᠭᠠᠵᠢᠭᠤᠯᠤᠭᠰᠠᠨ ᠳ᠋ᠠᠢᠲ᠋ᠠ ᠪᠠᠭᠯᠠᠭᠠ ᠵᠢ ᠬᠦᠯᠢᠶᠡᠵᠤ ᠠᠪᠤᠨᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1034"/>
|
||||
<source>Subject Match</source>
|
||||
<translation>ᠭᠤᠤᠯ ᠰᠡᠳᠦᠪ ᠠᠪᠴᠠᠯᠳᠤᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1035"/>
|
||||
<source>Key File</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠤ᠋ᠨ ᠹᠠᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1036"/>
|
||||
<source>Key Direction</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠤ᠋ᠨ ᠴᠢᠭᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1038"/>
|
||||
<source>Server Address</source>
|
||||
<translation>ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ ᠤ᠋ᠨ ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1039"/>
|
||||
<source>Port</source>
|
||||
<translation>ᠦᠵᠦᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1040"/>
|
||||
<source>Proxy USername</source>
|
||||
<translation>ᠤᠷᠤᠯᠠᠭᠴᠢ ᠬᠡᠷᠡᠭᠡᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠨᠡᠷᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1041"/>
|
||||
<source>Proxy Password</source>
|
||||
<translation>ᠤᠷᠤᠯᠠᠭᠴᠢ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1043"/>
|
||||
<source>General</source>
|
||||
<translation>ᠳᠦᠷᠢᠮᠵᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1044"/>
|
||||
<source>TLS settings</source>
|
||||
<translation>TLS ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1045"/>
|
||||
<source>Server Certificate Check</source>
|
||||
<translation>ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ ᠤ᠋ᠨ ᠦᠨᠡᠮᠯᠡᠯ ᠢ᠋ ᠰᠢᠯᠭᠠᠨ ᠪᠠᠢᠴᠠᠭᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1047"/>
|
||||
<source>Use the previous authentication end (server) certificate</source>
|
||||
<translation>ᠡᠮᠦᠨᠡᠬᠢ ᠪᠠᠳᠤᠯᠠᠭᠠᠵᠢᠭᠤᠯᠬᠤ ᠦᠵᠦᠬᠦᠷ ᠤ᠋ᠨ ᠦᠨᠡᠮᠯᠡᠯ ( ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ) ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1049"/>
|
||||
<source>Verify peer (server) certificate nsCertType specification</source>
|
||||
<translation>ᠳᠡᠩᠴᠡᠬᠦᠦ ᠴᠡᠭ ( ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ) ᠤ᠋ᠨ ᠦᠨᠡᠮᠯᠡᠯ nsCertType ᠢ᠋/ ᠵᠢ ᠪᠠᠳᠤᠯᠠᠭᠠᠵᠢᠭᠤᠯᠵᠤ ᠳᠤᠭᠳᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1050"/>
|
||||
<source>Mode</source>
|
||||
<translation>ᠮᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1051"/>
|
||||
<source>Proxies</source>
|
||||
<translation>ᠤᠷᠤᠯᠠᠭᠴᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1052"/>
|
||||
<source>Proxy Type</source>
|
||||
<translation>ᠤᠷᠤᠯᠠᠭᠴᠢ ᠵᠢᠨ ᠳᠦᠷᠦᠯ ᠵᠦᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1053"/>
|
||||
<source>Security</source>
|
||||
<translation>ᠠᠮᠤᠷ ᠳᠦᠪᠰᠢᠨ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1054"/>
|
||||
<source>HMAC Authentication</source>
|
||||
<translation>HMAC ᠭᠡᠷᠡᠴᠢᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1064"/>
|
||||
<source>Input content</source>
|
||||
<translation>ᠤᠷᠤᠭᠤᠯᠬᠤ ᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1066"/>
|
||||
<source>No</source>
|
||||
<translation>ᠪᠢᠰᠢ/ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1070"/>
|
||||
<source>Self-adaption</source>
|
||||
<translation>ᠦᠪᠡᠷᠳᠡᠭᠡᠨ ᠵᠤᠬᠢᠴᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1071"/>
|
||||
<source>Automatic</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1076"/>
|
||||
<source>Exit</source>
|
||||
<translation>ᠪᠤᠴᠠᠵᠤ ᠭᠠᠷᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1077"/>
|
||||
<source>Restart</source>
|
||||
<translation>ᠳᠠᠬᠢᠨ ᠡᠬᠢᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1079"/>
|
||||
<source>Don't verify certificate identification</source>
|
||||
<translation>ᠦᠨᠡᠮᠯᠡᠯ ᠤ᠋ᠨ ᠳᠡᠮᠳᠡᠭ ᠢ᠋ ᠪᠠᠳᠤᠯᠠᠭᠠᠵᠢᠭᠤᠯᠬᠤ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1080"/>
|
||||
<source>Verify the entire subject exactly</source>
|
||||
<translation>ᠪᠦᠬᠦᠢᠯᠡ ᠭᠤᠤᠯ ᠰᠡᠳᠦᠪ ᠢ᠋ ᠪᠠᠳᠤᠳᠠᠢ ᠪᠠᠳᠤᠯᠠᠭᠠᠵᠢᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1081"/>
|
||||
<source>Verify name exactly</source>
|
||||
<translation>ᠨᠡᠷᠡᠢᠳᠦᠯ ᠢ᠋ ᠤᠨᠤᠪᠴᠢᠳᠠᠢ ᠪᠠᠳᠤᠯᠠᠭᠠᠵᠢᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1082"/>
|
||||
<source>Verify name by prefix</source>
|
||||
<translation>ᠤᠭᠳᠤᠪᠤᠷᠢ ᠪᠡᠷ ᠨᠡᠷᠡᠢᠳᠦᠯ ᠢ᠋ ᠪᠠᠳᠤᠯᠠᠭᠠᠵᠢᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1084"/>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1087"/>
|
||||
<source>Server</source>
|
||||
<translation>ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1085"/>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1088"/>
|
||||
<source>Client</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠡᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠦᠵᠦᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1090"/>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1094"/>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1103"/>
|
||||
<source>None</source>
|
||||
<translation>ᠪᠠᠢᠬᠤ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1091"/>
|
||||
<source>TLS-Certification</source>
|
||||
<translation>TLS- ᠭᠡᠷᠡᠴᠢᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1092"/>
|
||||
<source>TLS-Encryption</source>
|
||||
<translation>TLS- ᠨᠢᠭᠤᠴᠠᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1098"/>
|
||||
<source>Not Required</source>
|
||||
<translation>ᠱᠠᠭᠠᠷᠳᠠᠬᠤ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1102"/>
|
||||
<source>Default</source>
|
||||
<translation>ᠠᠶᠠᠳᠠᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1176"/>
|
||||
<source>Options:</source>
|
||||
<translation>ᠰᠤᠩᠭᠤᠭᠳᠠᠬᠤᠨ:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1179"/>
|
||||
<source>Request an inner IP address</source>
|
||||
<translation>ᠳᠤᠳᠤᠭᠠᠳᠤ IP ᠬᠠᠶᠢᠭ ᠢ᠋ ᠭᠤᠶᠤᠴᠢᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1180"/>
|
||||
<source>Enforce UDP encapsulation</source>
|
||||
<translation>ᠠᠯᠪᠠ ᠪᠡᠷ UDP ᠪᠢᠳᠡᠬᠦᠮᠵᠢᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1181"/>
|
||||
<source>Use IP compression</source>
|
||||
<translation>IP ᠠᠪᠴᠢᠭᠤᠯᠤᠯ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnadvancedpage.cpp" line="1182"/>
|
||||
<source>Enable custom password suggestions</source>
|
||||
<translation>ᠦᠪᠡᠷᠳᠡᠭᠡᠨ ᠳᠤᠭᠳᠠᠭᠠᠬᠰᠠᠨ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ ᠤ᠋ᠨ ᠰᠠᠨᠠᠭᠤᠯᠤᠮᠵᠢ ᠵᠢ ᠡᠬᠢᠯᠡᠬᠦᠯᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnConfigPage</name>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="312"/>
|
||||
<source>Type</source>
|
||||
<translation>ᠳᠦᠷᠦᠯ ᠵᠦᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="313"/>
|
||||
<source>Name</source>
|
||||
<translation>ᠨᠡᠷᠡᠢᠳᠦᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="314"/>
|
||||
<source>Static Key</source>
|
||||
<translation>ᠳᠠᠢᠪᠤᠩ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="315"/>
|
||||
<source>Local IP</source>
|
||||
<translation>ᠲᠤᠰ ᠭᠠᠵᠠᠷ ᠤ᠋ᠨ IP ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="316"/>
|
||||
<source>Remote IP</source>
|
||||
<translation>ᠠᠯᠤᠰ ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ IP ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="317"/>
|
||||
<source>PIN Code</source>
|
||||
<translation>PIN ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="318"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="790"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="797"/>
|
||||
<source>Password</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="319"/>
|
||||
<source>NT Domain</source>
|
||||
<translation>NT ᠬᠡᠰᠡᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="321"/>
|
||||
<source>Server Address</source>
|
||||
<translation>ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ ᠤ᠋ᠨ ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="322"/>
|
||||
<source>Authentication Mode</source>
|
||||
<translation>ᠬᠡᠷᠡᠴᠢᠯᠡᠬᠦ ᠠᠷᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="323"/>
|
||||
<source>CA Certificate</source>
|
||||
<translation>CA ᠦᠨᠡᠮᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="324"/>
|
||||
<source>User Certificate</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠡᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠦᠨᠡᠮᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="325"/>
|
||||
<source>Key Direction</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠤ᠋ᠨ ᠴᠢᠭᠯᠡᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="326"/>
|
||||
<source>Private Key</source>
|
||||
<translation>ᠬᠤᠪᠢ ᠵᠢᠨ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="327"/>
|
||||
<source>Private Key Password</source>
|
||||
<translation>ᠬᠤᠪᠢ ᠵᠢᠨ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠤ᠋ᠨ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="328"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="330"/>
|
||||
<source>Password Options</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ ᠤ᠋ᠨ ᠰᠤᠩᠭᠤᠭᠳᠠᠬᠤᠨ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="329"/>
|
||||
<source>Username</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠨᠡᠷᠡ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="333"/>
|
||||
<source>Notice:
|
||||
If key direction is used, it must be opposite to the VPN side used. If '1' is used, the connection must use '0'. If you are not sure which value to use, please contact your system administrator.</source>
|
||||
<translation>ᠠᠩᠬᠠᠷᠤᠭᠠᠷᠠᠢ:
|
||||
ᠬᠡᠷᠪᠡ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠤ᠋ᠨ ᠴᠢᠭᠯᠡᠯ ᠢ᠋ ᠬᠡᠷᠡᠭᠯᠡᠭᠰᠡᠨ ᠪᠤᠯ᠂ ᠲᠡᠷᠡ ᠨᠢ ᠡᠷᠬᠡᠪᠰᠢ ᠬᠡᠷᠡᠭᠯᠡᠭᠰᠡᠨ VPN ᠦᠵᠦᠬᠦᠷ ᠲᠠᠢ ᠡᠰᠡᠷᠬᠦ ᠪᠠᠢᠬᠤ ᠬᠡᠷᠡᠭᠳᠡᠢ᠃ ᠬᠡᠷᠪᠡ '1' ᠢ᠋/ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠭᠰᠡᠨ ᠪᠤᠯ᠂ ᠴᠦᠷᠬᠡᠯᠡᠭᠡ ᠨᠢ ᠡᠷᠬᠡᠪᠰᠢ '0' ᠢ᠋/ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ ᠬᠡᠷᠡᠭᠳᠡᠢ᠃ ᠬᠡᠷᠪᠡ ᠠᠯᠢ ᠵᠢ ᠨᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ ᠪᠡᠨ ᠳᠤᠭᠳᠠᠵᠤ ᠴᠢᠳᠠᠭᠠ ᠦᠬᠡᠢ ᠪᠤᠯ᠂ ᠲᠠ ᠰᠢᠰᠲ᠋ᠧᠮ ᠤ᠋ᠨ ᠬᠠᠮᠢᠶᠠᠷᠤᠭᠴᠢ ᠲᠠᠢ ᠪᠡᠨ ᠬᠠᠷᠢᠯᠴᠠᠭᠠᠷᠠᠢ.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="340"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="341"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="342"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="343"/>
|
||||
<source>Choose</source>
|
||||
<translation>ᠰᠤᠩᠭᠤᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="350"/>
|
||||
<source>None</source>
|
||||
<translation>ᠪᠠᠢᠬᠤ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="354"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="360"/>
|
||||
<source>Save password only for this user</source>
|
||||
<translation>ᠵᠦᠪᠬᠡᠨ ᠤᠳᠤᠬᠠᠨ ᠤ᠋ ᠬᠡᠷᠡᠭᠡᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ ᠢ᠋ ᠬᠠᠳᠠᠭᠠᠯᠠᠨᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="355"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="361"/>
|
||||
<source>Save password for all users</source>
|
||||
<translation>ᠪᠦᠬᠦᠢᠯᠡ ᠬᠡᠷᠡᠭᠡᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ ᠢ᠋ ᠬᠠᠳᠠᠭᠠᠯᠠᠨᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="356"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="362"/>
|
||||
<source>Ask password every time</source>
|
||||
<translation>ᠤᠳᠠᠭᠠ ᠪᠦᠷᠢ ᠠᠰᠠᠭᠤᠨ ᠯᠠᠪᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="357"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="363"/>
|
||||
<source>Don't require a password</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ ᠬᠡᠷᠡᠭ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="366"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="367"/>
|
||||
<source>Required</source>
|
||||
<translation>ᠡᠷᠬᠡᠪᠰᠢ ᠳᠠᠭᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="795"/>
|
||||
<source>Certificate(TLS)</source>
|
||||
<translation>ᠦᠨᠡᠮᠯᠡᠯ (TLS)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="796"/>
|
||||
<source>Static key</source>
|
||||
<translation>ᠳᠠᠢᠪᠤᠩ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="798"/>
|
||||
<source>Password and certificate(TLS)</source>
|
||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ ᠬᠢᠬᠡᠳ ᠦᠨᠡᠮᠯᠡᠯ (TLS)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="807"/>
|
||||
<source>Certificate/Private key</source>
|
||||
<translation>ᠦᠨᠡᠮᠯᠡᠯ / ᠬᠤᠪᠢ ᠵᠢᠨ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="808"/>
|
||||
<source>Certificate/ssh-agent</source>
|
||||
<translation>ᠦᠨᠡᠮᠯᠡᠯ /ssh-agent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="809"/>
|
||||
<source>Smart card</source>
|
||||
<translation>ᠤᠶᠤᠯᠢᠭ ᠺᠠᠷᠲ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="864"/>
|
||||
<source>Choose a private key</source>
|
||||
<translation>ᠬᠤᠪᠢ ᠵᠢᠨ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠢ᠋ ᠰᠤᠩᠭᠤᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="866"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="905"/>
|
||||
<source>Key Files (*.key *.pem *.der *.p12 *.pfx)</source>
|
||||
<translation>ᠬᠤᠪᠢ ᠵᠢᠨ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠤ᠋ᠨ ᠹᠠᠢᠯ (*.key *.pem *.der *.p12 *.pfx)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="877"/>
|
||||
<source>Choose a CA certificate</source>
|
||||
<translation>CA ᠦᠨᠡᠮᠯᠡᠯ ᠢ᠋ ᠰᠤᠩᠭᠤᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="879"/>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="892"/>
|
||||
<source>CA Files (*.pem *.der *.p12 *.crt *.cer *.pfx)</source>
|
||||
<translation>CA ᠹᠠᠢᠯ (*.pem *.der *.p12 *.crt *.cer *.pfx)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="890"/>
|
||||
<source>Choose a User certificate</source>
|
||||
<translation>ᠬᠡᠷᠡᠭᠡᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠦᠨᠡᠮᠯᠡᠯ ᠢ᠋ ᠰᠤᠩᠭᠤᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnconfigpage.cpp" line="903"/>
|
||||
<source>Choose a Static key</source>
|
||||
<translation>ᠳᠠᠢᠪᠤᠩ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠢ᠋ ᠰᠤᠩᠭᠤᠬᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnIpv4Page</name>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="152"/>
|
||||
<source>IPv4 Config</source>
|
||||
<translation>IPv4 ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="153"/>
|
||||
<source>Address</source>
|
||||
<translation>ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="154"/>
|
||||
<source>Netmask</source>
|
||||
<translation>ᠬᠤᠪᠢᠶᠠᠷᠢ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠠᠯᠳᠠᠯᠠᠯ ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="155"/>
|
||||
<source>Default Gateway</source>
|
||||
<translation>ᠠᠶᠠᠳᠠᠯ ᠨᠸᠲ ᠪᠤᠭᠤᠮᠳᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="156"/>
|
||||
<source>DNS Server</source>
|
||||
<translation>DNS ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="157"/>
|
||||
<source>Search Domain</source>
|
||||
<translation>ᠬᠠᠢᠬᠤ ᠬᠡᠰᠡᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="158"/>
|
||||
<source>DHCP Client ID</source>
|
||||
<translation>DHCP ᠬᠡᠷᠡᠭᠡᠯᠡᠭᠴᠢ ᠵᠢᠨ ᠦᠵᠦᠬᠦᠷ ID</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="160"/>
|
||||
<source>Auto(DHCP)</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋ (DHCP)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv4page.cpp" line="161"/>
|
||||
<source>Manual</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋ ᠪᠤᠰᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnIpv6Page</name>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="141"/>
|
||||
<source>IPv6 Config</source>
|
||||
<translation>IPv6 ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="142"/>
|
||||
<source>Address</source>
|
||||
<translation>ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="143"/>
|
||||
<source>Netmask</source>
|
||||
<translation>ᠬᠤᠪᠢᠶᠠᠷᠢ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠠᠯᠳᠠᠯᠠᠯ ᠺᠤᠳ᠋</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="144"/>
|
||||
<source>Default Gateway</source>
|
||||
<translation>ᠠᠶᠠᠳᠠᠯ ᠨᠸᠲ ᠪᠤᠭᠤᠮᠳᠠ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="145"/>
|
||||
<source>DNS Server</source>
|
||||
<translation>DNS ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="146"/>
|
||||
<source>Search Domain</source>
|
||||
<translation>ᠬᠠᠢᠬᠤ ᠬᠡᠰᠡᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="148"/>
|
||||
<source>Auto(DHCP)</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋ (DHCP)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnipv6page.cpp" line="149"/>
|
||||
<source>Manual</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋ ᠪᠤᠰᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnListItem</name>
|
||||
<message>
|
||||
<location filename="../frontend/list-items/vpnlistitem.cpp" line="61"/>
|
||||
<source>Not connected</source>
|
||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠭᠡ ᠦᠬᠡᠢ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/list-items/vpnlistitem.cpp" line="160"/>
|
||||
<location filename="../frontend/list-items/vpnlistitem.cpp" line="176"/>
|
||||
<source>Disconnect</source>
|
||||
<translation>ᠳᠠᠰᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/list-items/vpnlistitem.cpp" line="162"/>
|
||||
<location filename="../frontend/list-items/vpnlistitem.cpp" line="174"/>
|
||||
<source>Connect</source>
|
||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnPage</name>
|
||||
<message>
|
||||
<location filename="../frontend/single-pages/vpnpage.cpp" line="259"/>
|
||||
<source>VPN</source>
|
||||
<translation>vpn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/single-pages/vpnpage.cpp" line="270"/>
|
||||
<source>VPN Settings</source>
|
||||
<translation>VPN ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>vpnAddPage</name>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnaddpage.cpp" line="15"/>
|
||||
<source>create VPN</source>
|
||||
<translation>VPN ᠪᠠᠢᠭᠤᠯᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnaddpage.cpp" line="47"/>
|
||||
<source>VPN Type</source>
|
||||
<translation>VPN ᠳᠦᠷᠦᠯ ᠵᠦᠢᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnaddpage.cpp" line="75"/>
|
||||
<source>VPN Name</source>
|
||||
<translation>VPN ᠨᠡᠷᠡᠢᠳᠦᠯ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnaddpage.cpp" line="81"/>
|
||||
<location filename="../frontend/vpndetails/vpnaddpage.cpp" line="103"/>
|
||||
<source>Required</source>
|
||||
<translation>ᠡᠷᠬᠡᠪᠰᠢ ᠳᠠᠭᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpnaddpage.cpp" line="98"/>
|
||||
<source>VPN Server</source>
|
||||
<translation>ᠦᠢᠯᠡᠴᠢᠯᠡᠬᠦᠷ ᠤ᠋ᠨ ᠬᠠᠶᠢᠭ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetailpage.cpp" line="12"/>
|
||||
<source>VPN</source>
|
||||
<translation>vpn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetailpage.cpp" line="41"/>
|
||||
<source>Auto Connection</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋ ᠴᠦᠷᠬᠡᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetailpage.cpp" line="53"/>
|
||||
<source>Confirm</source>
|
||||
<translation>ᠪᠠᠳᠤᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetailpage.cpp" line="56"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ᠦᠬᠡᠢᠰᠬᠡᠬᠦ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>vpnConfigPage</name>
|
||||
<message>
|
||||
<source>VPN Type</source>
|
||||
<translation type="vanished">VPN类型</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>VpnDetail</name>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="61"/>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="145"/>
|
||||
<source>VPN</source>
|
||||
<translation>vpn</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="146"/>
|
||||
<source>IPv4</source>
|
||||
<translation>ipv4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="148"/>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="225"/>
|
||||
<source>IPv6</source>
|
||||
<translation>ipv6</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="153"/>
|
||||
<source>Advanced</source>
|
||||
<translation>ᠦᠨᠳᠦᠷ ᠳᠡᠰ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="158"/>
|
||||
<source>Auto Connection</source>
|
||||
<translation>ᠠᠦ᠋ᠲ᠋ᠣ᠋ ᠴᠦᠷᠬᠡᠯᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="159"/>
|
||||
<source>Cancel</source>
|
||||
<translation>ᠦᠭᠡᠢᠰᠬᠡᠬᠦ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../frontend/vpndetails/vpndetail.cpp" line="160"/>
|
||||
<source>Confirm</source>
|
||||
<translation>ᠪᠠᠳᠤᠯᠠᠬᠤ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>vpnObject</name>
|
||||
<message>
|
||||
<location filename="../frontend/vpnobject.cpp" line="31"/>
|
||||
<source>vpn tool</source>
|
||||
<translation>vpn ᠪᠠᠭᠠᠵᠢ</translation>
|
||||
</message>
|
||||
</context>
|
||||
</TS>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue