From 3dc42510e350317ee69a1249385c9c896007b3f5 Mon Sep 17 00:00:00 2001 From: maqiang-pc Date: Wed, 23 Oct 2024 20:35:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D#I9W15H=E3=80=90=E7=A7=BB?= =?UTF-8?q?=E5=8A=A8=E7=83=AD=E7=82=B9=E3=80=91=E7=A7=BB=E5=8A=A8=E7=83=AD?= =?UTF-8?q?=E7=82=B9=E7=95=8C=E9=9D=A2=E8=BF=9B=E8=A1=8C=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=EF=BC=8C=E4=B8=8B=E6=8B=89=E5=88=97=E8=A1=A8=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E4=B8=8D=E5=85=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/changelog | 11 ++ plugins/mobilehotspot/mobilehotspot.cpp | 16 ++- plugins/mobilehotspot/mobilehotspotwidget.cpp | 135 ++++++++++++++---- plugins/mobilehotspot/mobilehotspotwidget.h | 15 +- plugins/mobilehotspot/translations/bo.ts | 96 ++++++++----- plugins/mobilehotspot/translations/bo_CN.ts | 117 +++++++++++---- plugins/mobilehotspot/translations/de.ts | 104 ++++++++++---- plugins/mobilehotspot/translations/en_US.ts | 119 +++++++++++---- plugins/mobilehotspot/translations/es.ts | 104 ++++++++++---- plugins/mobilehotspot/translations/fr.ts | 106 ++++++++++---- plugins/mobilehotspot/translations/kk.ts | 106 ++++++++++---- plugins/mobilehotspot/translations/ky.ts | 106 ++++++++++---- plugins/mobilehotspot/translations/mn.ts | 115 +++++++++++---- plugins/mobilehotspot/translations/tr.ts | 96 ++++++++----- plugins/mobilehotspot/translations/ug.ts | 106 ++++++++++---- plugins/mobilehotspot/translations/zh_CN.ts | 117 +++++++++++---- plugins/mobilehotspot/translations/zh_Hant.ts | 121 ++++++++++++---- 17 files changed, 1195 insertions(+), 395 deletions(-) diff --git a/debian/changelog b/debian/changelog index dd8ad818..9af2f526 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +kylin-nm (4.10.0.0-ok0.13) nile; urgency=medium + + * BUG:#I9W15H【移动热点】移动热点界面进行搜索,下拉列表内容显示不全 + #IA9X4Y【移动热点】移动热点界面进行搜索,下拉列表内容显示不全 + #IA4JLH【移动热点】热点名称输入10个汉字后,在中间位置添加任意3个字符,会删除最后一个汉字,同时光标移动到最后 + * 需求:无 + * 其他改动说明:更新翻译 + * 其他改动影响域:无 + + -- maqiang Wed, 23 Oct 2024 20:18:44 +0800 + kylin-nm (4.10.0.0-ok0.12) nile; urgency=medium * 更新0920维哈克翻译 diff --git a/plugins/mobilehotspot/mobilehotspot.cpp b/plugins/mobilehotspot/mobilehotspot.cpp index 406f79e7..44c0c1f3 100644 --- a/plugins/mobilehotspot/mobilehotspot.cpp +++ b/plugins/mobilehotspot/mobilehotspot.cpp @@ -97,10 +97,18 @@ QString MobileHotspot::translationPath() const void MobileHotspot::initSearchText() { - //~ contents_path /mobilehotspot/mobilehotspot - tr("mobilehotspot"); - //~ contents_path /mobilehotspot/mobilehotspot open - tr("mobilehotspot open"); + //~ contents_path /mobilehotspot/Mobile Hotspot + tr("Mobile Hotspot"); + //~ contents_path /mobilehotspot/Open mobile hotspot + tr("Open mobile hotspot"); + //~ contents_path /mobilehotspot/Wi-Fi Name + tr("Wi-Fi Name"); + //~ contents_path /mobilehotspot/Network Password + tr("Network Password"); + //~ contents_path /mobilehotspot/Network Frequency band + tr("Network Frequency band"); + //~ contents_path /mobilehotspot/Shared NIC port + tr("Shared NIC port"); } bool MobileHotspot::isExitWirelessDevice() diff --git a/plugins/mobilehotspot/mobilehotspotwidget.cpp b/plugins/mobilehotspot/mobilehotspotwidget.cpp index 9b389998..199b807b 100644 --- a/plugins/mobilehotspot/mobilehotspotwidget.cpp +++ b/plugins/mobilehotspot/mobilehotspotwidget.cpp @@ -27,20 +27,17 @@ #define FRAME_MIN_SIZE 550, 60 #define FRAME_MAX_SIZE 16777215, 16777215 #define CONTECT_FRAME_MAX_SIZE 16777215, 60 - #define HINT_TEXT_MARGINS 8, 0, 0, 0 #define FRAME_MIN_SIZE 550, 60 - #define LABLE_MIN_WIDTH 188 #define COMBOBOX_MIN_WIDTH 200 #define LINE_MAX_SIZE 16777215, 1 #define LINE_MIN_SIZE 0, 1 #define ICON_SIZE 24,24 - #define PASSWORD_FRAME_MIN_HIGHT 60 #define PASSWORD_FRAME_FIX_HIGHT 90 #define PASSWORD_FRAME_MIN_SIZE 550, 60 -#define PASSWORD_FRAME_MAX_SIZE 16777215, 86 +#define PASSWORD_FRAME_MAX_SIZE 16777215, 90 #define PASSWORD_ITEM_MARGINS 16, 10, 16, 10 #define WIRELESS 1 @@ -48,6 +45,7 @@ #define AP_NAME_MAX_LENGTH 32 #define REFRESH_MSEC 20*1000 +#define FRAME_SPEED 150 #define LOG_HEAD "[MobileHotspotWidget]" @@ -181,7 +179,7 @@ bool MobileHotspotWidget::eventFilter(QObject *watched, QEvent *event) return true; } if (m_pwdNameLine->text().length() < 8) { -// showDesktopNotify(tr("can not create hotspot with password length less than eight!")); + return true; } // showDesktopNotify(tr("start to open hotspot ") + m_apNameLine->text()); @@ -194,6 +192,7 @@ bool MobileHotspotWidget::eventFilter(QObject *watched, QEvent *event) qDebug() << LOG_HEAD << "call activeWirelessAp failed "; return true; } + } return true; } @@ -262,6 +261,7 @@ void MobileHotspotWidget::initUI() } + void MobileHotspotWidget::initDbusConnect() { if(m_interface->isValid()) { @@ -270,8 +270,9 @@ void MobileHotspotWidget::initDbusConnect() connect(m_interface,SIGNAL(wirelessDeviceStatusChanged()), this, SLOT(onDeviceStatusChanged()), Qt::QueuedConnection); connect(m_interface,SIGNAL(deviceNameChanged(QString, QString, int)), this, SLOT(onDeviceNameChanged(QString, QString, int)), Qt::QueuedConnection); connect(m_interface,SIGNAL(hotspotDeactivated(QString, QString)), this, SLOT(onHotspotDeactivated(QString, QString)), Qt::QueuedConnection); - connect(m_interface,SIGNAL(hotspotActivated(QString, QString, QString, QString, QString)), this, SLOT(onHotspotActivated(QString, QString, QString, QString, QString)), Qt::QueuedConnection); + connect(m_interface,SIGNAL(hotspotDeactivating(QString, QString)), this, SLOT(startLoading()), Qt::QueuedConnection); + connect(m_interface,SIGNAL(hotspotActivating(QString, QString)), this, SLOT(startLoading()), Qt::QueuedConnection); connect(m_interface, SIGNAL(wlanactiveConnectionStateChanged(QString, QString, QString, int)), this, SLOT(onActiveConnectionChanged(QString, QString, QString, int)), Qt::QueuedConnection); @@ -289,12 +290,32 @@ void MobileHotspotWidget::onApLineEditTextEdit(QString text) { int count = 0; int i = 0; + if (text.toLocal8Bit().length() <= AP_NAME_MAX_LENGTH) { + return; + } - for ( ; i < text.length(); ++i) { - count += text.mid(i,1).toLocal8Bit().length(); - if (count > AP_NAME_MAX_LENGTH) { - m_apNameLine->setText(text.left(i)); - return; + int index = m_apNameLine->cursorPosition(); + + QString leftStr = text.left(index); + QString rightStr = text.mid(index); + + if (rightStr.isEmpty()) { + for ( ; i < text.length(); ++i) { + count += text.mid(i,1).toLocal8Bit().length(); + if (count > AP_NAME_MAX_LENGTH) { + m_apNameLine->setText(text.left(i)); + return; + } + } + } else { + count = rightStr.toLocal8Bit().length(); + for ( ; i < leftStr.length(); ++i) { + count += leftStr.mid(i,1).toLocal8Bit().length(); + if (count > AP_NAME_MAX_LENGTH) { + m_apNameLine->setText(leftStr.left(i) + rightStr); + m_apNameLine->setCursorPosition(i); + return; + } } } } @@ -351,7 +372,8 @@ void MobileHotspotWidget::onInterfaceChanged() void MobileHotspotWidget::onActiveConnectionChanged(QString deviceName, QString ssid, QString uuid, int status) { if(m_uuid == uuid && status == 4) { - showDesktopNotify(tr("hotspot already close")); + if(m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already close")); m_switchBtn->setChecked(false); setUiEnabled(false); m_uuid.clear(); @@ -368,7 +390,10 @@ void MobileHotspotWidget::onActiveConnectionChanged(QString deviceName, QString void MobileHotspotWidget::onWirelessBtnChanged(bool state) { + stopLoading(); if (!state) { + if(m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already close")); m_switchBtn->setChecked(state); m_uuid.clear(); m_switchBtn->setCheckable(false); @@ -421,6 +446,10 @@ void MobileHotspotWidget::initInterfaceInfo() } else { QMap::Iterator iter = devMap.begin(); while (iter != devMap.end()) { + if (!iter.value()) { + iter++; + continue; + } QString interfaceName = iter.key(); if (!(devCapMap[interfaceName] & 0x01)) { m_interfaceComboBox->addItem(interfaceName); @@ -447,6 +476,8 @@ void MobileHotspotWidget::getApInfo() } if (m_interfaceComboBox->count() <= 0) { + if(m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already close")); m_switchBtn->setChecked(false); setWidgetHidden(true); qWarning() << LOG_HEAD << "getApInfo but interface is empty"; @@ -479,10 +510,14 @@ void MobileHotspotWidget::getApInfo() } if (apInfo.at(3) == "true") { + if(!m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already open")); m_switchBtn->setChecked(true); setUiEnabled(true); m_uuid = apInfo.at(4); } else { + if(m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already close")); m_switchBtn->setChecked(false); setUiEnabled(false); m_uuid = apInfo.at(4); @@ -506,15 +541,54 @@ void MobileHotspotWidget::setSwitchFrame() QHBoxLayout *switchLayout = new QHBoxLayout(m_switchFrame); - m_switchLabel = new QLabel(tr("Open"), this); + m_switchLabel = new QLabel(tr("Open mobile hotspot"), this); m_switchLabel->setMinimumWidth(LABLE_MIN_WIDTH); m_switchBtn = new KSwitchButton(this); + m_statusLabel= new QLabel(this); + m_statusLabel->hide(); switchLayout->setContentsMargins(ITEM_MARGINS); switchLayout->addWidget(m_switchLabel); switchLayout->addStretch(); + switchLayout->addWidget(m_statusLabel); + switchLayout->addSpacing(4); switchLayout->addWidget(m_switchBtn); m_switchFrame->setLayout(switchLayout); + + m_loadIcons.append(QIcon::fromTheme("ukui-loading-1-symbolic")); + m_loadIcons.append(QIcon::fromTheme("ukui-loading-2-symbolic")); + m_loadIcons.append(QIcon::fromTheme("ukui-loading-3-symbolic")); + m_loadIcons.append(QIcon::fromTheme("ukui-loading-4-symbolic")); + m_loadIcons.append(QIcon::fromTheme("ukui-loading-5-symbolic")); + m_loadIcons.append(QIcon::fromTheme("ukui-loading-6-symbolic")); + m_loadIcons.append(QIcon::fromTheme("ukui-loading-7-symbolic")); + m_waitTimer = new QTimer(this); + connect(m_waitTimer, &QTimer::timeout, this, &MobileHotspotWidget::updateLoadingIcon); +} + +void MobileHotspotWidget::updateLoadingIcon() +{ + if (m_currentIconIndex > 6) { + m_currentIconIndex = 0; + } + m_statusLabel->setPixmap(m_loadIcons.at(m_currentIconIndex).pixmap(16,16)); + m_currentIconIndex ++; +} + +void MobileHotspotWidget::startLoading() +{ + m_waitTimer->start(FRAME_SPEED); + m_switchBtn->hide(); + m_statusLabel->setFocus(); + m_statusLabel->show(); +} + +void MobileHotspotWidget::stopLoading() +{ + m_waitTimer->stop(); + m_statusLabel->clearFocus(); + m_statusLabel->hide(); + m_switchBtn->show(); } void MobileHotspotWidget::setApNameFrame() @@ -548,8 +622,8 @@ void MobileHotspotWidget::setPasswordFrame() m_passwordFrame->setMinimumSize(PASSWORD_FRAME_MIN_SIZE); m_passwordFrame->setMaximumSize(PASSWORD_FRAME_MAX_SIZE); - m_pwdLabel = new QLabel(tr("Password"), this); - m_pwdLabel->setMinimumWidth(LABLE_MIN_WIDTH); + m_pwdLabel = new FixLabel(tr("Network Password"), this); + m_pwdLabel->setFixedWidth(LABLE_MIN_WIDTH); m_pwdNameLine = new KPasswordEdit(this); m_pwdNameLine->setClearButtonEnabled(false);//禁用ClearBtn按钮X m_pwdNameLine->setMinimumWidth(COMBOBOX_MIN_WIDTH); @@ -562,13 +636,6 @@ void MobileHotspotWidget::setPasswordFrame() m_pwdHintLabel->setPalette(hintTextColor); m_pwdHintLabel->setText(tr("Contains at least 8 characters")); //至少包含8个字符 - QWidget *pwdInputWidget = new QWidget(m_passwordFrame); - QVBoxLayout *pwdInputVLayout = new QVBoxLayout(pwdInputWidget); - pwdInputVLayout->setContentsMargins(CONTENTS_MARGINS); - pwdInputVLayout->setSpacing(0); - pwdInputVLayout->addWidget(m_pwdNameLine); - pwdInputVLayout->addWidget(m_pwdHintLabel); - QGridLayout *pwdLayout = new QGridLayout(m_passwordFrame); pwdLayout->setContentsMargins(PASSWORD_ITEM_MARGINS); pwdLayout->setSpacing(0); @@ -577,6 +644,9 @@ void MobileHotspotWidget::setPasswordFrame() pwdLayout->addWidget(m_pwdHintLabel, 1, 1); m_passwordFrame->setLayout(pwdLayout); + //init + m_passwordFrame->setFixedHeight(PASSWORD_FRAME_FIX_HIGHT); + m_pwdHintLabel->show(); m_pwdNameLine->installEventFilter(this); } @@ -592,7 +662,7 @@ void MobileHotspotWidget::setFreqBandFrame() QHBoxLayout *freqBandHLayout = new QHBoxLayout(m_freqBandFrame); m_freqBandLabel = new FixLabel(this); - m_freqBandLabel->setText(tr("Frequency band")); + m_freqBandLabel->setText(tr("Network Frequency band")); m_freqBandLabel->setFixedWidth(LABLE_MIN_WIDTH - 8); m_freqBandComboBox = new QComboBox(this); m_freqBandComboBox->setInsertPolicy(QComboBox::NoInsert); @@ -616,7 +686,7 @@ void MobileHotspotWidget::setInterFaceFrame() m_interfaceFrame->setMinimumSize(PASSWORD_FRAME_MIN_SIZE); m_interfaceFrame->setMaximumSize(PASSWORD_FRAME_MAX_SIZE); - m_interfaceLabel = new QLabel(tr("Net card"), this); + m_interfaceLabel = new FixLabel(tr("Shared NIC port"), this); m_interfaceLabel->setFixedWidth(LABLE_MIN_WIDTH); m_interfaceComboBox = new QComboBox(this); m_interfaceComboBox->setInsertPolicy(QComboBox::NoInsert); @@ -656,7 +726,6 @@ void MobileHotspotWidget::setInterFaceFrame() m_warnWidget->hide(); } - void MobileHotspotWidget::onActivateFailed(QString errorMessage) { if (errorMessage.indexOf("hotspot")) { @@ -691,7 +760,6 @@ void MobileHotspotWidget::onDeviceNameChanged(QString oldName, QString newName, m_interfaceName = newName; } } - QTimer::singleShot(100, this, [=]() { if (m_interfaceComboBox->currentText() == newName) { updateBandCombox(); @@ -702,14 +770,16 @@ void MobileHotspotWidget::onDeviceNameChanged(QString oldName, QString newName, //热点断开 void MobileHotspotWidget::onHotspotDeactivated(QString devName, QString ssid) { + stopLoading(); if (!m_switchBtn->isChecked()) { return; } if (devName == m_interfaceComboBox->currentText() && ssid == m_apNameLine->text()) { + if(m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already close")); m_switchBtn->setChecked(false); m_uuid.clear(); // setUiEnabled(true); - showDesktopNotify(tr("hotspot already close")); } } @@ -717,6 +787,7 @@ void MobileHotspotWidget::onHotspotDeactivated(QString devName, QString ssid) void MobileHotspotWidget::onHotspotActivated(QString devName, QString ssid, QString uuid, QString activePath, QString settingPath) { qDebug() << LOG_HEAD << "onHotspotActivated" <isChecked()) { return; } @@ -736,10 +807,11 @@ void MobileHotspotWidget::onHotspotActivated(QString devName, QString ssid, QStr this->update(); if (devName == m_interfaceComboBox->currentText() && ssid == m_apNameLine->text()) { + if(!m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already open")); m_switchBtn->setChecked(true); m_uuid = uuid; // setUiEnabled(false); - showDesktopNotify(tr("hotspot already open")); } else { QStringList info; if (!getApInfoBySsid(devName, ssid, info)) { @@ -747,7 +819,8 @@ void MobileHotspotWidget::onHotspotActivated(QString devName, QString ssid, QStr } int index = m_interfaceComboBox->findText(devName); if (index >= 0) { - showDesktopNotify(tr("hotspot already open")); + if(!m_switchBtn->isChecked()) + showDesktopNotify(tr("hotspot already open")); m_apNameLine->setText(ssid); m_interfaceComboBox->setCurrentIndex(index); m_switchBtn->setChecked(true); @@ -826,6 +899,7 @@ void MobileHotspotWidget::setWidgetHidden(bool isHidden) onWirelessBtnChanged(state); } resetFrameSize(); + } void MobileHotspotWidget::updateBandCombox() @@ -838,7 +912,6 @@ void MobileHotspotWidget::updateBandCombox() setWidgetHidden(true); return; } - m_isUserSelect = false; QMap devCapMap; @@ -998,6 +1071,7 @@ void MobileHotspotWidget::initConnectDevPage() m_connectDevPage = new ConnectdevPage(this); m_Vlayout->addSpacing(32); m_Vlayout->addWidget(m_connectDevPage); + connect(m_switchBtn, &KSwitchButton::stateChanged, m_connectDevPage, &ConnectdevPage::refreshStalist); } void MobileHotspotWidget::initBlackListPage() @@ -1006,3 +1080,4 @@ void MobileHotspotWidget::initBlackListPage() m_Vlayout->addSpacing(32); m_Vlayout->addWidget(m_blacklistPage); } + diff --git a/plugins/mobilehotspot/mobilehotspotwidget.h b/plugins/mobilehotspot/mobilehotspotwidget.h index 0723b2fd..6a8d6ac4 100644 --- a/plugins/mobilehotspot/mobilehotspotwidget.h +++ b/plugins/mobilehotspot/mobilehotspotwidget.h @@ -72,10 +72,10 @@ private: TitleLabel *m_hotspotTitleLabel; QLabel *m_switchLabel; QLabel *m_apNameLabel; - QLabel *m_pwdLabel; + FixLabel *m_pwdLabel; QLabel *m_pwdHintLabel; FixLabel *m_freqBandLabel; - QLabel *m_interfaceLabel; + FixLabel *m_interfaceLabel; QFrame *switchAndApNameLine; QFrame *apNameAndPwdLine; @@ -102,6 +102,13 @@ private: QString m_uuid = ""; QString m_hostName = ""; + + QLabel *m_statusLabel; + QTimer *m_waitTimer = nullptr; + QList m_loadIcons; + int m_currentIconIndex=0; + void updateLoadingIcon(); + void resetFrameSize(); void initUI(); void initDbusConnect(); @@ -145,6 +152,7 @@ private: void initBlackListPage(); bool m_isUserSelect = true; //是否用户操作 + signals: private slots: @@ -167,6 +175,9 @@ private slots: void onPwdTextChanged(); void onInterfaceChanged(); + + void startLoading(); + void stopLoading(); }; #endif // MOBILEHOTSPOTWIDGET_H diff --git a/plugins/mobilehotspot/translations/bo.ts b/plugins/mobilehotspot/translations/bo.ts index 1585a4ab..a627c8c7 100644 --- a/plugins/mobilehotspot/translations/bo.ts +++ b/plugins/mobilehotspot/translations/bo.ts @@ -42,93 +42,121 @@ - mobilehotspot + Mobile Hotspot - /mobilehotspot/mobilehotspot + /mobilehotspot/Mobile Hotspot - mobilehotspot open + Open mobile hotspot - /mobilehotspot/mobilehotspot open + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + + /mobilehotspot/Wi-Fi Name + + + + Network Password + + /mobilehotspot/Network Password + + + + Network Frequency band + + /mobilehotspot/Network Frequency band + + + + Shared NIC port + + /mobilehotspot/Shared NIC port MobileHotspotWidget - + wirless switch is close or no wireless device - + hotpots name or device is invalid - + + Open mobile hotspot + + + + + Network Password + + + + Contains at least 8 characters - + Hotspot - + Settings - + Settings desktop message - + use - + share network, will interrupt local wireless connection - - + + + + + hotspot already close - - Open + + Network Frequency band - + + Shared NIC port + + + + Wi-Fi Name - - Password - - - - - Frequency band - - - - - Net card - - - - - + + + hotspot already open diff --git a/plugins/mobilehotspot/translations/bo_CN.ts b/plugins/mobilehotspot/translations/bo_CN.ts index 5b9e0e4f..089af1c8 100644 --- a/plugins/mobilehotspot/translations/bo_CN.ts +++ b/plugins/mobilehotspot/translations/bo_CN.ts @@ -42,15 +42,58 @@ - mobilehotspot - སྒུལ་བདེའི་འཕྲུལ་ཆས། - /mobilehotspot/mobilehotspot + Mobile Hotspot + སྒུལ་བདེའི་ཧའོ་ཚི་ཀུང་སི། + /mobilehotspot/Mobile Hotspot - mobilehotspot open + Open mobile hotspot སྒུལ་བདེའི་འཕྲུལ་ཆས་ཀྱི་སྒོ་ཕྱེ་བ། - /mobilehotspot/mobilehotspot open + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + Wi-Fiཡི་མིང་། + /mobilehotspot/Wi-Fi Name + + + + Network Password + + /mobilehotspot/Network Password + + + + Network Frequency band + + /mobilehotspot/Network Frequency band + + + + Shared NIC port + + /mobilehotspot/Shared NIC port + + + Password + གསང་གྲངས། + /mobilehotspot/Password + + + Frequency band + ཐེངས་གྲངས་ཀྱི་རོལ་ཆའི་རུ་ཁག + /mobilehotspot/Frequency band + + + Net card + དྲ་རྒྱའི་བྱང་བུ། + /mobilehotspot/Net card + + + mobilehotspot + སྒུལ་བདེའི་འཕྲུལ་ཆས། @@ -64,7 +107,7 @@ ukui ཚོད་འཛིན་ལྟེ་གནས་ཀྱི་ཅོག་ངོས་ཆ་འཕྲིན། - + wirless switch is close or no wireless device སྐུད་མེད་གློག་སྒོ་རྒྱག་པའམ་ཡང་ན་སྐུད་མེད་སྒྲིག་ཆས་མེད་པ། @@ -73,7 +116,7 @@ སྒོ་རྒྱག་འགོ་བརྩམས། - + hotpots name or device is invalid ཚ་བ་ཆེ་བའི་མིང་ངམ་སྒྲིག་ཆས་ལ་ནུས་པ་མེད། @@ -86,69 +129,89 @@ ཀུན་གྱིས་དོ་སྣང་བྱེད་ཡུལ་གསར་སྐྲུན་བྱེད་འགོ་ - + Contains at least 8 characters མ་མཐར་ཡང་ཡིག་རྟགས་བརྒྱད་འདུས་ཡོད། - + Hotspot ཚ་བ་ཆེ་བ། - + Settings བཀོད་སྒྲིག་བཅས་བྱ་དགོས། - + Settings desktop message བཀོད་སྒྲིག་བཅས་བྱ་དགོས། ཅོག་ངོས་ལ་བརྡ་ཐོ་གཏོང་དགོས། - + use བེད་སྤྱོད། - + share network, will interrupt local wireless connection གླེང་མང་མཉམ་སྤྱོད་བྱས་ནས་འཕྲུལ་ཆས་ཀྱི་སྐུད་མེད་དྲ་བ་སྦྲེལ་མཐུད་བྱེད་ངེས་རེད། - - + + + + + hotspot already close ཚ་བ་ཆེ་བའི་གནད་དོན་ཐག་ཉེ་རུ་སོང་ཡོད། - - Open - སྒོ་ཕྱེ་བ། + + Open mobile hotspot + སྒུལ་བདེའི་འཕྲུལ་ཆས་ཀྱི་སྒོ་ཕྱེ་བ། - + + Network Password + + + + + Network Frequency band + + + + + Shared NIC port + + + + Open + སྒོ་ཕྱེ་བ། + + + Wi-Fi Name Wi-Fiཡི་མིང་། - Password - གསང་གྲངས། + གསང་གྲངས། - Frequency band - ཐེངས་གྲངས་ཀྱི་རོལ་ཆའི་རུ་ཁག + ཐེངས་གྲངས་ཀྱི་རོལ་ཆའི་རུ་ཁག - Net card - དྲ་རྒྱའི་བྱང་བུ། + དྲ་རྒྱའི་བྱང་བུ། - - + + + hotspot already open ཚ་བ་ཆེ་བའི་གནད་དོན་དེ་སྒོ་ཕྱེ་ཟིན། diff --git a/plugins/mobilehotspot/translations/de.ts b/plugins/mobilehotspot/translations/de.ts index 5763dd0a..59f3fa2b 100644 --- a/plugins/mobilehotspot/translations/de.ts +++ b/plugins/mobilehotspot/translations/de.ts @@ -42,14 +42,48 @@ - mobilehotspot + Mobile Hotspot Mobiler Hotspot - /mobilehotspot/mobilehotspot + /mobilehotspot/Mobile Hotspot + Open mobile hotspot + Mobiler Hotspot öffnen + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + Name des drahtlosen Netzwerks + /mobilehotspot/Wi-Fi Name + + + + Network Password + Netzwerkpasswort + /mobilehotspot/Network Password + + + + Network Frequency band + Netzwerkbandbreite + /mobilehotspot/Network Frequency band + + + + Shared NIC port + Gemeinsamer Netzwerkkartenport + /mobilehotspot/Shared NIC port + + + mobilehotspot + Mobiler Hotspot + /mobilehotspot/mobilehotspot + + mobilehotspot open - MobileHotspot geöffnet + MobileHotspot geöffnet /mobilehotspot/mobilehotspot open @@ -64,7 +98,7 @@ 控制面板桌面通知 - + wirless switch is close or no wireless device Der kabellose Schalter ist in der Nähe oder kein drahtloses Gerät @@ -73,7 +107,7 @@ 开始关闭热点 - + hotpots name or device is invalid Der Name oder das Gerät des Hotpots ist ungültig @@ -86,69 +120,89 @@ 开始创建热点 - + Contains at least 8 characters Enthält mindestens 8 Zeichen - + Hotspot Hotspot (Hotspot) - + Settings Einstellungen - + Settings desktop message Desktop-Meldung für Einstellungen - + use gebrauchen - + share network, will interrupt local wireless connection Netzwerk freigeben, unterbricht die lokale drahtlose Verbindung - - + + + + + hotspot already close Hotspot bereits geschlossen - - Open - Offen + + Open mobile hotspot + Mobiler Hotspot aktivieren - + + Network Password + Netzwerkpasswort + + + + Network Frequency band + Netzwerkbandbreite + + + + Shared NIC port + Gemeinsamer Netzwerkkartenport + + + Open + Offen + + + Wi-Fi Name Wi-Fi-Name - Password - Passwort + Passwort - Frequency band - Frequenzband + Frequenzband - Net card - Netzkarte + Netzkarte - - + + + hotspot already open Hotspot bereits geöffnet diff --git a/plugins/mobilehotspot/translations/en_US.ts b/plugins/mobilehotspot/translations/en_US.ts index 0c9880bf..7ff452c3 100644 --- a/plugins/mobilehotspot/translations/en_US.ts +++ b/plugins/mobilehotspot/translations/en_US.ts @@ -42,15 +42,58 @@ - mobilehotspot - mobilehotspot - /mobilehotspot/mobilehotspot + Mobile Hotspot + Mobile Hotspot + /mobilehotspot/Mobile Hotspot - mobilehotspot open - mobilehotspot open - /mobilehotspot/mobilehotspot open + Open mobile hotspot + Open mobile hotspot + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + Wi-Fi Name + /mobilehotspot/Wi-Fi Name + + + + Network Password + + /mobilehotspot/Network Password + + + + Network Frequency band + + /mobilehotspot/Network Frequency band + + + + Shared NIC port + + /mobilehotspot/Shared NIC port + + + Password + Password + /mobilehotspot/Password + + + Frequency band + Frequency band + /mobilehotspot/Frequency band + + + Net card + Net card + /mobilehotspot/Net card + + + mobilehotspot + mobilehotspot @@ -64,79 +107,99 @@ ukui control center desktop message - + Settings - + Settings desktop message - + wirless switch is close or no wireless device wirless switch is close or no wireless device - + hotpots name or device is invalid hotpots name or device is invalid - + Hotspot Hotspot - + use - + share network, will interrupt local wireless connection - - + + + + + hotspot already close hotspot already close - - Open - Open + + Open mobile hotspot + Open mobile hotspot - + + Network Password + + + + + Network Frequency band + + + + + Shared NIC port + + + + Open + Open + + + Wi-Fi Name Wi-Fi Name - Password - Password + Password - + Contains at least 8 characters Contains at least 8 characters - Frequency band - Frequency band + Frequency band - Net card - Net card + Net card - - + + + hotspot already open hotspot already open diff --git a/plugins/mobilehotspot/translations/es.ts b/plugins/mobilehotspot/translations/es.ts index 51910fba..217f6272 100644 --- a/plugins/mobilehotspot/translations/es.ts +++ b/plugins/mobilehotspot/translations/es.ts @@ -42,14 +42,48 @@ - mobilehotspot + Mobile Hotspot Hotspot móvil - /mobilehotspot/mobilehotspot + /mobilehotspot/Mobile Hotspot + Open mobile hotspot + Abrir puntos calientes móviles + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + Nombre de Wi-Fi + /mobilehotspot/Wi-Fi Name + + + + Network Password + Contraseña de red + /mobilehotspot/Network Password + + + + Network Frequency band + Banda de frecuencia de la red + /mobilehotspot/Network Frequency band + + + + Shared NIC port + Puerto de tarjeta de red compartida + /mobilehotspot/Shared NIC port + + + mobilehotspot + Hotspot móvil + /mobilehotspot/mobilehotspot + + mobilehotspot open - MobileHotspot abierto + MobileHotspot abierto /mobilehotspot/mobilehotspot open @@ -64,7 +98,7 @@ 控制面板桌面通知 - + wirless switch is close or no wireless device El interruptor inalámbrico está cerca o no hay ningún dispositivo inalámbrico @@ -73,7 +107,7 @@ 开始关闭热点 - + hotpots name or device is invalid El nombre o el dispositivo de Hotpots no son válidos @@ -86,69 +120,89 @@ 开始创建热点 - + Contains at least 8 characters Contiene al menos 8 caracteres - + Hotspot Punto de acceso - + Settings Configuración - + Settings desktop message Mensaje de escritorio de configuración - + use uso - + share network, will interrupt local wireless connection red compartida, interrumpirá la conexión inalámbrica local - - + + + + + hotspot already close El punto de acceso ya está cerrado - - Open - Abrir + + Open mobile hotspot + Abrir puntos calientes móviles - + + Network Password + Contraseña de red + + + + Network Frequency band + Banda de frecuencia de la red + + + + Shared NIC port + Puerto de tarjeta de red compartida + + + Open + Abrir + + + Wi-Fi Name Nombre de Wi-Fi - Password - Contraseña + Contraseña - Frequency band - Banda de frecuencias + Banda de frecuencias - Net card - Tarjeta de red + Tarjeta de red - - + + + hotspot already open El punto de acceso ya está abierto diff --git a/plugins/mobilehotspot/translations/fr.ts b/plugins/mobilehotspot/translations/fr.ts index 4674d436..456c37f6 100644 --- a/plugins/mobilehotspot/translations/fr.ts +++ b/plugins/mobilehotspot/translations/fr.ts @@ -42,14 +42,48 @@ - mobilehotspot - mobilehotspot - /mobilehotspot/mobilehotspot + Mobile Hotspot + Hotspots mobiles + /mobilehotspot/Mobile Hotspot + Open mobile hotspot + Ouvrir un Hotspot mobile + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + Nom du Wi-Fi + /mobilehotspot/Wi-Fi Name + + + + Network Password + Mot de passe réseau + /mobilehotspot/Network Password + + + + Network Frequency band + Bande de fréquences réseau + /mobilehotspot/Network Frequency band + + + + Shared NIC port + Port de carte réseau partagé + /mobilehotspot/Shared NIC port + + + mobilehotspot + mobilehotspot + /mobilehotspot/mobilehotspot + + mobilehotspot open - mobilehotspot ouvert + mobilehotspot ouvert /mobilehotspot/mobilehotspot open @@ -64,7 +98,7 @@ 控制面板桌面通知 - + wirless switch is close or no wireless device L’interrupteur sans fil est proche ou aucun appareil sans fil @@ -73,7 +107,7 @@ 开始关闭热点 - + hotpots name or device is invalid Le nom ou l’appareil des pots chauds n’est pas valide @@ -86,69 +120,89 @@ 开始创建热点 - + Contains at least 8 characters Contient au moins 8 caractères - + Hotspot Point d’accès - + Settings Paramètres - + Settings desktop message Message sur le bureau des paramètres - + use utiliser - + share network, will interrupt local wireless connection partager le réseau, interrompra la connexion sans fil locale - - + + + + + hotspot already close hotspot déjà proche - - Open - Ouvrir + + Open mobile hotspot + Ouvrir un Hotspot mobile - + + Network Password + Mot de passe réseau + + + + Network Frequency band + Bande de fréquences réseau + + + + Shared NIC port + Port de carte réseau partagé + + + Open + Ouvrir + + + Wi-Fi Name Nom du Wi-Fi - Password - Mot de passe + Mot de passe - Frequency band - Bande de fréquence + Bande de fréquence - Net card - Carte réseau + Carte réseau - - + + + hotspot already open hotspot déjà ouvert diff --git a/plugins/mobilehotspot/translations/kk.ts b/plugins/mobilehotspot/translations/kk.ts index 51d05ce0..fb6e4c26 100644 --- a/plugins/mobilehotspot/translations/kk.ts +++ b/plugins/mobilehotspot/translations/kk.ts @@ -42,14 +42,48 @@ - mobilehotspot - كۇشەمەكشى اعٸم نۇكتەسى - /mobilehotspot/mobilehotspot + Mobile Hotspot + + /mobilehotspot/Mobile Hotspot + Open mobile hotspot + + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + سىمسىز تور مى + /mobilehotspot/Wi-Fi Name + + + + Network Password + + /mobilehotspot/Network Password + + + + Network Frequency band + + /mobilehotspot/Network Frequency band + + + + Shared NIC port + + /mobilehotspot/Shared NIC port + + + mobilehotspot + كۇشەمەكشى اعٸم نۇكتەسى + /mobilehotspot/mobilehotspot + + mobilehotspot open - كۇشەمەكشى اعٸم نۇكتەسى ٸشٸۋ + كۇشەمەكشى اعٸم نۇكتەسى ٸشٸۋ /mobilehotspot/mobilehotspot open @@ -64,7 +98,7 @@ 控制面板桌面通知 - + wirless switch is close or no wireless device سىمسىز ايىرپ قوسقىش جابٸلدٸ ياكي قىزىق نۇكتە رولدارٸ بار سىمسىز تور كارتاسى ساقتالعان ەمەس @@ -73,7 +107,7 @@ 开始关闭热点 - + hotpots name or device is invalid اعٸم نۇكتە مى ياكي اسباب كۇشكە يە ەمەس @@ -86,69 +120,89 @@ 开始创建热点 - + Contains at least 8 characters از دەگەندە 8 ٵربى ٶز ىشىنە الادٸ - + Hotspot اعٸم نۇكتەسى - + Settings تەڭشەۋلەر - + Settings desktop message ۇستەل بەتى حابارى تەڭگەرگٸش - + use ٸستەتۋ - + share network, will interrupt local wireless connection ورتاق ٴلاززاتتانۋ بولاتٸن تور، جەرلىك سىمسىز جالعانۋ ٷزٸلٸپ قالدى - - + + + + + hotspot already close اعٸم نۇكتەسى الدەقاشان جابىلىپ قالدى - - Open - ٸشٸۋ + + Open mobile hotspot + - + + Network Password + + + + + Network Frequency band + + + + + Shared NIC port + + + + Open + ٸشٸۋ + + + Wi-Fi Name سىمسىز تور مى - Password - قۇپيا نومەر + قۇپيا نومەر - Frequency band - تور جيىلىگى + تور جيىلىگى - Net card - ورتاق ٴلاززاتتانۋ بولاتٸن تور كارتاسى + ورتاق ٴلاززاتتانۋ بولاتٸن تور كارتاسى - - + + + hotspot already open اعٸم نۇكتەسى الدەقاشان ئېچىۋېتىلدى diff --git a/plugins/mobilehotspot/translations/ky.ts b/plugins/mobilehotspot/translations/ky.ts index 2d0b7db5..dc87db54 100644 --- a/plugins/mobilehotspot/translations/ky.ts +++ b/plugins/mobilehotspot/translations/ky.ts @@ -42,14 +42,48 @@ - mobilehotspot - كۅچمۅ اعىم تۉيۉنۉ - /mobilehotspot/mobilehotspot + Mobile Hotspot + + /mobilehotspot/Mobile Hotspot + Open mobile hotspot + + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + سەمىز تور ناامى + /mobilehotspot/Wi-Fi Name + + + + Network Password + + /mobilehotspot/Network Password + + + + Network Frequency band + + /mobilehotspot/Network Frequency band + + + + Shared NIC port + + /mobilehotspot/Shared NIC port + + + mobilehotspot + كۅچمۅ اعىم تۉيۉنۉ + /mobilehotspot/mobilehotspot + + mobilehotspot open - كۅچمۅ اعىم تۉيۉنۉ اچۇۇ + كۅچمۅ اعىم تۉيۉنۉ اچۇۇ /mobilehotspot/mobilehotspot open @@ -64,7 +98,7 @@ 控制面板桌面通知 - + wirless switch is close or no wireless device سەمىز ۋىكلىۇچاتەل تاقالدى كۅرۉنۉشتۅرۉ قىزىق تۉيۉن قۇرباتى بار سەمىز تور كارتوچكاسى باربولۇۇسۇ ەمەس @@ -73,7 +107,7 @@ 开始关闭热点 - + hotpots name or device is invalid اعىم تۉيۉن ناامى كۅرۉنۉشتۅرۉ شايمان ەسەپ ەمەس @@ -86,69 +120,89 @@ 开始创建热点 - + Contains at least 8 characters از دەگەندە 8 تامعانى ۅز ىچىنە الات - + Hotspot اعىم تۉيۉنۉ - + Settings تەڭشەكتەر - + Settings desktop message شىرە بەتى ۇچۇرۇ تەڭشەگى - + use ىشتەتىش - + share network, will interrupt local wireless connection ورتوق باارلانۇۇ بولوتۇرعان تور ، جەردىك سەمىز ۇلانۇۇ ۉزۉلۉپ قالات - - + + + + + hotspot already close اعىم تۉيۉنۉ تەە مۇردا جابىلىپ بولدۇ - - Open - اچۇۇ + + Open mobile hotspot + - + + Network Password + + + + + Network Frequency band + + + + + Shared NIC port + + + + Open + اچۇۇ + + + Wi-Fi Name سەمىز تور ناامى - Password - جاشىرۇۇن نومۇر + جاشىرۇۇن نومۇر - Frequency band - تور جىشتىق القاعى + تور جىشتىق القاعى - Net card - ورتوق باارلانۇۇ بولوتۇرعان تور كارتوچكاسى + ورتوق باارلانۇۇ بولوتۇرعان تور كارتوچكاسى - - + + + hotspot already open اعىم تۉيۉنۉ تەە مۇردا ئېچىۋېتىلدى diff --git a/plugins/mobilehotspot/translations/mn.ts b/plugins/mobilehotspot/translations/mn.ts index 43b8e0b5..5637b29c 100644 --- a/plugins/mobilehotspot/translations/mn.ts +++ b/plugins/mobilehotspot/translations/mn.ts @@ -42,15 +42,58 @@ - mobilehotspot + Mobile Hotspot ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ - /mobilehotspot/mobilehotspot + /mobilehotspot/Mobile Hotspot - mobilehotspot open + Open mobile hotspot ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠡᠬᠢᠯᠡᠬᠦ - /mobilehotspot/mobilehotspot open + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + Wi-Fi ᠨᠡᠷᠡᠢᠳᠦᠯ + /mobilehotspot/Wi-Fi Name + + + + Network Password + ᠲᠣᠣᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠨᠢᠭᠤᠴᠠ ᠲᠡᠮᠳᠡᠭ + /mobilehotspot/Network Password + + + + Network Frequency band + ᠲᠣᠣᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳᠠᠪᠲᠠᠮᠵᠢ᠎ᠶ᠋ᠢᠨ ᠪᠦᠰᠡ + /mobilehotspot/Network Frequency band + + + + Shared NIC port + ᠬᠠᠮᠲᠤ ᠡᠳ᠋ᠯᠡᠬᠦ ᠲᠣᠣᠷ᠎ᠤ᠋ᠨ ᠺᠠᠷᠲ᠎ᠤ᠋ᠨ ᠫᠣᠷᠲ + /mobilehotspot/Shared NIC port + + + Password + ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ + /mobilehotspot/Password + + + Frequency band + ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠠᠪᠳᠠᠮᠵᠢ ᠵᠢᠨ ᠪᠦᠰᠡ + /mobilehotspot/Frequency band + + + Net card + ᠬᠠᠮᠳᠤᠪᠠᠷ ᠡᠳ᠋ᠯᠡᠬᠦ ᠨᠧᠲ ᠤ᠋ᠨ ᠦᠵᠦᠬᠦᠷ + /mobilehotspot/Net card + + + mobilehotspot + ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ @@ -64,7 +107,7 @@ ᠡᠵᠡᠮᠰᠢᠯ ᠤ᠋ᠨ ᠬᠠᠪᠳᠠᠰᠤᠨ ᠤ᠋ ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷ ᠤ᠋ᠨ ᠮᠡᠳᠡᠭᠳᠡᠯ - + wirless switch is close or no wireless device ᠤᠲᠠᠰᠤ ᠦᠭᠡᠢ ᠨᠡᠭᠡᠭᠡᠯᠭᠡ ᠨᠢᠭᠡᠨᠲᠡ ᠬᠠᠭᠠᠭᠰᠠᠨ ᠪᠤᠶᠤ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠤ᠋ᠨ ᠴᠢᠳᠠᠮᠵᠢ ᠲᠠᠢ ᠤᠲᠠᠰᠤ ᠦᠭᠡᠢ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠺᠠᠷᠲ ᠪᠠᠢᠬᠤ ᠦᠭᠡᠢ @@ -73,7 +116,7 @@ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠡᠬᠢᠯᠡᠵᠤ ᠬᠠᠭᠠᠬᠤ - + hotpots name or device is invalid ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠤ᠋ᠨ ᠨᠡᠷᠡᠢᠳᠦᠯ ᠪᠤᠶᠤ ᠳᠦᠬᠦᠬᠡᠷᠦᠮᠵᠢ ᠪᠤᠷᠤᠭᠤ @@ -86,69 +129,89 @@ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠡᠬᠢᠯᠡᠵᠤ ᠪᠠᠢᠭᠤᠯᠬᠤ - + Contains at least 8 characters ᠠᠳᠠᠭ ᠲᠤ᠌ ᠪᠡᠨ 8 ᠦᠰᠦᠭ ᠳᠡᠮᠳᠡᠭ ᠠᠭᠤᠯᠠᠭᠳᠠᠵᠤ ᠪᠠᠢᠨ᠎ᠠ - + Hotspot ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ - + Settings ᠳᠤᠬᠢᠷᠠᠭᠤᠯᠭ᠎ᠠ - + Settings desktop message ᠰᠢᠷᠡᠭᠡᠨ ᠨᠢᠭᠤᠷ᠎ᠤ᠋ᠨ ᠵᠠᠩᠭᠢ᠎ᠶ᠋ᠢ ᠵᠣᠬᠢᠷᠠᠭᠤᠯᠬᠤ - + use ᠬᠡᠷᠡᠭᠯᠡᠬᠦ - + share network, will interrupt local wireless connection ᠬᠠᠮᠲᠤ ᠡᠳ᠋ᠯᠡᠬᠦ ᠲᠣᠣᠷ ᠰᠦᠯᠵᠢᠶ᠎ᠡ ᠂ ᠲᠤᠰ ᠭᠠᠵᠠᠷ᠎ᠤ᠋ᠨ ᠤᠲᠠᠰᠤᠭᠤᠢ ᠵᠠᠯᠭᠠᠯᠲᠠ᠎ᠶ᠋ᠢ ᠲᠠᠰᠤᠯᠠᠬᠤ - - + + + + + hotspot already close ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠬᠠᠭᠠᠪᠠ - - Open - ᠨᠡᠭᠡᠭᠡᠭᠦ + + Open mobile hotspot + ᠰᠢᠯᠵᠢᠮᠡᠯ ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠡᠬᠢᠯᠡᠬᠦ - + + Network Password + ᠲᠣᠣᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠨᠢᠭᠤᠴᠠ ᠲᠡᠮᠳᠡᠭ + + + + Network Frequency band + ᠲᠣᠣᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠳᠠᠪᠲᠠᠮᠵᠢ᠎ᠶ᠋ᠢᠨ ᠪᠦᠰᠡ + + + + Shared NIC port + ᠬᠠᠮᠲᠤ ᠡᠳ᠋ᠯᠡᠬᠦ ᠲᠣᠣᠷ᠎ᠤ᠋ᠨ ᠺᠠᠷᠲ᠎ᠤ᠋ᠨ ᠫᠣᠷᠲ + + + Open + ᠨᠡᠭᠡᠭᠡᠭᠦ + + + Wi-Fi Name Wi-Fi ᠨᠡᠷᠡᠢᠳᠦᠯ - Password - ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ + ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠨᠢᠭᠤᠴᠠ ᠺᠤᠳ᠋ - Frequency band - ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠠᠪᠳᠠᠮᠵᠢ ᠵᠢᠨ ᠪᠦᠰᠡ + ᠲᠤᠤᠷ ᠰᠦᠯᠵᠢᠶᠡᠨ ᠤ᠋ ᠳᠠᠪᠳᠠᠮᠵᠢ ᠵᠢᠨ ᠪᠦᠰᠡ - Net card - ᠬᠠᠮᠳᠤᠪᠠᠷ ᠡᠳ᠋ᠯᠡᠬᠦ ᠨᠧᠲ ᠤ᠋ᠨ ᠦᠵᠦᠬᠦᠷ + ᠬᠠᠮᠳᠤᠪᠠᠷ ᠡᠳ᠋ᠯᠡᠬᠦ ᠨᠧᠲ ᠤ᠋ᠨ ᠦᠵᠦᠬᠦᠷ - - + + + hotspot already open ᠬᠠᠯᠠᠭᠤᠨ ᠴᠡᠭ ᠢ᠋ ᠨᠡᠬᠡᠬᠡᠪᠡ diff --git a/plugins/mobilehotspot/translations/tr.ts b/plugins/mobilehotspot/translations/tr.ts index 1585a4ab..a627c8c7 100644 --- a/plugins/mobilehotspot/translations/tr.ts +++ b/plugins/mobilehotspot/translations/tr.ts @@ -42,93 +42,121 @@ - mobilehotspot + Mobile Hotspot - /mobilehotspot/mobilehotspot + /mobilehotspot/Mobile Hotspot - mobilehotspot open + Open mobile hotspot - /mobilehotspot/mobilehotspot open + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + + /mobilehotspot/Wi-Fi Name + + + + Network Password + + /mobilehotspot/Network Password + + + + Network Frequency band + + /mobilehotspot/Network Frequency band + + + + Shared NIC port + + /mobilehotspot/Shared NIC port MobileHotspotWidget - + wirless switch is close or no wireless device - + hotpots name or device is invalid - + + Open mobile hotspot + + + + + Network Password + + + + Contains at least 8 characters - + Hotspot - + Settings - + Settings desktop message - + use - + share network, will interrupt local wireless connection - - + + + + + hotspot already close - - Open + + Network Frequency band - + + Shared NIC port + + + + Wi-Fi Name - - Password - - - - - Frequency band - - - - - Net card - - - - - + + + hotspot already open diff --git a/plugins/mobilehotspot/translations/ug.ts b/plugins/mobilehotspot/translations/ug.ts index cc6f56d8..5a4d3ad0 100644 --- a/plugins/mobilehotspot/translations/ug.ts +++ b/plugins/mobilehotspot/translations/ug.ts @@ -42,93 +42,147 @@ - mobilehotspot - كۆچمە ئېقىم نۇقتىسى - /mobilehotspot/mobilehotspot + Mobile Hotspot + + /mobilehotspot/Mobile Hotspot + Open mobile hotspot + + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + سىمسىز تور نامى + /mobilehotspot/Wi-Fi Name + + + + Network Password + + /mobilehotspot/Network Password + + + + Network Frequency band + + /mobilehotspot/Network Frequency band + + + + Shared NIC port + + /mobilehotspot/Shared NIC port + + + mobilehotspot + كۆچمە ئېقىم نۇقتىسى + /mobilehotspot/mobilehotspot + + mobilehotspot open - كۆچمە ئېقىم نۇقتىسى ئېچىش + كۆچمە ئېقىم نۇقتىسى ئېچىش /mobilehotspot/mobilehotspot open MobileHotspotWidget - + wirless switch is close or no wireless device سىمسىز ۋىكليۇچاتېل تاقالدى ياكى قىزىق نۇقتا ئىقتىدارى بار سىمسىز تور كارتىسى مەۋجۇت ئەمەس - + hotpots name or device is invalid ئېقىم نۇقتا نامى ياكى ئۈسكۈنە ئىناۋەتسىز - + + Open mobile hotspot + + + + + Network Password + + + + Contains at least 8 characters ئاز دېگەندە 8 ھەرپنى ئۆز ئىچىگە ئالىدۇ - + Hotspot ئېقىم نۇقتىسى - + Settings تەڭشەكلەر - + Settings desktop message ئۈستەل يۈزى ئۇچۇرى تەڭشىكى - + use ئىشلىتىش - + share network, will interrupt local wireless connection ئورتاق بەھرىمەن بولىدىغان تور، يەرلىك سىمسىز ئۇلىنىش ئۈزۈلۈپ قالىدۇ - - + + + + + hotspot already close ئېقىم نۇقتىسى ئاللىقاچان يېپىلىپ بولدى - - Open - ئېچىش + + Network Frequency band + - + + Shared NIC port + + + + Open + ئېچىش + + + Wi-Fi Name سىمسىز تور نامى - Password - ئىم + ئىم - Frequency band - تور چاستوتىسى + تور چاستوتىسى - Net card - ئورتاق بەھرىمەن بولىدىغان تور كارتىسى + ئورتاق بەھرىمەن بولىدىغان تور كارتىسى - - + + + hotspot already open ئېقىم نۇقتىسى ئاللىقاچان ئېچىۋېتىلدى diff --git a/plugins/mobilehotspot/translations/zh_CN.ts b/plugins/mobilehotspot/translations/zh_CN.ts index 716d2def..d7240972 100644 --- a/plugins/mobilehotspot/translations/zh_CN.ts +++ b/plugins/mobilehotspot/translations/zh_CN.ts @@ -42,15 +42,58 @@ - mobilehotspot + Mobile Hotspot 移动热点 - /mobilehotspot/mobilehotspot + /mobilehotspot/Mobile Hotspot - mobilehotspot open - 移动热点 开启 - /mobilehotspot/mobilehotspot open + Open mobile hotspot + 开启移动热点 + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + Wi-Fi 名称 + /mobilehotspot/Wi-Fi Name + + + + Network Password + 网络密码 + /mobilehotspot/Network Password + + + + Network Frequency band + 网络频带 + /mobilehotspot/Network Frequency band + + + + Shared NIC port + 共享网卡端口 + /mobilehotspot/Shared NIC port + + + Password + 网络密码 + /mobilehotspot/Password + + + Frequency band + 网络频带 + /mobilehotspot/Frequency band + + + Net card + 共享网卡端口 + /mobilehotspot/Net card + + + mobilehotspot + 移动热点 @@ -64,7 +107,7 @@ 控制面板桌面通知 - + wirless switch is close or no wireless device 无线开关已关闭或不存在有热点功能的无线网卡 @@ -73,7 +116,7 @@ 开始关闭热点 - + hotpots name or device is invalid 热点名称或设备错误 @@ -86,69 +129,89 @@ 开始创建热点 - + Contains at least 8 characters 至少包含8个字符 - + Hotspot 移动热点 - + Settings 设置 - + Settings desktop message 设置 桌面通知 - + use 使用 - + share network, will interrupt local wireless connection 进行热点共享,会中断本机无线网络连接 - - + + + + + hotspot already close 热点已关闭 - - Open - 开启 + + Open mobile hotspot + 开启移动热点 - + + Network Password + 网络密码 + + + + Network Frequency band + 网络频带 + + + + Shared NIC port + 共享网卡端口 + + + Open + 开启 + + + Wi-Fi Name Wi-Fi 名称 - Password - 网络密码 + 网络密码 - Frequency band - 网络频带 + 网络频带 - Net card - 共享网卡端口 + 共享网卡端口 - - + + + hotspot already open 热点已开启 diff --git a/plugins/mobilehotspot/translations/zh_Hant.ts b/plugins/mobilehotspot/translations/zh_Hant.ts index 2b474dc2..c789d0e4 100644 --- a/plugins/mobilehotspot/translations/zh_Hant.ts +++ b/plugins/mobilehotspot/translations/zh_Hant.ts @@ -42,15 +42,58 @@ - mobilehotspot + Mobile Hotspot 移動熱點 - /mobilehotspot/mobilehotspot + /mobilehotspot/Mobile Hotspot - mobilehotspot open - 移動熱點 開啟 - /mobilehotspot/mobilehotspot open + Open mobile hotspot + 打開移動熱點 + /mobilehotspot/Open mobile hotspot + + + + Wi-Fi Name + 無線網絡名稱 + /mobilehotspot/Wi-Fi Name + + + + Network Password + 網絡密碼 + /mobilehotspot/Network Password + + + + Network Frequency band + 網絡頻帶 + /mobilehotspot/Network Frequency band + + + + Shared NIC port + 共用網卡埠 + /mobilehotspot/Shared NIC port + + + Password + 網絡密碼 + /mobilehotspot/Password + + + Frequency band + 網絡頻帶 + /mobilehotspot/Frequency band + + + Net card + 共享網卡埠 + /mobilehotspot/Net card + + + mobilehotspot + 移動熱點 @@ -64,7 +107,7 @@ UKUI 控制中心桌面消息 - + wirless switch is close or no wireless device 無線開關已關閉或不存在有熱點功能的無線網卡 @@ -73,7 +116,7 @@ 開始關閉熱點 - + hotpots name or device is invalid 熱點名稱或設備錯誤 @@ -86,69 +129,89 @@ 開始打開熱點 - + Contains at least 8 characters 至少包含8個字元 - + Hotspot 移動熱點 - + Settings - 設定 + 設置 - + Settings desktop message - 設定案頭消息 + 設置桌面通知 - + use 使用 - + share network, will interrupt local wireless connection 共亯網絡,將中斷本地無線連接 - - + + + + + hotspot already close 熱點已關閉 - - Open - 開啟 + + Open mobile hotspot + 打開移動熱點 - + + Network Password + 網絡密碼 + + + + Network Frequency band + 網絡頻帶 + + + + Shared NIC port + 共用網卡埠 + + + Open + 開啟 + + + Wi-Fi Name Wi-Fi 名稱 - Password - 網路密碼 + 密碼 - Frequency band - 網路頻帶 + 頻帶 - Net card - 共用網卡埠 + 網卡 - - + + + hotspot already open 熱點已開啟