mirror of
https://github.com/arcan1s/netctl-gui.git
synced 2025-04-25 07:57:20 +00:00
refactoring of dataengine and plasmoid
update plasmoid translations
This commit is contained in:
parent
cc250a643a
commit
ea91aa4ca4
@ -48,13 +48,8 @@ Netctl::~Netctl()
|
|||||||
{
|
{
|
||||||
// delete startProfileMenu;
|
// delete startProfileMenu;
|
||||||
// delete switchToProfileMenu;
|
// delete switchToProfileMenu;
|
||||||
// delete startProfile;
|
|
||||||
// delete stopProfile;
|
|
||||||
// delete restartProfile;
|
|
||||||
// delete enableProfile;
|
|
||||||
|
|
||||||
// delete iconWidget;
|
// delete iconWidget;
|
||||||
|
// delete textLabel;
|
||||||
// delete netctlEngine;
|
// delete netctlEngine;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,11 +198,13 @@ void Netctl::startProfileSlot(QAction *profile)
|
|||||||
QProcess command;
|
QProcess command;
|
||||||
QString commandLine;
|
QString commandLine;
|
||||||
commandLine = QString("");
|
commandLine = QString("");
|
||||||
sendNotification(QString("Info"), i18n("Start profile %1", profile->text().remove(QString("&"))));
|
sendNotification(QString("Info"), i18n("Start profile %1", profile->text().remove(QChar('&'))));
|
||||||
if (status) {
|
if (status) {
|
||||||
commandLine = paths[QString("netctl")] + QString(" stop ") + info[QString("name")];
|
|
||||||
if (useSudo)
|
if (useSudo)
|
||||||
commandLine = paths[QString("sudo")] + QString(" ") + commandLine;
|
commandLine = paths[QString("sudo")] + QString(" ") + paths[QString("netctl")] +
|
||||||
|
QString(" stop ") + info[QString("name")];
|
||||||
|
else
|
||||||
|
commandLine = paths[QString("netctl")] + QString(" stop ") + info[QString("name")];
|
||||||
command.start(commandLine);
|
command.start(commandLine);
|
||||||
command.waitForFinished(-1);
|
command.waitForFinished(-1);
|
||||||
if (command.exitCode() != 0)
|
if (command.exitCode() != 0)
|
||||||
@ -216,10 +213,10 @@ void Netctl::startProfileSlot(QAction *profile)
|
|||||||
if (ready) {
|
if (ready) {
|
||||||
if (useSudo)
|
if (useSudo)
|
||||||
commandLine = paths[QString("sudo")] + QString(" ") + paths[QString("netctl")] +
|
commandLine = paths[QString("sudo")] + QString(" ") + paths[QString("netctl")] +
|
||||||
QString(" start ") + profile->text().remove(QString("&"));
|
QString(" start ") + profile->text().remove(QChar('&'));
|
||||||
else
|
else
|
||||||
commandLine = paths[QString("netctl")] + QString(" start ") +
|
commandLine = paths[QString("netctl")] + QString(" start ") +
|
||||||
profile->text().remove(QString("&"));
|
profile->text().remove(QChar('&'));
|
||||||
command.startDetached(commandLine);
|
command.startDetached(commandLine);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -244,9 +241,9 @@ void Netctl::switchToProfileSlot(QAction *profile)
|
|||||||
QProcess command;
|
QProcess command;
|
||||||
QString commandLine;
|
QString commandLine;
|
||||||
commandLine = QString("");
|
commandLine = QString("");
|
||||||
sendNotification(QString("Info"), i18n("Switch to profile %1", profile->text().remove(QString("&"))));
|
sendNotification(QString("Info"), i18n("Switch to profile %1", profile->text().remove(QChar('&'))));
|
||||||
commandLine = paths[QString("netctl-auto")] + QString(" switch-to ") +
|
commandLine = paths[QString("netctl-auto")] + QString(" switch-to ") +
|
||||||
profile->text().remove(QString("&"));
|
profile->text().remove(QChar('&'));
|
||||||
command.startDetached(commandLine);
|
command.startDetached(commandLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -317,6 +314,7 @@ QList<QAction*> Netctl::contextualActions()
|
|||||||
startProfileMenu->addAction(profile);
|
startProfileMenu->addAction(profile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (useWifi)
|
if (useWifi)
|
||||||
contextMenu[QString("wifi")]->setVisible(true);
|
contextMenu[QString("wifi")]->setVisible(true);
|
||||||
else
|
else
|
||||||
@ -451,11 +449,11 @@ void Netctl::dataUpdated(const QString &sourceName, const Plasma::DataEngine::Da
|
|||||||
info[QString("interfaces")] = value;
|
info[QString("interfaces")] = value;
|
||||||
}
|
}
|
||||||
else if (sourceName == QString("profiles")) {
|
else if (sourceName == QString("profiles")) {
|
||||||
profileList = value.split(QString(","));
|
profileList = value.split(QChar(','));
|
||||||
}
|
}
|
||||||
else if (sourceName == QString("statusBool")) {
|
else if (sourceName == QString("statusBool")) {
|
||||||
if (value == QString("true")) {
|
if (value == QString("true")) {
|
||||||
if (! status)
|
if (!status)
|
||||||
sendNotification(QString("Info"), i18n("Network is up"));
|
sendNotification(QString("Info"), i18n("Network is up"));
|
||||||
status = true;
|
status = true;
|
||||||
iconWidget->setIcon(paths[QString("active")]);
|
iconWidget->setIcon(paths[QString("active")]);
|
||||||
@ -806,6 +804,19 @@ void Netctl::setBigInterface()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void Netctl::setDataEngineExternalIp()
|
||||||
|
{
|
||||||
|
if (uiDEConfig.checkBox_extIp->checkState() == 0) {
|
||||||
|
uiDEConfig.lineEdit_extIp->setDisabled(true);
|
||||||
|
uiDEConfig.pushButton_extIp->setDisabled(true);
|
||||||
|
}
|
||||||
|
else if (uiDEConfig.checkBox_extIp->checkState() == 2) {
|
||||||
|
uiDEConfig.lineEdit_extIp->setEnabled(true);
|
||||||
|
uiDEConfig.pushButton_extIp->setEnabled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Netctl::setSudo()
|
void Netctl::setSudo()
|
||||||
{
|
{
|
||||||
if (uiWidConfig.checkBox_sudo->checkState() == 0) {
|
if (uiWidConfig.checkBox_sudo->checkState() == 0) {
|
||||||
@ -832,17 +843,4 @@ void Netctl::setWifi()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Netctl::setDataEngineExternalIp()
|
|
||||||
{
|
|
||||||
if (uiDEConfig.checkBox_extIp->checkState() == 0) {
|
|
||||||
uiDEConfig.lineEdit_extIp->setDisabled(true);
|
|
||||||
uiDEConfig.pushButton_extIp->setDisabled(true);
|
|
||||||
}
|
|
||||||
else if (uiDEConfig.checkBox_extIp->checkState() == 2) {
|
|
||||||
uiDEConfig.lineEdit_extIp->setEnabled(true);
|
|
||||||
uiDEConfig.pushButton_extIp->setEnabled(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#include "netctl.moc"
|
#include "netctl.moc"
|
||||||
|
@ -55,9 +55,9 @@ public slots:
|
|||||||
void configAccepted();
|
void configAccepted();
|
||||||
void configChanged();
|
void configChanged();
|
||||||
void setBigInterface();
|
void setBigInterface();
|
||||||
|
void setDataEngineExternalIp();
|
||||||
void setSudo();
|
void setSudo();
|
||||||
void setWifi();
|
void setWifi();
|
||||||
void setDataEngineExternalIp();
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
// ui
|
// ui
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
WDIR=`pwd` # working dir
|
|
||||||
SATELLITE_LIST=satellite.list
|
|
||||||
BACKGROUND_LIST=background.list
|
|
||||||
|
|
||||||
# Background list
|
|
||||||
cd "$WDIR"
|
|
||||||
cd ../images
|
|
||||||
ls -1 background_* | sed -e "s/background_//g" | sed -e "s/_/ /g" | sed -e "s/\.jpg//g" | sed -e "s/\.png//g" | sed -e "s/\.gif//g" | grep -v '^$' | sort --unique --ignore-leading-blanks > "$WDIR/background.list"
|
|
||||||
|
|
||||||
# Satellite list
|
|
||||||
cd "$WDIR"
|
|
||||||
cd ../data
|
|
||||||
cat satellite_images.xml | grep image\ name | sed -e "s/.*<image name=\"\([^\"]*\).*/\1/" | sed -e "s/\&/\&/g" | sed -e "s/\'/'/g" | sed -e "s/\"/\"/g" | sed -e "s/\</</g" | sed -e "s/\>/>/g" | grep -v '^$' | sort --unique --ignore-leading-blanks > "$WDIR/satellite.list"
|
|
@ -6,8 +6,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=98925\n"
|
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=98925\n"
|
||||||
"POT-Creation-Date: 2014-04-12 18:56+0400\n"
|
"POT-Creation-Date: 2014-07-12 22:58+0400\n"
|
||||||
"PO-Revision-Date: 2014-04-12 18:56+0400\n"
|
"PO-Revision-Date: 2014-07-12 22:58+0400\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -18,272 +18,341 @@ msgstr ""
|
|||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 1.5\n"
|
||||||
|
|
||||||
#: netctl.cpp:112
|
#: netctl.cpp:180
|
||||||
msgid "Set profile %1 disabled"
|
msgid "Set profile %1 disabled"
|
||||||
msgstr "Set profile %1 disabled"
|
msgstr "Set profile %1 disabled"
|
||||||
|
|
||||||
#: netctl.cpp:116
|
#: netctl.cpp:184
|
||||||
msgid "Set profile %1 enabled"
|
msgid "Set profile %1 enabled"
|
||||||
msgstr "Set profile %1 enabled"
|
msgstr "Set profile %1 enabled"
|
||||||
|
|
||||||
#: netctl.cpp:132
|
#: netctl.cpp:201
|
||||||
msgid "Start profile %1"
|
msgid "Start profile %1"
|
||||||
msgstr "Start profile %1"
|
msgstr "Start profile %1"
|
||||||
|
|
||||||
#: netctl.cpp:151
|
#: netctl.cpp:229
|
||||||
msgid "Stop profile %1"
|
msgid "Stop profile %1"
|
||||||
msgstr "Stop profile %1"
|
msgstr "Stop profile %1"
|
||||||
|
|
||||||
#: netctl.cpp:165
|
#: netctl.cpp:244
|
||||||
|
msgid "Switch to profile %1"
|
||||||
|
msgstr "Switch to profile %1"
|
||||||
|
|
||||||
|
#: netctl.cpp:255
|
||||||
msgid "Restart profile %1"
|
msgid "Restart profile %1"
|
||||||
msgstr "Restart profile %1"
|
msgstr "Restart profile %1"
|
||||||
|
|
||||||
#: netctl.cpp:178
|
#: netctl.cpp:294
|
||||||
msgid "Start another profile"
|
msgid "Start another profile"
|
||||||
msgstr "Start another profile"
|
msgstr "Start another profile"
|
||||||
|
|
||||||
#: netctl.cpp:180
|
#: netctl.cpp:296
|
||||||
msgid "Stop "
|
msgid "Stop %1"
|
||||||
msgstr "Stop "
|
msgstr "Stop %1"
|
||||||
|
|
||||||
#: netctl.cpp:182
|
#: netctl.cpp:298
|
||||||
msgid "Restart "
|
msgid "Restart %1"
|
||||||
msgstr "Restart "
|
msgstr "Restart %1"
|
||||||
|
|
||||||
#: netctl.cpp:185
|
#: netctl.cpp:301
|
||||||
msgid "Disable "
|
msgid "Disable %1"
|
||||||
msgstr "Disable "
|
msgstr "Disable %1"
|
||||||
|
|
||||||
#: netctl.cpp:187
|
#: netctl.cpp:303
|
||||||
msgid "Enable "
|
msgid "Enable %1"
|
||||||
msgstr "Enable "
|
msgstr "Enable %1"
|
||||||
|
|
||||||
#: netctl.cpp:190 netctl.cpp:214
|
#: netctl.cpp:306 netctl.cpp:334
|
||||||
msgid "Start profile"
|
msgid "Start profile"
|
||||||
msgstr "Start profile"
|
msgstr "Start profile"
|
||||||
|
|
||||||
#: netctl.cpp:221
|
#: netctl.cpp:342
|
||||||
msgid "Stop profile"
|
msgid "Stop profile"
|
||||||
msgstr "Stop profile"
|
msgstr "Stop profile"
|
||||||
|
|
||||||
#: netctl.cpp:225
|
#: netctl.cpp:347
|
||||||
|
msgid "Switch to profile"
|
||||||
|
msgstr "Switch to profile"
|
||||||
|
|
||||||
|
#: netctl.cpp:355
|
||||||
msgid "Restart profile"
|
msgid "Restart profile"
|
||||||
msgstr "Restart profile"
|
msgstr "Restart profile"
|
||||||
|
|
||||||
#: netctl.cpp:229
|
#: netctl.cpp:360
|
||||||
msgid "Enable profile"
|
msgid "Enable profile"
|
||||||
msgstr "Enable profile"
|
msgstr "Enable profile"
|
||||||
|
|
||||||
#: netctl.cpp:233
|
#: netctl.cpp:364
|
||||||
msgid "Show WiFi menu"
|
msgid "Show WiFi menu"
|
||||||
msgstr "Show WiFi menu"
|
msgstr "Show WiFi menu"
|
||||||
|
|
||||||
#: netctl.cpp:253
|
#: netctl.cpp:385
|
||||||
msgid "Start GUI"
|
msgid "Start GUI"
|
||||||
msgstr "Start GUI"
|
msgstr "Start GUI"
|
||||||
|
|
||||||
#: netctl.cpp:261
|
#: netctl.cpp:393
|
||||||
msgid "Start WiFi menu"
|
msgid "Start WiFi menu"
|
||||||
msgstr "Start WiFi menu"
|
msgstr "Start WiFi menu"
|
||||||
|
|
||||||
#: netctl.cpp:325
|
#: netctl.cpp:457
|
||||||
msgid "Network is up"
|
msgid "Network is up"
|
||||||
msgstr "Network is up"
|
msgstr "Network is up"
|
||||||
|
|
||||||
#: netctl.cpp:331
|
#: netctl.cpp:463
|
||||||
msgid "Network is down"
|
msgid "Network is down"
|
||||||
msgstr "Network is down"
|
msgstr "Network is down"
|
||||||
|
|
||||||
#: netctl.cpp:468
|
#: netctl.cpp:668
|
||||||
msgid "Netctl plasmoid"
|
msgid "Netctl plasmoid"
|
||||||
msgstr "Netctl plasmoid"
|
msgstr "Netctl plasmoid"
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:30
|
#: netctl.cpp:669
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tabConfiguration)
|
|
||||||
#: po/rc.cpp:3 rc.cpp:3
|
|
||||||
msgid "Configuration"
|
|
||||||
msgstr "Configuration"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:54
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
|
||||||
#: po/rc.cpp:6 rc.cpp:6
|
|
||||||
msgid "Auto update interval, msec"
|
|
||||||
msgstr "Auto update interval, msec"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:112
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
|
||||||
#: po/rc.cpp:9 rc.cpp:9
|
|
||||||
msgid "Path to GUI"
|
|
||||||
msgstr "Path to GUI"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:128
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
|
||||||
#. i18n: file: configwindow.ui:161
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
|
||||||
#. i18n: file: configwindow.ui:197
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
|
||||||
#. i18n: file: configwindow.ui:233
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
|
||||||
#. i18n: file: configwindow.ui:621
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
|
||||||
#. i18n: file: configwindow.ui:654
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
|
||||||
#. i18n: file: configwindow.ui:128
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
|
||||||
#. i18n: file: configwindow.ui:161
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
|
||||||
#. i18n: file: configwindow.ui:197
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
|
||||||
#. i18n: file: configwindow.ui:233
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
|
||||||
#. i18n: file: configwindow.ui:621
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
|
||||||
#. i18n: file: configwindow.ui:654
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
|
||||||
#: po/rc.cpp:12 po/rc.cpp:18 po/rc.cpp:24 po/rc.cpp:30 po/rc.cpp:87
|
|
||||||
#: po/rc.cpp:93 rc.cpp:12 rc.cpp:18 rc.cpp:24 rc.cpp:30 rc.cpp:87 rc.cpp:93
|
|
||||||
msgid "Browse"
|
|
||||||
msgstr "Browse"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:145
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
|
||||||
#: po/rc.cpp:15 rc.cpp:15
|
|
||||||
msgid "Path to netctl"
|
|
||||||
msgstr "Path to netctl"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:178
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
|
||||||
#: po/rc.cpp:21 rc.cpp:21
|
|
||||||
msgid "Use sudo for netctl"
|
|
||||||
msgstr "Use sudo for netctl"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:214
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
|
||||||
#: po/rc.cpp:27 rc.cpp:27
|
|
||||||
msgid "Show 'Start WiFi menu'"
|
|
||||||
msgstr "Show 'Start WiFi menu'"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:242
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
|
||||||
#: po/rc.cpp:33 rc.cpp:33
|
|
||||||
msgid "Show more detailed interface"
|
|
||||||
msgstr "Show more detailed interface"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:252
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showNetDev)
|
|
||||||
#: po/rc.cpp:36 rc.cpp:36
|
|
||||||
msgid "Show network devices"
|
|
||||||
msgstr "Show network devices"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:262
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showExtIp)
|
|
||||||
#: po/rc.cpp:39 rc.cpp:39
|
|
||||||
msgid "Show external IP"
|
|
||||||
msgstr "Show external IP"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:272
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showIntIp)
|
|
||||||
#: po/rc.cpp:42 rc.cpp:42
|
|
||||||
msgid "Show internal IP"
|
|
||||||
msgstr "Show internal IP"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:296
|
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tabAppearance)
|
|
||||||
#: po/rc.cpp:45 rc.cpp:45
|
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Appearance"
|
msgstr "Appearance"
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:310
|
#: netctl.cpp:670
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
msgid "DataEngine"
|
||||||
#: po/rc.cpp:48 rc.cpp:48
|
msgstr "DataEngine"
|
||||||
msgid "Font"
|
|
||||||
msgstr "Font"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:342
|
#. i18n: file: appearance.ui:47
|
||||||
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
|
||||||
#: po/rc.cpp:51 rc.cpp:51
|
|
||||||
msgid "Set font family"
|
|
||||||
msgstr "Set font family"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:359
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
|
||||||
#: po/rc.cpp:54 rc.cpp:54
|
|
||||||
msgid "Font size"
|
|
||||||
msgstr "Font size"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:391
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
|
||||||
#: po/rc.cpp:57 rc.cpp:57
|
|
||||||
msgid "Set font size"
|
|
||||||
msgstr "Set font size"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:420
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
|
||||||
#: po/rc.cpp:60 rc.cpp:60
|
|
||||||
msgid "Font color"
|
|
||||||
msgstr "Font color"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:452
|
|
||||||
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
|
||||||
#: po/rc.cpp:63 rc.cpp:63
|
|
||||||
msgid "Set font color"
|
|
||||||
msgstr "Set font color"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:469
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
|
||||||
#: po/rc.cpp:66 rc.cpp:66
|
|
||||||
msgid "Font weight"
|
|
||||||
msgstr "Font weight"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:501
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
|
||||||
#: po/rc.cpp:69 rc.cpp:69
|
|
||||||
msgid "Set font weight"
|
|
||||||
msgstr "Set font weight"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:533
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
|
||||||
#: po/rc.cpp:72 rc.cpp:72
|
|
||||||
msgid "Font style"
|
|
||||||
msgstr "Font style"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:565
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:75 rc.cpp:75
|
|
||||||
msgid "Set font style"
|
|
||||||
msgstr "Set font style"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:569
|
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:78 rc.cpp:78
|
|
||||||
msgid "normal"
|
|
||||||
msgstr "normal"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:574
|
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:81 rc.cpp:81
|
|
||||||
msgid "italic"
|
|
||||||
msgstr "italic"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:605
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
|
||||||
#: po/rc.cpp:84 rc.cpp:84
|
|
||||||
msgid "Active icon"
|
|
||||||
msgstr "Active icon"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:638
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
||||||
#: po/rc.cpp:90 rc.cpp:90
|
#: po/rc.cpp:3 rc.cpp:3
|
||||||
msgid "Inactive icon"
|
msgid "Inactive icon"
|
||||||
msgstr "Inactive icon"
|
msgstr "Inactive icon"
|
||||||
|
|
||||||
#: po/rc.cpp:94 rc.cpp:94
|
#. i18n: file: appearance.ui:63
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#. i18n: file: appearance.ui:391
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: dataengine.ui:50
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:83
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:116
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_ip)
|
||||||
|
#. i18n: file: dataengine.ui:149
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_interface)
|
||||||
|
#. i18n: file: dataengine.ui:185
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp)
|
||||||
|
#. i18n: file: widget.ui:118
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: widget.ui:151
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: widget.ui:184
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:220
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: widget.ui:256
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#. i18n: file: appearance.ui:63
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#. i18n: file: appearance.ui:391
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: dataengine.ui:50
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:83
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:116
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_ip)
|
||||||
|
#. i18n: file: dataengine.ui:149
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_interface)
|
||||||
|
#. i18n: file: dataengine.ui:185
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp)
|
||||||
|
#. i18n: file: widget.ui:118
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: widget.ui:151
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: widget.ui:184
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:220
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: widget.ui:256
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#: po/rc.cpp:6 po/rc.cpp:48 po/rc.cpp:54 po/rc.cpp:60 po/rc.cpp:66
|
||||||
|
#: po/rc.cpp:72 po/rc.cpp:78 po/rc.cpp:87 po/rc.cpp:93 po/rc.cpp:99
|
||||||
|
#: po/rc.cpp:105 po/rc.cpp:111 rc.cpp:6 rc.cpp:48 rc.cpp:54 rc.cpp:60
|
||||||
|
#: rc.cpp:66 rc.cpp:72 rc.cpp:78 rc.cpp:87 rc.cpp:93 rc.cpp:99 rc.cpp:105
|
||||||
|
#: rc.cpp:111
|
||||||
|
msgid "Browse"
|
||||||
|
msgstr "Browse"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:80
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
||||||
|
#: po/rc.cpp:9 rc.cpp:9
|
||||||
|
msgid "Font color"
|
||||||
|
msgstr "Font color"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:112
|
||||||
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
|
#: po/rc.cpp:12 rc.cpp:12
|
||||||
|
msgid "Set font color"
|
||||||
|
msgstr "Set font color"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:142
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
|
#: po/rc.cpp:15 rc.cpp:15
|
||||||
|
msgid "Font size"
|
||||||
|
msgstr "Font size"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:174
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
|
#: po/rc.cpp:18 rc.cpp:18
|
||||||
|
msgid "Set font size"
|
||||||
|
msgstr "Set font size"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:203
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
||||||
|
#: po/rc.cpp:21 rc.cpp:21
|
||||||
|
msgid "Font weight"
|
||||||
|
msgstr "Font weight"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:235
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
|
#: po/rc.cpp:24 rc.cpp:24
|
||||||
|
msgid "Set font weight"
|
||||||
|
msgstr "Set font weight"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:267
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
||||||
|
#: po/rc.cpp:27 rc.cpp:27
|
||||||
|
msgid "Font style"
|
||||||
|
msgstr "Font style"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:299
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:30 rc.cpp:30
|
||||||
|
msgid "Set font style"
|
||||||
|
msgstr "Set font style"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:303
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:33 rc.cpp:33
|
||||||
|
msgid "normal"
|
||||||
|
msgstr "normal"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:308
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:36 rc.cpp:36
|
||||||
|
msgid "italic"
|
||||||
|
msgstr "italic"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:326
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
|
#: po/rc.cpp:39 rc.cpp:39
|
||||||
|
msgid "Font"
|
||||||
|
msgstr "Font"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:358
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
|
#: po/rc.cpp:42 rc.cpp:42
|
||||||
|
msgid "Set font family"
|
||||||
|
msgstr "Set font family"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:375
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
||||||
|
#: po/rc.cpp:45 rc.cpp:45
|
||||||
|
msgid "Active icon"
|
||||||
|
msgstr "Active icon"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:34
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: widget.ui:135
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:34
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: widget.ui:135
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#: po/rc.cpp:51 po/rc.cpp:90 rc.cpp:51 rc.cpp:90
|
||||||
|
msgid "Path to netctl"
|
||||||
|
msgstr "Path to netctl"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:67
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:168
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:67
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:168
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#: po/rc.cpp:57 po/rc.cpp:96 rc.cpp:57 rc.cpp:96
|
||||||
|
msgid "Path to netctl-auto"
|
||||||
|
msgstr "Path to netctl-auto"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:100
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_ip)
|
||||||
|
#: po/rc.cpp:63 rc.cpp:63
|
||||||
|
msgid "Path to ip"
|
||||||
|
msgstr "Path to ip"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:133
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_interface)
|
||||||
|
#: po/rc.cpp:69 rc.cpp:69
|
||||||
|
msgid "Path to interface list"
|
||||||
|
msgstr "Path to interface list"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:166
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp)
|
||||||
|
#: po/rc.cpp:75 rc.cpp:75
|
||||||
|
msgid "Check external IP"
|
||||||
|
msgstr "Check external IP"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:44
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
||||||
|
#: po/rc.cpp:81 rc.cpp:81
|
||||||
|
msgid "Auto update interval, msec"
|
||||||
|
msgstr "Auto update interval, msec"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:102
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
||||||
|
#: po/rc.cpp:84 rc.cpp:84
|
||||||
|
msgid "Path to GUI"
|
||||||
|
msgstr "Path to GUI"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:201
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
||||||
|
#: po/rc.cpp:102 rc.cpp:102
|
||||||
|
msgid "Use sudo for netctl"
|
||||||
|
msgstr "Use sudo for netctl"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:237
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
||||||
|
#: po/rc.cpp:108 rc.cpp:108
|
||||||
|
msgid "Show 'Start WiFi menu'"
|
||||||
|
msgstr "Show 'Start WiFi menu'"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:265
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
||||||
|
#: po/rc.cpp:114 rc.cpp:114
|
||||||
|
msgid "Show more detailed interface"
|
||||||
|
msgstr "Show more detailed interface"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:275
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showNetDev)
|
||||||
|
#: po/rc.cpp:117 rc.cpp:117
|
||||||
|
msgid "Show network devices"
|
||||||
|
msgstr "Show network devices"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:285
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showExtIp)
|
||||||
|
#: po/rc.cpp:120 rc.cpp:120
|
||||||
|
msgid "Show external IP"
|
||||||
|
msgstr "Show external IP"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:295
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showIntIp)
|
||||||
|
#: po/rc.cpp:123 rc.cpp:123
|
||||||
|
msgid "Show internal IP"
|
||||||
|
msgstr "Show internal IP"
|
||||||
|
|
||||||
|
#: po/rc.cpp:124 rc.cpp:124
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: po/rc.cpp:95 rc.cpp:95
|
#: po/rc.cpp:125 rc.cpp:125
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
|
|
||||||
|
#~ msgid "Configuration"
|
||||||
|
#~ msgstr "Configuration"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=98925\n"
|
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=98925\n"
|
||||||
"POT-Creation-Date: 2014-04-12 18:56+0400\n"
|
"POT-Creation-Date: 2014-07-12 22:58+0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -17,271 +17,338 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: netctl.cpp:112
|
#: netctl.cpp:180
|
||||||
msgid "Set profile %1 disabled"
|
msgid "Set profile %1 disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:116
|
#: netctl.cpp:184
|
||||||
msgid "Set profile %1 enabled"
|
msgid "Set profile %1 enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:132
|
#: netctl.cpp:201
|
||||||
msgid "Start profile %1"
|
msgid "Start profile %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:151
|
#: netctl.cpp:229
|
||||||
msgid "Stop profile %1"
|
msgid "Stop profile %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:165
|
#: netctl.cpp:244
|
||||||
|
msgid "Switch to profile %1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: netctl.cpp:255
|
||||||
msgid "Restart profile %1"
|
msgid "Restart profile %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:178
|
#: netctl.cpp:294
|
||||||
msgid "Start another profile"
|
msgid "Start another profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:180
|
#: netctl.cpp:296
|
||||||
msgid "Stop "
|
msgid "Stop %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:182
|
#: netctl.cpp:298
|
||||||
msgid "Restart "
|
msgid "Restart %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:185
|
#: netctl.cpp:301
|
||||||
msgid "Disable "
|
msgid "Disable %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:187
|
#: netctl.cpp:303
|
||||||
msgid "Enable "
|
msgid "Enable %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:190 netctl.cpp:214
|
#: netctl.cpp:306 netctl.cpp:334
|
||||||
msgid "Start profile"
|
msgid "Start profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:221
|
#: netctl.cpp:342
|
||||||
msgid "Stop profile"
|
msgid "Stop profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:225
|
#: netctl.cpp:347
|
||||||
|
msgid "Switch to profile"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: netctl.cpp:355
|
||||||
msgid "Restart profile"
|
msgid "Restart profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:229
|
#: netctl.cpp:360
|
||||||
msgid "Enable profile"
|
msgid "Enable profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:233
|
#: netctl.cpp:364
|
||||||
msgid "Show WiFi menu"
|
msgid "Show WiFi menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:253
|
#: netctl.cpp:385
|
||||||
msgid "Start GUI"
|
msgid "Start GUI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:261
|
#: netctl.cpp:393
|
||||||
msgid "Start WiFi menu"
|
msgid "Start WiFi menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:325
|
#: netctl.cpp:457
|
||||||
msgid "Network is up"
|
msgid "Network is up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:331
|
#: netctl.cpp:463
|
||||||
msgid "Network is down"
|
msgid "Network is down"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: netctl.cpp:468
|
#: netctl.cpp:668
|
||||||
msgid "Netctl plasmoid"
|
msgid "Netctl plasmoid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:30
|
#: netctl.cpp:669
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tabConfiguration)
|
|
||||||
#: po/rc.cpp:3 rc.cpp:3
|
|
||||||
msgid "Configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:54
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
|
||||||
#: po/rc.cpp:6 rc.cpp:6
|
|
||||||
msgid "Auto update interval, msec"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:112
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
|
||||||
#: po/rc.cpp:9 rc.cpp:9
|
|
||||||
msgid "Path to GUI"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:128
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
|
||||||
#. i18n: file: configwindow.ui:161
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
|
||||||
#. i18n: file: configwindow.ui:197
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
|
||||||
#. i18n: file: configwindow.ui:233
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
|
||||||
#. i18n: file: configwindow.ui:621
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
|
||||||
#. i18n: file: configwindow.ui:654
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
|
||||||
#. i18n: file: configwindow.ui:128
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
|
||||||
#. i18n: file: configwindow.ui:161
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
|
||||||
#. i18n: file: configwindow.ui:197
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
|
||||||
#. i18n: file: configwindow.ui:233
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
|
||||||
#. i18n: file: configwindow.ui:621
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
|
||||||
#. i18n: file: configwindow.ui:654
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
|
||||||
#: po/rc.cpp:12 po/rc.cpp:18 po/rc.cpp:24 po/rc.cpp:30 po/rc.cpp:87
|
|
||||||
#: po/rc.cpp:93 rc.cpp:12 rc.cpp:18 rc.cpp:24 rc.cpp:30 rc.cpp:87 rc.cpp:93
|
|
||||||
msgid "Browse"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:145
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
|
||||||
#: po/rc.cpp:15 rc.cpp:15
|
|
||||||
msgid "Path to netctl"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:178
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
|
||||||
#: po/rc.cpp:21 rc.cpp:21
|
|
||||||
msgid "Use sudo for netctl"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:214
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
|
||||||
#: po/rc.cpp:27 rc.cpp:27
|
|
||||||
msgid "Show 'Start WiFi menu'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:242
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
|
||||||
#: po/rc.cpp:33 rc.cpp:33
|
|
||||||
msgid "Show more detailed interface"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:252
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showNetDev)
|
|
||||||
#: po/rc.cpp:36 rc.cpp:36
|
|
||||||
msgid "Show network devices"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:262
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showExtIp)
|
|
||||||
#: po/rc.cpp:39 rc.cpp:39
|
|
||||||
msgid "Show external IP"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:272
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showIntIp)
|
|
||||||
#: po/rc.cpp:42 rc.cpp:42
|
|
||||||
msgid "Show internal IP"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:296
|
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tabAppearance)
|
|
||||||
#: po/rc.cpp:45 rc.cpp:45
|
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:310
|
#: netctl.cpp:670
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
msgid "DataEngine"
|
||||||
#: po/rc.cpp:48 rc.cpp:48
|
|
||||||
msgid "Font"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:342
|
#. i18n: file: appearance.ui:47
|
||||||
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
|
||||||
#: po/rc.cpp:51 rc.cpp:51
|
|
||||||
msgid "Set font family"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:359
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
|
||||||
#: po/rc.cpp:54 rc.cpp:54
|
|
||||||
msgid "Font size"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:391
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
|
||||||
#: po/rc.cpp:57 rc.cpp:57
|
|
||||||
msgid "Set font size"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:420
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
|
||||||
#: po/rc.cpp:60 rc.cpp:60
|
|
||||||
msgid "Font color"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:452
|
|
||||||
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
|
||||||
#: po/rc.cpp:63 rc.cpp:63
|
|
||||||
msgid "Set font color"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:469
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
|
||||||
#: po/rc.cpp:66 rc.cpp:66
|
|
||||||
msgid "Font weight"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:501
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
|
||||||
#: po/rc.cpp:69 rc.cpp:69
|
|
||||||
msgid "Set font weight"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:533
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
|
||||||
#: po/rc.cpp:72 rc.cpp:72
|
|
||||||
msgid "Font style"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:565
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:75 rc.cpp:75
|
|
||||||
msgid "Set font style"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:569
|
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:78 rc.cpp:78
|
|
||||||
msgid "normal"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:574
|
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:81 rc.cpp:81
|
|
||||||
msgid "italic"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:605
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
|
||||||
#: po/rc.cpp:84 rc.cpp:84
|
|
||||||
msgid "Active icon"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:638
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
||||||
#: po/rc.cpp:90 rc.cpp:90
|
#: po/rc.cpp:3 rc.cpp:3
|
||||||
msgid "Inactive icon"
|
msgid "Inactive icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: po/rc.cpp:94 rc.cpp:94
|
#. i18n: file: appearance.ui:63
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#. i18n: file: appearance.ui:391
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: dataengine.ui:50
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:83
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:116
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_ip)
|
||||||
|
#. i18n: file: dataengine.ui:149
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_interface)
|
||||||
|
#. i18n: file: dataengine.ui:185
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp)
|
||||||
|
#. i18n: file: widget.ui:118
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: widget.ui:151
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: widget.ui:184
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:220
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: widget.ui:256
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#. i18n: file: appearance.ui:63
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#. i18n: file: appearance.ui:391
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: dataengine.ui:50
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:83
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:116
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_ip)
|
||||||
|
#. i18n: file: dataengine.ui:149
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_interface)
|
||||||
|
#. i18n: file: dataengine.ui:185
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp)
|
||||||
|
#. i18n: file: widget.ui:118
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: widget.ui:151
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: widget.ui:184
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:220
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: widget.ui:256
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#: po/rc.cpp:6 po/rc.cpp:48 po/rc.cpp:54 po/rc.cpp:60 po/rc.cpp:66
|
||||||
|
#: po/rc.cpp:72 po/rc.cpp:78 po/rc.cpp:87 po/rc.cpp:93 po/rc.cpp:99
|
||||||
|
#: po/rc.cpp:105 po/rc.cpp:111 rc.cpp:6 rc.cpp:48 rc.cpp:54 rc.cpp:60
|
||||||
|
#: rc.cpp:66 rc.cpp:72 rc.cpp:78 rc.cpp:87 rc.cpp:93 rc.cpp:99 rc.cpp:105
|
||||||
|
#: rc.cpp:111
|
||||||
|
msgid "Browse"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:80
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
||||||
|
#: po/rc.cpp:9 rc.cpp:9
|
||||||
|
msgid "Font color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:112
|
||||||
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
|
#: po/rc.cpp:12 rc.cpp:12
|
||||||
|
msgid "Set font color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:142
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
|
#: po/rc.cpp:15 rc.cpp:15
|
||||||
|
msgid "Font size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:174
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
|
#: po/rc.cpp:18 rc.cpp:18
|
||||||
|
msgid "Set font size"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:203
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
||||||
|
#: po/rc.cpp:21 rc.cpp:21
|
||||||
|
msgid "Font weight"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:235
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
|
#: po/rc.cpp:24 rc.cpp:24
|
||||||
|
msgid "Set font weight"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:267
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
||||||
|
#: po/rc.cpp:27 rc.cpp:27
|
||||||
|
msgid "Font style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:299
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:30 rc.cpp:30
|
||||||
|
msgid "Set font style"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:303
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:33 rc.cpp:33
|
||||||
|
msgid "normal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:308
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:36 rc.cpp:36
|
||||||
|
msgid "italic"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:326
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
|
#: po/rc.cpp:39 rc.cpp:39
|
||||||
|
msgid "Font"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:358
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
|
#: po/rc.cpp:42 rc.cpp:42
|
||||||
|
msgid "Set font family"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:375
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
||||||
|
#: po/rc.cpp:45 rc.cpp:45
|
||||||
|
msgid "Active icon"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:34
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: widget.ui:135
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:34
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: widget.ui:135
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#: po/rc.cpp:51 po/rc.cpp:90 rc.cpp:51 rc.cpp:90
|
||||||
|
msgid "Path to netctl"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:67
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:168
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:67
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:168
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#: po/rc.cpp:57 po/rc.cpp:96 rc.cpp:57 rc.cpp:96
|
||||||
|
msgid "Path to netctl-auto"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:100
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_ip)
|
||||||
|
#: po/rc.cpp:63 rc.cpp:63
|
||||||
|
msgid "Path to ip"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:133
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_interface)
|
||||||
|
#: po/rc.cpp:69 rc.cpp:69
|
||||||
|
msgid "Path to interface list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:166
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp)
|
||||||
|
#: po/rc.cpp:75 rc.cpp:75
|
||||||
|
msgid "Check external IP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:44
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
||||||
|
#: po/rc.cpp:81 rc.cpp:81
|
||||||
|
msgid "Auto update interval, msec"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:102
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
||||||
|
#: po/rc.cpp:84 rc.cpp:84
|
||||||
|
msgid "Path to GUI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:201
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
||||||
|
#: po/rc.cpp:102 rc.cpp:102
|
||||||
|
msgid "Use sudo for netctl"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:237
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
||||||
|
#: po/rc.cpp:108 rc.cpp:108
|
||||||
|
msgid "Show 'Start WiFi menu'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:265
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
||||||
|
#: po/rc.cpp:114 rc.cpp:114
|
||||||
|
msgid "Show more detailed interface"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:275
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showNetDev)
|
||||||
|
#: po/rc.cpp:117 rc.cpp:117
|
||||||
|
msgid "Show network devices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:285
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showExtIp)
|
||||||
|
#: po/rc.cpp:120 rc.cpp:120
|
||||||
|
msgid "Show external IP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:295
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showIntIp)
|
||||||
|
#: po/rc.cpp:123 rc.cpp:123
|
||||||
|
msgid "Show internal IP"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: po/rc.cpp:124 rc.cpp:124
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: po/rc.cpp:95 rc.cpp:95
|
#: po/rc.cpp:125 rc.cpp:125
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6,8 +6,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=98925\n"
|
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=98925\n"
|
||||||
"POT-Creation-Date: 2014-04-12 18:56+0400\n"
|
"POT-Creation-Date: 2014-07-12 22:58+0400\n"
|
||||||
"PO-Revision-Date: 2014-04-12 18:58+0400\n"
|
"PO-Revision-Date: 2014-07-12 23:00+0400\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -18,272 +18,341 @@ msgstr ""
|
|||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 1.5\n"
|
||||||
|
|
||||||
#: netctl.cpp:112
|
#: netctl.cpp:180
|
||||||
msgid "Set profile %1 disabled"
|
msgid "Set profile %1 disabled"
|
||||||
msgstr "Выключение автозагрузки профиля %1"
|
msgstr "Выключение автозагрузки профиля %1"
|
||||||
|
|
||||||
#: netctl.cpp:116
|
#: netctl.cpp:184
|
||||||
msgid "Set profile %1 enabled"
|
msgid "Set profile %1 enabled"
|
||||||
msgstr "Включение автозагрузки профиля %1"
|
msgstr "Включение автозагрузки профиля %1"
|
||||||
|
|
||||||
#: netctl.cpp:132
|
#: netctl.cpp:201
|
||||||
msgid "Start profile %1"
|
msgid "Start profile %1"
|
||||||
msgstr "Запуск профиля %1"
|
msgstr "Запуск профиля %1"
|
||||||
|
|
||||||
#: netctl.cpp:151
|
#: netctl.cpp:229
|
||||||
msgid "Stop profile %1"
|
msgid "Stop profile %1"
|
||||||
msgstr "Остановка профиля %1"
|
msgstr "Остановка профиля %1"
|
||||||
|
|
||||||
#: netctl.cpp:165
|
#: netctl.cpp:244
|
||||||
|
msgid "Switch to profile %1"
|
||||||
|
msgstr "Переключиться на профиль %1"
|
||||||
|
|
||||||
|
#: netctl.cpp:255
|
||||||
msgid "Restart profile %1"
|
msgid "Restart profile %1"
|
||||||
msgstr "Перезапуск профиля %1"
|
msgstr "Перезапуск профиля %1"
|
||||||
|
|
||||||
#: netctl.cpp:178
|
#: netctl.cpp:294
|
||||||
msgid "Start another profile"
|
msgid "Start another profile"
|
||||||
msgstr "Запустить другой профиль"
|
msgstr "Запустить другой профиль"
|
||||||
|
|
||||||
#: netctl.cpp:180
|
#: netctl.cpp:296
|
||||||
msgid "Stop "
|
msgid "Stop %1"
|
||||||
msgstr "Остановить "
|
msgstr "Остановить %1"
|
||||||
|
|
||||||
#: netctl.cpp:182
|
#: netctl.cpp:298
|
||||||
msgid "Restart "
|
msgid "Restart %1"
|
||||||
msgstr "Перезапустить "
|
msgstr "Перезапустить %1"
|
||||||
|
|
||||||
#: netctl.cpp:185
|
#: netctl.cpp:301
|
||||||
msgid "Disable "
|
msgid "Disable %1"
|
||||||
msgstr "Отключить "
|
msgstr "Отключить %1"
|
||||||
|
|
||||||
#: netctl.cpp:187
|
#: netctl.cpp:303
|
||||||
msgid "Enable "
|
msgid "Enable %1"
|
||||||
msgstr "Включить "
|
msgstr "Включить %1"
|
||||||
|
|
||||||
#: netctl.cpp:190 netctl.cpp:214
|
#: netctl.cpp:306 netctl.cpp:334
|
||||||
msgid "Start profile"
|
msgid "Start profile"
|
||||||
msgstr "Запустить профиль"
|
msgstr "Запустить профиль"
|
||||||
|
|
||||||
#: netctl.cpp:221
|
#: netctl.cpp:342
|
||||||
msgid "Stop profile"
|
msgid "Stop profile"
|
||||||
msgstr "Остановить профиль"
|
msgstr "Остановить профиль"
|
||||||
|
|
||||||
#: netctl.cpp:225
|
#: netctl.cpp:347
|
||||||
|
msgid "Switch to profile"
|
||||||
|
msgstr "Переключить профиль"
|
||||||
|
|
||||||
|
#: netctl.cpp:355
|
||||||
msgid "Restart profile"
|
msgid "Restart profile"
|
||||||
msgstr "Перезапустить профиль"
|
msgstr "Перезапустить профиль"
|
||||||
|
|
||||||
#: netctl.cpp:229
|
#: netctl.cpp:360
|
||||||
msgid "Enable profile"
|
msgid "Enable profile"
|
||||||
msgstr "Включить профиль"
|
msgstr "Включить профиль"
|
||||||
|
|
||||||
#: netctl.cpp:233
|
#: netctl.cpp:364
|
||||||
msgid "Show WiFi menu"
|
msgid "Show WiFi menu"
|
||||||
msgstr "Запустить WiFi-menu"
|
msgstr "Запустить WiFi-menu"
|
||||||
|
|
||||||
#: netctl.cpp:253
|
#: netctl.cpp:385
|
||||||
msgid "Start GUI"
|
msgid "Start GUI"
|
||||||
msgstr "Запуск GUI"
|
msgstr "Запуск GUI"
|
||||||
|
|
||||||
#: netctl.cpp:261
|
#: netctl.cpp:393
|
||||||
msgid "Start WiFi menu"
|
msgid "Start WiFi menu"
|
||||||
msgstr "Запуск WiFi-menu"
|
msgstr "Запуск WiFi-menu"
|
||||||
|
|
||||||
#: netctl.cpp:325
|
#: netctl.cpp:457
|
||||||
msgid "Network is up"
|
msgid "Network is up"
|
||||||
msgstr "Сеть работает"
|
msgstr "Сеть работает"
|
||||||
|
|
||||||
#: netctl.cpp:331
|
#: netctl.cpp:463
|
||||||
msgid "Network is down"
|
msgid "Network is down"
|
||||||
msgstr "Сеть не работает"
|
msgstr "Сеть не работает"
|
||||||
|
|
||||||
#: netctl.cpp:468
|
#: netctl.cpp:668
|
||||||
msgid "Netctl plasmoid"
|
msgid "Netctl plasmoid"
|
||||||
msgstr "Netctl plasmoid"
|
msgstr "Netctl plasmoid"
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:30
|
#: netctl.cpp:669
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tabConfiguration)
|
|
||||||
#: po/rc.cpp:3 rc.cpp:3
|
|
||||||
msgid "Configuration"
|
|
||||||
msgstr "Настройка"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:54
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
|
||||||
#: po/rc.cpp:6 rc.cpp:6
|
|
||||||
msgid "Auto update interval, msec"
|
|
||||||
msgstr "Интервал автообновления, мсек"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:112
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
|
||||||
#: po/rc.cpp:9 rc.cpp:9
|
|
||||||
msgid "Path to GUI"
|
|
||||||
msgstr "Путь к GUI"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:128
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
|
||||||
#. i18n: file: configwindow.ui:161
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
|
||||||
#. i18n: file: configwindow.ui:197
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
|
||||||
#. i18n: file: configwindow.ui:233
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
|
||||||
#. i18n: file: configwindow.ui:621
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
|
||||||
#. i18n: file: configwindow.ui:654
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
|
||||||
#. i18n: file: configwindow.ui:128
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
|
||||||
#. i18n: file: configwindow.ui:161
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
|
||||||
#. i18n: file: configwindow.ui:197
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
|
||||||
#. i18n: file: configwindow.ui:233
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
|
||||||
#. i18n: file: configwindow.ui:621
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
|
||||||
#. i18n: file: configwindow.ui:654
|
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
|
||||||
#: po/rc.cpp:12 po/rc.cpp:18 po/rc.cpp:24 po/rc.cpp:30 po/rc.cpp:87
|
|
||||||
#: po/rc.cpp:93 rc.cpp:12 rc.cpp:18 rc.cpp:24 rc.cpp:30 rc.cpp:87 rc.cpp:93
|
|
||||||
msgid "Browse"
|
|
||||||
msgstr "Обзор"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:145
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
|
||||||
#: po/rc.cpp:15 rc.cpp:15
|
|
||||||
msgid "Path to netctl"
|
|
||||||
msgstr "Путь к netctl"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:178
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
|
||||||
#: po/rc.cpp:21 rc.cpp:21
|
|
||||||
msgid "Use sudo for netctl"
|
|
||||||
msgstr "Использовать sudo для netctl"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:214
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
|
||||||
#: po/rc.cpp:27 rc.cpp:27
|
|
||||||
msgid "Show 'Start WiFi menu'"
|
|
||||||
msgstr "Показать 'Запустить WiFi-menu'"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:242
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
|
||||||
#: po/rc.cpp:33 rc.cpp:33
|
|
||||||
msgid "Show more detailed interface"
|
|
||||||
msgstr "Показать более детальный интерфейс"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:252
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showNetDev)
|
|
||||||
#: po/rc.cpp:36 rc.cpp:36
|
|
||||||
msgid "Show network devices"
|
|
||||||
msgstr "Показать сетевые устройства"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:262
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showExtIp)
|
|
||||||
#: po/rc.cpp:39 rc.cpp:39
|
|
||||||
msgid "Show external IP"
|
|
||||||
msgstr "Показать внешний IP"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:272
|
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showIntIp)
|
|
||||||
#: po/rc.cpp:42 rc.cpp:42
|
|
||||||
msgid "Show internal IP"
|
|
||||||
msgstr "Показать внутренний IP"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:296
|
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tabAppearance)
|
|
||||||
#: po/rc.cpp:45 rc.cpp:45
|
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Внешний вид"
|
msgstr "Внешний вид"
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:310
|
#: netctl.cpp:670
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
msgid "DataEngine"
|
||||||
#: po/rc.cpp:48 rc.cpp:48
|
msgstr "DataEngine"
|
||||||
msgid "Font"
|
|
||||||
msgstr "Шрифт"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:342
|
#. i18n: file: appearance.ui:47
|
||||||
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
|
||||||
#: po/rc.cpp:51 rc.cpp:51
|
|
||||||
msgid "Set font family"
|
|
||||||
msgstr "Укажите шрифт"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:359
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
|
||||||
#: po/rc.cpp:54 rc.cpp:54
|
|
||||||
msgid "Font size"
|
|
||||||
msgstr "Размер шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:391
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
|
||||||
#: po/rc.cpp:57 rc.cpp:57
|
|
||||||
msgid "Set font size"
|
|
||||||
msgstr "Укажите размер шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:420
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
|
||||||
#: po/rc.cpp:60 rc.cpp:60
|
|
||||||
msgid "Font color"
|
|
||||||
msgstr "Цвет шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:452
|
|
||||||
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
|
||||||
#: po/rc.cpp:63 rc.cpp:63
|
|
||||||
msgid "Set font color"
|
|
||||||
msgstr "Укажите цвет шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:469
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
|
||||||
#: po/rc.cpp:66 rc.cpp:66
|
|
||||||
msgid "Font weight"
|
|
||||||
msgstr "Толщина шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:501
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
|
||||||
#: po/rc.cpp:69 rc.cpp:69
|
|
||||||
msgid "Set font weight"
|
|
||||||
msgstr "Укажите ширину шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:533
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
|
||||||
#: po/rc.cpp:72 rc.cpp:72
|
|
||||||
msgid "Font style"
|
|
||||||
msgstr "Стиль шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:565
|
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:75 rc.cpp:75
|
|
||||||
msgid "Set font style"
|
|
||||||
msgstr "Укажите стиль шрифта"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:569
|
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:78 rc.cpp:78
|
|
||||||
msgid "normal"
|
|
||||||
msgstr "normal"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:574
|
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
|
||||||
#: po/rc.cpp:81 rc.cpp:81
|
|
||||||
msgid "italic"
|
|
||||||
msgstr "italic"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:605
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
|
||||||
#: po/rc.cpp:84 rc.cpp:84
|
|
||||||
msgid "Active icon"
|
|
||||||
msgstr "Иконка активного подключения"
|
|
||||||
|
|
||||||
#. i18n: file: configwindow.ui:638
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
||||||
#: po/rc.cpp:90 rc.cpp:90
|
#: po/rc.cpp:3 rc.cpp:3
|
||||||
msgid "Inactive icon"
|
msgid "Inactive icon"
|
||||||
msgstr "Иконка неактивного подключения"
|
msgstr "Иконка неактивного подключения"
|
||||||
|
|
||||||
#: po/rc.cpp:94 rc.cpp:94
|
#. i18n: file: appearance.ui:63
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#. i18n: file: appearance.ui:391
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: dataengine.ui:50
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:83
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:116
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_ip)
|
||||||
|
#. i18n: file: dataengine.ui:149
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_interface)
|
||||||
|
#. i18n: file: dataengine.ui:185
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp)
|
||||||
|
#. i18n: file: widget.ui:118
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: widget.ui:151
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: widget.ui:184
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:220
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: widget.ui:256
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#. i18n: file: appearance.ui:63
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
|
#. i18n: file: appearance.ui:391
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
|
#. i18n: file: dataengine.ui:50
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:83
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:116
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_ip)
|
||||||
|
#. i18n: file: dataengine.ui:149
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_interface)
|
||||||
|
#. i18n: file: dataengine.ui:185
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp)
|
||||||
|
#. i18n: file: widget.ui:118
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui)
|
||||||
|
#. i18n: file: widget.ui:151
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
|
#. i18n: file: widget.ui:184
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:220
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo)
|
||||||
|
#. i18n: file: widget.ui:256
|
||||||
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
|
#: po/rc.cpp:6 po/rc.cpp:48 po/rc.cpp:54 po/rc.cpp:60 po/rc.cpp:66
|
||||||
|
#: po/rc.cpp:72 po/rc.cpp:78 po/rc.cpp:87 po/rc.cpp:93 po/rc.cpp:99
|
||||||
|
#: po/rc.cpp:105 po/rc.cpp:111 rc.cpp:6 rc.cpp:48 rc.cpp:54 rc.cpp:60
|
||||||
|
#: rc.cpp:66 rc.cpp:72 rc.cpp:78 rc.cpp:87 rc.cpp:93 rc.cpp:99 rc.cpp:105
|
||||||
|
#: rc.cpp:111
|
||||||
|
msgid "Browse"
|
||||||
|
msgstr "Обзор"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:80
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
||||||
|
#: po/rc.cpp:9 rc.cpp:9
|
||||||
|
msgid "Font color"
|
||||||
|
msgstr "Цвет шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:112
|
||||||
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
|
#: po/rc.cpp:12 rc.cpp:12
|
||||||
|
msgid "Set font color"
|
||||||
|
msgstr "Укажите цвет шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:142
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
|
#: po/rc.cpp:15 rc.cpp:15
|
||||||
|
msgid "Font size"
|
||||||
|
msgstr "Размер шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:174
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
|
#: po/rc.cpp:18 rc.cpp:18
|
||||||
|
msgid "Set font size"
|
||||||
|
msgstr "Укажите размер шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:203
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
||||||
|
#: po/rc.cpp:21 rc.cpp:21
|
||||||
|
msgid "Font weight"
|
||||||
|
msgstr "Толщина шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:235
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
|
#: po/rc.cpp:24 rc.cpp:24
|
||||||
|
msgid "Set font weight"
|
||||||
|
msgstr "Укажите ширину шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:267
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
||||||
|
#: po/rc.cpp:27 rc.cpp:27
|
||||||
|
msgid "Font style"
|
||||||
|
msgstr "Стиль шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:299
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:30 rc.cpp:30
|
||||||
|
msgid "Set font style"
|
||||||
|
msgstr "Укажите стиль шрифта"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:303
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:33 rc.cpp:33
|
||||||
|
msgid "normal"
|
||||||
|
msgstr "normal"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:308
|
||||||
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_fontStyle)
|
||||||
|
#: po/rc.cpp:36 rc.cpp:36
|
||||||
|
msgid "italic"
|
||||||
|
msgstr "italic"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:326
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
|
#: po/rc.cpp:39 rc.cpp:39
|
||||||
|
msgid "Font"
|
||||||
|
msgstr "Шрифт"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:358
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
|
#: po/rc.cpp:42 rc.cpp:42
|
||||||
|
msgid "Set font family"
|
||||||
|
msgstr "Укажите шрифт"
|
||||||
|
|
||||||
|
#. i18n: file: appearance.ui:375
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
||||||
|
#: po/rc.cpp:45 rc.cpp:45
|
||||||
|
msgid "Active icon"
|
||||||
|
msgstr "Иконка активного подключения"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:34
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: widget.ui:135
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: dataengine.ui:34
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#. i18n: file: widget.ui:135
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
|
#: po/rc.cpp:51 po/rc.cpp:90 rc.cpp:51 rc.cpp:90
|
||||||
|
msgid "Path to netctl"
|
||||||
|
msgstr "Путь к netctl"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:67
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:168
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: dataengine.ui:67
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#. i18n: file: widget.ui:168
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
|
#: po/rc.cpp:57 po/rc.cpp:96 rc.cpp:57 rc.cpp:96
|
||||||
|
msgid "Path to netctl-auto"
|
||||||
|
msgstr "Путь к netctl-auto"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:100
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_ip)
|
||||||
|
#: po/rc.cpp:63 rc.cpp:63
|
||||||
|
msgid "Path to ip"
|
||||||
|
msgstr "Путь к ip"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:133
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_interface)
|
||||||
|
#: po/rc.cpp:69 rc.cpp:69
|
||||||
|
msgid "Path to interface list"
|
||||||
|
msgstr "Путь к интерфейсам"
|
||||||
|
|
||||||
|
#. i18n: file: dataengine.ui:166
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp)
|
||||||
|
#: po/rc.cpp:75 rc.cpp:75
|
||||||
|
msgid "Check external IP"
|
||||||
|
msgstr "Проверять внешний IP"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:44
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
||||||
|
#: po/rc.cpp:81 rc.cpp:81
|
||||||
|
msgid "Auto update interval, msec"
|
||||||
|
msgstr "Интервал автообновления, мсек"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:102
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
||||||
|
#: po/rc.cpp:84 rc.cpp:84
|
||||||
|
msgid "Path to GUI"
|
||||||
|
msgstr "Путь к GUI"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:201
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
||||||
|
#: po/rc.cpp:102 rc.cpp:102
|
||||||
|
msgid "Use sudo for netctl"
|
||||||
|
msgstr "Использовать sudo для netctl"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:237
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
||||||
|
#: po/rc.cpp:108 rc.cpp:108
|
||||||
|
msgid "Show 'Start WiFi menu'"
|
||||||
|
msgstr "Показать 'Запустить WiFi-menu'"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:265
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
||||||
|
#: po/rc.cpp:114 rc.cpp:114
|
||||||
|
msgid "Show more detailed interface"
|
||||||
|
msgstr "Показать более детальный интерфейс"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:275
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showNetDev)
|
||||||
|
#: po/rc.cpp:117 rc.cpp:117
|
||||||
|
msgid "Show network devices"
|
||||||
|
msgstr "Показать сетевые устройства"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:285
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showExtIp)
|
||||||
|
#: po/rc.cpp:120 rc.cpp:120
|
||||||
|
msgid "Show external IP"
|
||||||
|
msgstr "Показать внешний IP"
|
||||||
|
|
||||||
|
#. i18n: file: widget.ui:295
|
||||||
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showIntIp)
|
||||||
|
#: po/rc.cpp:123 rc.cpp:123
|
||||||
|
msgid "Show internal IP"
|
||||||
|
msgstr "Показать внутренний IP"
|
||||||
|
|
||||||
|
#: po/rc.cpp:124 rc.cpp:124
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: po/rc.cpp:95 rc.cpp:95
|
#: po/rc.cpp:125 rc.cpp:125
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
|
|
||||||
|
#~ msgid "Configuration"
|
||||||
|
#~ msgstr "Настройка"
|
||||||
|
Loading…
Reference in New Issue
Block a user