mirror of
https://github.com/arcan1s/netctl-gui.git
synced 2025-04-24 15:37:23 +00:00
added translations
This commit is contained in:
parent
c66891ee60
commit
f258f18e8c
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -299,11 +299,7 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="lineEdit_ipRoutes">
|
||||
<property name="toolTip">
|
||||
<string>An array of custom routes</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLineEdit" name="lineEdit_ipRoutes"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
@ -359,7 +355,7 @@
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>An array of physical network interfaces that this profile needs before it can be started</string>
|
||||
<string>An array of custom routes</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -385,11 +381,7 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="lineEdit_ipRoutes6">
|
||||
<property name="toolTip">
|
||||
<string>An array of custom routes</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLineEdit" name="lineEdit_ipRoutes6"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
@ -445,7 +437,7 @@
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>An array of physical network interfaces that this profile needs before it can be started</string>
|
||||
<string>An array of custom routes</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -532,7 +524,7 @@
|
||||
<item>
|
||||
<widget class="QSpinBox" name="spinBox_timeoutDad">
|
||||
<property name="toolTip">
|
||||
<string>Set to ‘yes’ to release the DHCP lease when the profile is stopped</string>
|
||||
<string>Maximum time, in seconds, to wait for IPv6’s Duplicate Address Detection to succeed</string>
|
||||
</property>
|
||||
<property name="minimum">
|
||||
<number>1</number>
|
||||
|
@ -200,7 +200,8 @@ void MainWindow::updateMainTab()
|
||||
ui->tableWidget_main->setRowCount(profiles.count());
|
||||
|
||||
// create header
|
||||
ui->tableWidget_main->setHorizontalHeaderLabels(QString("Name Description Status").split(QString(" ")));
|
||||
ui->tableWidget_main->setHorizontalHeaderLabels(QApplication::translate("MainWindow", "Name Description Status")
|
||||
.split(QString(" ")));
|
||||
// create items
|
||||
for (int i=0; i<profiles.count(); i++) {
|
||||
// name
|
||||
@ -251,7 +252,8 @@ void MainWindow::updateWifiTab()
|
||||
ui->tableWidget_wifi->setRowCount(scanResults.count());
|
||||
|
||||
// create header
|
||||
ui->tableWidget_wifi->setHorizontalHeaderLabels(QString("Name Status Signal Security").split(QString(" ")));
|
||||
ui->tableWidget_wifi->setHorizontalHeaderLabels(QApplication::translate("MainWindow", "Name Status Signal Security")
|
||||
.split(QString(" ")));
|
||||
// create items
|
||||
for (int i=0; i<scanResults.count(); i++) {
|
||||
// name
|
||||
|
Loading…
Reference in New Issue
Block a user