Merge pull request #58 from mammonsama666/zjp-new
feat(wifi-freq): Add freq label to each wifi.
This commit is contained in:
commit
d81238b699
|
@ -1576,7 +1576,7 @@ void MainWindow::loadWifiListDone(QStringList slist)
|
|||
for (int i = 1, j = 0; i < slist.size(); i ++) {
|
||||
QString line = slist.at(i);
|
||||
QString wsignal = line.mid(0, indexSecu).trimmed();
|
||||
QString wsecu = line.mid(indexSecu, indexName - indexSecu).trimmed();
|
||||
QString wsecu = line.mid(indexSecu, indexFreq - indexSecu).trimmed();
|
||||
QString wname = line.mid(indexName).trimmed();
|
||||
QString wfreq = line.mid(indexFreq, 4).trimmed();
|
||||
bool isContinue = false;
|
||||
|
@ -1597,6 +1597,14 @@ void MainWindow::loadWifiListDone(QStringList slist)
|
|||
}
|
||||
}
|
||||
}
|
||||
int freqState = 0;
|
||||
if (max_freq < 3000) {
|
||||
//只有2.4GHZ
|
||||
freqState = 1;
|
||||
} else if (min_freq >= 5000) {
|
||||
//只有5GHZ
|
||||
freqState = 2;
|
||||
}
|
||||
if (wname != "" && wname != "--") {
|
||||
// 当前连接的wifi
|
||||
if (wname == actWifiName) {
|
||||
|
@ -1607,7 +1615,7 @@ void MainWindow::loadWifiListDone(QStringList slist)
|
|||
ccf->setSignal(wsignal, wsecu);
|
||||
activeWifiSignalLv = wsignal.toInt();
|
||||
objKyDBus->getWifiMac(wname);
|
||||
ccf->setWifiInfo(wsecu, wsignal, objKyDBus->dbusWifiMac, ((max_freq > 5000) && (min_freq < 3000)));
|
||||
ccf->setWifiInfo(wsecu, wsignal, objKyDBus->dbusWifiMac, freqState);
|
||||
ccf->setConnedString(1, tr("NetOn,"), wsecu);//"已连接"
|
||||
ccf->isConnected = true;
|
||||
ifWLanConnected = true;
|
||||
|
@ -1629,7 +1637,7 @@ void MainWindow::loadWifiListDone(QStringList slist)
|
|||
ocf->setLine(true);
|
||||
ocf->setSignal(wsignal, wsecu);
|
||||
objKyDBus->getWifiMac(wname);
|
||||
ocf->setWifiInfo(wsecu, wsignal, objKyDBus->dbusWifiMac, ((max_freq > 5000) && (min_freq < 3000)));
|
||||
ocf->setWifiInfo(wsecu, wsignal, objKyDBus->dbusWifiMac, freqState);
|
||||
ocf->setConnedString(0, tr("Disconnected"), wsecu);
|
||||
ocf->move(L_VERTICAL_LINE_TO_ITEM, j * H_NORMAL_ITEM);
|
||||
ocf->setSelected(false, false);
|
||||
|
@ -1738,7 +1746,7 @@ void MainWindow::updateWifiListDone(QStringList slist)
|
|||
for(int i = 1; i < slist.size(); i++){
|
||||
QString line = slist.at(i);
|
||||
QString wsignal = line.mid(0, indexSecu).trimmed();
|
||||
QString wsecu = line.mid(indexSecu, indexName - indexSecu).trimmed();
|
||||
QString wsecu = line.mid(indexSecu, indexFreq - indexSecu).trimmed();
|
||||
QString wname = line.mid(indexName).trimmed();
|
||||
QString wfreq = line.mid(indexFreq, 4).trimmed();
|
||||
|
||||
|
@ -1763,6 +1771,15 @@ void MainWindow::updateWifiListDone(QStringList slist)
|
|||
}
|
||||
}
|
||||
|
||||
int freqState = 0;
|
||||
if (max_freq < 3000) {
|
||||
//只有2.4GHZ
|
||||
freqState = 1;
|
||||
} else if (min_freq >= 5000) {
|
||||
//只有5GHZ
|
||||
freqState = 2;
|
||||
}
|
||||
|
||||
wnames.append(wname);
|
||||
|
||||
for (int j=1; j < oldWifiSlist.size(); j++) {
|
||||
|
@ -1792,7 +1809,7 @@ void MainWindow::updateWifiListDone(QStringList slist)
|
|||
addItem->setLine(false);
|
||||
addItem->setSignal(wsignal, wsecu);
|
||||
objKyDBus->getWifiMac(wname);
|
||||
addItem->setWifiInfo(wsecu, wsignal, objKyDBus->dbusWifiMac, ((max_freq > 5000) && (min_freq < 3000)));
|
||||
addItem->setWifiInfo(wsecu, wsignal, objKyDBus->dbusWifiMac, freqState);
|
||||
addItem->setConnedString(0, tr("Disconnected"), wsecu);//"未连接"
|
||||
addItem->move(L_VERTICAL_LINE_TO_ITEM, posY);
|
||||
addItem->setSelected(false, false);
|
||||
|
|
|
@ -136,9 +136,19 @@ OneConnForm::OneConnForm(QWidget *parent, MainWindow *mainWindow, ConfForm *conf
|
|||
connect(mw, SIGNAL(waitWifiStop()), this, SLOT(stopWaiting()));
|
||||
|
||||
connType = "";
|
||||
|
||||
ui->fiveGlabel->hide();
|
||||
ui->fiveGlabel->setStyleSheet("QLabel{background-color: palette(button); border-radius: 4px;}");
|
||||
lbNameLyt = new QHBoxLayout(ui->lbName);
|
||||
lbFreq = new QLabel(ui->lbName);
|
||||
lbFreq->setAlignment(Qt::AlignCenter);
|
||||
lbFreq->setEnabled(false);
|
||||
lbFreq->setStyleSheet("QLabel{border: 1px solid rgba(0, 0, 0, 0.5); background: transparent; color: rgba(0, 0, 0, 0.5); border-radius: 4px; font-size: 12px;}");
|
||||
lbFreq->hide();
|
||||
lbNameText = new QLabel(ui->lbName);
|
||||
lbNameLyt->setContentsMargins(0, 0, 0, 0);
|
||||
lbNameLyt->setSpacing(4);
|
||||
lbNameLyt->addWidget(lbNameText);
|
||||
lbNameLyt->addWidget(lbFreq);
|
||||
lbNameLyt->addStretch();
|
||||
ui->lbName->setLayout(lbNameLyt);
|
||||
}
|
||||
|
||||
OneConnForm::~OneConnForm()
|
||||
|
@ -345,18 +355,18 @@ void OneConnForm::setConnedString(bool showLable, QString str, QString str1)
|
|||
|
||||
void OneConnForm::setName(QString name)
|
||||
{
|
||||
ui->lbName->setText(name);
|
||||
lbNameText->setText(name);
|
||||
wifiName = name;
|
||||
}
|
||||
void OneConnForm::setSpecialName(QString name)
|
||||
{
|
||||
ui->lbName->setText(tr("Connect to Hidden Wi-Fi Network")); //连接到隐藏的 Wi-Fi 网络
|
||||
lbNameText->setText(tr("Connect to Hidden Wi-Fi Network")); //连接到隐藏的 Wi-Fi 网络
|
||||
wifiName = name;
|
||||
}
|
||||
|
||||
QString OneConnForm::getName()
|
||||
{
|
||||
return ui->lbName->text();
|
||||
return lbNameText->text();
|
||||
}
|
||||
|
||||
void OneConnForm::setRate(QString rate)
|
||||
|
@ -426,10 +436,19 @@ void OneConnForm::setSignal(QString lv, QString secu)
|
|||
}
|
||||
}
|
||||
|
||||
void OneConnForm::setWifiInfo(QString str1, QString str2, QString str3, bool is_double_freq)
|
||||
void OneConnForm::setWifiInfo(QString str1, QString str2, QString str3, int freq)
|
||||
{
|
||||
if (is_double_freq) {
|
||||
ui->fiveGlabel->show();
|
||||
//freq 0:含2.4G和5G, 1:只有2.4G, 2:只有5G
|
||||
lbFreq->show();
|
||||
if (freq == 1) {
|
||||
//freq ~ 2.4G
|
||||
lbFreq->setText("2.4G");
|
||||
} else if (freq == 2) {
|
||||
//freq ~ 5G
|
||||
lbFreq->setText("5G");
|
||||
} else {
|
||||
//freq ~ 5G&2.4G
|
||||
lbFreq->setText("2.4/5G");
|
||||
}
|
||||
if (str1 == "--" || str1 == ""){ str1 = tr("None"); };
|
||||
|
||||
|
@ -446,25 +465,25 @@ void OneConnForm::setWifiInfo(QString str1, QString str2, QString str3, bool is_
|
|||
void OneConnForm::slotConnWifi()
|
||||
{
|
||||
this->startWaiting(true);
|
||||
emit sigConnWifi(ui->lbName->text());
|
||||
emit sigConnWifi(lbNameText->text());
|
||||
}
|
||||
void OneConnForm::slotConnWifiPWD()
|
||||
{
|
||||
this->startWaiting(true);
|
||||
emit sigConnWifiPWD(ui->lbName->text(), ui->lePassword->text(), connType);
|
||||
emit sigConnWifiPWD(lbNameText->text(), ui->lePassword->text(), connType);
|
||||
}
|
||||
|
||||
//点击后断开wifi网络
|
||||
void OneConnForm::on_btnDisConn_clicked()
|
||||
{
|
||||
syslog(LOG_DEBUG, "DisConnect button about wifi net is clicked, current wifi name is %s .", ui->lbName->text().toUtf8().data());
|
||||
qDebug()<<"DisConnect button about wifi net is clicked, current wifi name is "<<ui->lbName->text();
|
||||
syslog(LOG_DEBUG, "DisConnect button about wifi net is clicked, current wifi name is %s .", lbNameText->text().toUtf8().data());
|
||||
qDebug()<<"DisConnect button about wifi net is clicked, current wifi name is "<<lbNameText->text();
|
||||
|
||||
this->startWaiting(false);
|
||||
|
||||
mw->is_stop_check_net_state = 1;
|
||||
mw->on_btnHotspotState();
|
||||
kylin_network_set_con_down(ui->lbName->text().toUtf8().data());
|
||||
kylin_network_set_con_down(lbNameText->text().toUtf8().data());
|
||||
disconnect(this, SIGNAL(selectedOneWifiForm(QString,int)), mw, SLOT(oneWifiFormSelected(QString,int)));
|
||||
emit disconnActiveWifi();
|
||||
}
|
||||
|
@ -521,7 +540,7 @@ void OneConnForm::toConnectWirelessNetwork()
|
|||
return;
|
||||
}
|
||||
if (ui->lbConned->text() == "--" || ui->lbConned->text() == " ") {
|
||||
if (!isWifiConfExist(ui->lbName->text())) {
|
||||
if (!isWifiConfExist(lbNameText->text())) {
|
||||
//没有配置文件,使用有密码的wifi连接
|
||||
on_btnConnPWD_clicked();
|
||||
return;
|
||||
|
@ -654,7 +673,7 @@ void OneConnForm::on_btnInfo_clicked()
|
|||
}
|
||||
|
||||
BackThread *bt = new BackThread();
|
||||
QString connProp = bt->getConnProp(ui->lbName->text());
|
||||
QString connProp = bt->getConnProp(lbNameText->text());
|
||||
QStringList propList = connProp.split("|");
|
||||
QString v4method, addr, mask, gateway, dns;
|
||||
foreach (QString line, propList) {
|
||||
|
@ -676,7 +695,7 @@ void OneConnForm::on_btnInfo_clicked()
|
|||
}
|
||||
// qDebug()<<"v4method:"<<v4method<<" addr:"<<addr<<" mask:"<<mask<<" gateway:"<<gateway<<" dns:"<<dns;
|
||||
|
||||
cf->setProp(ui->lbName->text(), "--", v4method, addr, mask, gateway, dns, this->isActive, true);
|
||||
cf->setProp(lbNameText->text(), "--", v4method, addr, mask, gateway, dns, this->isActive, true);
|
||||
cf->move(primaryGeometry.width() / 2 - cf->width() / 2, primaryGeometry.height() / 2 - cf->height() / 2);
|
||||
cf->exec();
|
||||
cf->raise();
|
||||
|
@ -690,14 +709,14 @@ void OneConnForm::slotConnWifiResult(int connFlag)
|
|||
qDebug()<<"Function slotConnWifiResult receives a number: "<<connFlag;
|
||||
|
||||
if (!connType.isEmpty()) {
|
||||
QString strConntype = "nmcli connection modify " + ui->lbName->text() + " wifi-sec.psk-flags 2";
|
||||
QString strConntype = "nmcli connection modify " + lbNameText->text() + " wifi-sec.psk-flags 2";
|
||||
system(strConntype.toUtf8().data());
|
||||
}
|
||||
connType = "";
|
||||
|
||||
if (connFlag == 2 || connFlag == 4) {
|
||||
mw->currSelNetName = "";
|
||||
emit selectedOneWifiForm(ui->lbName->text(), H_WIFI_ITEM_SMALL_EXTEND);
|
||||
emit selectedOneWifiForm(lbNameText->text(), H_WIFI_ITEM_SMALL_EXTEND);
|
||||
|
||||
resize(W_ITEM, H_ITEM_MIDDLE);
|
||||
ui->wbg->hide();
|
||||
|
@ -732,12 +751,12 @@ void OneConnForm::slotConnWifiResult(int connFlag)
|
|||
if (connFlag == 1) {
|
||||
// 使用配置文件连接失败,需要删除该配置文件
|
||||
QString txt(tr("Conn Wifi Failed"));//"连接 Wifi 失败"
|
||||
syslog(LOG_DEBUG, "Try to connect wifi named %s, but failed, will delete it's configuration file", ui->lbName->text().toUtf8().data());
|
||||
syslog(LOG_DEBUG, "Try to connect wifi named %s, but failed, will delete it's configuration file", lbNameText->text().toUtf8().data());
|
||||
|
||||
KylinDBus kylindbus;
|
||||
kylindbus.showDesktopNotify(txt);
|
||||
//QString cmd = "export LANG='en_US.UTF-8';export LANGUAGE='en_US';nmcli connection delete '" + ui->lbName->text() + "';notify-send '" + txt + "...' -t 3800";
|
||||
QString cmd = "export LANG='en_US.UTF-8';export LANGUAGE='en_US';nmcli connection delete '" + ui->lbName->text() + "'";
|
||||
QString cmd = "export LANG='en_US.UTF-8';export LANGUAGE='en_US';nmcli connection delete '" + lbNameText->text() + "'";
|
||||
int status = system(cmd.toUtf8().data());
|
||||
if (status != 0) {
|
||||
syslog(LOG_ERR, "execute 'nmcli connection delete' in function 'slotConnWifiResult' failed");
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
#include <QLineEdit>
|
||||
#include <QShortcut>
|
||||
#include <QKeyEvent>
|
||||
#include <QLabel>
|
||||
#include <QHBoxLayout>
|
||||
|
||||
#include "confform.h"
|
||||
#include "backthread.h"
|
||||
|
@ -68,7 +70,7 @@ public:
|
|||
QString getName();
|
||||
void setRate(QString rate);
|
||||
void setLine(bool isShow);
|
||||
void setWifiInfo(QString str1, QString str2, QString str3, bool is_double_freq);
|
||||
void setWifiInfo(QString str1, QString str2, QString str3, int freq);
|
||||
|
||||
void setSelected(bool isSelected, bool isCurrName);
|
||||
void setHideItem(bool isHideItem, bool isShowHideBtn);
|
||||
|
@ -131,6 +133,9 @@ private:
|
|||
bool hasPwd;
|
||||
|
||||
QString leQssLow, leQssHigh;
|
||||
QLabel * lbFreq = nullptr;
|
||||
QLabel * lbNameText = nullptr;
|
||||
QHBoxLayout * lbNameLyt = nullptr;
|
||||
|
||||
signals:
|
||||
void selectedOneWifiForm(QString wifiName, int extendLength);
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<rect>
|
||||
<x>63</x>
|
||||
<y>8</y>
|
||||
<width>190</width>
|
||||
<width>200</width>
|
||||
<height>20</height>
|
||||
</rect>
|
||||
</property>
|
||||
|
@ -259,22 +259,6 @@
|
|||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel" name="fiveGlabel">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>255</x>
|
||||
<y>17</y>
|
||||
<width>50</width>
|
||||
<height>20</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>2.4/5G</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
<zorder>wbg_3</zorder>
|
||||
<zorder>wbg_2</zorder>
|
||||
<zorder>lbName</zorder>
|
||||
|
@ -289,7 +273,6 @@
|
|||
<zorder>btnHideConn</zorder>
|
||||
<zorder>lbWaiting</zorder>
|
||||
<zorder>lbWaitingIcon</zorder>
|
||||
<zorder>fiveGlabel</zorder>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <QFile>
|
||||
#include <QStringListModel>
|
||||
#include <QCompleter>
|
||||
#include <QDateTime>
|
||||
|
||||
const QString CONFIG_FILE = "/tmp/wpaconf.ini";
|
||||
|
||||
|
@ -395,7 +396,7 @@ void WpaWifiDialog::activateConnection() {
|
|||
qDebug() << "qDebug: activate time out!";
|
||||
});
|
||||
//设置超时时间
|
||||
timeout->start(5000);
|
||||
timeout->start(12 * 1000);
|
||||
});
|
||||
connect(upThread, &UpConnThread::connRes, this, [ = ](int res) {
|
||||
qDebug()<<"qDebug: Connect result is: "<<res;
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>360</width>
|
||||
<height>504</height>
|
||||
<height>530</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>360</width>
|
||||
<height>504</height>
|
||||
<height>530</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>360</width>
|
||||
<height>504</height>
|
||||
<height>530</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
|
|
|
@ -74,38 +74,38 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="206"/>
|
||||
<location filename="../src/confform.cpp" line="245"/>
|
||||
<location filename="../src/confform.cpp" line="207"/>
|
||||
<location filename="../src/confform.cpp" line="247"/>
|
||||
<source>Can not create new wired network for without wired card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="230"/>
|
||||
<location filename="../src/confform.cpp" line="232"/>
|
||||
<source>New network already created</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="277"/>
|
||||
<location filename="../src/confform.cpp" line="283"/>
|
||||
<source>New network settings already finished</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="315"/>
|
||||
<location filename="../src/confform.cpp" line="328"/>
|
||||
<source>Will check the IP address conflict</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="346"/>
|
||||
<location filename="../src/confform.cpp" line="359"/>
|
||||
<source>IP address conflict, Please change IP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="373"/>
|
||||
<location filename="../src/confform.cpp" line="386"/>
|
||||
<source>Edit Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="407"/>
|
||||
<location filename="../src/confform.cpp" line="420"/>
|
||||
<source>Add Wired Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1190,20 +1190,20 @@
|
|||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.ui" line="14"/>
|
||||
<location filename="../src/mainwindow.cpp" line="575"/>
|
||||
<location filename="../src/mainwindow.cpp" line="587"/>
|
||||
<source>kylin-nm</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="403"/>
|
||||
<location filename="../src/mainwindow.cpp" line="580"/>
|
||||
<location filename="../src/mainwindow.cpp" line="592"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="350"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1189"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2229"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1207"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2291"/>
|
||||
<source>Ethernet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1219,7 +1219,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="364"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1244"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1262"/>
|
||||
<source>Wifi</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1234,29 +1234,29 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1155"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1173"/>
|
||||
<source>No wireless card detected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1274"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1336"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1511"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2243"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2316"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1292"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1375"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1558"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2305"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2378"/>
|
||||
<source>Not connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1277"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1338"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1431"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1432"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1514"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1602"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1766"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2245"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2318"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1295"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1377"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1478"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1479"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1561"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1656"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1828"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2307"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2380"/>
|
||||
<source>Disconnected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1276,69 +1276,69 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="579"/>
|
||||
<location filename="../src/mainwindow.cpp" line="591"/>
|
||||
<source>Show MainWindow</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1456"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1503"/>
|
||||
<source>No Other Wired Network Scheme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1624"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1678"/>
|
||||
<source>No Other Wireless Network Scheme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1788"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1792"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1797"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1801"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1850"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1854"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1859"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1863"/>
|
||||
<source>Wired connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1806"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1810"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1815"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1819"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1868"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1872"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1877"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1881"/>
|
||||
<source>Ethernet connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2535"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2597"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1397"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1580"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1442"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1634"/>
|
||||
<source>NetOn,</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2166"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2228"/>
|
||||
<source>Wired net is disconnected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2192"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2254"/>
|
||||
<source>Wi-Fi is disconnected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2500"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2562"/>
|
||||
<source>Conn Ethernet Success</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2509"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2571"/>
|
||||
<source>Conn Ethernet Fail</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2529"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2591"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1350,11 +1350,6 @@
|
|||
<source>Form</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.ui" line="272"/>
|
||||
<source>2.4/5G</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="43"/>
|
||||
<location filename="../src/oneconnform.cpp" line="44"/>
|
||||
|
@ -1369,47 +1364,47 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="353"/>
|
||||
<location filename="../src/oneconnform.cpp" line="363"/>
|
||||
<source>Connect to Hidden Wi-Fi Network</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="364"/>
|
||||
<location filename="../src/oneconnform.cpp" line="374"/>
|
||||
<source>Rate</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="434"/>
|
||||
<location filename="../src/oneconnform.cpp" line="453"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="436"/>
|
||||
<location filename="../src/oneconnform.cpp" line="455"/>
|
||||
<source>WiFi Security:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="437"/>
|
||||
<location filename="../src/oneconnform.cpp" line="456"/>
|
||||
<source>Signal:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="438"/>
|
||||
<location filename="../src/oneconnform.cpp" line="457"/>
|
||||
<source>MAC:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="514"/>
|
||||
<location filename="../src/oneconnform.cpp" line="533"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="518"/>
|
||||
<location filename="../src/oneconnform.cpp" line="537"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="734"/>
|
||||
<location filename="../src/oneconnform.cpp" line="753"/>
|
||||
<source>Conn Wifi Failed</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1482,57 +1477,62 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="85"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="86"/>
|
||||
<source>Connect Wifi</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="98"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="99"/>
|
||||
<source>Connection name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="113"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="114"/>
|
||||
<source>Security</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="132"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="133"/>
|
||||
<source>EAP type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="145"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="146"/>
|
||||
<source>inner authentication</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="158"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="159"/>
|
||||
<source>Username</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="175"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="176"/>
|
||||
<source>Password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="189"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="190"/>
|
||||
<source>Show password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="205"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="203"/>
|
||||
<source>Ask pwd each query</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="221"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="206"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="222"/>
|
||||
<source>Connect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="228"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="244"/>
|
||||
<source>WPA & WPA2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
|
@ -81,38 +81,38 @@
|
|||
<translation type="unfinished">Tamam</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="206"/>
|
||||
<location filename="../src/confform.cpp" line="245"/>
|
||||
<location filename="../src/confform.cpp" line="207"/>
|
||||
<location filename="../src/confform.cpp" line="247"/>
|
||||
<source>Can not create new wired network for without wired card</source>
|
||||
<translation type="unfinished">Kablolu kart olmadan yeni kablolu ağ oluşturulamıyor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="230"/>
|
||||
<location filename="../src/confform.cpp" line="232"/>
|
||||
<source>New network already created</source>
|
||||
<translation type="unfinished">Yeni ağ zaten oluşturuldu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="277"/>
|
||||
<location filename="../src/confform.cpp" line="283"/>
|
||||
<source>New network settings already finished</source>
|
||||
<translation type="unfinished">Yeni ağ ayarları zaten tamamlandı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="315"/>
|
||||
<location filename="../src/confform.cpp" line="328"/>
|
||||
<source>Will check the IP address conflict</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="346"/>
|
||||
<location filename="../src/confform.cpp" line="359"/>
|
||||
<source>IP address conflict, Please change IP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="373"/>
|
||||
<location filename="../src/confform.cpp" line="386"/>
|
||||
<source>Edit Network</source>
|
||||
<translation type="unfinished">Ağı Düzenle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="407"/>
|
||||
<location filename="../src/confform.cpp" line="420"/>
|
||||
<source>Add Wired Network</source>
|
||||
<translation type="unfinished">Kablolu Ağ Ekle</translation>
|
||||
</message>
|
||||
|
@ -1348,7 +1348,7 @@
|
|||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.ui" line="14"/>
|
||||
<location filename="../src/mainwindow.cpp" line="575"/>
|
||||
<location filename="../src/mainwindow.cpp" line="587"/>
|
||||
<source>kylin-nm</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1358,14 +1358,14 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="403"/>
|
||||
<location filename="../src/mainwindow.cpp" line="580"/>
|
||||
<location filename="../src/mainwindow.cpp" line="592"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Gelişmiş</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="350"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1189"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2229"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1207"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2291"/>
|
||||
<source>Ethernet</source>
|
||||
<translation>Kablolu Ağ</translation>
|
||||
</message>
|
||||
|
@ -1375,7 +1375,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="364"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1244"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1262"/>
|
||||
<source>Wifi</source>
|
||||
<translation>Wi-Fi</translation>
|
||||
</message>
|
||||
|
@ -1398,75 +1398,75 @@
|
|||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="579"/>
|
||||
<location filename="../src/mainwindow.cpp" line="591"/>
|
||||
<source>Show MainWindow</source>
|
||||
<translation>Ana Pencereyi Göster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1155"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1173"/>
|
||||
<source>No wireless card detected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1274"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1336"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1511"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2243"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2316"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1292"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1375"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1558"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2305"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2378"/>
|
||||
<source>Not connected</source>
|
||||
<translation>Bağlanamadı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1277"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1338"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1431"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1432"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1514"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1602"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1766"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2245"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2318"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1295"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1377"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1478"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1479"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1561"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1656"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1828"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2307"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2380"/>
|
||||
<source>Disconnected</source>
|
||||
<translation>Bağlantı Kesildi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1456"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1503"/>
|
||||
<source>No Other Wired Network Scheme</source>
|
||||
<translation type="unfinished">Başka Kablolu Ağ Düzeni Yok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1624"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1678"/>
|
||||
<source>No Other Wireless Network Scheme</source>
|
||||
<translation type="unfinished">Başka Kablosuz Ağ Düzeni Yok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1788"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1792"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1797"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1801"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1850"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1854"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1859"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1863"/>
|
||||
<source>Wired connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1806"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1810"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1815"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1819"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1868"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1872"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1877"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1881"/>
|
||||
<source>Ethernet connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2166"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2228"/>
|
||||
<source>Wired net is disconnected</source>
|
||||
<translation type="unfinished">Kablolu ağ bağlantısı kesildi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2192"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2254"/>
|
||||
<source>Wi-Fi is disconnected</source>
|
||||
<translation type="unfinished">Kablosuz bağlantı kesildi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2535"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2597"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished">Kablosuz şifrenizi veya kablosuz kart kullanılabilirliğini onaylayın</translation>
|
||||
</message>
|
||||
|
@ -1491,8 +1491,8 @@
|
|||
<translation type="unfinished">Listede kullanılabilir ağ yok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1397"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1580"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1442"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1634"/>
|
||||
<source>NetOn,</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1526,17 +1526,17 @@
|
|||
<translation type="vanished">Kablosuz listesini şimdi güncelle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2500"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2562"/>
|
||||
<source>Conn Ethernet Success</source>
|
||||
<translation>Ethernet Bağlantısı Başarılı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2509"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2571"/>
|
||||
<source>Conn Ethernet Fail</source>
|
||||
<translation>Ethernet Bağlantısı Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2529"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2591"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation>Wi-Fi Bağlantısı Başarılı</translation>
|
||||
</message>
|
||||
|
@ -1555,11 +1555,6 @@
|
|||
<source>Form</source>
|
||||
<translation>--</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.ui" line="272"/>
|
||||
<source>2.4/5G</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Input password</source>
|
||||
<translation type="vanished">Parola gir</translation>
|
||||
|
@ -1586,12 +1581,12 @@
|
|||
<translation type="obsolete">Parola gir...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="353"/>
|
||||
<location filename="../src/oneconnform.cpp" line="363"/>
|
||||
<source>Connect to Hidden Wi-Fi Network</source>
|
||||
<translation>Gizli Wi-Fi Ağına Bağlan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="437"/>
|
||||
<location filename="../src/oneconnform.cpp" line="456"/>
|
||||
<source>Signal:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1604,17 +1599,17 @@
|
|||
<translation type="vanished">Güvenli</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="364"/>
|
||||
<location filename="../src/oneconnform.cpp" line="374"/>
|
||||
<source>Rate</source>
|
||||
<translation>Oran</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="434"/>
|
||||
<location filename="../src/oneconnform.cpp" line="453"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">Yok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="436"/>
|
||||
<location filename="../src/oneconnform.cpp" line="455"/>
|
||||
<source>WiFi Security:</source>
|
||||
<translation type="unfinished">WiFi güvenliği:</translation>
|
||||
</message>
|
||||
|
@ -1623,22 +1618,22 @@
|
|||
<translation type="obsolete">Sinyal gücü:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="438"/>
|
||||
<location filename="../src/oneconnform.cpp" line="457"/>
|
||||
<source>MAC:</source>
|
||||
<translation type="unfinished">Fiziksel adres:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="514"/>
|
||||
<location filename="../src/oneconnform.cpp" line="533"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation type="unfinished">Wi-Fi Bağlantısı Başarılı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="518"/>
|
||||
<location filename="../src/oneconnform.cpp" line="537"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished">Kablosuz şifrenizi veya kablosuz kart kullanılabilirliğini onaylayın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="734"/>
|
||||
<location filename="../src/oneconnform.cpp" line="753"/>
|
||||
<source>Conn Wifi Failed</source>
|
||||
<translation>Wifi Bağlantısı Başarısız</translation>
|
||||
</message>
|
||||
|
@ -1719,57 +1714,62 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="85"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="86"/>
|
||||
<source>Connect Wifi</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="98"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="99"/>
|
||||
<source>Connection name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="113"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="114"/>
|
||||
<source>Security</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="132"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="133"/>
|
||||
<source>EAP type</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="145"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="146"/>
|
||||
<source>inner authentication</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="158"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="159"/>
|
||||
<source>Username</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="175"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="176"/>
|
||||
<source>Password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="189"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="190"/>
|
||||
<source>Show password</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="205"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="203"/>
|
||||
<source>Ask pwd each query</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="221"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="206"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="222"/>
|
||||
<source>Connect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="228"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="244"/>
|
||||
<source>WPA & WPA2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -81,38 +81,38 @@
|
|||
<translation type="unfinished">确定</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="206"/>
|
||||
<location filename="../src/confform.cpp" line="245"/>
|
||||
<location filename="../src/confform.cpp" line="207"/>
|
||||
<location filename="../src/confform.cpp" line="247"/>
|
||||
<source>Can not create new wired network for without wired card</source>
|
||||
<translation type="unfinished">缺少有线网卡 无法新建网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="230"/>
|
||||
<location filename="../src/confform.cpp" line="232"/>
|
||||
<source>New network already created</source>
|
||||
<translation type="unfinished">已创建新的有线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="277"/>
|
||||
<location filename="../src/confform.cpp" line="283"/>
|
||||
<source>New network settings already finished</source>
|
||||
<translation type="unfinished">新的网络配置已经完成</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="315"/>
|
||||
<location filename="../src/confform.cpp" line="328"/>
|
||||
<source>Will check the IP address conflict</source>
|
||||
<translation type="unfinished">即将检测IP地址冲突</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="346"/>
|
||||
<location filename="../src/confform.cpp" line="359"/>
|
||||
<source>IP address conflict, Please change IP</source>
|
||||
<translation type="unfinished">IP地址冲突,请更换IP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="373"/>
|
||||
<location filename="../src/confform.cpp" line="386"/>
|
||||
<source>Edit Network</source>
|
||||
<translation type="unfinished">编辑网络设置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/confform.cpp" line="407"/>
|
||||
<location filename="../src/confform.cpp" line="420"/>
|
||||
<source>Add Wired Network</source>
|
||||
<translation type="unfinished">新建有线网络</translation>
|
||||
</message>
|
||||
|
@ -1308,7 +1308,7 @@
|
|||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.ui" line="14"/>
|
||||
<location filename="../src/mainwindow.cpp" line="575"/>
|
||||
<location filename="../src/mainwindow.cpp" line="587"/>
|
||||
<source>kylin-nm</source>
|
||||
<translation>网络工具</translation>
|
||||
</message>
|
||||
|
@ -1318,14 +1318,14 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="403"/>
|
||||
<location filename="../src/mainwindow.cpp" line="580"/>
|
||||
<location filename="../src/mainwindow.cpp" line="592"/>
|
||||
<source>Advanced</source>
|
||||
<translation>设置网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="350"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1189"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2229"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1207"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2291"/>
|
||||
<source>Ethernet</source>
|
||||
<translation>有线网络</translation>
|
||||
</message>
|
||||
|
@ -1335,7 +1335,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="364"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1244"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1262"/>
|
||||
<source>Wifi</source>
|
||||
<translation>无线网络</translation>
|
||||
</message>
|
||||
|
@ -1358,75 +1358,75 @@
|
|||
<translation>飞行模式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="579"/>
|
||||
<location filename="../src/mainwindow.cpp" line="591"/>
|
||||
<source>Show MainWindow</source>
|
||||
<translation>显示网络连接界面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1155"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1173"/>
|
||||
<source>No wireless card detected</source>
|
||||
<translation type="unfinished">未检测到无线网卡</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1274"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1336"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1511"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2243"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2316"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1292"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1375"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1558"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2305"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2378"/>
|
||||
<source>Not connected</source>
|
||||
<translation>当前未连接任何网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1277"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1338"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1431"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1432"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1514"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1602"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1766"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2245"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2318"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1295"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1377"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1478"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1479"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1561"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1656"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1828"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2307"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2380"/>
|
||||
<source>Disconnected</source>
|
||||
<translation>未连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1456"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1503"/>
|
||||
<source>No Other Wired Network Scheme</source>
|
||||
<translation type="unfinished">列表中无其他有线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1624"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1678"/>
|
||||
<source>No Other Wireless Network Scheme</source>
|
||||
<translation type="unfinished">未检测到其他无线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1788"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1792"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1797"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1801"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1850"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1854"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1859"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1863"/>
|
||||
<source>Wired connection</source>
|
||||
<translation type="unfinished">有线连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1806"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1810"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1815"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1819"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1868"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1872"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1877"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1881"/>
|
||||
<source>Ethernet connection</source>
|
||||
<translation type="unfinished">以太网连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2166"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2228"/>
|
||||
<source>Wired net is disconnected</source>
|
||||
<translation type="unfinished">断开有线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2192"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2254"/>
|
||||
<source>Wi-Fi is disconnected</source>
|
||||
<translation type="unfinished">断开无线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2535"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2597"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished">请确认Wi-Fi密码或无线设备</translation>
|
||||
</message>
|
||||
|
@ -1451,8 +1451,8 @@
|
|||
<translation type="unfinished">列表暂无可连接网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1397"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1580"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1442"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1634"/>
|
||||
<source>NetOn,</source>
|
||||
<translation>已连接,</translation>
|
||||
</message>
|
||||
|
@ -1486,17 +1486,17 @@
|
|||
<translation type="vanished">正在更新 Wi-Fi列表</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2500"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2562"/>
|
||||
<source>Conn Ethernet Success</source>
|
||||
<translation>连接有线网络成功</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2509"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2571"/>
|
||||
<source>Conn Ethernet Fail</source>
|
||||
<translation>连接有线网络失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2529"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2591"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation>连接无线网络成功</translation>
|
||||
</message>
|
||||
|
@ -1515,11 +1515,6 @@
|
|||
<source>Form</source>
|
||||
<translation>--</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.ui" line="272"/>
|
||||
<source>2.4/5G</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Input password</source>
|
||||
<translation type="vanished">输入密码</translation>
|
||||
|
@ -1546,12 +1541,12 @@
|
|||
<translation type="obsolete">输入密码...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="353"/>
|
||||
<location filename="../src/oneconnform.cpp" line="363"/>
|
||||
<source>Connect to Hidden Wi-Fi Network</source>
|
||||
<translation>连接到隐藏 Wi-Fi 网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="437"/>
|
||||
<location filename="../src/oneconnform.cpp" line="456"/>
|
||||
<source>Signal:</source>
|
||||
<translation type="unfinished">信号强度:</translation>
|
||||
</message>
|
||||
|
@ -1564,37 +1559,37 @@
|
|||
<translation type="vanished">安全</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="364"/>
|
||||
<location filename="../src/oneconnform.cpp" line="374"/>
|
||||
<source>Rate</source>
|
||||
<translation>速率</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="434"/>
|
||||
<location filename="../src/oneconnform.cpp" line="453"/>
|
||||
<source>None</source>
|
||||
<translation type="unfinished">无</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="436"/>
|
||||
<location filename="../src/oneconnform.cpp" line="455"/>
|
||||
<source>WiFi Security:</source>
|
||||
<translation type="unfinished">WiFi安全性:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="438"/>
|
||||
<location filename="../src/oneconnform.cpp" line="457"/>
|
||||
<source>MAC:</source>
|
||||
<translation type="unfinished">物理地址:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="514"/>
|
||||
<location filename="../src/oneconnform.cpp" line="533"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation type="unfinished">连接无线网络成功</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="518"/>
|
||||
<location filename="../src/oneconnform.cpp" line="537"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished">请确认Wi-Fi密码或无线设备</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/oneconnform.cpp" line="734"/>
|
||||
<location filename="../src/oneconnform.cpp" line="753"/>
|
||||
<source>Conn Wifi Failed</source>
|
||||
<translation>连接无线网络失败</translation>
|
||||
</message>
|
||||
|
@ -1675,57 +1670,62 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="85"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="86"/>
|
||||
<source>Connect Wifi</source>
|
||||
<translation type="unfinished">连接网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="98"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="99"/>
|
||||
<source>Connection name</source>
|
||||
<translation type="unfinished">连接名称</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="113"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="114"/>
|
||||
<source>Security</source>
|
||||
<translation type="unfinished">安全性</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="132"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="133"/>
|
||||
<source>EAP type</source>
|
||||
<translation type="unfinished">EAP方法</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="145"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="146"/>
|
||||
<source>inner authentication</source>
|
||||
<translation type="unfinished">阶段2身份验证</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="158"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="159"/>
|
||||
<source>Username</source>
|
||||
<translation type="unfinished">用户名:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="175"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="176"/>
|
||||
<source>Password</source>
|
||||
<translation type="unfinished">密码:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="189"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="190"/>
|
||||
<source>Show password</source>
|
||||
<translation type="unfinished">显示密码</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="205"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="203"/>
|
||||
<source>Ask pwd each query</source>
|
||||
<translation type="unfinished">每次询问密码</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="221"/>
|
||||
<source>Cancel</source>
|
||||
<translation type="unfinished">取消</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="206"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="222"/>
|
||||
<source>Connect</source>
|
||||
<translation type="unfinished">连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/wpawifidialog.cpp" line="228"/>
|
||||
<location filename="../src/wpawifidialog.cpp" line="244"/>
|
||||
<source>WPA & WPA2</source>
|
||||
<translation type="unfinished">WPA 及 WPA2企业</translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in New Issue