Merge branch '0928-up' into 'yhkylin/v101'
feat: 内网连通性检测需求(#23680) See merge request kylinos-src/kylin-nm!292
This commit is contained in:
commit
730e7ad3c6
|
@ -81,6 +81,7 @@ KyConnectResourse::KyConnectResourse(QObject *parent) : QObject(parent)
|
||||||
connect(m_networkResourceInstance, &KyNetworkResourceManager::connectionUpdate, this, &KyConnectResourse::connectionUpdate);
|
connect(m_networkResourceInstance, &KyNetworkResourceManager::connectionUpdate, this, &KyConnectResourse::connectionUpdate);
|
||||||
connect(m_networkResourceInstance, &KyNetworkResourceManager::connectivityChanged, this, &KyConnectResourse::connectivityChanged);
|
connect(m_networkResourceInstance, &KyNetworkResourceManager::connectivityChanged, this, &KyConnectResourse::connectivityChanged);
|
||||||
|
|
||||||
|
connect(m_networkResourceInstance, &KyNetworkResourceManager::connectivityCheckSpareUriChanged, this, &KyConnectResourse::connectivityCheckSpareUriChanged);
|
||||||
connect(m_networkResourceInstance, &KyNetworkResourceManager::needShowDesktop, this, &KyConnectResourse::needShowDesktop);
|
connect(m_networkResourceInstance, &KyNetworkResourceManager::needShowDesktop, this, &KyConnectResourse::needShowDesktop);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -86,6 +86,7 @@ Q_SIGNALS:
|
||||||
void connectionUpdate(QString uuid);
|
void connectionUpdate(QString uuid);
|
||||||
void connectionRemove(QString path);
|
void connectionRemove(QString path);
|
||||||
void connectivityChanged(NetworkManager::Connectivity connectivity);
|
void connectivityChanged(NetworkManager::Connectivity connectivity);
|
||||||
|
void connectivityCheckSpareUriChanged();
|
||||||
|
|
||||||
void needShowDesktop(QString);
|
void needShowDesktop(QString);
|
||||||
|
|
||||||
|
|
|
@ -598,6 +598,12 @@ void KyNetworkResourceManager::onPropertiesChanged(QVariantMap qvm)
|
||||||
Q_EMIT wiredEnabledChanged(wiredEnable);
|
Q_EMIT wiredEnabledChanged(wiredEnable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
for(QString keyStr : qvm.keys()) {
|
||||||
|
//内网检测地址变化
|
||||||
|
if (keyStr == "ConnectivityCheckSpareUri") {
|
||||||
|
Q_EMIT connectivityCheckSpareUriChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void KyNetworkResourceManager::onConnectionUpdated()
|
void KyNetworkResourceManager::onConnectionUpdated()
|
||||||
|
|
|
@ -129,6 +129,7 @@ Q_SIGNALS:
|
||||||
void wifiNetworkDeviceDisappear();
|
void wifiNetworkDeviceDisappear();
|
||||||
void wifiEnabledChanged(bool);
|
void wifiEnabledChanged(bool);
|
||||||
void wiredEnabledChanged(bool);
|
void wiredEnabledChanged(bool);
|
||||||
|
void connectivityCheckSpareUriChanged();
|
||||||
|
|
||||||
void activeConnectionsReset();
|
void activeConnectionsReset();
|
||||||
void activeConnectionAdd(QString uuid);
|
void activeConnectionAdd(QString uuid);
|
||||||
|
|
|
@ -217,3 +217,89 @@ out:
|
||||||
g_object_unref (props_proxy);
|
g_object_unref (props_proxy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString getConnectivityCheckSpareUriByGDbus()
|
||||||
|
{
|
||||||
|
GDBusProxy *props_proxy;
|
||||||
|
GVariant *ret = NULL, *path_value = NULL;
|
||||||
|
GError *error = NULL;
|
||||||
|
QString str;
|
||||||
|
|
||||||
|
/* Create a D-Bus object proxy for the active connection object's properties */
|
||||||
|
props_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
|
||||||
|
G_DBUS_PROXY_FLAGS_NONE,
|
||||||
|
NULL,
|
||||||
|
"org.freedesktop.NetworkManager",
|
||||||
|
"/org/freedesktop/NetworkManager",
|
||||||
|
"org.freedesktop.DBus.Properties",
|
||||||
|
NULL, NULL);
|
||||||
|
g_assert (props_proxy);
|
||||||
|
|
||||||
|
/* Get the object path of the Connection details */
|
||||||
|
ret = g_dbus_proxy_call_sync (props_proxy,
|
||||||
|
"Get",
|
||||||
|
g_variant_new ("(ss)",
|
||||||
|
"org.freedesktop.NetworkManager",
|
||||||
|
"ConnectivityCheckSpareUri"),
|
||||||
|
G_DBUS_CALL_FLAGS_NONE, -1,
|
||||||
|
NULL, &error);
|
||||||
|
if (!ret) {
|
||||||
|
g_dbus_error_strip_remote_error (error);
|
||||||
|
qDebug() << "failed to getConnectivityCheckSpareUri";
|
||||||
|
g_error_free (error);
|
||||||
|
}
|
||||||
|
|
||||||
|
g_variant_get (ret, "(v)", &path_value);
|
||||||
|
// if (!g_variant_is_of_type (path_value, G_VARIANT_TYPE_VARIANT)) {
|
||||||
|
// g_warning ("Unexpected type returned getting Connection property: %s",
|
||||||
|
// g_variant_get_type_string (path_value));
|
||||||
|
// goto out;
|
||||||
|
// }
|
||||||
|
|
||||||
|
str = QString(g_variant_get_string(path_value, NULL));
|
||||||
|
|
||||||
|
out:
|
||||||
|
if (path_value)
|
||||||
|
g_variant_unref (path_value);
|
||||||
|
if (ret)
|
||||||
|
g_variant_unref (ret);
|
||||||
|
g_object_unref (props_proxy);
|
||||||
|
|
||||||
|
return str;
|
||||||
|
}
|
||||||
|
|
||||||
|
void setConnectivityCheckSpareUriByGDbus(QString uri)
|
||||||
|
{
|
||||||
|
GDBusProxy *props_proxy;
|
||||||
|
GVariant *ret = NULL;
|
||||||
|
GError *error = NULL;
|
||||||
|
|
||||||
|
/* Create a D-Bus object proxy for the active connection object's properties */
|
||||||
|
props_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM,
|
||||||
|
G_DBUS_PROXY_FLAGS_NONE,
|
||||||
|
NULL,
|
||||||
|
"org.freedesktop.NetworkManager",
|
||||||
|
"/org/freedesktop/NetworkManager",
|
||||||
|
"org.freedesktop.DBus.Properties",
|
||||||
|
NULL, NULL);
|
||||||
|
g_assert (props_proxy);
|
||||||
|
|
||||||
|
/* Get the object path of the Connection details */
|
||||||
|
ret = g_dbus_proxy_call_sync (props_proxy,
|
||||||
|
"Set",
|
||||||
|
g_variant_new ("(ssv)",
|
||||||
|
"org.freedesktop.NetworkManager",
|
||||||
|
"ConnectivityCheckSpareUri",
|
||||||
|
g_variant_new_string(uri.toStdString().c_str())),
|
||||||
|
G_DBUS_CALL_FLAGS_NONE, -1,
|
||||||
|
NULL, &error);
|
||||||
|
if (!ret) {
|
||||||
|
g_dbus_error_strip_remote_error (error);
|
||||||
|
qDebug() << "failed to setConnectivityCheckSpareUri";
|
||||||
|
g_error_free (error);
|
||||||
|
}
|
||||||
|
|
||||||
|
out:
|
||||||
|
if (ret)
|
||||||
|
g_variant_unref (ret);
|
||||||
|
g_object_unref (props_proxy);
|
||||||
|
}
|
||||||
|
|
|
@ -37,6 +37,8 @@ QString getConnectTypeByDbus(QString &connectPath);
|
||||||
QString getSsidFromByteArray(QByteArray &rawSsid);
|
QString getSsidFromByteArray(QByteArray &rawSsid);
|
||||||
void setWiredEnabledByGDbus(bool enabled);
|
void setWiredEnabledByGDbus(bool enabled);
|
||||||
void setDeviceManagedByGDbus(QString dbusPath, bool managed);
|
void setDeviceManagedByGDbus(QString dbusPath, bool managed);
|
||||||
|
QString getConnectivityCheckSpareUriByGDbus();
|
||||||
|
void setConnectivityCheckSpareUriByGDbus(QString str);
|
||||||
bool getWiredEnabledByGDbus();
|
bool getWiredEnabledByGDbus();
|
||||||
|
|
||||||
#endif // KYLINUTIL_H
|
#endif // KYLINUTIL_H
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
INCLUDEPATH += $$PWD
|
||||||
|
|
||||||
|
FORMS += \
|
||||||
|
|
||||||
|
HEADERS += \
|
||||||
|
$$PWD/connectivitypage.h \
|
||||||
|
|
||||||
|
SOURCES += \
|
||||||
|
$$PWD/connectivitypage.cpp \
|
|
@ -0,0 +1,205 @@
|
||||||
|
#include "connectivitypage.h"
|
||||||
|
#include <QLayout>
|
||||||
|
#include <QFormLayout>
|
||||||
|
#include <QApplication>
|
||||||
|
#include <QGSettings>
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QRegExpValidator>
|
||||||
|
|
||||||
|
#include "windowmanager/windowmanager.h"
|
||||||
|
#include "kwindowsystem.h"
|
||||||
|
#include "kwindowsystem_export.h"
|
||||||
|
#include "kylinutil.h"
|
||||||
|
|
||||||
|
#define THEME_SCHAME "org.ukui.style"
|
||||||
|
#define COLOR_THEME "styleName"
|
||||||
|
|
||||||
|
#define BOTTOM_LAYOUT_MARGINS 24, 16, 24, 24
|
||||||
|
#define LAYOUT_SPACING 16
|
||||||
|
|
||||||
|
ConnectivityPage::ConnectivityPage(QString uri, QWidget *parent)
|
||||||
|
:m_uri(uri), QDialog(parent)
|
||||||
|
{
|
||||||
|
this->setAttribute(Qt::WA_DeleteOnClose, true);
|
||||||
|
this->setFixedSize(380, 369);
|
||||||
|
this->setWindowTitle(tr("Network connectivity detection"));
|
||||||
|
setAttribute(Qt::WA_DeleteOnClose, false);
|
||||||
|
KWindowSystem::setState(this->winId(), NET::SkipTaskbar | NET::SkipPager);
|
||||||
|
m_connectResource = new KyConnectResourse(this);
|
||||||
|
initUi();
|
||||||
|
initConnect();
|
||||||
|
NetworkManager::Connectivity connectivity;
|
||||||
|
m_connectResource->getConnectivity(connectivity);
|
||||||
|
setWarning(connectivity);
|
||||||
|
m_publicNetworkButton->setChecked(m_uri.isEmpty());
|
||||||
|
m_intranetButton->setChecked(!m_uri.isEmpty());
|
||||||
|
if (!m_uri.isEmpty()) {
|
||||||
|
checkUri();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConnectivityPage::initUi()
|
||||||
|
{
|
||||||
|
m_scrollArea = new QScrollArea(this);
|
||||||
|
m_scrollArea->setFixedWidth(380);
|
||||||
|
m_scrollArea->setFrameShape(QFrame::NoFrame);
|
||||||
|
m_scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
||||||
|
m_scrollArea->setContentsMargins(0,0,0,0);
|
||||||
|
|
||||||
|
m_icon = new QLabel(this);
|
||||||
|
m_statusText = new QLabel(this);
|
||||||
|
m_statusText->setWordWrap(true);
|
||||||
|
|
||||||
|
//如访问 Internet 受限,请切换网络 IP 连通性检测方式后再试。
|
||||||
|
m_text = new QLabel(this);
|
||||||
|
m_text->setText(tr("If access to the Internet is restricted, please switch the network IP connectivity detection method and try again."));
|
||||||
|
m_text->setWordWrap(true);
|
||||||
|
m_text->adjustSize();
|
||||||
|
// m_text->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
||||||
|
|
||||||
|
m_publicNetworkButton = new QRadioButton(this);
|
||||||
|
m_publicNetworkButton->setText(tr("Public network (default)"));
|
||||||
|
m_intranetButton = new QRadioButton(this);
|
||||||
|
m_intranetButton->setText(tr("Local area network (intranet)"));
|
||||||
|
|
||||||
|
m_uriEdit = new QLineEdit(this);
|
||||||
|
m_uriEdit->setText(m_uri);
|
||||||
|
m_warningLabel = new QLabel(this);
|
||||||
|
QPalette hintTextColor;
|
||||||
|
hintTextColor.setColor(QPalette::WindowText, Qt::red);
|
||||||
|
m_warningLabel->setPalette(hintTextColor);
|
||||||
|
m_warningLabel->setWordWrap(true);
|
||||||
|
|
||||||
|
m_confirmBtn = new QPushButton(this);
|
||||||
|
m_confirmBtn->setText(tr("Confirm"));
|
||||||
|
|
||||||
|
m_warningWidget = new QWidget(this);
|
||||||
|
m_warningWidget->adjustSize();
|
||||||
|
m_editWidget = new QWidget(this);
|
||||||
|
m_centerWidget = new QWidget(this);
|
||||||
|
m_centerWidget->setFixedWidth(380);
|
||||||
|
m_bottomWidget = new QWidget(this);
|
||||||
|
|
||||||
|
QHBoxLayout* warningLayout = new QHBoxLayout(m_warningWidget);
|
||||||
|
warningLayout->setContentsMargins(0, 0, 0, 24);
|
||||||
|
warningLayout->setSpacing(8);
|
||||||
|
warningLayout->addWidget(m_icon);
|
||||||
|
warningLayout->addWidget(m_statusText);
|
||||||
|
warningLayout->addStretch();
|
||||||
|
|
||||||
|
QVBoxLayout* editLayout = new QVBoxLayout(m_editWidget);
|
||||||
|
editLayout->setContentsMargins(22,0,0,0);
|
||||||
|
editLayout->setSpacing(0);
|
||||||
|
editLayout->addWidget(m_uriEdit);
|
||||||
|
editLayout->addWidget(m_warningLabel);
|
||||||
|
|
||||||
|
QVBoxLayout* mainLayout = new QVBoxLayout(this);
|
||||||
|
mainLayout->setContentsMargins(0,0,0,0);
|
||||||
|
mainLayout->setSpacing(0);
|
||||||
|
mainLayout->addWidget(m_scrollArea);
|
||||||
|
mainLayout->addWidget(m_bottomWidget);
|
||||||
|
this->setLayout(mainLayout);
|
||||||
|
|
||||||
|
//中间页面
|
||||||
|
QVBoxLayout *vLayout = new QVBoxLayout(m_centerWidget);
|
||||||
|
vLayout->setContentsMargins(25, 17, 23, 0);
|
||||||
|
vLayout->setSpacing(0);
|
||||||
|
vLayout->addWidget(m_warningWidget);
|
||||||
|
vLayout->addWidget(m_text);
|
||||||
|
vLayout->addSpacing(10);
|
||||||
|
vLayout->addWidget(m_publicNetworkButton);
|
||||||
|
vLayout->addSpacing(12);
|
||||||
|
vLayout->addWidget(m_intranetButton);
|
||||||
|
vLayout->addWidget(m_editWidget);
|
||||||
|
|
||||||
|
//底部按钮
|
||||||
|
QHBoxLayout* bottomLayout = new QHBoxLayout(m_bottomWidget);
|
||||||
|
bottomLayout->setContentsMargins(BOTTOM_LAYOUT_MARGINS);
|
||||||
|
bottomLayout->setSpacing(LAYOUT_SPACING);
|
||||||
|
bottomLayout->addStretch();
|
||||||
|
bottomLayout->addWidget(m_confirmBtn);
|
||||||
|
|
||||||
|
m_scrollArea->setWidget(m_centerWidget);
|
||||||
|
m_scrollArea->setWidgetResizable(true);
|
||||||
|
|
||||||
|
this->setWindowFlags(Qt::Dialog);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConnectivityPage::initConnect()
|
||||||
|
{
|
||||||
|
connect(m_confirmBtn, &QPushButton::released, this, [=](){
|
||||||
|
if (m_publicNetworkButton->isChecked()) {
|
||||||
|
setConnectivityCheckSpareUriByGDbus("");
|
||||||
|
} else {
|
||||||
|
setConnectivityCheckSpareUriByGDbus(m_uriEdit->text());
|
||||||
|
}
|
||||||
|
close();
|
||||||
|
});
|
||||||
|
connect(m_publicNetworkButton, &QRadioButton::toggled, [&](bool checked){
|
||||||
|
if (checked) {
|
||||||
|
m_uriEdit->clear();
|
||||||
|
m_uriEdit->setDisabled(true);
|
||||||
|
m_confirmBtn->setEnabled(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
connect(m_intranetButton, &QRadioButton::toggled, [&](bool checked){
|
||||||
|
if (checked) {
|
||||||
|
checkUri();
|
||||||
|
m_uriEdit->setDisabled(false);
|
||||||
|
m_uriEdit->setFocus();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
connect(m_uriEdit, &QLineEdit::textChanged, this ,&ConnectivityPage::checkUri);
|
||||||
|
connect(m_connectResource, &KyConnectResourse::connectivityChanged, this, &ConnectivityPage::setWarning);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConnectivityPage::setWarning(NetworkManager::Connectivity connectivity)
|
||||||
|
{
|
||||||
|
if (NetworkManager::Connectivity::Full == connectivity) {
|
||||||
|
//网络已连接,可正常访问 Internet 。
|
||||||
|
m_icon->setPixmap(QIcon::fromTheme("ukui-dialog-success").pixmap(16,16));
|
||||||
|
m_statusText->setText(tr("The network is connected and can access the Internet normally."));
|
||||||
|
} else if (NetworkManager::Connectivity::Limited == connectivity
|
||||||
|
|| NetworkManager::Connectivity::Portal == connectivity) {
|
||||||
|
//网络已连接,访问 Internet 受限。
|
||||||
|
m_icon->setPixmap(QIcon::fromTheme("dialog-warning").pixmap(16,16));
|
||||||
|
m_statusText->setText(tr("The network is connected and access to the Internet is restricted."));
|
||||||
|
} else {
|
||||||
|
qWarning() << "network status is " << connectivity << "should not show this page";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConnectivityPage::checkUri()
|
||||||
|
{
|
||||||
|
QString text = m_uriEdit->text(); //locationbar input data
|
||||||
|
if (text.isEmpty()) {
|
||||||
|
m_confirmBtn->setEnabled(false);
|
||||||
|
m_warningLabel->setText(tr("Please enter the local area network (intranet) detection address"));
|
||||||
|
m_warningLabel->show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int pos = 0;
|
||||||
|
|
||||||
|
QRegExp rx;
|
||||||
|
//url regular expression
|
||||||
|
rx.setPattern("(https?|ftp|file)://[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]");
|
||||||
|
QRegExpValidator rv;
|
||||||
|
rv.setRegExp(rx);
|
||||||
|
//Test for a match between the url and the regular expression
|
||||||
|
QValidator::State rvState = rv.validate(text, pos);
|
||||||
|
if (rvState == QValidator::Acceptable) {
|
||||||
|
m_confirmBtn->setEnabled(true);
|
||||||
|
m_warningLabel->clear();
|
||||||
|
m_warningLabel->hide();
|
||||||
|
} else {
|
||||||
|
m_confirmBtn->setEnabled(false);
|
||||||
|
m_warningLabel->setText(tr("Format error"));
|
||||||
|
m_warningLabel->show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void ConnectivityPage::closeEvent(QCloseEvent *event)
|
||||||
|
{
|
||||||
|
Q_EMIT pageClose();
|
||||||
|
return QWidget::closeEvent(event);
|
||||||
|
}
|
|
@ -0,0 +1,55 @@
|
||||||
|
#ifndef CONNECTIVITYPAGE_H
|
||||||
|
#define CONNECTIVITYPAGE_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
#include <QDialog>
|
||||||
|
#include <QLabel>
|
||||||
|
#include <QRadioButton>
|
||||||
|
#include <QDBusInterface>
|
||||||
|
#include <QLineEdit>
|
||||||
|
#include <QPushButton>
|
||||||
|
#include <QScrollArea>
|
||||||
|
|
||||||
|
#include "divider.h"
|
||||||
|
#include "kylinconnectresource.h"
|
||||||
|
|
||||||
|
class ConnectivityPage : public QDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
explicit ConnectivityPage(QString uri = "", QWidget *parent = nullptr);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void closeEvent(QCloseEvent *event);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QScrollArea *m_scrollArea;
|
||||||
|
QWidget* m_warningWidget;
|
||||||
|
QWidget* m_centerWidget;
|
||||||
|
QWidget* m_editWidget;
|
||||||
|
QWidget* m_bottomWidget;
|
||||||
|
|
||||||
|
QString m_uri;
|
||||||
|
QPushButton *m_confirmBtn;
|
||||||
|
QLabel *m_icon;
|
||||||
|
QLabel *m_statusText;
|
||||||
|
QLabel *m_text;
|
||||||
|
QRadioButton *m_publicNetworkButton;
|
||||||
|
QRadioButton *m_intranetButton;
|
||||||
|
QLineEdit *m_uriEdit;
|
||||||
|
QLabel* m_warningLabel;
|
||||||
|
|
||||||
|
KyConnectResourse* m_connectResource;
|
||||||
|
|
||||||
|
void initUi();
|
||||||
|
void initConnect();
|
||||||
|
|
||||||
|
private Q_SLOTS:
|
||||||
|
void setWarning(NetworkManager::Connectivity connectivity);
|
||||||
|
void checkUri();
|
||||||
|
|
||||||
|
Q_SIGNALS:
|
||||||
|
void pageClose();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // CONNECTIVITYPAGE_H
|
|
@ -5,6 +5,7 @@ include(tab-pages/tab-pages.pri)
|
||||||
include(list-items/list-items.pri)
|
include(list-items/list-items.pri)
|
||||||
include(netdetails/netdetails.pri)
|
include(netdetails/netdetails.pri)
|
||||||
include(enterprise-wlan/enterprise-wlan.pri)
|
include(enterprise-wlan/enterprise-wlan.pri)
|
||||||
|
include(connectivity/connectivity.pri)
|
||||||
include(networkmode/networkmode.pri)
|
include(networkmode/networkmode.pri)
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
|
|
|
@ -33,6 +33,7 @@
|
||||||
#include "ukuistylehelper/ukuistylehelper.h"
|
#include "ukuistylehelper/ukuistylehelper.h"
|
||||||
#include "windowmanager/windowmanager.h"
|
#include "windowmanager/windowmanager.h"
|
||||||
#include "kysdk/kysdk-system/libkysysinfo.h"
|
#include "kysdk/kysdk-system/libkysysinfo.h"
|
||||||
|
#include "kylinutil.h"
|
||||||
|
|
||||||
#define MAINWINDOW_WIDTH 420
|
#define MAINWINDOW_WIDTH 420
|
||||||
#define MAINWINDOW_HEIGHT 476
|
#define MAINWINDOW_HEIGHT 476
|
||||||
|
@ -69,6 +70,12 @@ const QString intel = "V10SP1-edu";
|
||||||
#define LOW_SIGNAL_LIMIT_ICON "ukui-network-wireless-signal-weak-error-symbolic"
|
#define LOW_SIGNAL_LIMIT_ICON "ukui-network-wireless-signal-weak-error-symbolic"
|
||||||
#define NONE_SIGNAL_LIMIT_ICON "ukui-network-wireless-signal-none-error-symbolic"
|
#define NONE_SIGNAL_LIMIT_ICON "ukui-network-wireless-signal-none-error-symbolic"
|
||||||
|
|
||||||
|
#define EXCELLENT_SIGNAL_INTRANET_ICON "ukui-network-wireless-signal-excellent-intranet-symbolic"
|
||||||
|
#define GOOD_SIGNAL_INTRANET_ICON "ukui-network-wireless-signal-good-intranet-symbolic"
|
||||||
|
#define OK_SIGNAL_INTRANET_ICON "ukui-network-wireless-signal-ok-intranet-symbolic"
|
||||||
|
#define LOW_SIGNAL_INTRANET_ICON "ukui-network-wireless-signal-weak-intranet-symbolic"
|
||||||
|
#define NONE_SIGNAL_INTRANET_ICON "ukui-network-wireless-signal-none-intranet-symbolic"
|
||||||
|
|
||||||
#include <kwindowsystem.h>
|
#include <kwindowsystem.h>
|
||||||
#include <kwindowsystem_export.h>
|
#include <kwindowsystem_export.h>
|
||||||
|
|
||||||
|
@ -333,11 +340,13 @@ void MainWindow::initTrayIcon()
|
||||||
|
|
||||||
m_trayIcon = new QSystemTrayIcon();
|
m_trayIcon = new QSystemTrayIcon();
|
||||||
m_trayIconMenu = new QMenu();
|
m_trayIconMenu = new QMenu();
|
||||||
m_showMainwindowAction = new QAction(tr("Show MainWindow"),this);
|
// m_showMainwindowAction = new QAction(tr("Show MainWindow"),this);
|
||||||
m_showSettingsAction = new QAction(tr("Settings"),this);
|
m_showSettingsAction = new QAction(tr("Settings"),this);
|
||||||
|
m_showConnectivityPageAction = new QAction(tr("Network Connectivity Detection"), this);
|
||||||
|
|
||||||
// m_trayIcon->setToolTip(QString(tr("Network tool")));
|
// m_trayIcon->setToolTip(QString(tr("Network tool")));
|
||||||
m_showSettingsAction->setIcon(QIcon::fromTheme("document-page-setup-symbolic", QIcon(":/res/x/setup.png")) );
|
m_showSettingsAction->setIcon(QIcon::fromTheme("document-page-setup-symbolic", QIcon(":/res/x/setup.png")) );
|
||||||
|
m_showConnectivityPageAction->setIcon(QIcon::fromTheme("gnome-netstatus-txrx"));
|
||||||
// m_trayIconMenu->addAction(m_showMainwindowAction);
|
// m_trayIconMenu->addAction(m_showMainwindowAction);
|
||||||
m_trayIconMenu->addAction(m_showSettingsAction);
|
m_trayIconMenu->addAction(m_showSettingsAction);
|
||||||
m_trayIcon->setContextMenu(m_trayIconMenu);
|
m_trayIcon->setContextMenu(m_trayIconMenu);
|
||||||
|
@ -348,6 +357,20 @@ void MainWindow::initTrayIcon()
|
||||||
connect(m_trayIcon, &QSystemTrayIcon::activated, this, &MainWindow::onTrayIconActivated);
|
connect(m_trayIcon, &QSystemTrayIcon::activated, this, &MainWindow::onTrayIconActivated);
|
||||||
// connect(m_showMainwindowAction, &QAction::triggered, this, &MainWindow::onShowMainwindowActionTriggled);
|
// connect(m_showMainwindowAction, &QAction::triggered, this, &MainWindow::onShowMainwindowActionTriggled);
|
||||||
connect(m_showSettingsAction, &QAction::triggered, this, &MainWindow::onShowSettingsActionTriggled);
|
connect(m_showSettingsAction, &QAction::triggered, this, &MainWindow::onShowSettingsActionTriggled);
|
||||||
|
connect(m_showConnectivityPageAction, &QAction::triggered, [=]() {
|
||||||
|
if (m_connectivityPage != nullptr) {
|
||||||
|
KWindowSystem::activateWindow(m_connectivityPage->winId());
|
||||||
|
KWindowSystem::raiseWindow(m_connectivityPage->winId());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
QString uri = getConnectivityCheckSpareUriByGDbus();
|
||||||
|
m_connectivityPage = new ConnectivityPage(uri, this);
|
||||||
|
connect(m_connectivityPage, &ConnectivityPage::pageClose, [&](){
|
||||||
|
m_connectivityPage = nullptr;
|
||||||
|
});
|
||||||
|
m_connectivityPage->show();
|
||||||
|
});
|
||||||
|
|
||||||
m_trayIcon->show();
|
m_trayIcon->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -383,6 +406,7 @@ void MainWindow::initDbusConnnect()
|
||||||
connect(m_wlanWidget, &WlanPage::timeToUpdate , this, &MainWindow::onTimeUpdateTrayIcon);
|
connect(m_wlanWidget, &WlanPage::timeToUpdate , this, &MainWindow::onTimeUpdateTrayIcon);
|
||||||
connect(m_wlanWidget, &WlanPage::showMainWindow, this, &MainWindow::onShowMainWindow);
|
connect(m_wlanWidget, &WlanPage::showMainWindow, this, &MainWindow::onShowMainWindow);
|
||||||
connect(m_wlanWidget, &WlanPage::connectivityChanged, this, &MainWindow::onConnectivityChanged);
|
connect(m_wlanWidget, &WlanPage::connectivityChanged, this, &MainWindow::onConnectivityChanged);
|
||||||
|
connect(m_wlanWidget, &WlanPage::connectivityCheckSpareUriChanged, this, &MainWindow::onConnectivityCheckSpareUriChanged);
|
||||||
|
|
||||||
connect(m_lanWidget, &LanPage::lanConnectChanged, this, &MainWindow::onRefreshTrayIconTooltip);
|
connect(m_lanWidget, &LanPage::lanConnectChanged, this, &MainWindow::onRefreshTrayIconTooltip);
|
||||||
connect(m_lanWidget, &LanPage::deviceStatusChanged, this, &MainWindow::onRefreshTrayIconTooltip);
|
connect(m_lanWidget, &LanPage::deviceStatusChanged, this, &MainWindow::onRefreshTrayIconTooltip);
|
||||||
|
@ -739,10 +763,34 @@ void MainWindow::onRefreshTrayIcon()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!getConnectivityCheckSpareUriByGDbus().isEmpty()) {
|
||||||
|
if (iconStatus == IconActiveType::LAN_CONNECTED) {
|
||||||
|
m_trayIcon->setIcon(QIcon::fromTheme("network-intranet-symbolic"));
|
||||||
|
} else if (iconStatus == IconActiveType::WLAN_CONNECTED) {
|
||||||
|
if (signalStrength > MW_EXCELLENT_SIGNAL){
|
||||||
|
m_trayIcon->setIcon(QIcon::fromTheme(EXCELLENT_SIGNAL_INTRANET_ICON));
|
||||||
|
} else if (signalStrength > MW_GOOD_SIGNAL) {
|
||||||
|
m_trayIcon->setIcon(QIcon::fromTheme(GOOD_SIGNAL_INTRANET_ICON));
|
||||||
|
} else if (signalStrength > MW_OK_SIGNAL) {
|
||||||
|
m_trayIcon->setIcon(QIcon::fromTheme(OK_SIGNAL_INTRANET_ICON));
|
||||||
|
} else if (signalStrength > MW_LOW_SIGNAL) {
|
||||||
|
m_trayIcon->setIcon(QIcon::fromTheme(LOW_SIGNAL_INTRANET_ICON));
|
||||||
|
} else {
|
||||||
|
m_trayIcon->setIcon(QIcon::fromTheme(NONE_SIGNAL_INTRANET_ICON));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (signalStrength == -1) {
|
if (signalStrength == -1) {
|
||||||
m_trayIcon->setIcon(QIcon::fromTheme("network-wired-disconnected-symbolic"));
|
m_trayIcon->setIcon(QIcon::fromTheme("network-wired-disconnected-symbolic"));
|
||||||
}
|
}
|
||||||
onRefreshTrayIconTooltip();
|
onRefreshTrayIconTooltip();
|
||||||
|
|
||||||
|
if (iconStatus > IconActiveType::NOT_CONNECTED) {
|
||||||
|
m_trayIconMenu->addAction(m_showConnectivityPageAction);
|
||||||
|
} else {
|
||||||
|
m_trayIconMenu->removeAction(m_showConnectivityPageAction);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::onSetTrayIconLoading()
|
void MainWindow::onSetTrayIconLoading()
|
||||||
|
@ -908,6 +956,19 @@ void MainWindow::onConnectivityChanged(NetworkManager::Connectivity connectivity
|
||||||
onRefreshTrayIcon();
|
onRefreshTrayIcon();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::onConnectivityCheckSpareUriChanged()
|
||||||
|
{
|
||||||
|
if (!m_trayIcon) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (iconStatus == ACTIVATING) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
onRefreshTrayIcon();
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::onTimeUpdateTrayIcon()
|
void MainWindow::onTimeUpdateTrayIcon()
|
||||||
{
|
{
|
||||||
if (!m_trayIcon) {
|
if (!m_trayIcon) {
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
#include "wlanpage.h"
|
#include "wlanpage.h"
|
||||||
#include "netdetails/netdetail.h"
|
#include "netdetails/netdetail.h"
|
||||||
#include "netdetails/joinhiddenwifipage.h"
|
#include "netdetails/joinhiddenwifipage.h"
|
||||||
|
#include "connectivity/connectivitypage.h"
|
||||||
//安全中心-网络防火墙模式配置
|
//安全中心-网络防火墙模式配置
|
||||||
#include "networkmodeconfig.h"
|
#include "networkmodeconfig.h"
|
||||||
//删除此头文件,别在添加
|
//删除此头文件,别在添加
|
||||||
|
@ -47,7 +48,9 @@
|
||||||
enum IconActiveType {
|
enum IconActiveType {
|
||||||
NOT_CONNECTED = 0,
|
NOT_CONNECTED = 0,
|
||||||
LAN_CONNECTED,
|
LAN_CONNECTED,
|
||||||
|
LAN_CONNECTED_INTRANET,
|
||||||
WLAN_CONNECTED,
|
WLAN_CONNECTED,
|
||||||
|
WLAN_CONNECTED_INTRANET,
|
||||||
LAN_CONNECTED_LIMITED,
|
LAN_CONNECTED_LIMITED,
|
||||||
WLAN_CONNECTED_LIMITED,
|
WLAN_CONNECTED_LIMITED,
|
||||||
ACTIVATING,
|
ACTIVATING,
|
||||||
|
@ -180,6 +183,8 @@ private:
|
||||||
LanPage * m_lanWidget = nullptr;
|
LanPage * m_lanWidget = nullptr;
|
||||||
WlanPage * m_wlanWidget = nullptr;
|
WlanPage * m_wlanWidget = nullptr;
|
||||||
|
|
||||||
|
ConnectivityPage* m_connectivityPage = nullptr;
|
||||||
|
|
||||||
//监听主题的Gsettings
|
//监听主题的Gsettings
|
||||||
QGSettings * m_styleGsettings = nullptr;
|
QGSettings * m_styleGsettings = nullptr;
|
||||||
|
|
||||||
|
@ -192,6 +197,7 @@ private:
|
||||||
QMenu * m_trayIconMenu = nullptr;
|
QMenu * m_trayIconMenu = nullptr;
|
||||||
QAction * m_showMainwindowAction = nullptr;
|
QAction * m_showMainwindowAction = nullptr;
|
||||||
QAction * m_showSettingsAction = nullptr;
|
QAction * m_showSettingsAction = nullptr;
|
||||||
|
QAction * m_showConnectivityPageAction = nullptr;
|
||||||
|
|
||||||
bool m_lanIsLoading = false;
|
bool m_lanIsLoading = false;
|
||||||
bool m_wlanIsLoading = false;
|
bool m_wlanIsLoading = false;
|
||||||
|
@ -223,6 +229,7 @@ private Q_SLOTS:
|
||||||
void onLanConnectStatusToChangeTrayIcon(int state);
|
void onLanConnectStatusToChangeTrayIcon(int state);
|
||||||
void onWlanConnectStatusToChangeTrayIcon(int state);
|
void onWlanConnectStatusToChangeTrayIcon(int state);
|
||||||
void onConnectivityChanged(NetworkManager::Connectivity connectivity);
|
void onConnectivityChanged(NetworkManager::Connectivity connectivity);
|
||||||
|
void onConnectivityCheckSpareUriChanged();
|
||||||
void onTimeUpdateTrayIcon();
|
void onTimeUpdateTrayIcon();
|
||||||
void onTabletModeChanged(bool mode);
|
void onTabletModeChanged(bool mode);
|
||||||
void onRefreshTrayIconTooltip();
|
void onRefreshTrayIconTooltip();
|
||||||
|
|
|
@ -154,7 +154,7 @@ void Ipv4Page::initComponent() {
|
||||||
|
|
||||||
void Ipv4Page::setIpv4Config(KyIpConfigType ipv4Config)
|
void Ipv4Page::setIpv4Config(KyIpConfigType ipv4Config)
|
||||||
{
|
{
|
||||||
if (ipv4Config == CONFIG_IP_MANUAL) {
|
if (ipv4Config == CONFIG_IP_MANUAL) {
|
||||||
ipv4ConfigCombox->setCurrentIndex(MANUAL_CONFIG);
|
ipv4ConfigCombox->setCurrentIndex(MANUAL_CONFIG);
|
||||||
} else {
|
} else {
|
||||||
ipv4ConfigCombox->setCurrentIndex(AUTO_CONFIG);
|
ipv4ConfigCombox->setCurrentIndex(AUTO_CONFIG);
|
||||||
|
|
|
@ -81,6 +81,7 @@ WlanPage::WlanPage(QWidget *parent) : TabPage(parent)
|
||||||
connect(m_wirelessConnectOpreation, &KyWirelessConnectOperation::wifiEnabledChanged, this, &WlanPage::onWifiEnabledChanged);
|
connect(m_wirelessConnectOpreation, &KyWirelessConnectOperation::wifiEnabledChanged, this, &WlanPage::onWifiEnabledChanged);
|
||||||
|
|
||||||
connect(m_connectResource, &KyConnectResourse::connectivityChanged, this, &WlanPage::connectivityChanged);
|
connect(m_connectResource, &KyConnectResourse::connectivityChanged, this, &WlanPage::connectivityChanged);
|
||||||
|
connect(m_connectResource, &KyConnectResourse::connectivityCheckSpareUriChanged, this, &WlanPage::connectivityCheckSpareUriChanged);
|
||||||
connect(m_netSwitch, &KSwitchButton::clicked, this, [=](bool checked) {
|
connect(m_netSwitch, &KSwitchButton::clicked, this, [=](bool checked) {
|
||||||
//解决 switchBtn不支持点击的情况下,点击按钮,有无线网卡后不自动开启的问题
|
//解决 switchBtn不支持点击的情况下,点击按钮,有无线网卡后不自动开启的问题
|
||||||
if (getSwitchBtnEnable()) {
|
if (getSwitchBtnEnable()) {
|
||||||
|
|
|
@ -108,6 +108,7 @@ Q_SIGNALS:
|
||||||
void showMainWindow(int type);
|
void showMainWindow(int type);
|
||||||
|
|
||||||
void connectivityChanged(NetworkManager::Connectivity connectivity);
|
void connectivityChanged(NetworkManager::Connectivity connectivity);
|
||||||
|
void connectivityCheckSpareUriChanged();
|
||||||
|
|
||||||
void wirelessSwitchBtnChanged(bool state);
|
void wirelessSwitchBtnChanged(bool state);
|
||||||
|
|
||||||
|
|
|
@ -4,26 +4,74 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ConfigPage</name>
|
<name>ConfigPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="62"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="60"/>
|
||||||
<source>Network profile type</source>
|
<source>Network profile type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="65"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="63"/>
|
||||||
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="69"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="67"/>
|
||||||
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="73"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="71"/>
|
||||||
<source>Config firewall and security settings</source>
|
<source>Config firewall and security settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ConnectivityPage</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="25"/>
|
||||||
|
<source>Network connectivity detection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="55"/>
|
||||||
|
<source>If access to the Internet is restricted, please switch the network IP connectivity detection method and try again.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="61"/>
|
||||||
|
<source>Public network (default)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="63"/>
|
||||||
|
<source>Local area network (intranet)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="74"/>
|
||||||
|
<source>Confirm</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="161"/>
|
||||||
|
<source>The network is connected and can access the Internet normally.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="166"/>
|
||||||
|
<source>The network is connected and access to the Internet is restricted.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="177"/>
|
||||||
|
<source>Please enter the local area network (intranet) detection address</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="196"/>
|
||||||
|
<source>Format error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>CreatNetPage</name>
|
<name>CreatNetPage</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -232,27 +280,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>EnterpriseWlanDialog</name>
|
<name>EnterpriseWlanDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="116"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="117"/>
|
||||||
<source>Wi-Fi network requires authentication</source>
|
<source>Wi-Fi network requires authentication</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="121"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="122"/>
|
||||||
<source>Access to Wi-Fi network "</source>
|
<source>Access to Wi-Fi network "</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="123"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="124"/>
|
||||||
<source>" requires a password or encryption key.</source>
|
<source>" requires a password or encryption key.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="154"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="156"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -260,22 +308,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>FirewallDialog</name>
|
<name>FirewallDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="85"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
||||||
<source>Allow other devices on this network to discover this computer?</source>
|
<source>Allow other devices on this network to discover this computer?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="87"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="91"/>
|
||||||
<source>It is not recommended to enable this feature on public networks</source>
|
<source>It is not recommended to enable this feature on public networks</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="93"/>
|
||||||
<source>Not allowed (recommended)</source>
|
<source>Not allowed (recommended)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="90"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="94"/>
|
||||||
<source>Allowed</source>
|
<source>Allowed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -429,38 +477,38 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanListItem</name>
|
<name>LanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="69"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="68"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="126"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="125"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="146"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="145"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="163"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="162"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="261"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="260"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="148"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="147"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="161"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="160"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="265"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="264"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="151"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="168"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="167"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="153"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="170"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="169"/>
|
||||||
<source>Delete</source>
|
<source>Delete</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -468,7 +516,7 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanPage</name>
|
<name>LanPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1192"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1187"/>
|
||||||
<source>No ethernet device avaliable</source>
|
<source>No ethernet device avaliable</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -493,23 +541,23 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1236"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1231"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1338"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1333"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<source>(Limited)</source>
|
<source>(Limited)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1332"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1327"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -530,46 +578,46 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="214"/>
|
<location filename="../frontend/mainwindow.cpp" line="221"/>
|
||||||
<source>kylin-nm</source>
|
<source>kylin-nm</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="299"/>
|
<location filename="../frontend/mainwindow.cpp" line="306"/>
|
||||||
<source>LAN</source>
|
<source>LAN</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="301"/>
|
<location filename="../frontend/mainwindow.cpp" line="308"/>
|
||||||
<source>WLAN</source>
|
<source>WLAN</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="331"/>
|
<location filename="../frontend/mainwindow.cpp" line="338"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="573"/>
|
<location filename="../frontend/mainwindow.cpp" line="339"/>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="802"/>
|
<source>Network Connectivity Detection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="616"/>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="869"/>
|
||||||
<source>Network tool</source>
|
<source>Network tool</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="587"/>
|
<location filename="../frontend/mainwindow.cpp" line="630"/>
|
||||||
<source>Network Card</source>
|
<source>Network Card</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="785"/>
|
<location filename="../frontend/mainwindow.cpp" line="852"/>
|
||||||
<source>Not connected to the network</source>
|
<source>Not connected to the network</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
|
||||||
<location filename="../frontend/mainwindow.cpp" line="330"/>
|
|
||||||
<source>Show MainWindow</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>MultipleDnsWidget</name>
|
<name>MultipleDnsWidget</name>
|
||||||
|
@ -602,102 +650,102 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="377"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
||||||
<source>Detail</source>
|
<source>Detail</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="381"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="382"/>
|
||||||
<source>Security</source>
|
<source>Security</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="383"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="384"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="390"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="391"/>
|
||||||
<source>Config</source>
|
<source>Config</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="402"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="403"/>
|
||||||
<source>Confirm</source>
|
<source>Confirm</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="404"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="405"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="462"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="463"/>
|
||||||
<source>Forget this network</source>
|
<source>Forget this network</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
||||||
<source>IPv4</source>
|
<source>IPv4</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="380"/>
|
||||||
<source>IPv6</source>
|
<source>IPv6</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="443"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="444"/>
|
||||||
<source>Add LAN Connect</source>
|
<source>Add LAN Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="448"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="449"/>
|
||||||
<source>Connect Hidden WLAN</source>
|
<source>Connect Hidden WLAN</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="464"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="465"/>
|
||||||
<source>Delete this network</source>
|
<source>Delete this network</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="629"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="630"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="641"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="642"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1184"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
||||||
<source>None</source>
|
<source>None</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="753"/>
|
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
||||||
|
<location filename="../frontend/netdetails/netdetail.cpp" line="756"/>
|
||||||
<source>Auto</source>
|
<source>Auto</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="896"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="897"/>
|
||||||
<source>start check ipv4 address conflict</source>
|
<source>start check ipv4 address conflict</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="913"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="914"/>
|
||||||
<source>start check ipv6 address conflict</source>
|
<source>start check ipv6 address conflict</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1180"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1181"/>
|
||||||
<source>this wifi no support enterprise type</source>
|
<source>this wifi no support enterprise type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1186"/>
|
||||||
<source>this wifi no support None type</source>
|
<source>this wifi no support None type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1190"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1191"/>
|
||||||
<source>this wifi no support WPA2 type</source>
|
<source>this wifi no support WPA2 type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1193"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1194"/>
|
||||||
<source>this wifi no support WPA3 type</source>
|
<source>this wifi no support WPA3 type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1007,42 +1055,42 @@
|
||||||
<context>
|
<context>
|
||||||
<name>WlanListItem</name>
|
<name>WlanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="72"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="71"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="177"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="176"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="204"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="203"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="637"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="656"/>
|
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
||||||
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="179"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="178"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="208"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="207"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="304"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="314"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="657"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="664"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="674"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="186"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="686"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="188"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="671"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="681"/>
|
||||||
<source>Forget</source>
|
<source>Forget</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="325"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="335"/>
|
||||||
<source>Auto Connect</source>
|
<source>Auto Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1073,12 +1121,12 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1750"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1739"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1752"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1741"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -35,26 +35,74 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ConfigPage</name>
|
<name>ConfigPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="62"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="60"/>
|
||||||
<source>Network profile type</source>
|
<source>Network profile type</source>
|
||||||
<translation>དྲ་རྒྱའི་བཀོད་སྒྲིག་ཡིག་ཆའི་རིགས།</translation>
|
<translation>དྲ་རྒྱའི་བཀོད་སྒྲིག་ཡིག་ཆའི་རིགས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="65"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="63"/>
|
||||||
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
||||||
<translation>སྤྱི་སྤྱོད།(འོས་སྦྱོར་བྱས་པ།)དྲ་རྒྱའི་སྒྲིག་ཆས་ཀྱིས་གློག་ཀླད་འདི་མཐོང་མི་ཐུབ། སྤྱིར་བཏང་གི་གནས་ཚུལ་འོག་ཏུ་མི་མང་འདུ་སའི་ནང་གི་དྲ་བ་ལ་འཚམ་པ་སྟེ།དཔེར་ན་གནམ་གྲུ་ཐང་དང་འཚིག་ཇའི་ཁང་སོགས་ལྟ་བུ།.</translation>
|
<translation>སྤྱི་སྤྱོད།(འོས་སྦྱོར་བྱས་པ།)དྲ་རྒྱའི་སྒྲིག་ཆས་ཀྱིས་གློག་ཀླད་འདི་མཐོང་མི་ཐུབ། སྤྱིར་བཏང་གི་གནས་ཚུལ་འོག་ཏུ་མི་མང་འདུ་སའི་ནང་གི་དྲ་བ་ལ་འཚམ་པ་སྟེ།དཔེར་ན་གནམ་གྲུ་ཐང་དང་འཚིག་ཇའི་ཁང་སོགས་ལྟ་བུ།.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="69"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="67"/>
|
||||||
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
||||||
<translation>ཆེད་སྤྱོད། དྲ་རྒྱའི་སྒྲིག་ཆས་ཀྱིས་གློག་ཀླད་འདི་མཐོང་ཐུབ། སྤྱིར་བཏང་གི་གནས་ཚུལ་འོག་ཁྱིམ་ཚང་ངམ་ལས་དོན་ཚན་པའི་དྲ་བ་དང་འཚམ་པས།ཁྱེད་ཀྱིས་དྲ་ཐོག་གི་མི་སྒེར་དང་སྒྲིག་ཆས་ལ་ངོས་འཛིན་དང་ཡིད་ཆེས་བྱེད་དགོས།.</translation>
|
<translation>ཆེད་སྤྱོད། དྲ་རྒྱའི་སྒྲིག་ཆས་ཀྱིས་གློག་ཀླད་འདི་མཐོང་ཐུབ། སྤྱིར་བཏང་གི་གནས་ཚུལ་འོག་ཁྱིམ་ཚང་ངམ་ལས་དོན་ཚན་པའི་དྲ་བ་དང་འཚམ་པས།ཁྱེད་ཀྱིས་དྲ་ཐོག་གི་མི་སྒེར་དང་སྒྲིག་ཆས་ལ་ངོས་འཛིན་དང་ཡིད་ཆེས་བྱེད་དགོས།.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="73"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="71"/>
|
||||||
<source>Config firewall and security settings</source>
|
<source>Config firewall and security settings</source>
|
||||||
<translation>མེ་འགོག་གྱང་རྩིག་དང་བདེ་འཇགས་བཀོད་སྒྲིག་བྱ་དགོས།</translation>
|
<translation>མེ་འགོག་གྱང་རྩིག་དང་བདེ་འཇགས་བཀོད་སྒྲིག་བྱ་དགོས།</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ConnectivityPage</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="25"/>
|
||||||
|
<source>Network connectivity detection</source>
|
||||||
|
<translation>དྲ་རྒྱའི་སྦྲེལ་མཐུད་རང་བཞིན་གྱི་ཞིབ་དཔྱད་ཚད་ལེན།</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="55"/>
|
||||||
|
<source>If access to the Internet is restricted, please switch the network IP connectivity detection method and try again.</source>
|
||||||
|
<translation>གལ་ཏེ་དྲ་སྦྲེལ་ལ་འཚམས་འདྲི་བྱེད་པར་ཚོད་འཛིན་ཐེབས་པ་དང་། དྲ་རྒྱའི་IPལ་ཞིབ་དཔྱད་ཚད་ལེན་བྱེད་ཐབས་བརྗེས་ནས་ཚོད་ལྟ་བྱེད་དགོས།.</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="61"/>
|
||||||
|
<source>Public network (default)</source>
|
||||||
|
<translation>སྤྱི་པའི་དྲ་རྒྱ། (ཁས་མ་བླངས་པ། )</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="63"/>
|
||||||
|
<source>Local area network (intranet)</source>
|
||||||
|
<translation>ཅུས་ཁོངས་དྲ་བ། (ནང་དྲ། )</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="74"/>
|
||||||
|
<source>Confirm</source>
|
||||||
|
<translation>གཏན་འཁེལ་བྱ།</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="161"/>
|
||||||
|
<source>The network is connected and can access the Internet normally.</source>
|
||||||
|
<translation>དྲ་རྒྱ་སྦྲེལ་མཐུད་བྱས་ཟིན་པས་རྒྱུན་ལྡན་གྱི་དྲ་སྦྲེལ་ལ་འཚམས་འདྲི་བྱས་ཆོག.</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="166"/>
|
||||||
|
<source>The network is connected and access to the Internet is restricted.</source>
|
||||||
|
<translation>དྲ་རྒྱ་སྦྲེལ་མཐུད་བྱས་ཟིན་པས་དྲ་སྦྲེལ་ལ་འཚམས་འདྲི་བྱས་པ་རེད།.</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="177"/>
|
||||||
|
<source>Please enter the local area network (intranet) detection address</source>
|
||||||
|
<translation>ཅུས་ཁོངས་ཀྱི་དྲ་རྒྱའི་(ནང་དྲ་)ཞིབ་དཔྱད་ཚད་ལེན་ས་གནས་ནང་འཇུག་བྱེད་རོགས།</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="196"/>
|
||||||
|
<source>Format error</source>
|
||||||
|
<translation>རྣམ་གཞག་གི་ནོར་འཁྲུལ།</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>CopyButton</name>
|
<name>CopyButton</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -500,7 +548,7 @@
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/dnssettingwidget.cpp" line="70"/>
|
<location filename="../frontend/netdetails/dnssettingwidget.cpp" line="70"/>
|
||||||
<source>Close</source>
|
<source>Close</source>
|
||||||
<translation type="unfinished">སྒོ་རྒྱག་པ།</translation>
|
<translation>སྒོ་རྒྱག་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/dnssettingwidget.cpp" line="73"/>
|
<location filename="../frontend/netdetails/dnssettingwidget.cpp" line="73"/>
|
||||||
|
@ -524,27 +572,27 @@
|
||||||
<translation type="vanished">关闭</translation>
|
<translation type="vanished">关闭</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="116"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="117"/>
|
||||||
<source>Wi-Fi network requires authentication</source>
|
<source>Wi-Fi network requires authentication</source>
|
||||||
<translation>Wi-Fiཡི་དྲ་རྒྱའི་བླང་བྱར་སྤྲོད་བྱ་རྒྱུའི་བླང་བྱ་བཏོན་ཡོད།</translation>
|
<translation>Wi-Fiཡི་དྲ་རྒྱའི་བླང་བྱར་སྤྲོད་བྱ་རྒྱུའི་བླང་བྱ་བཏོན་ཡོད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="121"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="122"/>
|
||||||
<source>Access to Wi-Fi network "</source>
|
<source>Access to Wi-Fi network "</source>
|
||||||
<translation>Wii-Fiབར་གྱི་དྲ་རྒྱར་འཚམས་འདྲི་གནང་བ་རེད།</translation>
|
<translation>Wii-Fiབར་གྱི་དྲ་རྒྱར་འཚམས་འདྲི་གནང་བ་རེད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="123"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="124"/>
|
||||||
<source>" requires a password or encryption key.</source>
|
<source>" requires a password or encryption key.</source>
|
||||||
<translation>གསང་གྲངས་དང་གསང་བའི་ལྡེ་མིག་དགོས།</translation>
|
<translation>གསང་གྲངས་དང་གསང་བའི་ལྡེ་མིག་དགོས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="154"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation>ཕྱིར་འཐེན།</translation>
|
<translation>ཕྱིར་འཐེན།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="156"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>སྦྲེལ་མཐུད་བྱེད་པ</translation>
|
<translation>སྦྲེལ་མཐུད་བྱེད་པ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -568,22 +616,22 @@
|
||||||
<translation type="vanished">དེ་ལྟར་མ་བྱས་</translation>
|
<translation type="vanished">དེ་ལྟར་མ་བྱས་</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="85"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
||||||
<source>Allow other devices on this network to discover this computer?</source>
|
<source>Allow other devices on this network to discover this computer?</source>
|
||||||
<translation>དྲ་རྒྱའི་སྟེང་གི་སྒྲིག་ཆས་གཞན་པས་གློག་ཀླད་འདི་རྙེད་དུ་འཇུག་གམ།?</translation>
|
<translation>དྲ་རྒྱའི་སྟེང་གི་སྒྲིག་ཆས་གཞན་པས་གློག་ཀླད་འདི་རྙེད་དུ་འཇུག་གམ།?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="87"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="91"/>
|
||||||
<source>It is not recommended to enable this feature on public networks</source>
|
<source>It is not recommended to enable this feature on public networks</source>
|
||||||
<translation>བསམ་འཆར་མེད་།སྤྱི་པའི་དྲ་རྒྱའི་སྟེང་ནས་ནུས་པ་འདི་མགོ་བརྩམས་།</translation>
|
<translation>བསམ་འཆར་མེད་།སྤྱི་པའི་དྲ་རྒྱའི་སྟེང་ནས་ནུས་པ་འདི་མགོ་བརྩམས་།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="93"/>
|
||||||
<source>Not allowed (recommended)</source>
|
<source>Not allowed (recommended)</source>
|
||||||
<translation>མི་ཆོག་པ་(འོས་སྦྱོར།)</translation>
|
<translation>མི་ཆོག་པ་(འོས་སྦྱོར།)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="90"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="94"/>
|
||||||
<source>Allowed</source>
|
<source>Allowed</source>
|
||||||
<translation>ཆོག་པ་</translation>
|
<translation>ཆོག་པ་</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -757,38 +805,38 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanListItem</name>
|
<name>LanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="69"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="68"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation>འབྲེལ་མཐུད་མི་བྱེད་པ།</translation>
|
<translation>འབྲེལ་མཐུད་མི་བྱེད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="126"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="125"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation>སྐུད་ཡོད་སྒྲིག་ཆས་འཁྱེར་མེད་པ།</translation>
|
<translation>སྐུད་ཡོད་སྒྲིག་ཆས་འཁྱེར་མེད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="146"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="145"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="163"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="162"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="261"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="260"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation>འབྲེལ་ཐག་ཆད་པ།</translation>
|
<translation>འབྲེལ་ཐག་ཆད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="148"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="147"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="161"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="160"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="265"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="264"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>སྦྲེལ་མཐུད་བྱེད་པ</translation>
|
<translation>སྦྲེལ་མཐུད་བྱེད་པ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="151"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="168"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="167"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation>ངོ་བོ།</translation>
|
<translation>ངོ་བོ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="153"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="170"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="169"/>
|
||||||
<source>Delete</source>
|
<source>Delete</source>
|
||||||
<translation>དྲ་རྒྱ་དེ་བསུབ་དགོས།</translation>
|
<translation>དྲ་རྒྱ་དེ་བསུབ་དགོས།</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -796,7 +844,7 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanPage</name>
|
<name>LanPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1192"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1187"/>
|
||||||
<source>No ethernet device avaliable</source>
|
<source>No ethernet device avaliable</source>
|
||||||
<translation>ཨེ་ཙི་དྲ་རྒྱའི་སྒྲིག་ཆས་ལ་བཙན་འཛུལ་བྱས་མི་ཆོག།</translation>
|
<translation>ཨེ་ཙི་དྲ་རྒྱའི་སྒྲིག་ཆས་ལ་བཙན་འཛུལ་བྱས་མི་ཆོག།</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -825,7 +873,7 @@
|
||||||
<translation type="vanished">སྐུད་ཡོད་དྲ་བ་ཆད་སོང་།</translation>
|
<translation type="vanished">སྐུད་ཡོད་དྲ་བ་ཆད་སོང་།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1236"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1231"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation>སྐུད་ཡོད་སྒྲིག་ཆས་འཁྱེར་མེད་པ།</translation>
|
<translation>སྐུད་ཡོད་སྒྲིག་ཆས་འཁྱེར་མེད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -834,18 +882,18 @@
|
||||||
<translation type="vanished">སྐུད་ཡོད་དྲ་བ་སྦྲེལ་ཡོད།</translation>
|
<translation type="vanished">སྐུད་ཡོད་དྲ་བ་སྦྲེལ་ཡོད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1338"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1333"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation>འབྲེལ་མཐུད་བྱུང་ཡོད།: </translation>
|
<translation>འབྲེལ་མཐུད་བྱུང་ཡོད།: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1332"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1327"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation>འབྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
<translation>འབྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<source>(Limited)</source>
|
<source>(Limited)</source>
|
||||||
<translation>(དྲ་བར་ཚོད་འཛིན་ཐེབས་པ་རེད།)</translation>
|
<translation>(དྲ་བར་ཚོད་འཛིན་ཐེབས་པ་རེད།)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -866,46 +914,50 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="214"/>
|
<location filename="../frontend/mainwindow.cpp" line="221"/>
|
||||||
<source>kylin-nm</source>
|
<source>kylin-nm</source>
|
||||||
<translation>དྲ་རྒྱའི་ཡོ་བྱད།</translation>
|
<translation>དྲ་རྒྱའི་ཡོ་བྱད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="299"/>
|
<location filename="../frontend/mainwindow.cpp" line="306"/>
|
||||||
<source>LAN</source>
|
<source>LAN</source>
|
||||||
<translatorcomment>有线网络</translatorcomment>
|
<translatorcomment>有线网络</translatorcomment>
|
||||||
<translation>སྐུད་ཡོད་དྲ་བ།</translation>
|
<translation>སྐུད་ཡོད་དྲ་བ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="301"/>
|
<location filename="../frontend/mainwindow.cpp" line="308"/>
|
||||||
<source>WLAN</source>
|
<source>WLAN</source>
|
||||||
<translatorcomment>无线局域网</translatorcomment>
|
<translatorcomment>无线局域网</translatorcomment>
|
||||||
<translation>སྐུད་མེད་ཅུས་ཁོངས་ཀྱི་དྲ་བ།</translation>
|
<translation>སྐུད་མེད་ཅུས་ཁོངས་ཀྱི་དྲ་བ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="330"/>
|
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>རླུང་གཙོ་བོ་མངོན་པར་བྱས་ཡོད།</translation>
|
<translation type="vanished">རླུང་གཙོ་བོ་མངོན་པར་བྱས་ཡོད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="331"/>
|
<location filename="../frontend/mainwindow.cpp" line="338"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translatorcomment>设置网络项</translatorcomment>
|
<translatorcomment>设置网络项</translatorcomment>
|
||||||
<translation>སྒྲིག་བཀོད།</translation>
|
<translation>སྒྲིག་བཀོད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="573"/>
|
<location filename="../frontend/mainwindow.cpp" line="339"/>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="802"/>
|
<source>Network Connectivity Detection</source>
|
||||||
|
<translation>དྲ་རྒྱའི་སྦྲེལ་མཐུད་རང་བཞིན་གྱི་ཞིབ་དཔྱད་ཚད་ལེན།</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="616"/>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="869"/>
|
||||||
<source>Network tool</source>
|
<source>Network tool</source>
|
||||||
<translation>དྲ་རྒྱའི་ལག་ཆ་</translation>
|
<translation>དྲ་རྒྱའི་ལག་ཆ་</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="587"/>
|
<location filename="../frontend/mainwindow.cpp" line="630"/>
|
||||||
<source>Network Card</source>
|
<source>Network Card</source>
|
||||||
<translation>དྲ་བྱང་།</translation>
|
<translation>དྲ་བྱང་།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="785"/>
|
<location filename="../frontend/mainwindow.cpp" line="852"/>
|
||||||
<source>Not connected to the network</source>
|
<source>Not connected to the network</source>
|
||||||
<translation>དྲ་རྒྱ་དང་སྦྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
<translation>དྲ་རྒྱ་དང་སྦྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -945,22 +997,22 @@
|
||||||
<translation>དྲ་རྒྱའི་གསལ་འདེབས་གནས་ཚུལ།</translation>
|
<translation>དྲ་རྒྱའི་གསལ་འདེབས་གནས་ཚུལ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="377"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
||||||
<source>Detail</source>
|
<source>Detail</source>
|
||||||
<translation>ཞིབ་ཕྲའི་གནས་ཚུལ།</translation>
|
<translation>ཞིབ་ཕྲའི་གནས་ཚུལ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
||||||
<source>IPv4</source>
|
<source>IPv4</source>
|
||||||
<translation>IPv4</translation>
|
<translation>IPv4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="380"/>
|
||||||
<source>IPv6</source>
|
<source>IPv6</source>
|
||||||
<translation>IPv6</translation>
|
<translation>IPv6</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="381"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="382"/>
|
||||||
<source>Security</source>
|
<source>Security</source>
|
||||||
<translation>བདེ་འཇགས།</translation>
|
<translation>བདེ་འཇགས།</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -969,62 +1021,62 @@
|
||||||
<translation type="vanished">关闭</translation>
|
<translation type="vanished">关闭</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="383"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="384"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="390"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="391"/>
|
||||||
<source>Config</source>
|
<source>Config</source>
|
||||||
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས།</translation>
|
<translation>བཀོད་སྒྲིག་བཅས་བྱ་དགོས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="402"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="403"/>
|
||||||
<source>Confirm</source>
|
<source>Confirm</source>
|
||||||
<translation>གཏན་འཁེལ་བྱ་དགོས།</translation>
|
<translation>གཏན་འཁེལ་བྱ་དགོས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="404"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="405"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation>ཕྱིར་འཐེན།</translation>
|
<translation>ཕྱིར་འཐེན།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="462"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="463"/>
|
||||||
<source>Forget this network</source>
|
<source>Forget this network</source>
|
||||||
<translation>དྲ་རྒྱ་འདི་བརྗེད་སོང་།</translation>
|
<translation>དྲ་རྒྱ་འདི་བརྗེད་སོང་།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="464"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="465"/>
|
||||||
<source>Delete this network</source>
|
<source>Delete this network</source>
|
||||||
<translation>དྲ་རྒྱ་དེ་བསུབ་དགོས།</translation>
|
<translation>དྲ་རྒྱ་དེ་བསུབ་དགོས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="443"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="444"/>
|
||||||
<source>Add LAN Connect</source>
|
<source>Add LAN Connect</source>
|
||||||
<translation>སྐུད་ཡོད་དྲ་བ་ཁ་སྣོན་བྱ་དགོས།</translation>
|
<translation>སྐུད་ཡོད་དྲ་བ་ཁ་སྣོན་བྱ་དགོས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="448"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="449"/>
|
||||||
<source>Connect Hidden WLAN</source>
|
<source>Connect Hidden WLAN</source>
|
||||||
<translation>ཧའེ་ཏེན་ཝེ་ལན་དང་འབྲེལ་མཐུད་བྱེད་པ།</translation>
|
<translation>ཧའེ་ཏེན་ཝེ་ལན་དང་འབྲེལ་མཐུད་བྱེད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="629"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="630"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="641"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="642"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1184"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
||||||
<source>None</source>
|
<source>None</source>
|
||||||
<translation>གཅིག་ཀྱང་མེད།</translation>
|
<translation>གཅིག་ཀྱང་མེད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="753"/>
|
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
||||||
|
<location filename="../frontend/netdetails/netdetail.cpp" line="756"/>
|
||||||
<source>Auto</source>
|
<source>Auto</source>
|
||||||
<translation>རང་འགུལ་གྱིས་རླངས་</translation>
|
<translation>རང་འགུལ་གྱིས་རླངས་</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="896"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="897"/>
|
||||||
<source>start check ipv4 address conflict</source>
|
<source>start check ipv4 address conflict</source>
|
||||||
<translation>ipv4ས་གནས་ཀྱི་འགལ་བ་ལ་ཞིབ་བཤེར་བྱེད་འགོ་ཚུགས།</translation>
|
<translation>ipv4ས་གནས་ཀྱི་འགལ་བ་ལ་ཞིབ་བཤེར་བྱེད་འགོ་ཚུགས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="913"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="914"/>
|
||||||
<source>start check ipv6 address conflict</source>
|
<source>start check ipv6 address conflict</source>
|
||||||
<translation>ipv6གནས་ཡུལ་དང་འགལ་བར་ཞིབ་བཤེར་བྱེད་འགོ་ཚུགས།</translation>
|
<translation>ipv6གནས་ཡུལ་དང་འགལ་བར་ཞིབ་བཤེར་བྱེད་འགོ་ཚུགས།</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1037,22 +1089,22 @@
|
||||||
<translation type="vanished">ipv6ཐག་གཅོད་གདོང་གཏུག་བྱུང་བ་རེད།!</translation>
|
<translation type="vanished">ipv6ཐག་གཅོད་གདོང་གཏུག་བྱུང་བ་རེད།!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1180"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1181"/>
|
||||||
<source>this wifi no support enterprise type</source>
|
<source>this wifi no support enterprise type</source>
|
||||||
<translation>wifiལ་རྒྱབ་སྐྱོར་མེད་པའི་ཁེ་ལས་ཀྱི་རིགས་དབྱིབས།</translation>
|
<translation>wifiལ་རྒྱབ་སྐྱོར་མེད་པའི་ཁེ་ལས་ཀྱི་རིགས་དབྱིབས།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1186"/>
|
||||||
<source>this wifi no support None type</source>
|
<source>this wifi no support None type</source>
|
||||||
<translation>wifiལ་རྒྱབ་སྐྱོར་མི་བྱེད་པར་རིགས་དབྱིབས་གཅིག་ཀྱང་མེད།</translation>
|
<translation>wifiལ་རྒྱབ་སྐྱོར་མི་བྱེད་པར་རིགས་དབྱིབས་གཅིག་ཀྱང་མེད།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1190"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1191"/>
|
||||||
<source>this wifi no support WPA2 type</source>
|
<source>this wifi no support WPA2 type</source>
|
||||||
<translation>wifiལ་རྒྱབ་སྐྱོར་མི་བྱེད་པའི་WPA2རིགས་དབྱིབས་</translation>
|
<translation>wifiལ་རྒྱབ་སྐྱོར་མི་བྱེད་པའི་WPA2རིགས་དབྱིབས་</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1193"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1194"/>
|
||||||
<source>this wifi no support WPA3 type</source>
|
<source>this wifi no support WPA3 type</source>
|
||||||
<translation>wifiལ་རྒྱབ་སྐྱོར་མི་བྱེད་པའི་WPA3རིགས་དབྱིབས་</translation>
|
<translation>wifiལ་རྒྱབ་སྐྱོར་མི་བྱེད་པའི་WPA3རིགས་དབྱིབས་</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1464,42 +1516,42 @@
|
||||||
<context>
|
<context>
|
||||||
<name>WlanListItem</name>
|
<name>WlanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="72"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="71"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation>འབྲེལ་མཐུད་མི་བྱེད་པ།</translation>
|
<translation>འབྲེལ་མཐུད་མི་བྱེད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="177"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="176"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="204"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="203"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="637"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="656"/>
|
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
||||||
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation>འབྲེལ་ཐག་ཆད་པ།</translation>
|
<translation>འབྲེལ་ཐག་ཆད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="179"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="178"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="208"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="207"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="304"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="314"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="657"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="664"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="674"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>སྦྲེལ་མཐུད་བྱེད་པ</translation>
|
<translation>སྦྲེལ་མཐུད་བྱེད་པ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="188"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="671"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="681"/>
|
||||||
<source>Forget</source>
|
<source>Forget</source>
|
||||||
<translation>བརྗེད་པ།</translation>
|
<translation>བརྗེད་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="186"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="686"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation>ངོ་བོ།</translation>
|
<translation>ངོ་བོ།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="325"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="335"/>
|
||||||
<source>Auto Connect</source>
|
<source>Auto Connect</source>
|
||||||
<translation>རང་འགུལ་གྱིས་སྦྲེལ་མཐུད་</translation>
|
<translation>རང་འགུལ་གྱིས་སྦྲེལ་མཐུད་</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1553,12 +1605,12 @@
|
||||||
<translation>སྐུད་མེད་དྲ་རྒྱ་ཆད་སོང་།</translation>
|
<translation>སྐུད་མེད་དྲ་རྒྱ་ཆད་སོང་།</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1750"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1739"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation>འབྲེལ་མཐུད་བྱུང་ཡོད།: </translation>
|
<translation>འབྲེལ་མཐུད་བྱུང་ཡོད།: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1752"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1741"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation>འབྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
<translation>འབྲེལ་མཐུད་མ་བྱས་པ།</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -35,26 +35,74 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ConfigPage</name>
|
<name>ConfigPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="62"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="60"/>
|
||||||
<source>Network profile type</source>
|
<source>Network profile type</source>
|
||||||
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ ᠹᠠᠢᠯ ᠤ᠋ᠨ ᠳᠦᠷᠦᠯ</translation>
|
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ ᠹᠠᠢᠯ ᠤ᠋ᠨ ᠳᠦᠷᠦᠯ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="65"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="63"/>
|
||||||
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
||||||
<translation>ᠨᠡᠢᠳᠡ ᠵᠢᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ( ᠳᠠᠨᠢᠯᠴᠠᠭᠤᠯᠬᠤ) ᠳ᠋ᠤ᠌ ᠬᠢ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠲᠤᠰ ᠺᠣᠮᠫᠢᠦ᠋ᠲ᠋ᠧᠷ ᠢ᠋ ᠣᠯᠵᠤ ᠮᠡᠳᠡᠵᠤ ᠪᠣᠯᠬᠤ ᠥᠬᠡᠢ᠂ ᠶᠡᠷᠦᠳᠡ ᠵᠢᠨ ᠪᠠᠢᠳᠠᠯ ᠳ᠋ᠤ᠌ ᠣᠯᠠᠨ ᠨᠡᠢᠳᠡ ᠵᠢᠨ ᠳᠠᠯᠠᠪᠠᠢ ᠳ᠋ᠤ᠌ ᠬᠢ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠨᠡ᠂ ᠵᠢᠰᠢᠶᠡᠯᠡᠪᠡᠯ ᠨᠢᠰᠬᠡᠯ ᠤ᠋ᠨ ᠪᠠᠭᠤᠳᠠᠯ ᠤ᠋ᠨ ᠺᠤᠹᠸ ᠵᠢᠨ ᠦᠷᠦᠬᠡ ᠵᠡᠷᠭᠡ.</translation>
|
<translation>ᠨᠡᠢᠳᠡ ᠵᠢᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ( ᠳᠠᠨᠢᠯᠴᠠᠭᠤᠯᠬᠤ) ᠳ᠋ᠤ᠌ ᠬᠢ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠲᠤᠰ ᠺᠣᠮᠫᠢᠦ᠋ᠲ᠋ᠧᠷ ᠢ᠋ ᠣᠯᠵᠤ ᠮᠡᠳᠡᠵᠤ ᠪᠣᠯᠬᠤ ᠥᠬᠡᠢ᠂ ᠶᠡᠷᠦᠳᠡ ᠵᠢᠨ ᠪᠠᠢᠳᠠᠯ ᠳ᠋ᠤ᠌ ᠣᠯᠠᠨ ᠨᠡᠢᠳᠡ ᠵᠢᠨ ᠳᠠᠯᠠᠪᠠᠢ ᠳ᠋ᠤ᠌ ᠬᠢ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠬᠡᠷᠡᠭᠯᠡᠨᠡ᠂ ᠵᠢᠰᠢᠶᠡᠯᠡᠪᠡᠯ ᠨᠢᠰᠬᠡᠯ ᠤ᠋ᠨ ᠪᠠᠭᠤᠳᠠᠯ ᠤ᠋ᠨ ᠺᠤᠹᠸ ᠵᠢᠨ ᠦᠷᠦᠬᠡ ᠵᠡᠷᠭᠡ.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="69"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="67"/>
|
||||||
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
||||||
<translation>ᠳᠤᠰᠬᠠᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ᠂ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠲᠤᠰ ᠺᠣᠮᠫᠢᠦ᠋ᠲ᠋ᠧᠷ ᠢ᠋ ᠣᠯᠵᠤ ᠮᠡᠳᠡᠪᠡ᠂ ᠶᠡᠷᠦᠳᠡ ᠵᠢᠨ ᠪᠠᠢᠳᠠᠯ ᠳ᠋ᠤ᠌ ᠬᠡᠷᠦᠢ ᠤ᠋ᠨ ᠪᠤᠶᠤ ᠠᠯᠪᠠᠨ ᠪᠠᠢᠭᠤᠯᠭᠠ ᠵᠢᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠬᠡᠷᠡᠭᠯᠡᠨᠡ᠂ ᠲᠠ ᠳᠠᠨᠢᠬᠤ ᠮᠦᠷᠳᠡᠭᠡᠨ ᠨᠠᠢᠳᠠᠪᠤᠷᠢᠳᠠᠢ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳᠡᠬᠡᠷᠡᠬᠢ ᠬᠤᠪᠢ ᠬᠥᠮᠦᠨ ᠪᠤᠶᠤ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ.</translation>
|
<translation>ᠳᠤᠰᠬᠠᠢ ᠬᠡᠷᠡᠭᠯᠡᠬᠦ᠂ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠲᠤᠰ ᠺᠣᠮᠫᠢᠦ᠋ᠲ᠋ᠧᠷ ᠢ᠋ ᠣᠯᠵᠤ ᠮᠡᠳᠡᠪᠡ᠂ ᠶᠡᠷᠦᠳᠡ ᠵᠢᠨ ᠪᠠᠢᠳᠠᠯ ᠳ᠋ᠤ᠌ ᠬᠡᠷᠦᠢ ᠤ᠋ᠨ ᠪᠤᠶᠤ ᠠᠯᠪᠠᠨ ᠪᠠᠢᠭᠤᠯᠭᠠ ᠵᠢᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠬᠡᠷᠡᠭᠯᠡᠨᠡ᠂ ᠲᠠ ᠳᠠᠨᠢᠬᠤ ᠮᠦᠷᠳᠡᠭᠡᠨ ᠨᠠᠢᠳᠠᠪᠤᠷᠢᠳᠠᠢ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳᠡᠬᠡᠷᠡᠬᠢ ᠬᠤᠪᠢ ᠬᠥᠮᠦᠨ ᠪᠤᠶᠤ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="73"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="71"/>
|
||||||
<source>Config firewall and security settings</source>
|
<source>Config firewall and security settings</source>
|
||||||
<translation>ᠭᠠᠯ ᠰᠡᠷᠬᠡᠢᠯᠡᠬᠦ ᠬᠡᠷᠡᠮ ᠪᠤᠯᠤᠨ ᠠᠮᠤᠷ ᠳᠦᠪᠰᠢᠨ ᠤ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
<translation>ᠭᠠᠯ ᠰᠡᠷᠬᠡᠢᠯᠡᠬᠦ ᠬᠡᠷᠡᠮ ᠪᠤᠯᠤᠨ ᠠᠮᠤᠷ ᠳᠦᠪᠰᠢᠨ ᠤ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ConnectivityPage</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="25"/>
|
||||||
|
<source>Network connectivity detection</source>
|
||||||
|
<translation>ᠰᠦᠯᠵᠢᠶᠡ ᠶᠢ ᠵᠠᠯᠭᠠᠵᠤ ᠪᠠᠶᠢᠴᠠᠭᠠᠨ ᠬᠡᠮᠵᠢᠨᠡ</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="55"/>
|
||||||
|
<source>If access to the Internet is restricted, please switch the network IP connectivity detection method and try again.</source>
|
||||||
|
<translation>ᠬᠡᠷᠪᠡ ᠢᠨᠲ᠋ᠸᠷ ᠰᠦᠯᠵᠢᠶᠠ ᠳᠤ ᠰᠤᠷᠪᠤᠯᠵᠢᠯᠠᠬᠤ ᠳᠤ ᠬᠦᠷᠪᠡᠯ ᠂ ᠰᠦᠯᠵᠢᠶᠠ ᠶᠢᠨ IP ᠶᠢ ᠬᠤᠯᠪᠤᠵᠤ ᠪᠠᠶᠢᠴᠠᠭᠠᠨ ᠬᠡᠮᠵᠢᠭᠦ ᠠᠷᠭᠠ ᠶᠢ ᠰᠤᠯᠢᠵᠤ ᠂ ᠲᠠᠷᠠᠭᠠ ᠨᠢ ᠲᠠᠭᠢᠨ ᠰᠢᠯᠭᠠᠯᠲᠠ ᠬᠢᠨᠡ.</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="61"/>
|
||||||
|
<source>Public network (default)</source>
|
||||||
|
<translation>ᠨᠡᠶᠢᠲᠡ ᠶᠢᠨ ᠬᠡᠷᠡᠭᠯᠡᠭᠡᠨ ᠦ ᠰᠦᠯᠵᠢᠶᠡ ( ᠳᠤᠪ ᠳᠤᠭᠤᠢ ᠲᠠᠨᠢᠯᠴᠠᠨᠠ )</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="63"/>
|
||||||
|
<source>Local area network (intranet)</source>
|
||||||
|
<translation>ᠬᠡᠰᠡᠭ ᠬᠡᠪᠴᠢᠶᠡᠨ ᠦ ᠲᠣᠤᠷ ( ᠳᠣᠲᠣᠭᠠᠳᠤ ᠰᠦᠯᠵᠢᠶᠡ )</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="74"/>
|
||||||
|
<source>Confirm</source>
|
||||||
|
<translation>ᠪᠠᠳᠤᠯᠠᠬᠤ</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="161"/>
|
||||||
|
<source>The network is connected and can access the Internet normally.</source>
|
||||||
|
<translation>ᠰᠦᠯᠵᠢᠶᠡ ᠨᠢᠭᠡᠨᠲᠡ ᠬᠣᠯᠪᠣᠭᠳᠠᠵᠤ ᠂ ᠢᠨᠲ᠋ᠧᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠶᠢ ᠬᠡᠪ ᠦᠨ ᠶᠣᠰᠣᠭᠠᠷ ᠰᠤᠷᠪᠤᠯᠵᠢᠯᠠᠵᠤ ᠪᠣᠯᠣᠨᠠ.</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="166"/>
|
||||||
|
<source>The network is connected and access to the Internet is restricted.</source>
|
||||||
|
<translation>ᠰᠦᠯᠵᠢᠶᠡ ᠨᠢᠭᠡᠨᠲᠡ ᠬᠣᠯᠪᠣᠭᠳᠠᠵᠤ ᠂ ᠢᠨᠲ᠋ᠧᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠦ ᠠᠶᠢᠯᠴᠢᠯᠠᠯᠲᠠ ᠳᠤ ᠬᠢᠵᠠᠭᠠᠷᠯᠠᠭᠳᠠᠵᠠᠶ.</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="177"/>
|
||||||
|
<source>Please enter the local area network (intranet) detection address</source>
|
||||||
|
<translation>ᠬᠡᠰᠡᠭ ᠬᠡᠪᠴᠢᠶᠡᠨ ᠦ ᠲᠣᠤᠷ (ᠳᠣᠲᠣᠭᠠᠳᠤ ᠲᠣᠤᠷ) ᠢ ᠪᠠᠶᠢᠴᠠᠭᠠᠨ ᠬᠡᠮᠵᠢᠬᠦ ᠬᠠᠶᠢᠭ ᠢ ᠣᠷᠣᠭᠤᠯᠵᠤ ᠢᠷᠡᠭᠡᠷᠡᠢ</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="196"/>
|
||||||
|
<source>Format error</source>
|
||||||
|
<translation>ᠬᠡᠯᠪᠡᠷᠢ ᠨᠢ ᠪᠤᠷᠤᠭᠤ</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>CopyButton</name>
|
<name>CopyButton</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -524,27 +572,27 @@
|
||||||
<translation type="vanished">关闭</translation>
|
<translation type="vanished">关闭</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="116"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="117"/>
|
||||||
<source>Wi-Fi network requires authentication</source>
|
<source>Wi-Fi network requires authentication</source>
|
||||||
<translation>Wi-Fi ᠰᠦᠯᠵᠢᠶᠡ ᠬᠡᠷᠡᠴᠢᠯᠡᠯ ᠢ᠋ ᠱᠠᠭᠠᠷᠳᠠᠬᠤ</translation>
|
<translation>Wi-Fi ᠰᠦᠯᠵᠢᠶᠡ ᠬᠡᠷᠡᠴᠢᠯᠡᠯ ᠢ᠋ ᠱᠠᠭᠠᠷᠳᠠᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="121"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="122"/>
|
||||||
<source>Access to Wi-Fi network "</source>
|
<source>Access to Wi-Fi network "</source>
|
||||||
<translation>Wi-Fi ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠠᠢᠯᠴᠢᠯᠠᠬᠤ</translation>
|
<translation>Wi-Fi ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠠᠢᠯᠴᠢᠯᠠᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="123"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="124"/>
|
||||||
<source>" requires a password or encryption key.</source>
|
<source>" requires a password or encryption key.</source>
|
||||||
<translation>ᠨᠢᠭᠤᠴᠠ ᠺᠣᠳ᠋ ᠱᠠᠭᠠᠷᠳᠠᠬᠤ ᠪᠤᠶᠤ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠨᠢᠭᠤᠴᠠᠯᠠᠬᠤ.</translation>
|
<translation>ᠨᠢᠭᠤᠴᠠ ᠺᠣᠳ᠋ ᠱᠠᠭᠠᠷᠳᠠᠬᠤ ᠪᠤᠶᠤ ᠨᠢᠭᠤᠴᠠ ᠳᠦᠯᠬᠢᠬᠦᠷ ᠨᠢᠭᠤᠴᠠᠯᠠᠬᠤ.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="154"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation>ᠦᠬᠡᠢᠰᠬᠡᠬᠦ</translation>
|
<translation>ᠦᠬᠡᠢᠰᠬᠡᠬᠦ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="156"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠡ</translation>
|
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -552,22 +600,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>FirewallDialog</name>
|
<name>FirewallDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="85"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
||||||
<source>Allow other devices on this network to discover this computer?</source>
|
<source>Allow other devices on this network to discover this computer?</source>
|
||||||
<translation>ᠲᠤᠰ ᠳᠦᠯᠵᠢᠶᠡᠨ ᠳᠡᠭᠡᠷᠡᠬᠢ ᠪᠤᠰᠤᠳ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠡᠨᠡ ᠺᠣᠮᠫᠢᠦ᠋ᠲ᠋ᠧᠷ ᠢ᠋ ᠣᠯᠵᠤ ᠮᠡᠳᠡᠬᠦ ᠵᠢ ᠵᠥᠪᠰᠢᠶᠡᠷᠡᠬᠦ ᠤᠤ?</translation>
|
<translation>ᠲᠤᠰ ᠳᠦᠯᠵᠢᠶᠡᠨ ᠳᠡᠭᠡᠷᠡᠬᠢ ᠪᠤᠰᠤᠳ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠡᠨᠡ ᠺᠣᠮᠫᠢᠦ᠋ᠲ᠋ᠧᠷ ᠢ᠋ ᠣᠯᠵᠤ ᠮᠡᠳᠡᠬᠦ ᠵᠢ ᠵᠥᠪᠰᠢᠶᠡᠷᠡᠬᠦ ᠤᠤ?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="87"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="91"/>
|
||||||
<source>It is not recommended to enable this feature on public networks</source>
|
<source>It is not recommended to enable this feature on public networks</source>
|
||||||
<translation>ᠨᠡᠢᠳᠡ ᠵᠢᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳᠡᠭᠡᠷᠡ ᠲᠤᠰ ᠴᠢᠳᠠᠪᠬᠢ ᠵᠢ ᠨᠡᠬᠡᠬᠡᠬᠦ ᠥᠬᠡᠢ ᠪᠠᠢᠬᠤ ᠵᠢ ᠰᠠᠨᠠᠭᠤᠯᠵᠤ ᠪᠠᠢᠨᠠ</translation>
|
<translation>ᠨᠡᠢᠳᠡ ᠵᠢᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳᠡᠭᠡᠷᠡ ᠲᠤᠰ ᠴᠢᠳᠠᠪᠬᠢ ᠵᠢ ᠨᠡᠬᠡᠬᠡᠬᠦ ᠥᠬᠡᠢ ᠪᠠᠢᠬᠤ ᠵᠢ ᠰᠠᠨᠠᠭᠤᠯᠵᠤ ᠪᠠᠢᠨᠠ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="93"/>
|
||||||
<source>Not allowed (recommended)</source>
|
<source>Not allowed (recommended)</source>
|
||||||
<translation>ᠵᠥᠪᠰᠢᠶᠡᠷᠡᠬᠦ ᠥᠬᠡᠢ ( ᠳᠠᠨᠢᠯᠴᠠᠭᠤᠯᠬᠤ)</translation>
|
<translation>ᠵᠥᠪᠰᠢᠶᠡᠷᠡᠬᠦ ᠥᠬᠡᠢ ( ᠳᠠᠨᠢᠯᠴᠠᠭᠤᠯᠬᠤ)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="90"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="94"/>
|
||||||
<source>Allowed</source>
|
<source>Allowed</source>
|
||||||
<translation>ᠵᠥᠪᠰᠢᠶᠡᠷᠡᠬᠦ</translation>
|
<translation>ᠵᠥᠪᠰᠢᠶᠡᠷᠡᠬᠦ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -737,38 +785,38 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanListItem</name>
|
<name>LanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="69"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="68"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠭᠡ ᠦᠬᠡᠢ</translation>
|
<translation>ᠴᠦᠷᠬᠡᠯᠡᠭᠡ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="126"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="125"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠤᠳᠠᠰᠤ ᠵᠠᠯᠭᠠᠭᠠ ᠦᠬᠡᠢ</translation>
|
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠤᠳᠠᠰᠤ ᠵᠠᠯᠭᠠᠭᠠ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="146"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="145"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="163"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="162"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="261"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="260"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation>ᠳᠠᠰᠤᠯᠬᠤ</translation>
|
<translation>ᠳᠠᠰᠤᠯᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="148"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="147"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="161"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="160"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="265"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="264"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠡ</translation>
|
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="151"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="168"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="167"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation>ᠬᠠᠷᠢᠶᠠᠯᠠᠯ</translation>
|
<translation>ᠬᠠᠷᠢᠶᠠᠯᠠᠯ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="153"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="170"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="169"/>
|
||||||
<source>Delete</source>
|
<source>Delete</source>
|
||||||
<translation>ᠲᠤᠰ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠬᠠᠰᠤᠬᠤ</translation>
|
<translation>ᠲᠤᠰ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠬᠠᠰᠤᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -776,7 +824,7 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanPage</name>
|
<name>LanPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1192"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1187"/>
|
||||||
<source>No ethernet device avaliable</source>
|
<source>No ethernet device avaliable</source>
|
||||||
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠵᠢ ᠪᠠᠢᠴᠠᠭᠠᠵᠤ ᠤᠯᠤᠭᠰᠠᠨ ᠦᠬᠡᠢ</translation>
|
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠵᠢ ᠪᠠᠢᠴᠠᠭᠠᠵᠤ ᠤᠯᠤᠭᠰᠠᠨ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -805,7 +853,7 @@
|
||||||
<translation type="vanished">ᠤᠳᠠᠰᠤᠳᠤ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠨᠢᠭᠡᠨᠳᠡ ᠳᠠᠰᠤᠯᠪᠠ</translation>
|
<translation type="vanished">ᠤᠳᠠᠰᠤᠳᠤ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠨᠢᠭᠡᠨᠳᠡ ᠳᠠᠰᠤᠯᠪᠠ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1236"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1231"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠤᠳᠠᠰᠤ ᠵᠠᠯᠭᠠᠭᠠ ᠦᠬᠡᠢ</translation>
|
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠤᠳᠠᠰᠤ ᠵᠠᠯᠭᠠᠭᠠ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -814,18 +862,18 @@
|
||||||
<translation type="vanished">ᠤᠳᠠᠰᠤᠳᠤ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠨᠢᠭᠡᠨᠳᠡ ᠴᠦᠷᠬᠡᠯᠡᠪᠡ</translation>
|
<translation type="vanished">ᠤᠳᠠᠰᠤᠳᠤ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠨᠢᠭᠡᠨᠳᠡ ᠴᠦᠷᠬᠡᠯᠡᠪᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1338"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1333"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation>ᠴᠥᠷᠬᠡᠯᠡᠪᠡ: </translation>
|
<translation>ᠴᠥᠷᠬᠡᠯᠡᠪᠡ: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1332"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1327"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation>ᠴᠥᠷᠬᠡᠯᠡᠭᠡ ᠥᠬᠡᠢ</translation>
|
<translation>ᠴᠥᠷᠬᠡᠯᠡᠭᠡ ᠥᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<source>(Limited)</source>
|
<source>(Limited)</source>
|
||||||
<translation>( ᠰᠦᠯᠵᠢᠶᠡ ᠬᠢᠵᠠᠭᠠᠷᠯᠠᠭᠳᠠᠪᠠ)</translation>
|
<translation>( ᠰᠦᠯᠵᠢᠶᠡ ᠬᠢᠵᠠᠭᠠᠷᠯᠠᠭᠳᠠᠪᠠ)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -846,46 +894,50 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="214"/>
|
<location filename="../frontend/mainwindow.cpp" line="221"/>
|
||||||
<source>kylin-nm</source>
|
<source>kylin-nm</source>
|
||||||
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠪᠠᠭᠠᠵᠢ</translation>
|
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠪᠠᠭᠠᠵᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="299"/>
|
<location filename="../frontend/mainwindow.cpp" line="306"/>
|
||||||
<source>LAN</source>
|
<source>LAN</source>
|
||||||
<translatorcomment>有线网络</translatorcomment>
|
<translatorcomment>有线网络</translatorcomment>
|
||||||
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="301"/>
|
<location filename="../frontend/mainwindow.cpp" line="308"/>
|
||||||
<source>WLAN</source>
|
<source>WLAN</source>
|
||||||
<translatorcomment>无线局域网</translatorcomment>
|
<translatorcomment>无线局域网</translatorcomment>
|
||||||
<translation>ᠤᠳᠠᠰᠤ ᠦᠬᠡᠢ ᠬᠡᠰᠡᠭ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
<translation>ᠤᠳᠠᠰᠤ ᠦᠬᠡᠢ ᠬᠡᠰᠡᠭ ᠰᠦᠯᠵᠢᠶᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="330"/>
|
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠪᠠᠭᠠᠵᠢ ᠵᠢ ᠨᠡᠬᠡᠬᠡᠬᠦ</translation>
|
<translation type="vanished">ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠪᠠᠭᠠᠵᠢ ᠵᠢ ᠨᠡᠬᠡᠬᠡᠬᠦ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="331"/>
|
<location filename="../frontend/mainwindow.cpp" line="338"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translatorcomment>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠲᠦᠷᠦᠯ ᠢ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translatorcomment>
|
<translatorcomment>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠲᠦᠷᠦᠯ ᠢ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translatorcomment>
|
||||||
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠲᠦᠷᠦᠯ ᠢ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠲᠦᠷᠦᠯ ᠢ᠋ ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="573"/>
|
<location filename="../frontend/mainwindow.cpp" line="339"/>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="802"/>
|
<source>Network Connectivity Detection</source>
|
||||||
|
<translation>ᠰᠦᠯᠵᠢᠶᠡ ᠶᠢ ᠵᠠᠯᠭᠠᠵᠤ ᠪᠠᠶᠢᠴᠠᠭᠠᠨ ᠬᠡᠮᠵᠢᠨᠡ</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="616"/>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="869"/>
|
||||||
<source>Network tool</source>
|
<source>Network tool</source>
|
||||||
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠪᠠᠭᠠᠵᠢ</translation>
|
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠪᠠᠭᠠᠵᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="587"/>
|
<location filename="../frontend/mainwindow.cpp" line="630"/>
|
||||||
<source>Network Card</source>
|
<source>Network Card</source>
|
||||||
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠺᠠᠷᠲ</translation>
|
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠺᠠᠷᠲ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="785"/>
|
<location filename="../frontend/mainwindow.cpp" line="852"/>
|
||||||
<source>Not connected to the network</source>
|
<source>Not connected to the network</source>
|
||||||
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠴᠥᠷᠬᠡᠯᠡᠭᠡ ᠥᠬᠡᠢ</translation>
|
<translation>ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠴᠥᠷᠬᠡᠯᠡᠭᠡ ᠥᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -921,22 +973,22 @@
|
||||||
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠰᠠᠨᠠᠭᠤᠯᠤᠮᠵᠢ ᠵᠢᠨ ᠮᠡᠳᠡᠭᠡ</translation>
|
<translation>ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠰᠠᠨᠠᠭᠤᠯᠤᠮᠵᠢ ᠵᠢᠨ ᠮᠡᠳᠡᠭᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="377"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
||||||
<source>Detail</source>
|
<source>Detail</source>
|
||||||
<translation>ᠳᠡᠯᠭᠡᠷᠡᠩᠭᠦᠢ ᠠᠭᠤᠯᠭᠠ</translation>
|
<translation>ᠳᠡᠯᠭᠡᠷᠡᠩᠭᠦᠢ ᠠᠭᠤᠯᠭᠠ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
||||||
<source>IPv4</source>
|
<source>IPv4</source>
|
||||||
<translation>IPv4</translation>
|
<translation>IPv4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="380"/>
|
||||||
<source>IPv6</source>
|
<source>IPv6</source>
|
||||||
<translation>IPv6</translation>
|
<translation>IPv6</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="381"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="382"/>
|
||||||
<source>Security</source>
|
<source>Security</source>
|
||||||
<translation>ᠠᠮᠤᠷ ᠳᠦᠪᠰᠢᠨ</translation>
|
<translation>ᠠᠮᠤᠷ ᠳᠦᠪᠰᠢᠨ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -945,62 +997,62 @@
|
||||||
<translation type="vanished">关闭</translation>
|
<translation type="vanished">关闭</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="383"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="384"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="390"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="391"/>
|
||||||
<source>Config</source>
|
<source>Config</source>
|
||||||
<translation>ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
<translation>ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭᠠ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="402"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="403"/>
|
||||||
<source>Confirm</source>
|
<source>Confirm</source>
|
||||||
<translation>ᠪᠠᠳᠤᠯᠠᠬᠤ</translation>
|
<translation>ᠪᠠᠳᠤᠯᠠᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="404"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="405"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation>ᠦᠬᠡᠢᠰᠬᠡᠬᠦ</translation>
|
<translation>ᠦᠬᠡᠢᠰᠬᠡᠬᠦ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="462"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="463"/>
|
||||||
<source>Forget this network</source>
|
<source>Forget this network</source>
|
||||||
<translation>ᠲᠤᠰ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠮᠠᠷᠳᠠᠬᠤ</translation>
|
<translation>ᠲᠤᠰ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠮᠠᠷᠳᠠᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="464"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="465"/>
|
||||||
<source>Delete this network</source>
|
<source>Delete this network</source>
|
||||||
<translation>ᠲᠤᠰ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠬᠠᠰᠤᠬᠤ</translation>
|
<translation>ᠲᠤᠰ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠬᠠᠰᠤᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="443"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="444"/>
|
||||||
<source>Add LAN Connect</source>
|
<source>Add LAN Connect</source>
|
||||||
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠨᠡᠮᠡᠬᠦ</translation>
|
<translation>ᠤᠳᠠᠰᠤᠳᠤ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠨᠡᠮᠡᠬᠦ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="448"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="449"/>
|
||||||
<source>Connect Hidden WLAN</source>
|
<source>Connect Hidden WLAN</source>
|
||||||
<translation>ᠨᠢᠭᠤᠴᠠᠯᠠᠭᠰᠠᠨ WLAN ᠲᠤ᠌/ ᠳ᠋ᠤ᠌ ᠴᠦᠷᠬᠡᠯᠡᠬᠦ</translation>
|
<translation>ᠨᠢᠭᠤᠴᠠᠯᠠᠭᠰᠠᠨ WLAN ᠲᠤ᠌/ ᠳ᠋ᠤ᠌ ᠴᠦᠷᠬᠡᠯᠡᠬᠦ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="629"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="630"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="641"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="642"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1184"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
||||||
<source>None</source>
|
<source>None</source>
|
||||||
<translation>ᠦᠬᠡᠢ</translation>
|
<translation>ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="753"/>
|
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
||||||
|
<location filename="../frontend/netdetails/netdetail.cpp" line="756"/>
|
||||||
<source>Auto</source>
|
<source>Auto</source>
|
||||||
<translation>ᠠᠦ᠋ᠲ᠋ᠤ᠋</translation>
|
<translation>ᠠᠦ᠋ᠲ᠋ᠤ᠋</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="896"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="897"/>
|
||||||
<source>start check ipv4 address conflict</source>
|
<source>start check ipv4 address conflict</source>
|
||||||
<translation>ipv4 ᠬᠠᠶᠢᠭ ᠤ᠋ᠨ ᠮᠦᠷᠬᠦᠯᠳᠦᠬᠡᠨ ᠢ᠋ ᠪᠠᠢᠴᠠᠭᠠᠵᠤ ᠡᠬᠢᠯᠡᠪᠡ</translation>
|
<translation>ipv4 ᠬᠠᠶᠢᠭ ᠤ᠋ᠨ ᠮᠦᠷᠬᠦᠯᠳᠦᠬᠡᠨ ᠢ᠋ ᠪᠠᠢᠴᠠᠭᠠᠵᠤ ᠡᠬᠢᠯᠡᠪᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="913"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="914"/>
|
||||||
<source>start check ipv6 address conflict</source>
|
<source>start check ipv6 address conflict</source>
|
||||||
<translation>ipv6 ᠬᠠᠶᠢᠭ ᠤ᠋ᠨ ᠮᠦᠷᠬᠦᠯᠳᠦᠬᠡᠨ ᠢ᠋ ᠪᠠᠢᠴᠠᠭᠠᠵᠤ ᠡᠬᠢᠯᠡᠪᠡ</translation>
|
<translation>ipv6 ᠬᠠᠶᠢᠭ ᠤ᠋ᠨ ᠮᠦᠷᠬᠦᠯᠳᠦᠬᠡᠨ ᠢ᠋ ᠪᠠᠢᠴᠠᠭᠠᠵᠤ ᠡᠬᠢᠯᠡᠪᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1013,22 +1065,22 @@
|
||||||
<translation type="vanished">ipv6 ᠬᠠᠶᠢᠭ ᠮᠦᠷᠬᠦᠯᠳᠦᠬᠡᠨ ᠲᠠᠢ!</translation>
|
<translation type="vanished">ipv6 ᠬᠠᠶᠢᠭ ᠮᠦᠷᠬᠦᠯᠳᠦᠬᠡᠨ ᠲᠠᠢ!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1180"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1181"/>
|
||||||
<source>this wifi no support enterprise type</source>
|
<source>this wifi no support enterprise type</source>
|
||||||
<translation>ᠲᠤᠰ wifi ᠠᠵᠤ ᠠᠬᠤᠢᠯᠠᠯ ᠤ᠋ᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠲᠦᠷᠦᠯ ᠢ᠋ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
<translation>ᠲᠤᠰ wifi ᠠᠵᠤ ᠠᠬᠤᠢᠯᠠᠯ ᠤ᠋ᠨ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠲᠦᠷᠦᠯ ᠢ᠋ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1186"/>
|
||||||
<source>this wifi no support None type</source>
|
<source>this wifi no support None type</source>
|
||||||
<translation>ᠲᠤᠰ wifi ᠬᠤᠭᠤᠰᠤᠨ ᠬᠡᠯᠪᠡᠷᠢ ᠵᠢ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
<translation>ᠲᠤᠰ wifi ᠬᠤᠭᠤᠰᠤᠨ ᠬᠡᠯᠪᠡᠷᠢ ᠵᠢ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1190"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1191"/>
|
||||||
<source>this wifi no support WPA2 type</source>
|
<source>this wifi no support WPA2 type</source>
|
||||||
<translation>ᠲᠤᠰ wifiWPA2 ᠳᠦᠷᠦᠯ ᠢ᠋ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
<translation>ᠲᠤᠰ wifiWPA2 ᠳᠦᠷᠦᠯ ᠢ᠋ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1193"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1194"/>
|
||||||
<source>this wifi no support WPA3 type</source>
|
<source>this wifi no support WPA3 type</source>
|
||||||
<translation>ᠲᠤᠰ wifiWPA3 ᠳᠦᠷᠦᠯ ᠢ᠋ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
<translation>ᠲᠤᠰ wifiWPA3 ᠳᠦᠷᠦᠯ ᠢ᠋ ᠳᠡᠮᠵᠢᠬᠦ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1425,42 +1477,42 @@
|
||||||
<context>
|
<context>
|
||||||
<name>WlanListItem</name>
|
<name>WlanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="72"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="71"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠭᠡ ᠦᠬᠡᠢ</translation>
|
<translation>ᠴᠦᠷᠬᠡᠯᠡᠭᠡ ᠦᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="177"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="176"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="204"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="203"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="637"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="656"/>
|
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
||||||
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation>ᠳᠠᠰᠤᠯᠬᠤ</translation>
|
<translation>ᠳᠠᠰᠤᠯᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="179"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="178"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="208"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="207"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="304"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="314"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="657"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="664"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="674"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠡ</translation>
|
<translation>ᠴᠦᠷᠬᠡᠯᠡᠬᠡ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="188"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="671"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="681"/>
|
||||||
<source>Forget</source>
|
<source>Forget</source>
|
||||||
<translation>ᠲᠤᠰ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠮᠠᠷᠳᠠᠬᠤ</translation>
|
<translation>ᠲᠤᠰ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠮᠠᠷᠳᠠᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="186"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="686"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation>ᠬᠠᠷᠢᠶᠠᠯᠠᠯ</translation>
|
<translation>ᠬᠠᠷᠢᠶᠠᠯᠠᠯ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="325"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="335"/>
|
||||||
<source>Auto Connect</source>
|
<source>Auto Connect</source>
|
||||||
<translation>ᠲᠤᠰ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠠᠦ᠋ᠲ᠋ᠤ᠋ ᠪᠡᠷ ᠵᠠᠯᠭᠠᠬᠤ</translation>
|
<translation>ᠲᠤᠰ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳ᠋ᠤ᠌ ᠠᠦ᠋ᠲ᠋ᠤ᠋ ᠪᠡᠷ ᠵᠠᠯᠭᠠᠬᠤ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1514,12 +1566,12 @@
|
||||||
<translation>ᠤᠳᠠᠰᠤ ᠦᠬᠡᠢ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠳᠠᠰᠤᠯᠪᠠ</translation>
|
<translation>ᠤᠳᠠᠰᠤ ᠦᠬᠡᠢ ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡ ᠵᠢ ᠳᠠᠰᠤᠯᠪᠠ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1750"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1739"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation>ᠴᠥᠷᠬᠡᠯᠡᠪᠡ: </translation>
|
<translation>ᠴᠥᠷᠬᠡᠯᠡᠪᠡ: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1752"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1741"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation>ᠴᠥᠷᠬᠡᠯᠡᠭᠡ ᠥᠬᠡᠢ</translation>
|
<translation>ᠴᠥᠷᠬᠡᠯᠡᠭᠡ ᠥᠬᠡᠢ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -102,26 +102,74 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ConfigPage</name>
|
<name>ConfigPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="62"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="60"/>
|
||||||
<source>Network profile type</source>
|
<source>Network profile type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="65"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="63"/>
|
||||||
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="69"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="67"/>
|
||||||
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="73"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="71"/>
|
||||||
<source>Config firewall and security settings</source>
|
<source>Config firewall and security settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ConnectivityPage</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="25"/>
|
||||||
|
<source>Network connectivity detection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="55"/>
|
||||||
|
<source>If access to the Internet is restricted, please switch the network IP connectivity detection method and try again.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="61"/>
|
||||||
|
<source>Public network (default)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="63"/>
|
||||||
|
<source>Local area network (intranet)</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="74"/>
|
||||||
|
<source>Confirm</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="161"/>
|
||||||
|
<source>The network is connected and can access the Internet normally.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="166"/>
|
||||||
|
<source>The network is connected and access to the Internet is restricted.</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="177"/>
|
||||||
|
<source>Please enter the local area network (intranet) detection address</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="196"/>
|
||||||
|
<source>Format error</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>CreatNetPage</name>
|
<name>CreatNetPage</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -1251,27 +1299,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>EnterpriseWlanDialog</name>
|
<name>EnterpriseWlanDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="116"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="117"/>
|
||||||
<source>Wi-Fi network requires authentication</source>
|
<source>Wi-Fi network requires authentication</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="121"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="122"/>
|
||||||
<source>Access to Wi-Fi network "</source>
|
<source>Access to Wi-Fi network "</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="123"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="124"/>
|
||||||
<source>" requires a password or encryption key.</source>
|
<source>" requires a password or encryption key.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="154"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="156"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1279,22 +1327,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>FirewallDialog</name>
|
<name>FirewallDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="85"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
||||||
<source>Allow other devices on this network to discover this computer?</source>
|
<source>Allow other devices on this network to discover this computer?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="87"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="91"/>
|
||||||
<source>It is not recommended to enable this feature on public networks</source>
|
<source>It is not recommended to enable this feature on public networks</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="93"/>
|
||||||
<source>Not allowed (recommended)</source>
|
<source>Not allowed (recommended)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="90"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="94"/>
|
||||||
<source>Allowed</source>
|
<source>Allowed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1455,38 +1503,38 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanListItem</name>
|
<name>LanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="69"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="68"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation type="unfinished">Bağlanamadı</translation>
|
<translation type="unfinished">Bağlanamadı</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="126"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="125"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="146"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="145"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="163"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="162"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="261"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="260"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation type="unfinished">Bağlantıyı Kes</translation>
|
<translation type="unfinished">Bağlantıyı Kes</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="148"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="147"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="161"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="160"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="265"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="264"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="151"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="168"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="167"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="153"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="170"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="169"/>
|
||||||
<source>Delete</source>
|
<source>Delete</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1494,7 +1542,7 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanPage</name>
|
<name>LanPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1192"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1187"/>
|
||||||
<source>No ethernet device avaliable</source>
|
<source>No ethernet device avaliable</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1519,23 +1567,23 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1236"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1231"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1338"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1333"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<source>(Limited)</source>
|
<source>(Limited)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1332"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1327"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1556,7 +1604,7 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="214"/>
|
<location filename="../frontend/mainwindow.cpp" line="221"/>
|
||||||
<source>kylin-nm</source>
|
<source>kylin-nm</source>
|
||||||
<translation></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1577,33 +1625,38 @@
|
||||||
<translation type="vanished">Gizli Ağı Bağlan</translation>
|
<translation type="vanished">Gizli Ağı Bağlan</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="299"/>
|
<location filename="../frontend/mainwindow.cpp" line="306"/>
|
||||||
<source>LAN</source>
|
<source>LAN</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="301"/>
|
<location filename="../frontend/mainwindow.cpp" line="308"/>
|
||||||
<source>WLAN</source>
|
<source>WLAN</source>
|
||||||
<translation>WLAN</translation>
|
<translation>WLAN</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="331"/>
|
<location filename="../frontend/mainwindow.cpp" line="338"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="573"/>
|
<location filename="../frontend/mainwindow.cpp" line="339"/>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="802"/>
|
<source>Network Connectivity Detection</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="616"/>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="869"/>
|
||||||
<source>Network tool</source>
|
<source>Network tool</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="587"/>
|
<location filename="../frontend/mainwindow.cpp" line="630"/>
|
||||||
<source>Network Card</source>
|
<source>Network Card</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="785"/>
|
<location filename="../frontend/mainwindow.cpp" line="852"/>
|
||||||
<source>Not connected to the network</source>
|
<source>Not connected to the network</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1620,9 +1673,8 @@
|
||||||
<translation type="vanished">HotSpot</translation>
|
<translation type="vanished">HotSpot</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="330"/>
|
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>Ana Pencereyi Göster</translation>
|
<translation type="vanished">Ana Pencereyi Göster</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
|
@ -1744,102 +1796,102 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="377"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
||||||
<source>Detail</source>
|
<source>Detail</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="381"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="382"/>
|
||||||
<source>Security</source>
|
<source>Security</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="383"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="384"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="390"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="391"/>
|
||||||
<source>Config</source>
|
<source>Config</source>
|
||||||
<translation type="unfinished">Ayar</translation>
|
<translation type="unfinished">Ayar</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="402"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="403"/>
|
||||||
<source>Confirm</source>
|
<source>Confirm</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="404"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="405"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="462"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="463"/>
|
||||||
<source>Forget this network</source>
|
<source>Forget this network</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
||||||
<source>IPv4</source>
|
<source>IPv4</source>
|
||||||
<translation type="unfinished">IPv6 adresi: {4?}</translation>
|
<translation type="unfinished">IPv6 adresi: {4?}</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="380"/>
|
||||||
<source>IPv6</source>
|
<source>IPv6</source>
|
||||||
<translation type="unfinished">IPv6 adresi: {6?}</translation>
|
<translation type="unfinished">IPv6 adresi: {6?}</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="443"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="444"/>
|
||||||
<source>Add LAN Connect</source>
|
<source>Add LAN Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="448"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="449"/>
|
||||||
<source>Connect Hidden WLAN</source>
|
<source>Connect Hidden WLAN</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="464"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="465"/>
|
||||||
<source>Delete this network</source>
|
<source>Delete this network</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="629"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="630"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="641"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="642"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1184"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
||||||
<source>None</source>
|
<source>None</source>
|
||||||
<translation type="unfinished">Yok</translation>
|
<translation type="unfinished">Yok</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="753"/>
|
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
||||||
|
<location filename="../frontend/netdetails/netdetail.cpp" line="756"/>
|
||||||
<source>Auto</source>
|
<source>Auto</source>
|
||||||
<translation type="unfinished">Oto</translation>
|
<translation type="unfinished">Oto</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="896"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="897"/>
|
||||||
<source>start check ipv4 address conflict</source>
|
<source>start check ipv4 address conflict</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="913"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="914"/>
|
||||||
<source>start check ipv6 address conflict</source>
|
<source>start check ipv6 address conflict</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1180"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1181"/>
|
||||||
<source>this wifi no support enterprise type</source>
|
<source>this wifi no support enterprise type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1186"/>
|
||||||
<source>this wifi no support None type</source>
|
<source>this wifi no support None type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1190"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1191"/>
|
||||||
<source>this wifi no support WPA2 type</source>
|
<source>this wifi no support WPA2 type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1193"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1194"/>
|
||||||
<source>this wifi no support WPA3 type</source>
|
<source>this wifi no support WPA3 type</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2354,42 +2406,42 @@
|
||||||
<context>
|
<context>
|
||||||
<name>WlanListItem</name>
|
<name>WlanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="72"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="71"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation type="unfinished">Bağlanamadı</translation>
|
<translation type="unfinished">Bağlanamadı</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="177"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="176"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="204"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="203"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="637"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="656"/>
|
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
||||||
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation type="unfinished">Bağlantıyı Kes</translation>
|
<translation type="unfinished">Bağlantıyı Kes</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="179"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="178"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="208"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="207"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="304"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="314"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="657"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="664"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="674"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="186"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="686"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="188"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="671"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="681"/>
|
||||||
<source>Forget</source>
|
<source>Forget</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="325"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="335"/>
|
||||||
<source>Auto Connect</source>
|
<source>Auto Connect</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2420,12 +2472,12 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1750"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1739"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1752"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1741"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -35,26 +35,74 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ConfigPage</name>
|
<name>ConfigPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="62"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="60"/>
|
||||||
<source>Network profile type</source>
|
<source>Network profile type</source>
|
||||||
<translation>网络配置文件类型</translation>
|
<translation>网络配置文件类型</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="65"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="63"/>
|
||||||
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
<source>Public(recommended) Devices on the network cannot discover this computer. Generally, it is suitable for networks in public places, such as airports or coffee shops, etc.</source>
|
||||||
<translation>公用(推荐) 网络中的设备不可发现此电脑。一般情况下适用于公共场所中的网络,如机场或咖啡店等等。</translation>
|
<translation>公用(推荐) 网络中的设备不可发现此电脑。一般情况下适用于公共场所中的网络,如机场或咖啡店等等。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="69"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="67"/>
|
||||||
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
<source>Private Devices on the network can discover this computer. Generally applicable to a network at home or work where you know and trust the individuals and devices on the network.</source>
|
||||||
<translation>专用 网络中的设备可发现此电脑。一般情况下适用于家庭或工作单位的网络,您认识并信任网络上的个人和设备。</translation>
|
<translation>专用 网络中的设备可发现此电脑。一般情况下适用于家庭或工作单位的网络,您认识并信任网络上的个人和设备。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/configpage.cpp" line="73"/>
|
<location filename="../frontend/netdetails/configpage.cpp" line="71"/>
|
||||||
<source>Config firewall and security settings</source>
|
<source>Config firewall and security settings</source>
|
||||||
<translation>配置防火墙和安全设置</translation>
|
<translation>配置防火墙和安全设置</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>ConnectivityPage</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="25"/>
|
||||||
|
<source>Network connectivity detection</source>
|
||||||
|
<translation>网络连通性检测</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="55"/>
|
||||||
|
<source>If access to the Internet is restricted, please switch the network IP connectivity detection method and try again.</source>
|
||||||
|
<translation>如访问 Internet 受限,请切换网络 IP 连通性检测方式后再试。</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="61"/>
|
||||||
|
<source>Public network (default)</source>
|
||||||
|
<translation>公网(默认)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="63"/>
|
||||||
|
<source>Local area network (intranet)</source>
|
||||||
|
<translation>局域网(内网)</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="74"/>
|
||||||
|
<source>Confirm</source>
|
||||||
|
<translation>确定</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="161"/>
|
||||||
|
<source>The network is connected and can access the Internet normally.</source>
|
||||||
|
<translation>网络已连接,可正常访问 Internet 。</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="166"/>
|
||||||
|
<source>The network is connected and access to the Internet is restricted.</source>
|
||||||
|
<translation>网络已连接,访问 Internet 受限。</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="177"/>
|
||||||
|
<source>Please enter the local area network (intranet) detection address</source>
|
||||||
|
<translation>请输入局域网(内网)检测地址</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/connectivity/connectivitypage.cpp" line="196"/>
|
||||||
|
<source>Format error</source>
|
||||||
|
<translation>格式错误</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
<context>
|
<context>
|
||||||
<name>CopyButton</name>
|
<name>CopyButton</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -524,27 +572,27 @@
|
||||||
<translation type="vanished">关闭</translation>
|
<translation type="vanished">关闭</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="116"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="117"/>
|
||||||
<source>Wi-Fi network requires authentication</source>
|
<source>Wi-Fi network requires authentication</source>
|
||||||
<translation>Wi-Fi 网络要求认证</translation>
|
<translation>Wi-Fi 网络要求认证</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="121"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="122"/>
|
||||||
<source>Access to Wi-Fi network "</source>
|
<source>Access to Wi-Fi network "</source>
|
||||||
<translation>访问 Wi-Fi 网络</translation>
|
<translation>访问 Wi-Fi 网络</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="123"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="124"/>
|
||||||
<source>" requires a password or encryption key.</source>
|
<source>" requires a password or encryption key.</source>
|
||||||
<translation>需要密码或加密密钥。</translation>
|
<translation>需要密码或加密密钥。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="154"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation>取消</translation>
|
<translation>取消</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="155"/>
|
<location filename="../frontend/enterprise-wlan/enterprisewlandialog.cpp" line="156"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>连接</translation>
|
<translation>连接</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -568,22 +616,22 @@
|
||||||
<translation type="vanished">否</translation>
|
<translation type="vanished">否</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="85"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
||||||
<source>Allow other devices on this network to discover this computer?</source>
|
<source>Allow other devices on this network to discover this computer?</source>
|
||||||
<translation>是否允许此网络上的其他设备发现这台电脑?</translation>
|
<translation>是否允许此网络上的其他设备发现这台电脑?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="87"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="91"/>
|
||||||
<source>It is not recommended to enable this feature on public networks</source>
|
<source>It is not recommended to enable this feature on public networks</source>
|
||||||
<translation>不建议在公共网络上开启此功能</translation>
|
<translation>不建议在公共网络上开启此功能</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="89"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="93"/>
|
||||||
<source>Not allowed (recommended)</source>
|
<source>Not allowed (recommended)</source>
|
||||||
<translation>不允许(推荐)</translation>
|
<translation>不允许(推荐)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/networkmode/firewalldialog.cpp" line="90"/>
|
<location filename="../frontend/networkmode/firewalldialog.cpp" line="94"/>
|
||||||
<source>Allowed</source>
|
<source>Allowed</source>
|
||||||
<translation>允许</translation>
|
<translation>允许</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -757,38 +805,38 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanListItem</name>
|
<name>LanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="69"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="68"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation>未连接</translation>
|
<translation>未连接</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="126"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="125"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation>未插入网线</translation>
|
<translation>未插入网线</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="146"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="145"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="163"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="162"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="261"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="260"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation>断开</translation>
|
<translation>断开</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="148"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="147"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="161"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="160"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="265"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="264"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>连接</translation>
|
<translation>连接</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="151"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="168"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="167"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation>属性</translation>
|
<translation>属性</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="153"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="152"/>
|
||||||
<location filename="../frontend/list-items/lanlistitem.cpp" line="170"/>
|
<location filename="../frontend/list-items/lanlistitem.cpp" line="169"/>
|
||||||
<source>Delete</source>
|
<source>Delete</source>
|
||||||
<translation>删除此网络</translation>
|
<translation>删除此网络</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -796,7 +844,7 @@
|
||||||
<context>
|
<context>
|
||||||
<name>LanPage</name>
|
<name>LanPage</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1192"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1187"/>
|
||||||
<source>No ethernet device avaliable</source>
|
<source>No ethernet device avaliable</source>
|
||||||
<translation>未检测到有线设备</translation>
|
<translation>未检测到有线设备</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -825,7 +873,7 @@
|
||||||
<translation type="vanished">有线网络已断开</translation>
|
<translation type="vanished">有线网络已断开</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1236"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1231"/>
|
||||||
<source>Wired Device not carried</source>
|
<source>Wired Device not carried</source>
|
||||||
<translation>未插入网线</translation>
|
<translation>未插入网线</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -834,18 +882,18 @@
|
||||||
<translation type="vanished">有线网络已连接</translation>
|
<translation type="vanished">有线网络已连接</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1338"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1333"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation>已连接: </translation>
|
<translation>已连接: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1332"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1327"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation>未连接</translation>
|
<translation>未连接</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/lanpage.cpp" line="1330"/>
|
<location filename="../frontend/tab-pages/lanpage.cpp" line="1325"/>
|
||||||
<source>(Limited)</source>
|
<source>(Limited)</source>
|
||||||
<translation>(网络受限)</translation>
|
<translation>(网络受限)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -866,46 +914,50 @@
|
||||||
<context>
|
<context>
|
||||||
<name>MainWindow</name>
|
<name>MainWindow</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="214"/>
|
<location filename="../frontend/mainwindow.cpp" line="221"/>
|
||||||
<source>kylin-nm</source>
|
<source>kylin-nm</source>
|
||||||
<translation>网络工具</translation>
|
<translation>网络工具</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="299"/>
|
<location filename="../frontend/mainwindow.cpp" line="306"/>
|
||||||
<source>LAN</source>
|
<source>LAN</source>
|
||||||
<translatorcomment>有线网络</translatorcomment>
|
<translatorcomment>有线网络</translatorcomment>
|
||||||
<translation>有线网络</translation>
|
<translation>有线网络</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="301"/>
|
<location filename="../frontend/mainwindow.cpp" line="308"/>
|
||||||
<source>WLAN</source>
|
<source>WLAN</source>
|
||||||
<translatorcomment>无线局域网</translatorcomment>
|
<translatorcomment>无线局域网</translatorcomment>
|
||||||
<translation>无线局域网</translation>
|
<translation>无线局域网</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="330"/>
|
|
||||||
<source>Show MainWindow</source>
|
<source>Show MainWindow</source>
|
||||||
<translation>打开网络工具</translation>
|
<translation type="vanished">打开网络工具</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="331"/>
|
<location filename="../frontend/mainwindow.cpp" line="338"/>
|
||||||
<source>Settings</source>
|
<source>Settings</source>
|
||||||
<translatorcomment>设置网络项</translatorcomment>
|
<translatorcomment>设置网络项</translatorcomment>
|
||||||
<translation>设置网络项</translation>
|
<translation>设置网络项</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="573"/>
|
<location filename="../frontend/mainwindow.cpp" line="339"/>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="802"/>
|
<source>Network Connectivity Detection</source>
|
||||||
|
<translation>网络连通性检测</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="616"/>
|
||||||
|
<location filename="../frontend/mainwindow.cpp" line="869"/>
|
||||||
<source>Network tool</source>
|
<source>Network tool</source>
|
||||||
<translation>网络工具</translation>
|
<translation>网络工具</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="587"/>
|
<location filename="../frontend/mainwindow.cpp" line="630"/>
|
||||||
<source>Network Card</source>
|
<source>Network Card</source>
|
||||||
<translation>网卡</translation>
|
<translation>网卡</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/mainwindow.cpp" line="785"/>
|
<location filename="../frontend/mainwindow.cpp" line="852"/>
|
||||||
<source>Not connected to the network</source>
|
<source>Not connected to the network</source>
|
||||||
<translation>未连接网络</translation>
|
<translation>未连接网络</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -941,22 +993,22 @@
|
||||||
<translation>网络提示消息</translation>
|
<translation>网络提示消息</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="377"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
||||||
<source>Detail</source>
|
<source>Detail</source>
|
||||||
<translation>详情</translation>
|
<translation>详情</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="378"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
||||||
<source>IPv4</source>
|
<source>IPv4</source>
|
||||||
<translation>IPv4</translation>
|
<translation>IPv4</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="379"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="380"/>
|
||||||
<source>IPv6</source>
|
<source>IPv6</source>
|
||||||
<translation>IPv6</translation>
|
<translation>IPv6</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="381"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="382"/>
|
||||||
<source>Security</source>
|
<source>Security</source>
|
||||||
<translation>安全</translation>
|
<translation>安全</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -965,62 +1017,62 @@
|
||||||
<translation type="vanished">关闭</translation>
|
<translation type="vanished">关闭</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="383"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="384"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="390"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="391"/>
|
||||||
<source>Config</source>
|
<source>Config</source>
|
||||||
<translation>配置</translation>
|
<translation>配置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="402"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="403"/>
|
||||||
<source>Confirm</source>
|
<source>Confirm</source>
|
||||||
<translation>确定</translation>
|
<translation>确定</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="404"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="405"/>
|
||||||
<source>Cancel</source>
|
<source>Cancel</source>
|
||||||
<translation>取消</translation>
|
<translation>取消</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="462"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="463"/>
|
||||||
<source>Forget this network</source>
|
<source>Forget this network</source>
|
||||||
<translation>忘记此网络</translation>
|
<translation>忘记此网络</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="464"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="465"/>
|
||||||
<source>Delete this network</source>
|
<source>Delete this network</source>
|
||||||
<translation>删除此网络</translation>
|
<translation>删除此网络</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="443"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="444"/>
|
||||||
<source>Add LAN Connect</source>
|
<source>Add LAN Connect</source>
|
||||||
<translation>添加有线网络</translation>
|
<translation>添加有线网络</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="448"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="449"/>
|
||||||
<source>Connect Hidden WLAN</source>
|
<source>Connect Hidden WLAN</source>
|
||||||
<translation>连接到隐藏 WLAN</translation>
|
<translation>连接到隐藏 WLAN</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="629"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="630"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="641"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="642"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1184"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
||||||
<source>None</source>
|
<source>None</source>
|
||||||
<translation>无</translation>
|
<translation>无</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="753"/>
|
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="754"/>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="755"/>
|
||||||
|
<location filename="../frontend/netdetails/netdetail.cpp" line="756"/>
|
||||||
<source>Auto</source>
|
<source>Auto</source>
|
||||||
<translation>自动</translation>
|
<translation>自动</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="896"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="897"/>
|
||||||
<source>start check ipv4 address conflict</source>
|
<source>start check ipv4 address conflict</source>
|
||||||
<translation>开始检测 ipv4 地址冲突</translation>
|
<translation>开始检测 ipv4 地址冲突</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="913"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="914"/>
|
||||||
<source>start check ipv6 address conflict</source>
|
<source>start check ipv6 address conflict</source>
|
||||||
<translation>开始检测 ipv6 地址冲突</translation>
|
<translation>开始检测 ipv6 地址冲突</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1033,22 +1085,22 @@
|
||||||
<translation type="vanished">ipv6地址冲突!</translation>
|
<translation type="vanished">ipv6地址冲突!</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1180"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1181"/>
|
||||||
<source>this wifi no support enterprise type</source>
|
<source>this wifi no support enterprise type</source>
|
||||||
<translation>此 wifi 不支持企业网类型</translation>
|
<translation>此 wifi 不支持企业网类型</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1185"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1186"/>
|
||||||
<source>this wifi no support None type</source>
|
<source>this wifi no support None type</source>
|
||||||
<translation>此 wifi 不支持空类型</translation>
|
<translation>此 wifi 不支持空类型</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1190"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1191"/>
|
||||||
<source>this wifi no support WPA2 type</source>
|
<source>this wifi no support WPA2 type</source>
|
||||||
<translation>此 wifi 不支持 WPA2 类型</translation>
|
<translation>此 wifi 不支持 WPA2 类型</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/netdetails/netdetail.cpp" line="1193"/>
|
<location filename="../frontend/netdetails/netdetail.cpp" line="1194"/>
|
||||||
<source>this wifi no support WPA3 type</source>
|
<source>this wifi no support WPA3 type</source>
|
||||||
<translation>此 wifi 不支持 WPA3 类型</translation>
|
<translation>此 wifi 不支持 WPA3 类型</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1452,42 +1504,42 @@
|
||||||
<context>
|
<context>
|
||||||
<name>WlanListItem</name>
|
<name>WlanListItem</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="72"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="71"/>
|
||||||
<source>Not connected</source>
|
<source>Not connected</source>
|
||||||
<translation>未连接</translation>
|
<translation>未连接</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="177"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="176"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="204"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="203"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="637"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="656"/>
|
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="666"/>
|
||||||
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
||||||
<source>Disconnect</source>
|
<source>Disconnect</source>
|
||||||
<translation>断开</translation>
|
<translation>断开</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="179"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="178"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="208"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="207"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="304"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="314"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="647"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="657"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="664"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="674"/>
|
||||||
<source>Connect</source>
|
<source>Connect</source>
|
||||||
<translation>连接</translation>
|
<translation>连接</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="188"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="671"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="681"/>
|
||||||
<source>Forget</source>
|
<source>Forget</source>
|
||||||
<translation>忘记此网络</translation>
|
<translation>忘记此网络</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="187"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="186"/>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="676"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="686"/>
|
||||||
<source>Property</source>
|
<source>Property</source>
|
||||||
<translation>属性</translation>
|
<translation>属性</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/list-items/wlanlistitem.cpp" line="325"/>
|
<location filename="../frontend/list-items/wlanlistitem.cpp" line="335"/>
|
||||||
<source>Auto Connect</source>
|
<source>Auto Connect</source>
|
||||||
<translation>自动加入该网络</translation>
|
<translation>自动加入该网络</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1541,12 +1593,12 @@
|
||||||
<translation>无线网络已断开</translation>
|
<translation>无线网络已断开</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1750"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1739"/>
|
||||||
<source>Connected: </source>
|
<source>Connected: </source>
|
||||||
<translation>已连接: </translation>
|
<translation>已连接: </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1752"/>
|
<location filename="../frontend/tab-pages/wlanpage.cpp" line="1741"/>
|
||||||
<source>Not Connected</source>
|
<source>Not Connected</source>
|
||||||
<translation>未连接</translation>
|
<translation>未连接</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
Loading…
Reference in New Issue