Fix bug show abnormal desktop notification sometimes when start operation system
This commit is contained in:
parent
549cbe5a70
commit
d5d97a68eb
|
@ -803,15 +803,17 @@ void KylinDBus::getWifiSwitchState()
|
|||
connect(m_gsettings, &QGSettings::changed, this, [=] (const QString &key) {
|
||||
|
||||
if (key == "switch") {
|
||||
bool judge = getSwitchStatus(key);
|
||||
if (judge) {
|
||||
mw->onBtnWifiClicked(1); //打开wifi开关
|
||||
qDebug()<<"receive a signal to turn on wifi switch from control-center";
|
||||
syslog(LOG_DEBUG, "receive a signal to turn on wifi switch from control-center");
|
||||
} else {
|
||||
mw->onBtnWifiClicked(2); //关闭wifi开关
|
||||
qDebug()<<"receive a signal to turn off wifi switch from control-center";
|
||||
syslog(LOG_DEBUG, "receive a signal to turn off wifi switch from control-center");
|
||||
if (isWirelessCardOn) {
|
||||
bool judge = getSwitchStatus(key);
|
||||
if (judge) {
|
||||
mw->onBtnWifiClicked(1); //打开wifi开关
|
||||
qDebug()<<"receive a signal to turn on wifi switch from control-center";
|
||||
syslog(LOG_DEBUG, "receive a signal to turn on wifi switch from control-center");
|
||||
} else {
|
||||
mw->onBtnWifiClicked(2); //关闭wifi开关
|
||||
qDebug()<<"receive a signal to turn off wifi switch from control-center";
|
||||
syslog(LOG_DEBUG, "receive a signal to turn off wifi switch from control-center");
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1044,6 +1044,7 @@ void MainWindow::on_btnNet_clicked()
|
|||
void MainWindow::onBtnWifiClicked(int flag)
|
||||
{
|
||||
qDebug()<<"Value of flag passed into function 'onBtnWifiClicked' is: "<<flag;
|
||||
syslog(LOG_DEBUG, "Value of flag passed into function 'onBtnWifiClicked' is: %d", flag);
|
||||
|
||||
if (is_wireless_adapter_ready == 1) {
|
||||
// 当连接上无线网卡时才能打开wifi开关
|
||||
|
@ -1137,10 +1138,10 @@ void MainWindow::onBtnWifiClicked(int flag)
|
|||
objKyDBus->setWifiCardState(false);
|
||||
}
|
||||
|
||||
QString txt(tr("please insert the wireless network adapter"));
|
||||
QString txt(tr("No wireless card detected"));
|
||||
objKyDBus->showDesktopNotify(txt);
|
||||
qDebug()<<"please insert the wireless network adapter";
|
||||
syslog(LOG_DEBUG, "please insert the wireless network adapter");
|
||||
qDebug()<<"No wireless card detected";
|
||||
syslog(LOG_DEBUG, "No wireless card detected");
|
||||
//QString cmd = "export LANG='en_US.UTF-8';export LANGUAGE='en_US';notify-send '" + txt + "' -t 3800";
|
||||
//int status = system(cmd.toUtf8().data());
|
||||
//if (status != 0){ syslog(LOG_ERR, "execute 'notify-send' in function 'onBtnWifiClicked' failed");}
|
||||
|
@ -2319,12 +2320,10 @@ void MainWindow::onExternalConnectionChange(QString type)
|
|||
if (!is_stop_check_net_state) {
|
||||
is_stop_check_net_state = 1;
|
||||
if (type == "802-3-ethernet" || type == "ethernet") {
|
||||
qDebug()<<"debug: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
|
||||
QTimer::singleShot(2*1000, this, SLOT(onExternalLanChange() ));
|
||||
}
|
||||
|
||||
if (type == "802-11-wireless" || type == "wifi") {
|
||||
qDebug()<<"debug: bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb";
|
||||
QTimer::singleShot(4*1000, this, SLOT(onExternalWifiChange() ));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>424</width>
|
||||
<height>60</height>
|
||||
<height>250</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
|
@ -115,7 +115,7 @@
|
|||
<rect>
|
||||
<x>63</x>
|
||||
<y>86</y>
|
||||
<width>246</width>
|
||||
<width>250</width>
|
||||
<height>20</height>
|
||||
</rect>
|
||||
</property>
|
||||
|
|
|
@ -1208,7 +1208,7 @@
|
|||
<context>
|
||||
<name>KylinDBus</name>
|
||||
<message>
|
||||
<location filename="../src/kylin-dbus-interface.cpp" line="618"/>
|
||||
<location filename="../src/kylin-dbus-interface.cpp" line="712"/>
|
||||
<source>kylin network applet desktop message</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1222,14 +1222,14 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="379"/>
|
||||
<location filename="../src/mainwindow.cpp" line="377"/>
|
||||
<location filename="../src/mainwindow.cpp" line="537"/>
|
||||
<source>Advanced</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="338"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1173"/>
|
||||
<location filename="../src/mainwindow.cpp" line="340"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1177"/>
|
||||
<source>Ethernet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1244,40 +1244,45 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="344"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1232"/>
|
||||
<location filename="../src/mainwindow.cpp" line="346"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1236"/>
|
||||
<source>Wifi</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="359"/>
|
||||
<location filename="../src/mainwindow.cpp" line="357"/>
|
||||
<source>HotSpot</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="369"/>
|
||||
<location filename="../src/mainwindow.cpp" line="367"/>
|
||||
<source>FlyMode</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1271"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1348"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1493"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2188"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2273"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1140"/>
|
||||
<source>No wireless card detected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1276"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1353"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1501"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2197"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2282"/>
|
||||
<source>Not connected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1274"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1350"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1413"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1414"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1496"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1575"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1727"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2190"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2275"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1279"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1355"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1421"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1422"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1504"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1583"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1735"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2199"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2284"/>
|
||||
<source>Disconnected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1302,53 +1307,48 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1438"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1446"/>
|
||||
<source>No Other Wired Network Scheme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1597"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1605"/>
|
||||
<source>No Other Wireless Network Scheme</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2503"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2513"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1136"/>
|
||||
<source>please insert the wireless network adapter</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1395"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1553"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1400"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1561"/>
|
||||
<source>NetOn,</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2100"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2108"/>
|
||||
<source>Wired net is disconnected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2128"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2136"/>
|
||||
<source>Wi-Fi is disconnected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2459"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2469"/>
|
||||
<source>Conn Ethernet Success</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2471"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2481"/>
|
||||
<source>Conn Ethernet Fail</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2494"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2504"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -1247,7 +1247,7 @@
|
|||
<context>
|
||||
<name>KylinDBus</name>
|
||||
<message>
|
||||
<location filename="../src/kylin-dbus-interface.cpp" line="618"/>
|
||||
<location filename="../src/kylin-dbus-interface.cpp" line="712"/>
|
||||
<source>kylin network applet desktop message</source>
|
||||
<translation type="unfinished">Kylin ağ uygulaması masaüstü mesajı</translation>
|
||||
</message>
|
||||
|
@ -1265,14 +1265,14 @@
|
|||
<translation type="vanished">Ağ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="379"/>
|
||||
<location filename="../src/mainwindow.cpp" line="377"/>
|
||||
<location filename="../src/mainwindow.cpp" line="537"/>
|
||||
<source>Advanced</source>
|
||||
<translation>Gelişmiş</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="338"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1173"/>
|
||||
<location filename="../src/mainwindow.cpp" line="340"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1177"/>
|
||||
<source>Ethernet</source>
|
||||
<translation>Kablolu Ağ</translation>
|
||||
</message>
|
||||
|
@ -1281,8 +1281,8 @@
|
|||
<translation type="vanished">Gizli Ağı Bağlan</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="344"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1232"/>
|
||||
<location filename="../src/mainwindow.cpp" line="346"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1236"/>
|
||||
<source>Wifi</source>
|
||||
<translation>Wi-Fi</translation>
|
||||
</message>
|
||||
|
@ -1295,12 +1295,12 @@
|
|||
<translation type="vanished">Pasif</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="359"/>
|
||||
<location filename="../src/mainwindow.cpp" line="357"/>
|
||||
<source>HotSpot</source>
|
||||
<translation>HotSpot</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="369"/>
|
||||
<location filename="../src/mainwindow.cpp" line="367"/>
|
||||
<source>FlyMode</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1310,49 +1310,54 @@
|
|||
<translation>Ana Pencereyi Göster</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1271"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1348"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1493"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2188"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2273"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1140"/>
|
||||
<source>No wireless card detected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1276"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1353"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1501"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2197"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2282"/>
|
||||
<source>Not connected</source>
|
||||
<translation>Bağlanamadı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1274"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1350"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1413"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1414"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1496"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1575"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1727"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2190"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2275"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1279"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1355"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1421"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1422"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1504"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1583"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1735"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2199"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2284"/>
|
||||
<source>Disconnected</source>
|
||||
<translation>Bağlantı Kesildi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1438"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1446"/>
|
||||
<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="1597"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1605"/>
|
||||
<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="2100"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2108"/>
|
||||
<source>Wired net is disconnected</source>
|
||||
<translation type="unfinished">Kablolu ağ bağlantısı kesildi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2128"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2136"/>
|
||||
<source>Wi-Fi is disconnected</source>
|
||||
<translation type="unfinished">Kablosuz bağlantı kesildi</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2503"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2513"/>
|
||||
<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>
|
||||
|
@ -1377,8 +1382,8 @@
|
|||
<translation type="unfinished">Listede kullanılabilir ağ yok</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1395"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1553"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1400"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1561"/>
|
||||
<source>NetOn,</source>
|
||||
<translation></translation>
|
||||
</message>
|
||||
|
@ -1396,9 +1401,8 @@
|
|||
<translation type="vanished">Kablosuz anahtarı açmadan önce kablolu ağ anahtarını açık tut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1136"/>
|
||||
<source>please insert the wireless network adapter</source>
|
||||
<translation>Lütfen kablosuz ağ adaptörünü takın</translation>
|
||||
<translation type="vanished">Lütfen kablosuz ağ adaptörünü takın</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Abnormal connection exist, program will delete it</source>
|
||||
|
@ -1413,17 +1417,17 @@
|
|||
<translation type="vanished">Kablosuz listesini şimdi güncelle</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2459"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2469"/>
|
||||
<source>Conn Ethernet Success</source>
|
||||
<translation>Ethernet Bağlantısı Başarılı</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2471"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2481"/>
|
||||
<source>Conn Ethernet Fail</source>
|
||||
<translation>Ethernet Bağlantısı Hatası</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2494"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2504"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation>Wi-Fi Bağlantısı Başarılı</translation>
|
||||
</message>
|
||||
|
|
Binary file not shown.
|
@ -1255,7 +1255,7 @@
|
|||
<context>
|
||||
<name>KylinDBus</name>
|
||||
<message>
|
||||
<location filename="../src/kylin-dbus-interface.cpp" line="618"/>
|
||||
<location filename="../src/kylin-dbus-interface.cpp" line="712"/>
|
||||
<source>kylin network applet desktop message</source>
|
||||
<translation type="unfinished">麒麟网络工具信息提示</translation>
|
||||
</message>
|
||||
|
@ -1273,14 +1273,14 @@
|
|||
<translation type="vanished">网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="379"/>
|
||||
<location filename="../src/mainwindow.cpp" line="377"/>
|
||||
<location filename="../src/mainwindow.cpp" line="537"/>
|
||||
<source>Advanced</source>
|
||||
<translation>设置网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="338"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1173"/>
|
||||
<location filename="../src/mainwindow.cpp" line="340"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1177"/>
|
||||
<source>Ethernet</source>
|
||||
<translation>有线网络</translation>
|
||||
</message>
|
||||
|
@ -1289,8 +1289,8 @@
|
|||
<translation type="vanished">加入网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="344"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1232"/>
|
||||
<location filename="../src/mainwindow.cpp" line="346"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1236"/>
|
||||
<source>Wifi</source>
|
||||
<translation>无线网络</translation>
|
||||
</message>
|
||||
|
@ -1303,12 +1303,12 @@
|
|||
<translation type="vanished">已关闭</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="359"/>
|
||||
<location filename="../src/mainwindow.cpp" line="357"/>
|
||||
<source>HotSpot</source>
|
||||
<translation>个人热点</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="369"/>
|
||||
<location filename="../src/mainwindow.cpp" line="367"/>
|
||||
<source>FlyMode</source>
|
||||
<translation>飞行模式</translation>
|
||||
</message>
|
||||
|
@ -1318,49 +1318,54 @@
|
|||
<translation>显示网络连接界面</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1271"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1348"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1493"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2188"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2273"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1140"/>
|
||||
<source>No wireless card detected</source>
|
||||
<translation type="unfinished">未检测到无线网卡</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1276"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1353"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1501"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2197"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2282"/>
|
||||
<source>Not connected</source>
|
||||
<translation>当前未连接任何网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1274"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1350"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1413"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1414"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1496"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1575"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1727"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2190"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2275"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1279"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1355"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1421"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1422"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1504"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1583"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1735"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2199"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2284"/>
|
||||
<source>Disconnected</source>
|
||||
<translation>未连接</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1438"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1446"/>
|
||||
<source>No Other Wired Network Scheme</source>
|
||||
<translation type="unfinished">列表中无其他有线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1597"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1605"/>
|
||||
<source>No Other Wireless Network Scheme</source>
|
||||
<translation type="unfinished">未检测到其他无线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2100"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2108"/>
|
||||
<source>Wired net is disconnected</source>
|
||||
<translation type="unfinished">断开有线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2128"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2136"/>
|
||||
<source>Wi-Fi is disconnected</source>
|
||||
<translation type="unfinished">断开无线网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2503"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2513"/>
|
||||
<source>Confirm your Wi-Fi password or usable of wireless card</source>
|
||||
<translation type="unfinished">请确认Wi-Fi密码或无线设备</translation>
|
||||
</message>
|
||||
|
@ -1385,8 +1390,8 @@
|
|||
<translation type="unfinished">列表暂无可连接网络</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1395"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1553"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1400"/>
|
||||
<location filename="../src/mainwindow.cpp" line="1561"/>
|
||||
<source>NetOn,</source>
|
||||
<translation>已连接,</translation>
|
||||
</message>
|
||||
|
@ -1404,9 +1409,8 @@
|
|||
<translation type="vanished">打开无线网开关前保持有线网开关打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="1136"/>
|
||||
<source>please insert the wireless network adapter</source>
|
||||
<translation>请先插入无线网卡</translation>
|
||||
<translation type="vanished">请先插入无线网卡</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Abnormal connection exist, program will delete it</source>
|
||||
|
@ -1421,17 +1425,17 @@
|
|||
<translation type="vanished">正在更新 Wi-Fi列表</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2459"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2469"/>
|
||||
<source>Conn Ethernet Success</source>
|
||||
<translation>连接有线网络成功</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2471"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2481"/>
|
||||
<source>Conn Ethernet Fail</source>
|
||||
<translation>连接有线网络失败</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/mainwindow.cpp" line="2494"/>
|
||||
<location filename="../src/mainwindow.cpp" line="2504"/>
|
||||
<source>Conn Wifi Success</source>
|
||||
<translation>连接无线网络成功</translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in New Issue