From bf7521481a790b1681ea94e65fe6acca8f1c16e4 Mon Sep 17 00:00:00 2001 From: arcan1s Date: Tue, 17 Mar 2015 13:22:45 +0300 Subject: [PATCH] implement #36 update translations --- sources/gui/docs/.directory | 3 - sources/gui/src/settingswindow.cpp | 112 +- sources/gui/src/settingswindow.h | 3 + sources/gui/src/settingswindow.ui | 98 +- sources/gui/src/wifimenuwidget.cpp | 12 + sources/gui/src/wifimenuwidget.h | 1 + sources/gui/src/wifimenuwidget.ui | 2 + sources/helper/netctl-gui.conf | 6 - sources/helper/src/controladaptor.cpp | 6 +- sources/helper/src/controladaptor.h | 2 +- sources/helper/src/netctlhelper.cpp | 1 - sources/resources/translations-helper/en.ts | 67 +- sources/resources/translations-helper/ja.ts | 65 +- .../translations-helper/netctlgui-helper.ts | 65 +- sources/resources/translations-helper/ru.ts | 65 +- sources/resources/translations-plasmoid/en.po | 437 ++-- sources/resources/translations-plasmoid/ja.po | 439 ++-- .../plasma_applet_netctl.pot | 429 ++-- sources/resources/translations-plasmoid/ru.po | 437 ++-- sources/resources/translations/en.ts | 709 +++++- sources/resources/translations/ja.ts | 2155 ++++++++++------- sources/resources/translations/netctl-gui.ts | 2037 +++++++++------- sources/resources/translations/ru.ts | 709 +++++- 23 files changed, 4927 insertions(+), 2933 deletions(-) delete mode 100644 sources/gui/docs/.directory diff --git a/sources/gui/docs/.directory b/sources/gui/docs/.directory deleted file mode 100644 index 82ed1a1..0000000 --- a/sources/gui/docs/.directory +++ /dev/null @@ -1,3 +0,0 @@ -[Dolphin] -Timestamp=2015,3,7,17,10,22 -Version=3 diff --git a/sources/gui/src/settingswindow.cpp b/sources/gui/src/settingswindow.cpp index 4a4b94e..082e9f6 100644 --- a/sources/gui/src/settingswindow.cpp +++ b/sources/gui/src/settingswindow.cpp @@ -23,11 +23,14 @@ #include #include #include +#include #include #include +#include #include "mainwindow.h" +#include "version.h" SettingsWindow::SettingsWindow(QWidget *parent, const bool debugCmd, const QString configFile) @@ -38,6 +41,7 @@ SettingsWindow::SettingsWindow(QWidget *parent, const bool debugCmd, const QStri { ui->setupUi(this); addLanguages(); + addGroups(); createActions(); } @@ -58,6 +62,7 @@ void SettingsWindow::createActions() connect(ui->buttonBox->button(QDialogButtonBox::Ok), SIGNAL(clicked(bool)), this, SLOT(closeWindow())); connect(ui->buttonBox->button(QDialogButtonBox::Reset), SIGNAL(clicked(bool)), this, SLOT(restoreSettings())); connect(ui->buttonBox->button(QDialogButtonBox::RestoreDefaults), SIGNAL(clicked(bool)), this, SLOT(setDefault())); + connect(ui->buttonBox_applyGroup->button(QDialogButtonBox::Apply), SIGNAL(clicked(bool)), this, SLOT(applyHelperGroup())); connect(ui->checkBox_enableTray, SIGNAL(stateChanged(int)), this, SLOT(setTray())); connect(ui->treeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)), this, SLOT(changePage(QTreeWidgetItem *, QTreeWidgetItem *))); @@ -137,6 +142,78 @@ void SettingsWindow::addLanguages() } +void SettingsWindow::applyHelperGroup() +{ + if (debug) qDebug() << PDEBUG; + + QString group = ui->comboBox_group->currentText(); + if (debug) qDebug() << PDEBUG << ":" << "Group" << group; + if (group.isEmpty()) return; + + // create + QFile policyFile(QString("%1/org.netctlgui.helper.conf").arg(QDir::tempPath())); + if (debug) qDebug() << PDEBUG << ":" << "Save to" << policyFile.fileName(); + if (!policyFile.open(QIODevice::WriteOnly | QIODevice::Text)) return; + + // write + QTextStream out(&policyFile); + // header + out << "" << endl; + out << "" << endl; + // group body + out << " " << endl; + out << " " << endl; + out << " " << endl; + out << " " << endl; + out << " " << endl; + // root body + out << " " << endl; + out << " " << endl; + out << " " << endl; + out << " " << endl; + out << " " << endl; + // footer + out << "" << endl; + policyFile.close(); + + // copy + QString newPath = QString("%1/org.netctlgui.helper.conf").arg(PROJECT_DBUS_SYSTEMCONF_PATH); + QString cmd = QString("%1 /usr/bin/mv \"%2\" \"%3\"").arg(ui->lineEdit_sudo->text()) + .arg(policyFile.fileName()) + .arg(newPath); + if (debug) qDebug() << PDEBUG << ":" << "Run cmd" << cmd; + TaskResult process = runTask(cmd, false); + if (debug) qDebug() << PDEBUG << ":" << "Cmd returns" << process.exitCode; + if (process.exitCode != 0) + if (debug) qDebug() << PDEBUG << ":" << "Error" << process.error; + + // update + setHelperGroup(); +} + + +void SettingsWindow::addGroups() +{ + if (debug) qDebug() << PDEBUG; + + ui->comboBox_group->clear(); + + QFile groupFile(QString("/etc/group")); + if (!groupFile.open(QIODevice::ReadOnly)) return; + while (true) { + QString fileStr = QString(groupFile.readLine()).trimmed(); + if ((fileStr.isEmpty()) && (!groupFile.atEnd())) continue; + if ((fileStr[0] == QChar('#')) && (!groupFile.atEnd())) continue; + if ((fileStr[0] == QChar(';')) && (!groupFile.atEnd())) continue; + if (fileStr.contains(QChar(':'))) ui->comboBox_group->addItem(fileStr.split(QChar(':'))[0]); + if (groupFile.atEnd()) break; + } + groupFile.close(); +} + + void SettingsWindow::changePage(QTreeWidgetItem *current, QTreeWidgetItem *previous) { Q_UNUSED(previous); @@ -177,7 +254,6 @@ void SettingsWindow::saveSettings() settings.beginGroup(QString("Helper")); settings.setValue(QString("USE_HELPER"), config[QString("USE_HELPER")]); - settings.setValue(QString("HELPER_GROUP"), config[QString("HELPER_GROUP")]); settings.setValue(QString("FORCE_SUDO"), config[QString("FORCE_SUDO")]); settings.setValue(QString("CLOSE_HELPER"), config[QString("CLOSE_HELPER")]); settings.setValue(QString("HELPER_PATH"), config[QString("HELPER_PATH")]); @@ -223,6 +299,38 @@ void SettingsWindow::saveSettings() } +void SettingsWindow::setHelperGroup() +{ + if (debug) qDebug() << PDEBUG; + + QString group; + QFile policyFile(QString("%1/org.netctlgui.helper.conf").arg(QString(PROJECT_DBUS_SYSTEMCONF_PATH))); + if (!policyFile.open(QIODevice::ReadOnly)) return; + while (true) { + QString fileStr = QString(policyFile.readLine()).trimmed(); + if ((fileStr.isEmpty()) && (!policyFile.atEnd())) continue; + if ((fileStr[0] == QChar('#')) && (!policyFile.atEnd())) continue; + if ((fileStr[0] == QChar(';')) && (!policyFile.atEnd())) continue; + if (fileStr.contains(QString("policy group"))) try { + // line is ' ' + QStringList fields = fileStr.split(QChar(' '), QString::SkipEmptyParts); + group = fields[1].split(QChar('='))[1]; + group.remove(QChar('<')).remove(QChar('>')).remove(QChar('\'')).remove(QChar('"')); + if (debug) qDebug() << PDEBUG << ":" << "Group detected" << group; + } catch (...) { + if (debug) qDebug() << PDEBUG << ":" << "An exception recevied"; + return; + } + if (policyFile.atEnd()) break; + } + policyFile.close(); + + if (group.isEmpty()) return; + int index = ui->comboBox_group->findText(group); + ui->comboBox_group->setCurrentIndex(index); +} + + void SettingsWindow::setTray() { if (debug) qDebug() << PDEBUG; @@ -311,6 +419,7 @@ void SettingsWindow::showWindow() { if (debug) qDebug() << PDEBUG; + setHelperGroup(); setSettings(getSettings()); setTray(); updateHelper(); @@ -478,7 +587,6 @@ QMap SettingsWindow::getSettings(QString fileName) settings.beginGroup(QString("Helper")); config[QString("USE_HELPER")] = settings.value(QString("USE_HELPER"), QString("true")).toString(); - config[QString("HELPER_GROUP")] = settings.value(QString("HELPER_GROUP"), QString("network")).toString(); config[QString("FORCE_SUDO")] = settings.value(QString("FORCE_SUDO"), QString("false")).toString(); config[QString("CLOSE_HELPER")] = settings.value(QString("CLOSE_HELPER"), QString("false")).toString(); config[QString("HELPER_PATH")] = settings.value(QString("HELPER_PATH"), QString("/usr/bin/netctlgui-helper")).toString(); diff --git a/sources/gui/src/settingswindow.h b/sources/gui/src/settingswindow.h index 62b08cb..aeb0c80 100644 --- a/sources/gui/src/settingswindow.h +++ b/sources/gui/src/settingswindow.h @@ -48,9 +48,12 @@ public slots: void showWindow(); private slots: + void addGroups(); void addLanguages(); + void applyHelperGroup(); void changePage(QTreeWidgetItem *current, QTreeWidgetItem *previous); void saveSettings(); + void setHelperGroup(); void setTray(); void updateHelper(); // buttons diff --git a/sources/gui/src/settingswindow.ui b/sources/gui/src/settingswindow.ui index 700bc36..60f4493 100644 --- a/sources/gui/src/settingswindow.ui +++ b/sources/gui/src/settingswindow.ui @@ -119,7 +119,9 @@ Toolbars - + + + @@ -477,39 +479,6 @@ - - - - - - - 1 - 0 - - - - Control group - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - - - - 2 - 0 - - - - Select a language - - - - - @@ -586,6 +555,59 @@ + + + + Qt::Vertical + + + + + + + + + + 7 + 0 + + + + Control group + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + 10 + 0 + + + + Select a language + + + + + + + + 4 + 0 + + + + QDialogButtonBox::Apply + + + + + @@ -1230,8 +1252,8 @@ 0 0 - 542 - 330 + 436 + 107 @@ -1391,8 +1413,8 @@ 0 0 - 542 - 330 + 201 + 177 diff --git a/sources/gui/src/wifimenuwidget.cpp b/sources/gui/src/wifimenuwidget.cpp index ef8102f..003f6f3 100644 --- a/sources/gui/src/wifimenuwidget.cpp +++ b/sources/gui/src/wifimenuwidget.cpp @@ -20,6 +20,7 @@ #include #include +#include #include @@ -352,6 +353,7 @@ bool WiFiMenuWidget::wifiTabSetEnabled(const bool state) if (debug) qDebug() << PDEBUG; if (debug) qDebug() << PDEBUG << ":" << "State" << state; + ui->actionFunc->setEnabled(!state); ui->tableWidget_wifi->setEnabled(state); if (!state) ui->label_wifi->setText(QApplication::translate("WiFiMenuWidget", "Please install 'wpa_supplicant' before use it")); @@ -359,6 +361,15 @@ bool WiFiMenuWidget::wifiTabSetEnabled(const bool state) } +int WiFiMenuWidget::wifiTabShowInfo() +{ + if (debug) qDebug() << PDEBUG; + + return QMessageBox::information(this, QApplication::translate("WiFiMenuWidget", "Information"), + QApplication::translate("WiFiMenuWidget", "This isn't the functionality you're looking for")); +} + + void WiFiMenuWidget::wifiTabStart() { if (debug) qDebug() << PDEBUG; @@ -418,6 +429,7 @@ void WiFiMenuWidget::createActions() if (debug) qDebug() << PDEBUG; // menu actions + connect(ui->actionFunc, SIGNAL(triggered(bool)), this, SLOT(wifiTabShowInfo())); connect(ui->actionRefresh, SIGNAL(triggered(bool)), this, SLOT(updateWifiTab())); connect(ui->actionStart, SIGNAL(triggered(bool)), this, SLOT(wifiTabStart())); // wifi tab events diff --git a/sources/gui/src/wifimenuwidget.h b/sources/gui/src/wifimenuwidget.h index b1bb811..2976bf7 100644 --- a/sources/gui/src/wifimenuwidget.h +++ b/sources/gui/src/wifimenuwidget.h @@ -58,6 +58,7 @@ private slots: // wifi tab slots void wifiTabContextualMenu(const QPoint &pos); bool wifiTabSetEnabled(const bool state); + int wifiTabShowInfo(); void wifiTabStart(); private: diff --git a/sources/gui/src/wifimenuwidget.ui b/sources/gui/src/wifimenuwidget.ui index 0116233..44632f5 100644 --- a/sources/gui/src/wifimenuwidget.ui +++ b/sources/gui/src/wifimenuwidget.ui @@ -113,6 +113,7 @@ + @@ -143,6 +144,7 @@ Connect or disconnect from selected ESSID + diff --git a/sources/helper/netctl-gui.conf b/sources/helper/netctl-gui.conf index 1d4ad88..0695b9c 100644 --- a/sources/helper/netctl-gui.conf +++ b/sources/helper/netctl-gui.conf @@ -23,9 +23,6 @@ SKIPCOMPONENTS=false # use netctlgui-helper if it is available. # This option is not recognized by netctlgui-helper USE_HELPER=true -# group which allows to control helper, refer to DBus configuration -# This option is not recognized by netctlgui-helper -HELPER_GROUP=network # force use SUDO_PATH for helper instead of using setuid(3) to child processes FORCE_SUDO=false # hide application to tray on exit if tray is available. @@ -77,6 +74,3 @@ IFACE_DIR=/sys/class/net/ RFKILL_DIR=/sys/class/rfkill/ # prefered wireless interface PREFERED_IFACE= - - - diff --git a/sources/helper/src/controladaptor.cpp b/sources/helper/src/controladaptor.cpp index 9c73e46..5e72c75 100644 --- a/sources/helper/src/controladaptor.cpp +++ b/sources/helper/src/controladaptor.cpp @@ -110,9 +110,11 @@ QString ControlAdaptor::SecurityDocs() } -bool ControlAdaptor::SelfDestruct() +bool ControlAdaptor::SelfDestruct(const QString approve) { - return SelfDestruct(); + if (approve == QString("Yes, please")) return SelfDestruct(approve); + + return false; } diff --git a/sources/helper/src/controladaptor.h b/sources/helper/src/controladaptor.h index 72320ac..f77e992 100644 --- a/sources/helper/src/controladaptor.h +++ b/sources/helper/src/controladaptor.h @@ -45,7 +45,7 @@ public slots: QString LibraryDocs(); QString Pony(); QString SecurityDocs(); - bool SelfDestruct(); + bool SelfDestruct(const QString approve); QStringList Settings(); QStringList UIDs(); bool Update(); diff --git a/sources/helper/src/netctlhelper.cpp b/sources/helper/src/netctlhelper.cpp index e292948..532277f 100644 --- a/sources/helper/src/netctlhelper.cpp +++ b/sources/helper/src/netctlhelper.cpp @@ -156,7 +156,6 @@ QMap NetctlHelper::getSettings(const QString file) settings.beginGroup(QString("Helper")); config[QString("USE_HELPER")] = settings.value(QString("USE_HELPER"), QString("true")).toString(); - config[QString("HELPER_GROUP")] = settings.value(QString("HELPER_GROUP"), QString("network")).toString(); config[QString("FORCE_SUDO")] = settings.value(QString("FORCE_SUDO"), QString("false")).toString(); config[QString("CLOSE_HELPER")] = settings.value(QString("CLOSE_HELPER"), QString("false")).toString(); config[QString("HELPER_PATH")] = settings.value(QString("HELPER_PATH"), QString("/usr/bin/netctlgui-helper")).toString(); diff --git a/sources/resources/translations-helper/en.ts b/sources/resources/translations-helper/en.ts index dbbd365..eab34ce 100644 --- a/sources/resources/translations-helper/en.ts +++ b/sources/resources/translations-helper/en.ts @@ -11,147 +11,152 @@ - + Usage: Usage: - + Options: Options: - + read configuration from this file read configuration from this file - + print debug information print debug information - + do not start as daemon do not start as daemon - + force replace the existing session force replace the existing session - + force restore the existing session force restore the existing session - + + force create user DBus session + force create user DBus session + + + do not read user configuration, system-wide only do not read user configuration, system-wide only - + Show messages: Show messages: - + show version and exit show version and exit - + show build information and exit show build information and exit - + show this help and exit show this help and exit - + Build date: %1 Build date: %1 - + cmake flags cmake flags - + cmake properties cmake properties - + Components Components - + Additional components Additional components - + Project properties Project properties - + DBus configuration DBus configuration - + Documentation Documentation - + Version Version - + Author Author - + License License The helper is running with EUID %1. Functions will not be available. - The helper is running with EUID %1. Functions will not be available. + The helper is running with EUID %1. Functions will not be available. The helper is running with EUID %1. Some functions will not be available. - The helper is running with EUID %1. Some functions will not be available. + The helper is running with EUID %1. Some functions will not be available. - + The helper is running with EUID %1. Some functions may not be available. The helper is running with EUID %1. Some functions may not be available. - + See security notes for more details. See security notes for more details. - - + + Replace existing session. Replace existing session. - - + + Restore existing session. Restore existing session. diff --git a/sources/resources/translations-helper/ja.ts b/sources/resources/translations-helper/ja.ts index d0398e1..7ad0d69 100644 --- a/sources/resources/translations-helper/ja.ts +++ b/sources/resources/translations-helper/ja.ts @@ -1,6 +1,6 @@ - + NetctlHelper @@ -10,139 +10,144 @@ 不明なフラグです - + Usage: 使用法: - + Options: オプション: - + read configuration from this file このファイルから設定を読み込む - + print debug information デバッグ情報を表示する - + do not start as daemon デーモンとして実行しない - + force replace the existing session 既存のセッションを強制的に置き換える - + force restore the existing session 既存のセッションを強制的に復帰させる - + + force create user DBus session + + + + do not read user configuration, system-wide only ユーザの設定ファイルではなくシステム全体の設定ファイルのみを読み込む - + Show messages: メッセージの表示: - + show version and exit バージョンを表示して終了 - + show build information and exit ビルド情報を表示して終了 - + show this help and exit このヘルプを表示して終了 - + Build date: %1 ビルド日時:%1 - + cmake flags cmake のフラグ - + cmake properties cmake のプロパティ - + Components コンポーネント - + Additional components 追加のコンポーネント - + Project properties プロジェクトのプロパティ - + DBus configuration DBus 設定 - + Documentation ドキュメンテーション - + Version バージョン - + Author 作者 - + License ライセンス - + The helper is running with EUID %1. Some functions may not be available. このヘルパは EUID %1 として実行されています。いくつか利用できない機能が存在します。 - + See security notes for more details. 詳細情報を得るにはセキュリティノートを参照して下さい。 - - + + Replace existing session. 既存のセッションを置き換える。 - - + + Restore existing session. 既存のセッションを復帰させる。 diff --git a/sources/resources/translations-helper/netctlgui-helper.ts b/sources/resources/translations-helper/netctlgui-helper.ts index 32acc13..95d2dac 100644 --- a/sources/resources/translations-helper/netctlgui-helper.ts +++ b/sources/resources/translations-helper/netctlgui-helper.ts @@ -1,6 +1,6 @@ - + NetctlHelper @@ -10,139 +10,144 @@ - + Usage: - + Options: - + read configuration from this file - + print debug information - + do not start as daemon - + force replace the existing session - + force restore the existing session - + + force create user DBus session + + + + do not read user configuration, system-wide only - + Show messages: - + show version and exit - + show build information and exit - + show this help and exit - + Build date: %1 - + cmake flags - + cmake properties - + Components - + Additional components - + Project properties - + DBus configuration - + Documentation - + Version - + Author - + License - + The helper is running with EUID %1. Some functions may not be available. - + See security notes for more details. - - + + Replace existing session. - - + + Restore existing session. diff --git a/sources/resources/translations-helper/ru.ts b/sources/resources/translations-helper/ru.ts index 0a3e0a7..88f380a 100644 --- a/sources/resources/translations-helper/ru.ts +++ b/sources/resources/translations-helper/ru.ts @@ -11,143 +11,148 @@ - + Usage: Использование: - + Options: Опции: - + read configuration from this file прочитать настройки из данного файла - + print debug information показать отладочную информацию - + do not start as daemon не запускать как демон - + force replace the existing session принудительно заменить существующую сессию - + force restore the existing session принудительно восстановить существующую сессию - + + force create user DBus session + принудительно создать пользовательскую сессию DBus + + + do not read user configuration, system-wide only не считывать пользовательские настройки, только системные - + Show messages: Показать сообщения: - + show version and exit показать версию и выход - + show build information and exit показать информацию о сборке и выход - + show this help and exit показать справку и выход - + Build date: %1 Дата сборки: %1 - + cmake flags Флаги cmake - + cmake properties Свойства cmake - + Components Компоненты - + Additional components Дополнительные компоненты - + Project properties Свойства проекта - + DBus configuration Настройка DBus - + Documentation Документация - + Version Версия - + Author Автор - + License Лицензия The helper is running with EUID %1. Some functions will not be available. - Хелпер запущен с EUID %1. Некоторые функции не будут доступны. + Хелпер запущен с EUID %1. Некоторые функции не будут доступны. - + The helper is running with EUID %1. Some functions may not be available. Хелпер запущен с EUID %1. Некоторые функции могут быть недоступны. - + See security notes for more details. Смотри примечания о безопасности для более подробной информации. - - + + Replace existing session. Замещение существующей сессии. - - + + Restore existing session. Восстановление существующей сессии. diff --git a/sources/resources/translations-plasmoid/en.po b/sources/resources/translations-plasmoid/en.po index eaddfe0..71fd04e 100644 --- a/sources/resources/translations-plasmoid/en.po +++ b/sources/resources/translations-plasmoid/en.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\n" -"POT-Creation-Date: 2015-01-09 04:54+0300\n" -"PO-Revision-Date: 2015-01-09 04:55+0300\n" +"POT-Creation-Date: 2015-03-17 12:48+0300\n" +"PO-Revision-Date: 2015-03-17 12:49+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Russian \n" "Language: ru\n" @@ -18,103 +18,103 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 1.5\n" -#: plasmoid-kde4/netctl.cpp:238 plasmoid-kf5/plugin/netctladds.cpp:186 +#: plasmoid-kde4/netctl.cpp:234 plasmoid-kf5/plugin/netctladds.cpp:194 msgid "Set profile %1 disabled" msgstr "Set profile %1 disabled" -#: plasmoid-kde4/netctl.cpp:241 plasmoid-kf5/plugin/netctladds.cpp:189 +#: plasmoid-kde4/netctl.cpp:237 plasmoid-kf5/plugin/netctladds.cpp:197 msgid "Set profile %1 enabled" msgstr "Set profile %1 enabled" -#: plasmoid-kde4/netctl.cpp:262 plasmoid-kf5/plugin/netctladds.cpp:208 +#: plasmoid-kde4/netctl.cpp:257 plasmoid-kf5/plugin/netctladds.cpp:215 msgid "Restart profile %1" msgstr "Restart profile %1" -#: plasmoid-kde4/netctl.cpp:283 plasmoid-kf5/plugin/netctladds.cpp:232 +#: plasmoid-kde4/netctl.cpp:277 plasmoid-kf5/plugin/netctladds.cpp:238 msgid "Start profile %1" msgstr "Start profile %1" -#: plasmoid-kde4/netctl.cpp:309 plasmoid-kf5/plugin/netctladds.cpp:257 +#: plasmoid-kde4/netctl.cpp:302 plasmoid-kf5/plugin/netctladds.cpp:262 msgid "Stop profile %1" msgstr "Stop profile %1" -#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132 -#: plasmoid-kf5/plugin/netctladds.cpp:274 +#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457 +#: plasmoid-kf5/package/contents/ui/main.qml:106 +#: plasmoid-kf5/plugin/netctladds.cpp:279 msgid "Stop all profiles" msgstr "Stop all profiles" -#: plasmoid-kde4/netctl.cpp:349 plasmoid-kf5/plugin/netctladds.cpp:296 +#: plasmoid-kde4/netctl.cpp:340 plasmoid-kf5/plugin/netctladds.cpp:300 msgid "Switch to profile %1" msgstr "Switch to profile %1" -#: plasmoid-kde4/netctl.cpp:422 plasmoid-kf5/plasmoid/contents/ui/main.qml:203 +#: plasmoid-kde4/netctl.cpp:412 plasmoid-kf5/package/contents/ui/main.qml:183 msgid "Start another profile" msgstr "Start another profile" -#: plasmoid-kde4/netctl.cpp:423 plasmoid-kf5/plasmoid/contents/ui/main.qml:204 +#: plasmoid-kde4/netctl.cpp:413 plasmoid-kf5/package/contents/ui/main.qml:184 msgid "Stop %1" msgstr "Stop %1" -#: plasmoid-kde4/netctl.cpp:424 plasmoid-kf5/plasmoid/contents/ui/main.qml:205 +#: plasmoid-kde4/netctl.cpp:414 plasmoid-kf5/package/contents/ui/main.qml:185 msgid "Restart %1" msgstr "Restart %1" -#: plasmoid-kde4/netctl.cpp:426 plasmoid-kf5/plasmoid/contents/ui/main.qml:207 +#: plasmoid-kde4/netctl.cpp:416 plasmoid-kf5/package/contents/ui/main.qml:187 msgid "Disable %1" msgstr "Disable %1" -#: plasmoid-kde4/netctl.cpp:428 plasmoid-kf5/plasmoid/contents/ui/main.qml:209 +#: plasmoid-kde4/netctl.cpp:418 plasmoid-kf5/package/contents/ui/main.qml:189 msgid "Enable %1" msgstr "Enable %1" -#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211 +#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444 +#: plasmoid-kf5/package/contents/ui/main.qml:104 +#: plasmoid-kf5/package/contents/ui/main.qml:191 msgid "Start profile" msgstr "Start profile" -#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/plasmoid/contents/ui/main.qml:131 +#: plasmoid-kde4/netctl.cpp:452 plasmoid-kf5/package/contents/ui/main.qml:105 msgid "Stop profile" msgstr "Stop profile" -#: plasmoid-kde4/netctl.cpp:472 plasmoid-kf5/plasmoid/contents/ui/main.qml:133 +#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/package/contents/ui/main.qml:107 msgid "Switch to profile" msgstr "Switch to profile" -#: plasmoid-kde4/netctl.cpp:480 plasmoid-kf5/plasmoid/contents/ui/main.qml:134 +#: plasmoid-kde4/netctl.cpp:470 plasmoid-kf5/package/contents/ui/main.qml:108 msgid "Restart profile" msgstr "Restart profile" -#: plasmoid-kde4/netctl.cpp:485 plasmoid-kf5/plasmoid/contents/ui/main.qml:135 +#: plasmoid-kde4/netctl.cpp:475 plasmoid-kf5/package/contents/ui/main.qml:109 msgid "Enable profile" msgstr "Enable profile" -#: plasmoid-kde4/netctl.cpp:489 +#: plasmoid-kde4/netctl.cpp:479 msgid "Show netctl-gui" msgstr "Show netctl-gui" -#: plasmoid-kde4/netctl.cpp:494 plasmoid-kf5/plasmoid/contents/ui/main.qml:137 +#: plasmoid-kde4/netctl.cpp:484 plasmoid-kf5/package/contents/ui/main.qml:110 msgid "Show WiFi menu" msgstr "Show WiFi menu" -#: plasmoid-kde4/netctl.cpp:521 +#: plasmoid-kde4/netctl.cpp:511 msgid "Start GUI" msgstr "Start GUI" -#: plasmoid-kde4/netctl.cpp:532 +#: plasmoid-kde4/netctl.cpp:522 msgid "Start WiFi menu" msgstr "Start WiFi menu" -#: plasmoid-kde4/netctl.cpp:572 +#: plasmoid-kde4/netctl.cpp:563 msgid "Network is up" msgstr "Network is up" -#: plasmoid-kde4/netctl.cpp:576 +#: plasmoid-kde4/netctl.cpp:567 msgid "Network is down" msgstr "Network is down" -#: plasmoid-kde4/netctl.cpp:766 +#: plasmoid-kde4/netctl.cpp:754 msgid "" "Version %1\n" "(build date %2)" @@ -122,358 +122,417 @@ msgstr "" "Version %1\n" "(build date %2)" -#: plasmoid-kde4/netctl.cpp:767 plasmoid-kf5/plugin/netctladds.cpp:88 +#: plasmoid-kde4/netctl.cpp:755 plasmoid-kf5/plugin/netctladds.cpp:88 msgid "KDE widget which interacts with netctl." msgstr "KDE widget which interacts with netctl." -#: plasmoid-kde4/netctl.cpp:768 plasmoid-kf5/plugin/netctladds.cpp:90 +#: plasmoid-kde4/netctl.cpp:756 plasmoid-kf5/plugin/netctladds.cpp:90 msgid "Links:" msgstr "Links:" -#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91 -msgid "Homepage" -msgstr "Homepage" - -#: plasmoid-kde4/netctl.cpp:770 plasmoid-kf5/plugin/netctladds.cpp:92 -msgid "Repository" -msgstr "Repository" - -#: plasmoid-kde4/netctl.cpp:771 plasmoid-kf5/plugin/netctladds.cpp:93 -msgid "Bugtracker" -msgstr "Bugtracker" - -#: plasmoid-kde4/netctl.cpp:772 plasmoid-kf5/plugin/netctladds.cpp:94 -msgid "Translation issue" -msgstr "Translation issue" - -#: plasmoid-kde4/netctl.cpp:773 plasmoid-kf5/plugin/netctladds.cpp:95 -msgid "AUR packages" -msgstr "AUR packages" - -#: plasmoid-kde4/netctl.cpp:775 plasmoid-kf5/plugin/netctladds.cpp:98 +#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99 msgid "This software is licensed under %1" msgstr "This software is licensed under %1" -#: plasmoid-kde4/netctl.cpp:783 plasmoid-kf5/plugin/netctladds.cpp:100 +#: plasmoid-kde4/netctl.cpp:778 plasmoid-kf5/plugin/netctladds.cpp:102 msgid "Translators: %1" msgstr "Translators: %1" -#: plasmoid-kde4/netctl.cpp:784 plasmoid-kf5/plugin/netctladds.cpp:108 +#: plasmoid-kde4/netctl.cpp:779 plasmoid-kf5/plugin/netctladds.cpp:110 msgid "This software uses: %1" msgstr "This software uses: %1" -#: plasmoid-kde4/netctl.cpp:786 +#: plasmoid-kde4/netctl.cpp:781 msgid "Netctl plasmoid" msgstr "Netctl plasmoid" -#: plasmoid-kde4/netctl.cpp:787 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:31 +#: plasmoid-kde4/netctl.cpp:782 +#: plasmoid-kf5/package/contents/config/config.qml:31 msgid "Appearance" msgstr "Appearance" -#: plasmoid-kde4/netctl.cpp:788 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:37 +#: plasmoid-kde4/netctl.cpp:783 +#: plasmoid-kf5/package/contents/config/config.qml:37 msgid "DataEngine" msgstr "DataEngine" -#: plasmoid-kde4/netctl.cpp:789 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:43 -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41 +#: plasmoid-kde4/netctl.cpp:784 +#: plasmoid-kf5/package/contents/config/config.qml:43 +#: plasmoid-kf5/package/contents/ui/about.qml:41 msgid "About" msgstr "About" -#: plasmoid-kf5/plasmoid/contents/config/config.qml:25 +#: plasmoid-kf5/package/contents/config/config.qml:25 msgid "Widget" msgstr "Widget" -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74 +#: plasmoid-kf5/package/contents/ui/about.qml:74 msgid "Acknowledgment" msgstr "Acknowledgment" -#. i18n: file: plasmoid-kde4/appearance.ui:408 +#. i18n: file: plasmoid-kde4/appearance.ui:342 #. i18n: ectx: property (text), widget (QLabel, label_textAlign) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:64 rc.cpp:45 +#: plasmoid-kf5/package/contents/ui/appearance.qml:64 +#: resources/translations-plasmoid/rc.cpp:45 rc.cpp:45 msgid "Text align" msgstr "Text align" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72 +#: plasmoid-kf5/package/contents/ui/appearance.qml:72 msgid "center" msgstr "center" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76 +#: plasmoid-kf5/package/contents/ui/appearance.qml:76 msgid "right" msgstr "right" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80 +#: plasmoid-kf5/package/contents/ui/appearance.qml:80 msgid "left" msgstr "left" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84 +#: plasmoid-kf5/package/contents/ui/appearance.qml:84 msgid "justify" msgstr "justify" -#. i18n: file: plasmoid-kde4/appearance.ui:326 +#. i18n: file: plasmoid-kde4/appearance.ui:266 #. i18n: ectx: property (text), widget (QLabel, label_font) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:107 rc.cpp:33 +#: plasmoid-kf5/package/contents/ui/appearance.qml:107 +#: resources/translations-plasmoid/rc.cpp:33 rc.cpp:33 msgid "Font" msgstr "Font" -#. i18n: file: plasmoid-kde4/appearance.ui:142 +#. i18n: file: plasmoid-kde4/appearance.ui:136 #. i18n: ectx: property (text), widget (QLabel, label_fontSize) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:125 rc.cpp:15 +#: plasmoid-kf5/package/contents/ui/appearance.qml:125 +#: resources/translations-plasmoid/rc.cpp:15 rc.cpp:15 msgid "Font size" msgstr "Font size" -#. i18n: file: plasmoid-kde4/appearance.ui:203 +#. i18n: file: plasmoid-kde4/appearance.ui:178 #. i18n: ectx: property (text), widget (QLabel, label_fontWeight) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:145 rc.cpp:21 +#: plasmoid-kf5/package/contents/ui/appearance.qml:145 +#: resources/translations-plasmoid/rc.cpp:21 rc.cpp:21 msgid "Font weight" msgstr "Font weight" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153 +#: plasmoid-kf5/package/contents/ui/appearance.qml:153 msgid "light" msgstr "light" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200 +#: plasmoid-kf5/package/contents/ui/appearance.qml:157 +#: plasmoid-kf5/package/contents/ui/appearance.qml:200 msgid "normal" msgstr "normal" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161 +#: plasmoid-kf5/package/contents/ui/appearance.qml:161 msgid "demi bold" msgstr "demi bold" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165 +#: plasmoid-kf5/package/contents/ui/appearance.qml:165 msgid "bold" msgstr "bold" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169 +#: plasmoid-kf5/package/contents/ui/appearance.qml:169 msgid "black" msgstr "black" -#. i18n: file: plasmoid-kde4/appearance.ui:267 +#. i18n: file: plasmoid-kde4/appearance.ui:223 #. i18n: ectx: property (text), widget (QLabel, label_fontStyle) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:192 rc.cpp:27 +#: plasmoid-kf5/package/contents/ui/appearance.qml:192 +#: resources/translations-plasmoid/rc.cpp:27 rc.cpp:27 msgid "Font style" msgstr "Font style" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204 +#: plasmoid-kf5/package/contents/ui/appearance.qml:204 msgid "italic" msgstr "italic" -#. i18n: file: plasmoid-kde4/appearance.ui:80 +#. i18n: file: plasmoid-kde4/appearance.ui:90 #. i18n: ectx: property (text), widget (QLabel, label_fontColor) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:227 rc.cpp:9 +#: plasmoid-kf5/package/contents/ui/appearance.qml:227 +#: resources/translations-plasmoid/rc.cpp:9 rc.cpp:9 msgid "Font color" msgstr "Font color" -#. i18n: file: plasmoid-kde4/appearance.ui:375 +#. i18n: file: plasmoid-kde4/appearance.ui:299 #. i18n: ectx: property (text), widget (QLabel, label_activeIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:250 rc.cpp:39 +#: plasmoid-kf5/package/contents/ui/appearance.qml:250 +#: resources/translations-plasmoid/rc.cpp:39 rc.cpp:39 msgid "Active icon" msgstr "Active icon" -#. i18n: file: plasmoid-kde4/appearance.ui:63 +#. i18n: file: plasmoid-kde4/appearance.ui:73 #. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) -#. i18n: file: plasmoid-kde4/appearance.ui:391 +#. i18n: file: plasmoid-kde4/appearance.ui:325 #. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) -#. i18n: file: plasmoid-kde4/dataengine.ui:50 +#. i18n: file: plasmoid-kde4/dataengine.ui:60 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/dataengine.ui:83 +#. i18n: file: plasmoid-kde4/dataengine.ui:103 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/dataengine.ui:119 +#. i18n: file: plasmoid-kde4/dataengine.ui:149 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) -#. i18n: file: plasmoid-kde4/dataengine.ui:155 +#. i18n: file: plasmoid-kde4/dataengine.ui:195 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) -#. i18n: file: plasmoid-kde4/widget.ui:108 +#. i18n: file: plasmoid-kde4/widget.ui:102 #. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) -#. i18n: file: plasmoid-kde4/widget.ui:144 +#. i18n: file: plasmoid-kde4/widget.ui:148 #. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) -#. i18n: file: plasmoid-kde4/widget.ui:177 +#. i18n: file: plasmoid-kde4/widget.ui:191 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:210 +#. i18n: file: plasmoid-kde4/widget.ui:234 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:246 +#. i18n: file: plasmoid-kde4/widget.ui:280 #. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) -#. i18n: file: plasmoid-kde4/widget.ui:282 +#. i18n: file: plasmoid-kde4/widget.ui:326 #. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42 -#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 -#: rc.cpp:99 rc.cpp:105 rc.cpp:111 +#. i18n: file: plasmoid-kde4/appearance.ui:73 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) +#. i18n: file: plasmoid-kde4/appearance.ui:325 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) +#. i18n: file: plasmoid-kde4/dataengine.ui:60 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/dataengine.ui:103 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/dataengine.ui:149 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) +#. i18n: file: plasmoid-kde4/dataengine.ui:195 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) +#. i18n: file: plasmoid-kde4/widget.ui:102 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) +#. i18n: file: plasmoid-kde4/widget.ui:148 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) +#. i18n: file: plasmoid-kde4/widget.ui:191 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:234 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:280 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) +#. i18n: file: plasmoid-kde4/widget.ui:326 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) +#: plasmoid-kf5/package/contents/ui/appearance.qml:260 +#: plasmoid-kf5/package/contents/ui/appearance.qml:292 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:59 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:92 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:150 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:208 +#: plasmoid-kf5/package/contents/ui/widget.qml:90 +#: plasmoid-kf5/package/contents/ui/widget.qml:147 +#: plasmoid-kf5/package/contents/ui/widget.qml:181 +#: plasmoid-kf5/package/contents/ui/widget.qml:216 +#: plasmoid-kf5/package/contents/ui/widget.qml:273 +#: plasmoid-kf5/package/contents/ui/widget.qml:330 +#: resources/translations-plasmoid/rc.cpp:6 +#: resources/translations-plasmoid/rc.cpp:42 +#: resources/translations-plasmoid/rc.cpp:54 +#: resources/translations-plasmoid/rc.cpp:60 +#: resources/translations-plasmoid/rc.cpp:66 +#: resources/translations-plasmoid/rc.cpp:72 +#: resources/translations-plasmoid/rc.cpp:81 +#: resources/translations-plasmoid/rc.cpp:87 +#: resources/translations-plasmoid/rc.cpp:93 +#: resources/translations-plasmoid/rc.cpp:99 +#: resources/translations-plasmoid/rc.cpp:105 +#: resources/translations-plasmoid/rc.cpp:111 rc.cpp:6 rc.cpp:42 rc.cpp:54 +#: rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 rc.cpp:99 +#: rc.cpp:105 rc.cpp:111 msgid "Browse" msgstr "Browse" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337 +#: plasmoid-kf5/package/contents/ui/appearance.qml:267 +#: plasmoid-kf5/package/contents/ui/appearance.qml:299 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:66 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:99 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:157 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:215 +#: plasmoid-kf5/package/contents/ui/widget.qml:97 +#: plasmoid-kf5/package/contents/ui/widget.qml:153 +#: plasmoid-kf5/package/contents/ui/widget.qml:188 +#: plasmoid-kf5/package/contents/ui/widget.qml:223 +#: plasmoid-kf5/package/contents/ui/widget.qml:280 +#: plasmoid-kf5/package/contents/ui/widget.qml:337 msgid "Select a path" msgstr "Select a path" #. i18n: file: plasmoid-kde4/appearance.ui:47 #. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:282 rc.cpp:3 +#: plasmoid-kf5/package/contents/ui/appearance.qml:282 +#: resources/translations-plasmoid/rc.cpp:3 rc.cpp:3 msgid "Inactive icon" msgstr "Inactive icon" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:309 +#: plasmoid-kf5/package/contents/ui/appearance.qml:309 msgid "Select a color" msgstr "Select a color" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:318 +#: plasmoid-kf5/package/contents/ui/appearance.qml:318 msgid "Select a font" msgstr "Select a font" #. i18n: file: plasmoid-kde4/dataengine.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:161 +#. i18n: file: plasmoid-kde4/widget.ui:165 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90 +#. i18n: file: plasmoid-kde4/dataengine.ui:34 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:165 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:49 +#: plasmoid-kf5/package/contents/ui/widget.qml:169 +#: resources/translations-plasmoid/rc.cpp:51 +#: resources/translations-plasmoid/rc.cpp:90 rc.cpp:51 rc.cpp:90 msgid "Path to netctl" msgstr "Path to netctl" -#. i18n: file: plasmoid-kde4/dataengine.ui:67 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:194 +#. i18n: file: plasmoid-kde4/widget.ui:208 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:208 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:82 +#: plasmoid-kf5/package/contents/ui/widget.qml:204 +#: resources/translations-plasmoid/rc.cpp:57 +#: resources/translations-plasmoid/rc.cpp:96 rc.cpp:57 rc.cpp:96 msgid "Path to netctl-auto" msgstr "Path to netctl-auto" -#. i18n: file: plasmoid-kde4/dataengine.ui:100 +#. i18n: file: plasmoid-kde4/dataengine.ui:123 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp4) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:115 rc.cpp:63 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:115 +#: resources/translations-plasmoid/rc.cpp:63 rc.cpp:63 msgid "Check external IPv4" msgstr "Check external IPv4" -#. i18n: file: plasmoid-kde4/dataengine.ui:136 +#. i18n: file: plasmoid-kde4/dataengine.ui:169 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp6) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:173 rc.cpp:69 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:173 +#: resources/translations-plasmoid/rc.cpp:69 rc.cpp:69 msgid "Check external IPv6" msgstr "Check external IPv6" -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -msgid "inactive" -msgstr "inactive" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -msgid "active" -msgstr "active" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:91 -msgid "Network status has been changed to '%1'" -msgstr "Network status has been changed to '%1'" - #. i18n: file: plasmoid-kde4/widget.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_autoUpdate) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:60 rc.cpp:75 +#: plasmoid-kf5/package/contents/ui/widget.qml:60 +#: resources/translations-plasmoid/rc.cpp:75 rc.cpp:75 msgid "Auto update interval, msec" msgstr "Auto update interval, msec" -#. i18n: file: plasmoid-kde4/widget.ui:92 +#. i18n: file: plasmoid-kde4/widget.ui:76 #. i18n: ectx: property (text), widget (QLabel, label_gui) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:80 rc.cpp:78 +#: plasmoid-kf5/package/contents/ui/widget.qml:80 +#: resources/translations-plasmoid/rc.cpp:78 rc.cpp:78 msgid "Path to GUI" msgstr "Path to GUI" -#. i18n: file: plasmoid-kde4/widget.ui:125 +#. i18n: file: plasmoid-kde4/widget.ui:122 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_helper) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:113 rc.cpp:84 +#: plasmoid-kf5/package/contents/ui/widget.qml:113 +#: resources/translations-plasmoid/rc.cpp:84 rc.cpp:84 msgid "Use helper" msgstr "Use helper" -#. i18n: file: plasmoid-kde4/widget.ui:227 +#. i18n: file: plasmoid-kde4/widget.ui:254 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:239 rc.cpp:102 +#: plasmoid-kf5/package/contents/ui/widget.qml:239 +#: resources/translations-plasmoid/rc.cpp:102 rc.cpp:102 msgid "Use sudo for netctl" msgstr "Use sudo for netctl" -#. i18n: file: plasmoid-kde4/widget.ui:263 +#. i18n: file: plasmoid-kde4/widget.ui:300 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:296 rc.cpp:108 +#: plasmoid-kf5/package/contents/ui/widget.qml:296 +#: resources/translations-plasmoid/rc.cpp:108 rc.cpp:108 msgid "Show 'Start WiFi menu'" msgstr "Show 'Start WiFi menu'" -#: plasmoid-kf5/plugin/netctladds.cpp:160 +#: plasmoid-kf5/plugin/netctladds.cpp:91 +msgid "Homepage" +msgstr "Homepage" + +#: plasmoid-kf5/plugin/netctladds.cpp:92 +msgid "Repository" +msgstr "Repository" + +#: plasmoid-kf5/plugin/netctladds.cpp:93 +msgid "Bugtracker" +msgstr "Bugtracker" + +#: plasmoid-kf5/plugin/netctladds.cpp:94 +msgid "Translation issue" +msgstr "Translation issue" + +#: plasmoid-kf5/plugin/netctladds.cpp:95 +msgid "AUR packages" +msgstr "AUR packages" + +#: plasmoid-kf5/plugin/netctladds.cpp:145 msgid "Run %1" msgstr "Run %1" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:161 +msgid "Network status has been changed to active" +msgstr "Network status has been changed to active" + +#: plasmoid-kf5/plugin/netctladds.cpp:163 +msgid "Network status has been changed to inactive" +msgstr "Network status has been changed to inactive" + +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 msgid "Select profile" msgstr "Select profile" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 msgid "Profile:" msgstr "Profile:" -#. i18n: file: plasmoid-kde4/appearance.ui:112 +#. i18n: file: plasmoid-kde4/appearance.ui:106 #. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor) -#: rc.cpp:12 +#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12 msgid "Set font color" msgstr "Set font color" -#. i18n: file: plasmoid-kde4/appearance.ui:174 +#. i18n: file: plasmoid-kde4/appearance.ui:152 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize) -#: rc.cpp:18 +#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18 msgid "Set font size" msgstr "Set font size" -#. i18n: file: plasmoid-kde4/appearance.ui:235 +#. i18n: file: plasmoid-kde4/appearance.ui:194 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight) -#: rc.cpp:24 +#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24 msgid "Set font weight" msgstr "Set font weight" -#. i18n: file: plasmoid-kde4/appearance.ui:299 +#. i18n: file: plasmoid-kde4/appearance.ui:239 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle) -#: rc.cpp:30 +#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30 msgid "Set font style" msgstr "Set font style" -#. i18n: file: plasmoid-kde4/appearance.ui:358 +#. i18n: file: plasmoid-kde4/appearance.ui:282 #. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font) -#: rc.cpp:36 +#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36 msgid "Set font family" msgstr "Set font family" -#. i18n: file: plasmoid-kde4/appearance.ui:440 +#. i18n: file: plasmoid-kde4/appearance.ui:358 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign) -#: rc.cpp:48 +#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48 msgid "Set text align" msgstr "Set text align" -#. i18n: file: plasmoid-kde4/widget.ui:291 +#. i18n: file: plasmoid-kde4/widget.ui:353 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface) -#: rc.cpp:114 +#: resources/translations-plasmoid/rc.cpp:114 rc.cpp:114 msgid "Show more detailed interface" msgstr "Show more detailed interface" -#. i18n: file: plasmoid-kde4/widget.ui:309 +#. i18n: file: plasmoid-kde4/widget.ui:373 #. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit) -#: rc.cpp:117 +#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117 msgid "" "$info - active profile information\n" "$current - current profile name\n" @@ -495,16 +554,22 @@ msgstr "" "$profiles - list of the netctl profiles\n" "$status - current profile status (static/enabled)" -#: rc.cpp:126 +#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126 msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "Evgeniy Alekseev" -#: rc.cpp:127 +#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127 msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "esalexeev@gmail.com" +#~ msgid "inactive" +#~ msgstr "inactive" + +#~ msgid "active" +#~ msgstr "active" + #~ msgid "Acknowledgement" #~ msgstr "Acknowledgement" diff --git a/sources/resources/translations-plasmoid/ja.po b/sources/resources/translations-plasmoid/ja.po index bba19db..5a4411c 100644 --- a/sources/resources/translations-plasmoid/ja.po +++ b/sources/resources/translations-plasmoid/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\n" -"POT-Creation-Date: 2015-01-09 04:54+0300\n" +"POT-Creation-Date: 2015-03-17 12:48+0300\n" "PO-Revision-Date: 2014-10-13 16:37+0900\n" "Last-Translator: NOGISAKA Sadata \n" "Language-Team: Japanese \n" @@ -17,103 +17,103 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 1.5\n" -#: plasmoid-kde4/netctl.cpp:238 plasmoid-kf5/plugin/netctladds.cpp:186 +#: plasmoid-kde4/netctl.cpp:234 plasmoid-kf5/plugin/netctladds.cpp:194 msgid "Set profile %1 disabled" msgstr "プロファイル %1 を無効にする" -#: plasmoid-kde4/netctl.cpp:241 plasmoid-kf5/plugin/netctladds.cpp:189 +#: plasmoid-kde4/netctl.cpp:237 plasmoid-kf5/plugin/netctladds.cpp:197 msgid "Set profile %1 enabled" msgstr "プロファイル %1 を有効にする" -#: plasmoid-kde4/netctl.cpp:262 plasmoid-kf5/plugin/netctladds.cpp:208 +#: plasmoid-kde4/netctl.cpp:257 plasmoid-kf5/plugin/netctladds.cpp:215 msgid "Restart profile %1" msgstr "プロファイル %1 の利用を再開" -#: plasmoid-kde4/netctl.cpp:283 plasmoid-kf5/plugin/netctladds.cpp:232 +#: plasmoid-kde4/netctl.cpp:277 plasmoid-kf5/plugin/netctladds.cpp:238 msgid "Start profile %1" msgstr "プロファイル %1 の利用を開始" -#: plasmoid-kde4/netctl.cpp:309 plasmoid-kf5/plugin/netctladds.cpp:257 +#: plasmoid-kde4/netctl.cpp:302 plasmoid-kf5/plugin/netctladds.cpp:262 msgid "Stop profile %1" msgstr "プロファイル %1 の利用を停止する" -#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132 -#: plasmoid-kf5/plugin/netctladds.cpp:274 +#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457 +#: plasmoid-kf5/package/contents/ui/main.qml:106 +#: plasmoid-kf5/plugin/netctladds.cpp:279 msgid "Stop all profiles" msgstr "全てのプロファイルの利用を停止する" -#: plasmoid-kde4/netctl.cpp:349 plasmoid-kf5/plugin/netctladds.cpp:296 +#: plasmoid-kde4/netctl.cpp:340 plasmoid-kf5/plugin/netctladds.cpp:300 msgid "Switch to profile %1" msgstr "プロファイルを %1 へ切り替える" -#: plasmoid-kde4/netctl.cpp:422 plasmoid-kf5/plasmoid/contents/ui/main.qml:203 +#: plasmoid-kde4/netctl.cpp:412 plasmoid-kf5/package/contents/ui/main.qml:183 msgid "Start another profile" msgstr "他のプロファイルの利用を開始" -#: plasmoid-kde4/netctl.cpp:423 plasmoid-kf5/plasmoid/contents/ui/main.qml:204 +#: plasmoid-kde4/netctl.cpp:413 plasmoid-kf5/package/contents/ui/main.qml:184 msgid "Stop %1" msgstr "%1 を停止" -#: plasmoid-kde4/netctl.cpp:424 plasmoid-kf5/plasmoid/contents/ui/main.qml:205 +#: plasmoid-kde4/netctl.cpp:414 plasmoid-kf5/package/contents/ui/main.qml:185 msgid "Restart %1" msgstr "%1 を再開" -#: plasmoid-kde4/netctl.cpp:426 plasmoid-kf5/plasmoid/contents/ui/main.qml:207 +#: plasmoid-kde4/netctl.cpp:416 plasmoid-kf5/package/contents/ui/main.qml:187 msgid "Disable %1" msgstr "%1 を無効にする" -#: plasmoid-kde4/netctl.cpp:428 plasmoid-kf5/plasmoid/contents/ui/main.qml:209 +#: plasmoid-kde4/netctl.cpp:418 plasmoid-kf5/package/contents/ui/main.qml:189 msgid "Enable %1" msgstr "%1 を有効にする" -#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211 +#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444 +#: plasmoid-kf5/package/contents/ui/main.qml:104 +#: plasmoid-kf5/package/contents/ui/main.qml:191 msgid "Start profile" msgstr "プロファイルの利用を開始" -#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/plasmoid/contents/ui/main.qml:131 +#: plasmoid-kde4/netctl.cpp:452 plasmoid-kf5/package/contents/ui/main.qml:105 msgid "Stop profile" msgstr "プロファイルの利用を停止する" -#: plasmoid-kde4/netctl.cpp:472 plasmoid-kf5/plasmoid/contents/ui/main.qml:133 +#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/package/contents/ui/main.qml:107 msgid "Switch to profile" msgstr "プロファイルを切り替える" -#: plasmoid-kde4/netctl.cpp:480 plasmoid-kf5/plasmoid/contents/ui/main.qml:134 +#: plasmoid-kde4/netctl.cpp:470 plasmoid-kf5/package/contents/ui/main.qml:108 msgid "Restart profile" msgstr "プロファイルの利用を再開" -#: plasmoid-kde4/netctl.cpp:485 plasmoid-kf5/plasmoid/contents/ui/main.qml:135 +#: plasmoid-kde4/netctl.cpp:475 plasmoid-kf5/package/contents/ui/main.qml:109 msgid "Enable profile" msgstr "プロファイルを有効にする" -#: plasmoid-kde4/netctl.cpp:489 +#: plasmoid-kde4/netctl.cpp:479 msgid "Show netctl-gui" msgstr "netctl-gui を表示" -#: plasmoid-kde4/netctl.cpp:494 plasmoid-kf5/plasmoid/contents/ui/main.qml:137 +#: plasmoid-kde4/netctl.cpp:484 plasmoid-kf5/package/contents/ui/main.qml:110 msgid "Show WiFi menu" msgstr "WiFi メニューを表示" -#: plasmoid-kde4/netctl.cpp:521 +#: plasmoid-kde4/netctl.cpp:511 msgid "Start GUI" msgstr "GUI を開始" -#: plasmoid-kde4/netctl.cpp:532 +#: plasmoid-kde4/netctl.cpp:522 msgid "Start WiFi menu" msgstr "WiFi メニューを開始" -#: plasmoid-kde4/netctl.cpp:572 +#: plasmoid-kde4/netctl.cpp:563 msgid "Network is up" msgstr "ネットワークは有効です" -#: plasmoid-kde4/netctl.cpp:576 +#: plasmoid-kde4/netctl.cpp:567 msgid "Network is down" msgstr "ネットワークは無効です" -#: plasmoid-kde4/netctl.cpp:766 +#: plasmoid-kde4/netctl.cpp:754 msgid "" "Version %1\n" "(build date %2)" @@ -121,364 +121,421 @@ msgstr "" "バージョン:%1\n" "(ビルド日時:%2)" -#: plasmoid-kde4/netctl.cpp:767 plasmoid-kf5/plugin/netctladds.cpp:88 +#: plasmoid-kde4/netctl.cpp:755 plasmoid-kf5/plugin/netctladds.cpp:88 msgid "KDE widget which interacts with netctl." msgstr "netctl と連携する KDE ウィジェット" -#: plasmoid-kde4/netctl.cpp:768 plasmoid-kf5/plugin/netctladds.cpp:90 +#: plasmoid-kde4/netctl.cpp:756 plasmoid-kf5/plugin/netctladds.cpp:90 msgid "Links:" msgstr "リンク:" -#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91 -msgid "Homepage" -msgstr "ホームページ" - -#: plasmoid-kde4/netctl.cpp:770 plasmoid-kf5/plugin/netctladds.cpp:92 -msgid "Repository" -msgstr "レポジトリ" - -#: plasmoid-kde4/netctl.cpp:771 plasmoid-kf5/plugin/netctladds.cpp:93 -msgid "Bugtracker" -msgstr "バグトラッカ" - -#: plasmoid-kde4/netctl.cpp:772 plasmoid-kf5/plugin/netctladds.cpp:94 -msgid "Translation issue" -msgstr "翻訳に関する issue" - -#: plasmoid-kde4/netctl.cpp:773 plasmoid-kf5/plugin/netctladds.cpp:95 -msgid "AUR packages" -msgstr "AUR パッケージ" - -#: plasmoid-kde4/netctl.cpp:775 plasmoid-kf5/plugin/netctladds.cpp:98 +#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99 msgid "This software is licensed under %1" msgstr "このソフトウェアは %1 の下で許諾されます" -#: plasmoid-kde4/netctl.cpp:783 plasmoid-kf5/plugin/netctladds.cpp:100 +#: plasmoid-kde4/netctl.cpp:778 plasmoid-kf5/plugin/netctladds.cpp:102 msgid "Translators: %1" msgstr "翻訳者:%1" -#: plasmoid-kde4/netctl.cpp:784 plasmoid-kf5/plugin/netctladds.cpp:108 +#: plasmoid-kde4/netctl.cpp:779 plasmoid-kf5/plugin/netctladds.cpp:110 msgid "This software uses: %1" msgstr "このソフトウェアは次を利用しています:%1" -#: plasmoid-kde4/netctl.cpp:786 +#: plasmoid-kde4/netctl.cpp:781 msgid "Netctl plasmoid" msgstr "Netctl plasmoid" -#: plasmoid-kde4/netctl.cpp:787 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:31 +#: plasmoid-kde4/netctl.cpp:782 +#: plasmoid-kf5/package/contents/config/config.qml:31 msgid "Appearance" msgstr "外観" -#: plasmoid-kde4/netctl.cpp:788 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:37 +#: plasmoid-kde4/netctl.cpp:783 +#: plasmoid-kf5/package/contents/config/config.qml:37 msgid "DataEngine" msgstr "DataEngine" -#: plasmoid-kde4/netctl.cpp:789 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:43 -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41 +#: plasmoid-kde4/netctl.cpp:784 +#: plasmoid-kf5/package/contents/config/config.qml:43 +#: plasmoid-kf5/package/contents/ui/about.qml:41 msgid "About" msgstr "概要" -#: plasmoid-kf5/plasmoid/contents/config/config.qml:25 +#: plasmoid-kf5/package/contents/config/config.qml:25 msgid "Widget" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74 +#: plasmoid-kf5/package/contents/ui/about.qml:74 msgid "Acknowledgment" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:408 +#. i18n: file: plasmoid-kde4/appearance.ui:342 #. i18n: ectx: property (text), widget (QLabel, label_textAlign) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:64 rc.cpp:45 +#: plasmoid-kf5/package/contents/ui/appearance.qml:64 +#: resources/translations-plasmoid/rc.cpp:45 rc.cpp:45 msgid "Text align" msgstr "テキストの位置" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72 +#: plasmoid-kf5/package/contents/ui/appearance.qml:72 msgid "center" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76 +#: plasmoid-kf5/package/contents/ui/appearance.qml:76 msgid "right" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80 +#: plasmoid-kf5/package/contents/ui/appearance.qml:80 msgid "left" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84 +#: plasmoid-kf5/package/contents/ui/appearance.qml:84 msgid "justify" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:326 +#. i18n: file: plasmoid-kde4/appearance.ui:266 #. i18n: ectx: property (text), widget (QLabel, label_font) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:107 rc.cpp:33 +#: plasmoid-kf5/package/contents/ui/appearance.qml:107 +#: resources/translations-plasmoid/rc.cpp:33 rc.cpp:33 msgid "Font" msgstr "フォント" -#. i18n: file: plasmoid-kde4/appearance.ui:142 +#. i18n: file: plasmoid-kde4/appearance.ui:136 #. i18n: ectx: property (text), widget (QLabel, label_fontSize) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:125 rc.cpp:15 +#: plasmoid-kf5/package/contents/ui/appearance.qml:125 +#: resources/translations-plasmoid/rc.cpp:15 rc.cpp:15 msgid "Font size" msgstr "フォントの大きさ" -#. i18n: file: plasmoid-kde4/appearance.ui:203 +#. i18n: file: plasmoid-kde4/appearance.ui:178 #. i18n: ectx: property (text), widget (QLabel, label_fontWeight) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:145 rc.cpp:21 +#: plasmoid-kf5/package/contents/ui/appearance.qml:145 +#: resources/translations-plasmoid/rc.cpp:21 rc.cpp:21 msgid "Font weight" msgstr "フォントの太さ" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153 +#: plasmoid-kf5/package/contents/ui/appearance.qml:153 msgid "light" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200 +#: plasmoid-kf5/package/contents/ui/appearance.qml:157 +#: plasmoid-kf5/package/contents/ui/appearance.qml:200 msgid "normal" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161 +#: plasmoid-kf5/package/contents/ui/appearance.qml:161 msgid "demi bold" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165 +#: plasmoid-kf5/package/contents/ui/appearance.qml:165 msgid "bold" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169 +#: plasmoid-kf5/package/contents/ui/appearance.qml:169 msgid "black" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:267 +#. i18n: file: plasmoid-kde4/appearance.ui:223 #. i18n: ectx: property (text), widget (QLabel, label_fontStyle) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:192 rc.cpp:27 +#: plasmoid-kf5/package/contents/ui/appearance.qml:192 +#: resources/translations-plasmoid/rc.cpp:27 rc.cpp:27 msgid "Font style" msgstr "フォントの字形" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204 +#: plasmoid-kf5/package/contents/ui/appearance.qml:204 msgid "italic" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:80 +#. i18n: file: plasmoid-kde4/appearance.ui:90 #. i18n: ectx: property (text), widget (QLabel, label_fontColor) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:227 rc.cpp:9 +#: plasmoid-kf5/package/contents/ui/appearance.qml:227 +#: resources/translations-plasmoid/rc.cpp:9 rc.cpp:9 msgid "Font color" msgstr "フォントの色" -#. i18n: file: plasmoid-kde4/appearance.ui:375 +#. i18n: file: plasmoid-kde4/appearance.ui:299 #. i18n: ectx: property (text), widget (QLabel, label_activeIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:250 rc.cpp:39 +#: plasmoid-kf5/package/contents/ui/appearance.qml:250 +#: resources/translations-plasmoid/rc.cpp:39 rc.cpp:39 msgid "Active icon" msgstr "アクティブ時のアイコン" -#. i18n: file: plasmoid-kde4/appearance.ui:63 +#. i18n: file: plasmoid-kde4/appearance.ui:73 #. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) -#. i18n: file: plasmoid-kde4/appearance.ui:391 +#. i18n: file: plasmoid-kde4/appearance.ui:325 #. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) -#. i18n: file: plasmoid-kde4/dataengine.ui:50 +#. i18n: file: plasmoid-kde4/dataengine.ui:60 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/dataengine.ui:83 +#. i18n: file: plasmoid-kde4/dataengine.ui:103 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/dataengine.ui:119 +#. i18n: file: plasmoid-kde4/dataengine.ui:149 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) -#. i18n: file: plasmoid-kde4/dataengine.ui:155 +#. i18n: file: plasmoid-kde4/dataengine.ui:195 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) -#. i18n: file: plasmoid-kde4/widget.ui:108 +#. i18n: file: plasmoid-kde4/widget.ui:102 #. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) -#. i18n: file: plasmoid-kde4/widget.ui:144 +#. i18n: file: plasmoid-kde4/widget.ui:148 #. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) -#. i18n: file: plasmoid-kde4/widget.ui:177 +#. i18n: file: plasmoid-kde4/widget.ui:191 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:210 +#. i18n: file: plasmoid-kde4/widget.ui:234 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:246 +#. i18n: file: plasmoid-kde4/widget.ui:280 #. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) -#. i18n: file: plasmoid-kde4/widget.ui:282 +#. i18n: file: plasmoid-kde4/widget.ui:326 #. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42 -#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 -#: rc.cpp:99 rc.cpp:105 rc.cpp:111 +#. i18n: file: plasmoid-kde4/appearance.ui:73 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) +#. i18n: file: plasmoid-kde4/appearance.ui:325 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) +#. i18n: file: plasmoid-kde4/dataengine.ui:60 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/dataengine.ui:103 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/dataengine.ui:149 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) +#. i18n: file: plasmoid-kde4/dataengine.ui:195 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) +#. i18n: file: plasmoid-kde4/widget.ui:102 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) +#. i18n: file: plasmoid-kde4/widget.ui:148 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) +#. i18n: file: plasmoid-kde4/widget.ui:191 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:234 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:280 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) +#. i18n: file: plasmoid-kde4/widget.ui:326 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) +#: plasmoid-kf5/package/contents/ui/appearance.qml:260 +#: plasmoid-kf5/package/contents/ui/appearance.qml:292 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:59 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:92 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:150 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:208 +#: plasmoid-kf5/package/contents/ui/widget.qml:90 +#: plasmoid-kf5/package/contents/ui/widget.qml:147 +#: plasmoid-kf5/package/contents/ui/widget.qml:181 +#: plasmoid-kf5/package/contents/ui/widget.qml:216 +#: plasmoid-kf5/package/contents/ui/widget.qml:273 +#: plasmoid-kf5/package/contents/ui/widget.qml:330 +#: resources/translations-plasmoid/rc.cpp:6 +#: resources/translations-plasmoid/rc.cpp:42 +#: resources/translations-plasmoid/rc.cpp:54 +#: resources/translations-plasmoid/rc.cpp:60 +#: resources/translations-plasmoid/rc.cpp:66 +#: resources/translations-plasmoid/rc.cpp:72 +#: resources/translations-plasmoid/rc.cpp:81 +#: resources/translations-plasmoid/rc.cpp:87 +#: resources/translations-plasmoid/rc.cpp:93 +#: resources/translations-plasmoid/rc.cpp:99 +#: resources/translations-plasmoid/rc.cpp:105 +#: resources/translations-plasmoid/rc.cpp:111 rc.cpp:6 rc.cpp:42 rc.cpp:54 +#: rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 rc.cpp:99 +#: rc.cpp:105 rc.cpp:111 msgid "Browse" msgstr "参照" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337 +#: plasmoid-kf5/package/contents/ui/appearance.qml:267 +#: plasmoid-kf5/package/contents/ui/appearance.qml:299 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:66 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:99 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:157 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:215 +#: plasmoid-kf5/package/contents/ui/widget.qml:97 +#: plasmoid-kf5/package/contents/ui/widget.qml:153 +#: plasmoid-kf5/package/contents/ui/widget.qml:188 +#: plasmoid-kf5/package/contents/ui/widget.qml:223 +#: plasmoid-kf5/package/contents/ui/widget.qml:280 +#: plasmoid-kf5/package/contents/ui/widget.qml:337 msgid "Select a path" msgstr "" #. i18n: file: plasmoid-kde4/appearance.ui:47 #. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:282 rc.cpp:3 +#: plasmoid-kf5/package/contents/ui/appearance.qml:282 +#: resources/translations-plasmoid/rc.cpp:3 rc.cpp:3 msgid "Inactive icon" msgstr "非アクティブ時のアイコン" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:309 +#: plasmoid-kf5/package/contents/ui/appearance.qml:309 #, fuzzy msgid "Select a color" msgstr "フォントの色を設定する" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:318 +#: plasmoid-kf5/package/contents/ui/appearance.qml:318 #, fuzzy msgid "Select a font" msgstr "フォントの大きさを設定する" #. i18n: file: plasmoid-kde4/dataengine.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:161 +#. i18n: file: plasmoid-kde4/widget.ui:165 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90 +#. i18n: file: plasmoid-kde4/dataengine.ui:34 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:165 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:49 +#: plasmoid-kf5/package/contents/ui/widget.qml:169 +#: resources/translations-plasmoid/rc.cpp:51 +#: resources/translations-plasmoid/rc.cpp:90 rc.cpp:51 rc.cpp:90 msgid "Path to netctl" msgstr "netctl へのパス" -#. i18n: file: plasmoid-kde4/dataengine.ui:67 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:194 +#. i18n: file: plasmoid-kde4/widget.ui:208 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:208 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:82 +#: plasmoid-kf5/package/contents/ui/widget.qml:204 +#: resources/translations-plasmoid/rc.cpp:57 +#: resources/translations-plasmoid/rc.cpp:96 rc.cpp:57 rc.cpp:96 msgid "Path to netctl-auto" msgstr "netctl-auto へのパス" -#. i18n: file: plasmoid-kde4/dataengine.ui:100 +#. i18n: file: plasmoid-kde4/dataengine.ui:123 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp4) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:115 rc.cpp:63 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:115 +#: resources/translations-plasmoid/rc.cpp:63 rc.cpp:63 msgid "Check external IPv4" msgstr "外部 IPv4 アドレスを確認" -#. i18n: file: plasmoid-kde4/dataengine.ui:136 +#. i18n: file: plasmoid-kde4/dataengine.ui:169 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp6) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:173 rc.cpp:69 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:173 +#: resources/translations-plasmoid/rc.cpp:69 rc.cpp:69 msgid "Check external IPv6" msgstr "外部 IPv6 アドレスを確認" -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -#, fuzzy -msgid "inactive" -msgstr "非アクティブ時のアイコン" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -#, fuzzy -msgid "active" -msgstr "非アクティブ時のアイコン" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:91 -msgid "Network status has been changed to '%1'" -msgstr "" - #. i18n: file: plasmoid-kde4/widget.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_autoUpdate) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:60 rc.cpp:75 +#: plasmoid-kf5/package/contents/ui/widget.qml:60 +#: resources/translations-plasmoid/rc.cpp:75 rc.cpp:75 msgid "Auto update interval, msec" msgstr "自動更新の間隔(ミリ秒)" -#. i18n: file: plasmoid-kde4/widget.ui:92 +#. i18n: file: plasmoid-kde4/widget.ui:76 #. i18n: ectx: property (text), widget (QLabel, label_gui) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:80 rc.cpp:78 +#: plasmoid-kf5/package/contents/ui/widget.qml:80 +#: resources/translations-plasmoid/rc.cpp:78 rc.cpp:78 msgid "Path to GUI" msgstr "GUIへのパス" -#. i18n: file: plasmoid-kde4/widget.ui:125 +#. i18n: file: plasmoid-kde4/widget.ui:122 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_helper) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:113 rc.cpp:84 +#: plasmoid-kf5/package/contents/ui/widget.qml:113 +#: resources/translations-plasmoid/rc.cpp:84 rc.cpp:84 msgid "Use helper" msgstr "ヘルパを使用する" -#. i18n: file: plasmoid-kde4/widget.ui:227 +#. i18n: file: plasmoid-kde4/widget.ui:254 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:239 rc.cpp:102 +#: plasmoid-kf5/package/contents/ui/widget.qml:239 +#: resources/translations-plasmoid/rc.cpp:102 rc.cpp:102 msgid "Use sudo for netctl" msgstr "netctl に対して sudo を使用する" -#. i18n: file: plasmoid-kde4/widget.ui:263 +#. i18n: file: plasmoid-kde4/widget.ui:300 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:296 rc.cpp:108 +#: plasmoid-kf5/package/contents/ui/widget.qml:296 +#: resources/translations-plasmoid/rc.cpp:108 rc.cpp:108 msgid "Show 'Start WiFi menu'" msgstr "「Wifi メニューの開始」を表示" -#: plasmoid-kf5/plugin/netctladds.cpp:160 +#: plasmoid-kf5/plugin/netctladds.cpp:91 +msgid "Homepage" +msgstr "ホームページ" + +#: plasmoid-kf5/plugin/netctladds.cpp:92 +msgid "Repository" +msgstr "レポジトリ" + +#: plasmoid-kf5/plugin/netctladds.cpp:93 +msgid "Bugtracker" +msgstr "バグトラッカ" + +#: plasmoid-kf5/plugin/netctladds.cpp:94 +msgid "Translation issue" +msgstr "翻訳に関する issue" + +#: plasmoid-kf5/plugin/netctladds.cpp:95 +msgid "AUR packages" +msgstr "AUR パッケージ" + +#: plasmoid-kf5/plugin/netctladds.cpp:145 msgid "Run %1" msgstr "" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:161 +msgid "Network status has been changed to active" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:163 +msgid "Network status has been changed to inactive" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 #, fuzzy msgid "Select profile" msgstr "プロファイルの利用を停止する" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 #, fuzzy msgid "Profile:" msgstr "プロファイルの利用を停止する" -#. i18n: file: plasmoid-kde4/appearance.ui:112 +#. i18n: file: plasmoid-kde4/appearance.ui:106 #. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor) -#: rc.cpp:12 +#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12 msgid "Set font color" msgstr "フォントの色を設定する" -#. i18n: file: plasmoid-kde4/appearance.ui:174 +#. i18n: file: plasmoid-kde4/appearance.ui:152 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize) -#: rc.cpp:18 +#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18 msgid "Set font size" msgstr "フォントの大きさを設定する" -#. i18n: file: plasmoid-kde4/appearance.ui:235 +#. i18n: file: plasmoid-kde4/appearance.ui:194 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight) -#: rc.cpp:24 +#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24 msgid "Set font weight" msgstr "フォントの太さを設定する" -#. i18n: file: plasmoid-kde4/appearance.ui:299 +#. i18n: file: plasmoid-kde4/appearance.ui:239 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle) -#: rc.cpp:30 +#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30 msgid "Set font style" msgstr "フォントの字形を設定する" -#. i18n: file: plasmoid-kde4/appearance.ui:358 +#. i18n: file: plasmoid-kde4/appearance.ui:282 #. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font) -#: rc.cpp:36 +#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36 msgid "Set font family" msgstr "フォントを設定する" -#. i18n: file: plasmoid-kde4/appearance.ui:440 +#. i18n: file: plasmoid-kde4/appearance.ui:358 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign) -#: rc.cpp:48 +#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48 msgid "Set text align" msgstr "テキストの位置を設定する" -#. i18n: file: plasmoid-kde4/widget.ui:291 +#. i18n: file: plasmoid-kde4/widget.ui:353 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface) -#: rc.cpp:114 +#: resources/translations-plasmoid/rc.cpp:114 rc.cpp:114 msgid "Show more detailed interface" msgstr "インターフェースについての詳細を表示" -#. i18n: file: plasmoid-kde4/widget.ui:309 +#. i18n: file: plasmoid-kde4/widget.ui:373 #. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit) -#: rc.cpp:117 +#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117 msgid "" "$info - active profile information\n" "$current - current profile name\n" @@ -500,16 +557,24 @@ msgstr "" "$profiles - プロファイルの一覧\n" "$status - 現在のプロファイルの状態(静的/有効)" -#: rc.cpp:126 +#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126 msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "NOGISAKA Sadata" -#: rc.cpp:127 +#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127 msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "ngsksdt@gmail.com " +#, fuzzy +#~ msgid "inactive" +#~ msgstr "非アクティブ時のアイコン" + +#, fuzzy +#~ msgid "active" +#~ msgstr "非アクティブ時のアイコン" + #, fuzzy #~ msgid "Netctl GUI" #~ msgstr "GUI を開始" diff --git a/sources/resources/translations-plasmoid/plasma_applet_netctl.pot b/sources/resources/translations-plasmoid/plasma_applet_netctl.pot index e5691ac..6e97ec3 100644 --- a/sources/resources/translations-plasmoid/plasma_applet_netctl.pot +++ b/sources/resources/translations-plasmoid/plasma_applet_netctl.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\n" -"POT-Creation-Date: 2015-01-09 04:54+0300\n" +"POT-Creation-Date: 2015-03-17 12:48+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,460 +17,519 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: plasmoid-kde4/netctl.cpp:238 plasmoid-kf5/plugin/netctladds.cpp:186 +#: plasmoid-kde4/netctl.cpp:234 plasmoid-kf5/plugin/netctladds.cpp:194 msgid "Set profile %1 disabled" msgstr "" -#: plasmoid-kde4/netctl.cpp:241 plasmoid-kf5/plugin/netctladds.cpp:189 +#: plasmoid-kde4/netctl.cpp:237 plasmoid-kf5/plugin/netctladds.cpp:197 msgid "Set profile %1 enabled" msgstr "" -#: plasmoid-kde4/netctl.cpp:262 plasmoid-kf5/plugin/netctladds.cpp:208 +#: plasmoid-kde4/netctl.cpp:257 plasmoid-kf5/plugin/netctladds.cpp:215 msgid "Restart profile %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:283 plasmoid-kf5/plugin/netctladds.cpp:232 +#: plasmoid-kde4/netctl.cpp:277 plasmoid-kf5/plugin/netctladds.cpp:238 msgid "Start profile %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:309 plasmoid-kf5/plugin/netctladds.cpp:257 +#: plasmoid-kde4/netctl.cpp:302 plasmoid-kf5/plugin/netctladds.cpp:262 msgid "Stop profile %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132 -#: plasmoid-kf5/plugin/netctladds.cpp:274 +#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457 +#: plasmoid-kf5/package/contents/ui/main.qml:106 +#: plasmoid-kf5/plugin/netctladds.cpp:279 msgid "Stop all profiles" msgstr "" -#: plasmoid-kde4/netctl.cpp:349 plasmoid-kf5/plugin/netctladds.cpp:296 +#: plasmoid-kde4/netctl.cpp:340 plasmoid-kf5/plugin/netctladds.cpp:300 msgid "Switch to profile %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:422 plasmoid-kf5/plasmoid/contents/ui/main.qml:203 +#: plasmoid-kde4/netctl.cpp:412 plasmoid-kf5/package/contents/ui/main.qml:183 msgid "Start another profile" msgstr "" -#: plasmoid-kde4/netctl.cpp:423 plasmoid-kf5/plasmoid/contents/ui/main.qml:204 +#: plasmoid-kde4/netctl.cpp:413 plasmoid-kf5/package/contents/ui/main.qml:184 msgid "Stop %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:424 plasmoid-kf5/plasmoid/contents/ui/main.qml:205 +#: plasmoid-kde4/netctl.cpp:414 plasmoid-kf5/package/contents/ui/main.qml:185 msgid "Restart %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:426 plasmoid-kf5/plasmoid/contents/ui/main.qml:207 +#: plasmoid-kde4/netctl.cpp:416 plasmoid-kf5/package/contents/ui/main.qml:187 msgid "Disable %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:428 plasmoid-kf5/plasmoid/contents/ui/main.qml:209 +#: plasmoid-kde4/netctl.cpp:418 plasmoid-kf5/package/contents/ui/main.qml:189 msgid "Enable %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211 +#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444 +#: plasmoid-kf5/package/contents/ui/main.qml:104 +#: plasmoid-kf5/package/contents/ui/main.qml:191 msgid "Start profile" msgstr "" -#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/plasmoid/contents/ui/main.qml:131 +#: plasmoid-kde4/netctl.cpp:452 plasmoid-kf5/package/contents/ui/main.qml:105 msgid "Stop profile" msgstr "" -#: plasmoid-kde4/netctl.cpp:472 plasmoid-kf5/plasmoid/contents/ui/main.qml:133 +#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/package/contents/ui/main.qml:107 msgid "Switch to profile" msgstr "" -#: plasmoid-kde4/netctl.cpp:480 plasmoid-kf5/plasmoid/contents/ui/main.qml:134 +#: plasmoid-kde4/netctl.cpp:470 plasmoid-kf5/package/contents/ui/main.qml:108 msgid "Restart profile" msgstr "" -#: plasmoid-kde4/netctl.cpp:485 plasmoid-kf5/plasmoid/contents/ui/main.qml:135 +#: plasmoid-kde4/netctl.cpp:475 plasmoid-kf5/package/contents/ui/main.qml:109 msgid "Enable profile" msgstr "" -#: plasmoid-kde4/netctl.cpp:489 +#: plasmoid-kde4/netctl.cpp:479 msgid "Show netctl-gui" msgstr "" -#: plasmoid-kde4/netctl.cpp:494 plasmoid-kf5/plasmoid/contents/ui/main.qml:137 +#: plasmoid-kde4/netctl.cpp:484 plasmoid-kf5/package/contents/ui/main.qml:110 msgid "Show WiFi menu" msgstr "" -#: plasmoid-kde4/netctl.cpp:521 +#: plasmoid-kde4/netctl.cpp:511 msgid "Start GUI" msgstr "" -#: plasmoid-kde4/netctl.cpp:532 +#: plasmoid-kde4/netctl.cpp:522 msgid "Start WiFi menu" msgstr "" -#: plasmoid-kde4/netctl.cpp:572 +#: plasmoid-kde4/netctl.cpp:563 msgid "Network is up" msgstr "" -#: plasmoid-kde4/netctl.cpp:576 +#: plasmoid-kde4/netctl.cpp:567 msgid "Network is down" msgstr "" -#: plasmoid-kde4/netctl.cpp:766 +#: plasmoid-kde4/netctl.cpp:754 msgid "" "Version %1\n" "(build date %2)" msgstr "" -#: plasmoid-kde4/netctl.cpp:767 plasmoid-kf5/plugin/netctladds.cpp:88 +#: plasmoid-kde4/netctl.cpp:755 plasmoid-kf5/plugin/netctladds.cpp:88 msgid "KDE widget which interacts with netctl." msgstr "" -#: plasmoid-kde4/netctl.cpp:768 plasmoid-kf5/plugin/netctladds.cpp:90 +#: plasmoid-kde4/netctl.cpp:756 plasmoid-kf5/plugin/netctladds.cpp:90 msgid "Links:" msgstr "" -#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91 -msgid "Homepage" -msgstr "" - -#: plasmoid-kde4/netctl.cpp:770 plasmoid-kf5/plugin/netctladds.cpp:92 -msgid "Repository" -msgstr "" - -#: plasmoid-kde4/netctl.cpp:771 plasmoid-kf5/plugin/netctladds.cpp:93 -msgid "Bugtracker" -msgstr "" - -#: plasmoid-kde4/netctl.cpp:772 plasmoid-kf5/plugin/netctladds.cpp:94 -msgid "Translation issue" -msgstr "" - -#: plasmoid-kde4/netctl.cpp:773 plasmoid-kf5/plugin/netctladds.cpp:95 -msgid "AUR packages" -msgstr "" - -#: plasmoid-kde4/netctl.cpp:775 plasmoid-kf5/plugin/netctladds.cpp:98 +#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99 msgid "This software is licensed under %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:783 plasmoid-kf5/plugin/netctladds.cpp:100 +#: plasmoid-kde4/netctl.cpp:778 plasmoid-kf5/plugin/netctladds.cpp:102 msgid "Translators: %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:784 plasmoid-kf5/plugin/netctladds.cpp:108 +#: plasmoid-kde4/netctl.cpp:779 plasmoid-kf5/plugin/netctladds.cpp:110 msgid "This software uses: %1" msgstr "" -#: plasmoid-kde4/netctl.cpp:786 +#: plasmoid-kde4/netctl.cpp:781 msgid "Netctl plasmoid" msgstr "" -#: plasmoid-kde4/netctl.cpp:787 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:31 +#: plasmoid-kde4/netctl.cpp:782 +#: plasmoid-kf5/package/contents/config/config.qml:31 msgid "Appearance" msgstr "" -#: plasmoid-kde4/netctl.cpp:788 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:37 +#: plasmoid-kde4/netctl.cpp:783 +#: plasmoid-kf5/package/contents/config/config.qml:37 msgid "DataEngine" msgstr "" -#: plasmoid-kde4/netctl.cpp:789 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:43 -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41 +#: plasmoid-kde4/netctl.cpp:784 +#: plasmoid-kf5/package/contents/config/config.qml:43 +#: plasmoid-kf5/package/contents/ui/about.qml:41 msgid "About" msgstr "" -#: plasmoid-kf5/plasmoid/contents/config/config.qml:25 +#: plasmoid-kf5/package/contents/config/config.qml:25 msgid "Widget" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74 +#: plasmoid-kf5/package/contents/ui/about.qml:74 msgid "Acknowledgment" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:408 +#. i18n: file: plasmoid-kde4/appearance.ui:342 #. i18n: ectx: property (text), widget (QLabel, label_textAlign) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:64 rc.cpp:45 +#: plasmoid-kf5/package/contents/ui/appearance.qml:64 +#: resources/translations-plasmoid/rc.cpp:45 rc.cpp:45 msgid "Text align" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72 +#: plasmoid-kf5/package/contents/ui/appearance.qml:72 msgid "center" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76 +#: plasmoid-kf5/package/contents/ui/appearance.qml:76 msgid "right" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80 +#: plasmoid-kf5/package/contents/ui/appearance.qml:80 msgid "left" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84 +#: plasmoid-kf5/package/contents/ui/appearance.qml:84 msgid "justify" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:326 +#. i18n: file: plasmoid-kde4/appearance.ui:266 #. i18n: ectx: property (text), widget (QLabel, label_font) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:107 rc.cpp:33 +#: plasmoid-kf5/package/contents/ui/appearance.qml:107 +#: resources/translations-plasmoid/rc.cpp:33 rc.cpp:33 msgid "Font" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:142 +#. i18n: file: plasmoid-kde4/appearance.ui:136 #. i18n: ectx: property (text), widget (QLabel, label_fontSize) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:125 rc.cpp:15 +#: plasmoid-kf5/package/contents/ui/appearance.qml:125 +#: resources/translations-plasmoid/rc.cpp:15 rc.cpp:15 msgid "Font size" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:203 +#. i18n: file: plasmoid-kde4/appearance.ui:178 #. i18n: ectx: property (text), widget (QLabel, label_fontWeight) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:145 rc.cpp:21 +#: plasmoid-kf5/package/contents/ui/appearance.qml:145 +#: resources/translations-plasmoid/rc.cpp:21 rc.cpp:21 msgid "Font weight" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153 +#: plasmoid-kf5/package/contents/ui/appearance.qml:153 msgid "light" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200 +#: plasmoid-kf5/package/contents/ui/appearance.qml:157 +#: plasmoid-kf5/package/contents/ui/appearance.qml:200 msgid "normal" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161 +#: plasmoid-kf5/package/contents/ui/appearance.qml:161 msgid "demi bold" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165 +#: plasmoid-kf5/package/contents/ui/appearance.qml:165 msgid "bold" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169 +#: plasmoid-kf5/package/contents/ui/appearance.qml:169 msgid "black" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:267 +#. i18n: file: plasmoid-kde4/appearance.ui:223 #. i18n: ectx: property (text), widget (QLabel, label_fontStyle) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:192 rc.cpp:27 +#: plasmoid-kf5/package/contents/ui/appearance.qml:192 +#: resources/translations-plasmoid/rc.cpp:27 rc.cpp:27 msgid "Font style" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204 +#: plasmoid-kf5/package/contents/ui/appearance.qml:204 msgid "italic" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:80 +#. i18n: file: plasmoid-kde4/appearance.ui:90 #. i18n: ectx: property (text), widget (QLabel, label_fontColor) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:227 rc.cpp:9 +#: plasmoid-kf5/package/contents/ui/appearance.qml:227 +#: resources/translations-plasmoid/rc.cpp:9 rc.cpp:9 msgid "Font color" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:375 +#. i18n: file: plasmoid-kde4/appearance.ui:299 #. i18n: ectx: property (text), widget (QLabel, label_activeIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:250 rc.cpp:39 +#: plasmoid-kf5/package/contents/ui/appearance.qml:250 +#: resources/translations-plasmoid/rc.cpp:39 rc.cpp:39 msgid "Active icon" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:63 +#. i18n: file: plasmoid-kde4/appearance.ui:73 #. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) -#. i18n: file: plasmoid-kde4/appearance.ui:391 +#. i18n: file: plasmoid-kde4/appearance.ui:325 #. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) -#. i18n: file: plasmoid-kde4/dataengine.ui:50 +#. i18n: file: plasmoid-kde4/dataengine.ui:60 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/dataengine.ui:83 +#. i18n: file: plasmoid-kde4/dataengine.ui:103 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/dataengine.ui:119 +#. i18n: file: plasmoid-kde4/dataengine.ui:149 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) -#. i18n: file: plasmoid-kde4/dataengine.ui:155 +#. i18n: file: plasmoid-kde4/dataengine.ui:195 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) -#. i18n: file: plasmoid-kde4/widget.ui:108 +#. i18n: file: plasmoid-kde4/widget.ui:102 #. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) -#. i18n: file: plasmoid-kde4/widget.ui:144 +#. i18n: file: plasmoid-kde4/widget.ui:148 #. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) -#. i18n: file: plasmoid-kde4/widget.ui:177 +#. i18n: file: plasmoid-kde4/widget.ui:191 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:210 +#. i18n: file: plasmoid-kde4/widget.ui:234 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:246 +#. i18n: file: plasmoid-kde4/widget.ui:280 #. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) -#. i18n: file: plasmoid-kde4/widget.ui:282 +#. i18n: file: plasmoid-kde4/widget.ui:326 #. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42 -#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 -#: rc.cpp:99 rc.cpp:105 rc.cpp:111 +#. i18n: file: plasmoid-kde4/appearance.ui:73 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) +#. i18n: file: plasmoid-kde4/appearance.ui:325 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) +#. i18n: file: plasmoid-kde4/dataengine.ui:60 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/dataengine.ui:103 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/dataengine.ui:149 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) +#. i18n: file: plasmoid-kde4/dataengine.ui:195 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) +#. i18n: file: plasmoid-kde4/widget.ui:102 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) +#. i18n: file: plasmoid-kde4/widget.ui:148 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) +#. i18n: file: plasmoid-kde4/widget.ui:191 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:234 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:280 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) +#. i18n: file: plasmoid-kde4/widget.ui:326 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) +#: plasmoid-kf5/package/contents/ui/appearance.qml:260 +#: plasmoid-kf5/package/contents/ui/appearance.qml:292 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:59 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:92 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:150 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:208 +#: plasmoid-kf5/package/contents/ui/widget.qml:90 +#: plasmoid-kf5/package/contents/ui/widget.qml:147 +#: plasmoid-kf5/package/contents/ui/widget.qml:181 +#: plasmoid-kf5/package/contents/ui/widget.qml:216 +#: plasmoid-kf5/package/contents/ui/widget.qml:273 +#: plasmoid-kf5/package/contents/ui/widget.qml:330 +#: resources/translations-plasmoid/rc.cpp:6 +#: resources/translations-plasmoid/rc.cpp:42 +#: resources/translations-plasmoid/rc.cpp:54 +#: resources/translations-plasmoid/rc.cpp:60 +#: resources/translations-plasmoid/rc.cpp:66 +#: resources/translations-plasmoid/rc.cpp:72 +#: resources/translations-plasmoid/rc.cpp:81 +#: resources/translations-plasmoid/rc.cpp:87 +#: resources/translations-plasmoid/rc.cpp:93 +#: resources/translations-plasmoid/rc.cpp:99 +#: resources/translations-plasmoid/rc.cpp:105 +#: resources/translations-plasmoid/rc.cpp:111 rc.cpp:6 rc.cpp:42 rc.cpp:54 +#: rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 rc.cpp:99 +#: rc.cpp:105 rc.cpp:111 msgid "Browse" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337 +#: plasmoid-kf5/package/contents/ui/appearance.qml:267 +#: plasmoid-kf5/package/contents/ui/appearance.qml:299 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:66 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:99 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:157 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:215 +#: plasmoid-kf5/package/contents/ui/widget.qml:97 +#: plasmoid-kf5/package/contents/ui/widget.qml:153 +#: plasmoid-kf5/package/contents/ui/widget.qml:188 +#: plasmoid-kf5/package/contents/ui/widget.qml:223 +#: plasmoid-kf5/package/contents/ui/widget.qml:280 +#: plasmoid-kf5/package/contents/ui/widget.qml:337 msgid "Select a path" msgstr "" #. i18n: file: plasmoid-kde4/appearance.ui:47 #. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:282 rc.cpp:3 +#: plasmoid-kf5/package/contents/ui/appearance.qml:282 +#: resources/translations-plasmoid/rc.cpp:3 rc.cpp:3 msgid "Inactive icon" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:309 +#: plasmoid-kf5/package/contents/ui/appearance.qml:309 msgid "Select a color" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:318 +#: plasmoid-kf5/package/contents/ui/appearance.qml:318 msgid "Select a font" msgstr "" #. i18n: file: plasmoid-kde4/dataengine.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:161 +#. i18n: file: plasmoid-kde4/widget.ui:165 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90 +#. i18n: file: plasmoid-kde4/dataengine.ui:34 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:165 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:49 +#: plasmoid-kf5/package/contents/ui/widget.qml:169 +#: resources/translations-plasmoid/rc.cpp:51 +#: resources/translations-plasmoid/rc.cpp:90 rc.cpp:51 rc.cpp:90 msgid "Path to netctl" msgstr "" -#. i18n: file: plasmoid-kde4/dataengine.ui:67 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:194 +#. i18n: file: plasmoid-kde4/widget.ui:208 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:208 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:82 +#: plasmoid-kf5/package/contents/ui/widget.qml:204 +#: resources/translations-plasmoid/rc.cpp:57 +#: resources/translations-plasmoid/rc.cpp:96 rc.cpp:57 rc.cpp:96 msgid "Path to netctl-auto" msgstr "" -#. i18n: file: plasmoid-kde4/dataengine.ui:100 +#. i18n: file: plasmoid-kde4/dataengine.ui:123 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp4) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:115 rc.cpp:63 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:115 +#: resources/translations-plasmoid/rc.cpp:63 rc.cpp:63 msgid "Check external IPv4" msgstr "" -#. i18n: file: plasmoid-kde4/dataengine.ui:136 +#. i18n: file: plasmoid-kde4/dataengine.ui:169 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp6) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:173 rc.cpp:69 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:173 +#: resources/translations-plasmoid/rc.cpp:69 rc.cpp:69 msgid "Check external IPv6" msgstr "" -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -msgid "inactive" -msgstr "" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -msgid "active" -msgstr "" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:91 -msgid "Network status has been changed to '%1'" -msgstr "" - #. i18n: file: plasmoid-kde4/widget.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_autoUpdate) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:60 rc.cpp:75 +#: plasmoid-kf5/package/contents/ui/widget.qml:60 +#: resources/translations-plasmoid/rc.cpp:75 rc.cpp:75 msgid "Auto update interval, msec" msgstr "" -#. i18n: file: plasmoid-kde4/widget.ui:92 +#. i18n: file: plasmoid-kde4/widget.ui:76 #. i18n: ectx: property (text), widget (QLabel, label_gui) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:80 rc.cpp:78 +#: plasmoid-kf5/package/contents/ui/widget.qml:80 +#: resources/translations-plasmoid/rc.cpp:78 rc.cpp:78 msgid "Path to GUI" msgstr "" -#. i18n: file: plasmoid-kde4/widget.ui:125 +#. i18n: file: plasmoid-kde4/widget.ui:122 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_helper) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:113 rc.cpp:84 +#: plasmoid-kf5/package/contents/ui/widget.qml:113 +#: resources/translations-plasmoid/rc.cpp:84 rc.cpp:84 msgid "Use helper" msgstr "" -#. i18n: file: plasmoid-kde4/widget.ui:227 +#. i18n: file: plasmoid-kde4/widget.ui:254 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:239 rc.cpp:102 +#: plasmoid-kf5/package/contents/ui/widget.qml:239 +#: resources/translations-plasmoid/rc.cpp:102 rc.cpp:102 msgid "Use sudo for netctl" msgstr "" -#. i18n: file: plasmoid-kde4/widget.ui:263 +#. i18n: file: plasmoid-kde4/widget.ui:300 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:296 rc.cpp:108 +#: plasmoid-kf5/package/contents/ui/widget.qml:296 +#: resources/translations-plasmoid/rc.cpp:108 rc.cpp:108 msgid "Show 'Start WiFi menu'" msgstr "" -#: plasmoid-kf5/plugin/netctladds.cpp:160 +#: plasmoid-kf5/plugin/netctladds.cpp:91 +msgid "Homepage" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:92 +msgid "Repository" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:93 +msgid "Bugtracker" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:94 +msgid "Translation issue" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:95 +msgid "AUR packages" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:145 msgid "Run %1" msgstr "" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:161 +msgid "Network status has been changed to active" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:163 +msgid "Network status has been changed to inactive" +msgstr "" + +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 msgid "Select profile" msgstr "" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 msgid "Profile:" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:112 +#. i18n: file: plasmoid-kde4/appearance.ui:106 #. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor) -#: rc.cpp:12 +#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12 msgid "Set font color" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:174 +#. i18n: file: plasmoid-kde4/appearance.ui:152 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize) -#: rc.cpp:18 +#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18 msgid "Set font size" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:235 +#. i18n: file: plasmoid-kde4/appearance.ui:194 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight) -#: rc.cpp:24 +#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24 msgid "Set font weight" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:299 +#. i18n: file: plasmoid-kde4/appearance.ui:239 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle) -#: rc.cpp:30 +#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30 msgid "Set font style" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:358 +#. i18n: file: plasmoid-kde4/appearance.ui:282 #. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font) -#: rc.cpp:36 +#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36 msgid "Set font family" msgstr "" -#. i18n: file: plasmoid-kde4/appearance.ui:440 +#. i18n: file: plasmoid-kde4/appearance.ui:358 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign) -#: rc.cpp:48 +#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48 msgid "Set text align" msgstr "" -#. i18n: file: plasmoid-kde4/widget.ui:291 +#. i18n: file: plasmoid-kde4/widget.ui:353 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface) -#: rc.cpp:114 +#: resources/translations-plasmoid/rc.cpp:114 rc.cpp:114 msgid "Show more detailed interface" msgstr "" -#. i18n: file: plasmoid-kde4/widget.ui:309 +#. i18n: file: plasmoid-kde4/widget.ui:373 #. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit) -#: rc.cpp:117 +#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117 msgid "" "$info - active profile information\n" "$current - current profile name\n" @@ -483,12 +542,12 @@ msgid "" "$status - current profile status (static/enabled)" msgstr "" -#: rc.cpp:126 +#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126 msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "" -#: rc.cpp:127 +#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127 msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" diff --git a/sources/resources/translations-plasmoid/ru.po b/sources/resources/translations-plasmoid/ru.po index e5bff8d..e06ece6 100644 --- a/sources/resources/translations-plasmoid/ru.po +++ b/sources/resources/translations-plasmoid/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\n" -"POT-Creation-Date: 2015-01-09 04:54+0300\n" -"PO-Revision-Date: 2015-01-09 04:57+0300\n" +"POT-Creation-Date: 2015-03-17 12:48+0300\n" +"PO-Revision-Date: 2015-03-17 12:49+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Russian \n" "Language: ru\n" @@ -18,103 +18,103 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 1.5\n" -#: plasmoid-kde4/netctl.cpp:238 plasmoid-kf5/plugin/netctladds.cpp:186 +#: plasmoid-kde4/netctl.cpp:234 plasmoid-kf5/plugin/netctladds.cpp:194 msgid "Set profile %1 disabled" msgstr "Выключение автозагрузки профиля %1" -#: plasmoid-kde4/netctl.cpp:241 plasmoid-kf5/plugin/netctladds.cpp:189 +#: plasmoid-kde4/netctl.cpp:237 plasmoid-kf5/plugin/netctladds.cpp:197 msgid "Set profile %1 enabled" msgstr "Включение автозагрузки профиля %1" -#: plasmoid-kde4/netctl.cpp:262 plasmoid-kf5/plugin/netctladds.cpp:208 +#: plasmoid-kde4/netctl.cpp:257 plasmoid-kf5/plugin/netctladds.cpp:215 msgid "Restart profile %1" msgstr "Перезапуск профиля %1" -#: plasmoid-kde4/netctl.cpp:283 plasmoid-kf5/plugin/netctladds.cpp:232 +#: plasmoid-kde4/netctl.cpp:277 plasmoid-kf5/plugin/netctladds.cpp:238 msgid "Start profile %1" msgstr "Запуск профиля %1" -#: plasmoid-kde4/netctl.cpp:309 plasmoid-kf5/plugin/netctladds.cpp:257 +#: plasmoid-kde4/netctl.cpp:302 plasmoid-kf5/plugin/netctladds.cpp:262 msgid "Stop profile %1" msgstr "Остановка профиля %1" -#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132 -#: plasmoid-kf5/plugin/netctladds.cpp:274 +#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457 +#: plasmoid-kf5/package/contents/ui/main.qml:106 +#: plasmoid-kf5/plugin/netctladds.cpp:279 msgid "Stop all profiles" msgstr "Остановить все профили" -#: plasmoid-kde4/netctl.cpp:349 plasmoid-kf5/plugin/netctladds.cpp:296 +#: plasmoid-kde4/netctl.cpp:340 plasmoid-kf5/plugin/netctladds.cpp:300 msgid "Switch to profile %1" msgstr "Переключение на профиль %1" -#: plasmoid-kde4/netctl.cpp:422 plasmoid-kf5/plasmoid/contents/ui/main.qml:203 +#: plasmoid-kde4/netctl.cpp:412 plasmoid-kf5/package/contents/ui/main.qml:183 msgid "Start another profile" msgstr "Запустить другой профиль" -#: plasmoid-kde4/netctl.cpp:423 plasmoid-kf5/plasmoid/contents/ui/main.qml:204 +#: plasmoid-kde4/netctl.cpp:413 plasmoid-kf5/package/contents/ui/main.qml:184 msgid "Stop %1" msgstr "Остановить %1" -#: plasmoid-kde4/netctl.cpp:424 plasmoid-kf5/plasmoid/contents/ui/main.qml:205 +#: plasmoid-kde4/netctl.cpp:414 plasmoid-kf5/package/contents/ui/main.qml:185 msgid "Restart %1" msgstr "Перезапустить %1" -#: plasmoid-kde4/netctl.cpp:426 plasmoid-kf5/plasmoid/contents/ui/main.qml:207 +#: plasmoid-kde4/netctl.cpp:416 plasmoid-kf5/package/contents/ui/main.qml:187 msgid "Disable %1" msgstr "Отключить %1" -#: plasmoid-kde4/netctl.cpp:428 plasmoid-kf5/plasmoid/contents/ui/main.qml:209 +#: plasmoid-kde4/netctl.cpp:418 plasmoid-kf5/package/contents/ui/main.qml:189 msgid "Enable %1" msgstr "Включить %1" -#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130 -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211 +#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444 +#: plasmoid-kf5/package/contents/ui/main.qml:104 +#: plasmoid-kf5/package/contents/ui/main.qml:191 msgid "Start profile" msgstr "Запустить профиль" -#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/plasmoid/contents/ui/main.qml:131 +#: plasmoid-kde4/netctl.cpp:452 plasmoid-kf5/package/contents/ui/main.qml:105 msgid "Stop profile" msgstr "Остановить профиль" -#: plasmoid-kde4/netctl.cpp:472 plasmoid-kf5/plasmoid/contents/ui/main.qml:133 +#: plasmoid-kde4/netctl.cpp:462 plasmoid-kf5/package/contents/ui/main.qml:107 msgid "Switch to profile" msgstr "Переключить профиль" -#: plasmoid-kde4/netctl.cpp:480 plasmoid-kf5/plasmoid/contents/ui/main.qml:134 +#: plasmoid-kde4/netctl.cpp:470 plasmoid-kf5/package/contents/ui/main.qml:108 msgid "Restart profile" msgstr "Перезапустить профиль" -#: plasmoid-kde4/netctl.cpp:485 plasmoid-kf5/plasmoid/contents/ui/main.qml:135 +#: plasmoid-kde4/netctl.cpp:475 plasmoid-kf5/package/contents/ui/main.qml:109 msgid "Enable profile" msgstr "Включить профиль" -#: plasmoid-kde4/netctl.cpp:489 +#: plasmoid-kde4/netctl.cpp:479 msgid "Show netctl-gui" msgstr "Показать netctl-gui" -#: plasmoid-kde4/netctl.cpp:494 plasmoid-kf5/plasmoid/contents/ui/main.qml:137 +#: plasmoid-kde4/netctl.cpp:484 plasmoid-kf5/package/contents/ui/main.qml:110 msgid "Show WiFi menu" msgstr "Запустить WiFi-menu" -#: plasmoid-kde4/netctl.cpp:521 +#: plasmoid-kde4/netctl.cpp:511 msgid "Start GUI" msgstr "Запуск GUI" -#: plasmoid-kde4/netctl.cpp:532 +#: plasmoid-kde4/netctl.cpp:522 msgid "Start WiFi menu" msgstr "Запуск WiFi-menu" -#: plasmoid-kde4/netctl.cpp:572 +#: plasmoid-kde4/netctl.cpp:563 msgid "Network is up" msgstr "Сеть работает" -#: plasmoid-kde4/netctl.cpp:576 +#: plasmoid-kde4/netctl.cpp:567 msgid "Network is down" msgstr "Сеть не работает" -#: plasmoid-kde4/netctl.cpp:766 +#: plasmoid-kde4/netctl.cpp:754 msgid "" "Version %1\n" "(build date %2)" @@ -122,358 +122,417 @@ msgstr "" "Версия %1\n" "(дата сборки %2)" -#: plasmoid-kde4/netctl.cpp:767 plasmoid-kf5/plugin/netctladds.cpp:88 +#: plasmoid-kde4/netctl.cpp:755 plasmoid-kf5/plugin/netctladds.cpp:88 msgid "KDE widget which interacts with netctl." msgstr "Виджет KDE, который взаимодействует с netctl." -#: plasmoid-kde4/netctl.cpp:768 plasmoid-kf5/plugin/netctladds.cpp:90 +#: plasmoid-kde4/netctl.cpp:756 plasmoid-kf5/plugin/netctladds.cpp:90 msgid "Links:" msgstr "Ссылки:" -#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91 -msgid "Homepage" -msgstr "Домашняя страница" - -#: plasmoid-kde4/netctl.cpp:770 plasmoid-kf5/plugin/netctladds.cpp:92 -msgid "Repository" -msgstr "Репозиторий" - -#: plasmoid-kde4/netctl.cpp:771 plasmoid-kf5/plugin/netctladds.cpp:93 -msgid "Bugtracker" -msgstr "Багтрекер" - -#: plasmoid-kde4/netctl.cpp:772 plasmoid-kf5/plugin/netctladds.cpp:94 -msgid "Translation issue" -msgstr "Тикет перевода" - -#: plasmoid-kde4/netctl.cpp:773 plasmoid-kf5/plugin/netctladds.cpp:95 -msgid "AUR packages" -msgstr "Пакеты в AUR" - -#: plasmoid-kde4/netctl.cpp:775 plasmoid-kf5/plugin/netctladds.cpp:98 +#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99 msgid "This software is licensed under %1" msgstr "Данное приложение лицензировано под %1" -#: plasmoid-kde4/netctl.cpp:783 plasmoid-kf5/plugin/netctladds.cpp:100 +#: plasmoid-kde4/netctl.cpp:778 plasmoid-kf5/plugin/netctladds.cpp:102 msgid "Translators: %1" msgstr "Переводчики: %1" -#: plasmoid-kde4/netctl.cpp:784 plasmoid-kf5/plugin/netctladds.cpp:108 +#: plasmoid-kde4/netctl.cpp:779 plasmoid-kf5/plugin/netctladds.cpp:110 msgid "This software uses: %1" msgstr "Данное приложение использует: %1" -#: plasmoid-kde4/netctl.cpp:786 +#: plasmoid-kde4/netctl.cpp:781 msgid "Netctl plasmoid" msgstr "Netctl plasmoid" -#: plasmoid-kde4/netctl.cpp:787 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:31 +#: plasmoid-kde4/netctl.cpp:782 +#: plasmoid-kf5/package/contents/config/config.qml:31 msgid "Appearance" msgstr "Внешний вид" -#: plasmoid-kde4/netctl.cpp:788 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:37 +#: plasmoid-kde4/netctl.cpp:783 +#: plasmoid-kf5/package/contents/config/config.qml:37 msgid "DataEngine" msgstr "DataEngine" -#: plasmoid-kde4/netctl.cpp:789 -#: plasmoid-kf5/plasmoid/contents/config/config.qml:43 -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41 +#: plasmoid-kde4/netctl.cpp:784 +#: plasmoid-kf5/package/contents/config/config.qml:43 +#: plasmoid-kf5/package/contents/ui/about.qml:41 msgid "About" msgstr "О программе" -#: plasmoid-kf5/plasmoid/contents/config/config.qml:25 +#: plasmoid-kf5/package/contents/config/config.qml:25 msgid "Widget" msgstr "Виджет" -#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74 +#: plasmoid-kf5/package/contents/ui/about.qml:74 msgid "Acknowledgment" msgstr "Acknowledgment" -#. i18n: file: plasmoid-kde4/appearance.ui:408 +#. i18n: file: plasmoid-kde4/appearance.ui:342 #. i18n: ectx: property (text), widget (QLabel, label_textAlign) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:64 rc.cpp:45 +#: plasmoid-kf5/package/contents/ui/appearance.qml:64 +#: resources/translations-plasmoid/rc.cpp:45 rc.cpp:45 msgid "Text align" msgstr "Выравнивание текста" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72 +#: plasmoid-kf5/package/contents/ui/appearance.qml:72 msgid "center" msgstr "по центру" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76 +#: plasmoid-kf5/package/contents/ui/appearance.qml:76 msgid "right" msgstr "справа" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80 +#: plasmoid-kf5/package/contents/ui/appearance.qml:80 msgid "left" msgstr "слева" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84 +#: plasmoid-kf5/package/contents/ui/appearance.qml:84 msgid "justify" msgstr "по ширине" -#. i18n: file: plasmoid-kde4/appearance.ui:326 +#. i18n: file: plasmoid-kde4/appearance.ui:266 #. i18n: ectx: property (text), widget (QLabel, label_font) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:107 rc.cpp:33 +#: plasmoid-kf5/package/contents/ui/appearance.qml:107 +#: resources/translations-plasmoid/rc.cpp:33 rc.cpp:33 msgid "Font" msgstr "Шрифт" -#. i18n: file: plasmoid-kde4/appearance.ui:142 +#. i18n: file: plasmoid-kde4/appearance.ui:136 #. i18n: ectx: property (text), widget (QLabel, label_fontSize) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:125 rc.cpp:15 +#: plasmoid-kf5/package/contents/ui/appearance.qml:125 +#: resources/translations-plasmoid/rc.cpp:15 rc.cpp:15 msgid "Font size" msgstr "Размер шрифта" -#. i18n: file: plasmoid-kde4/appearance.ui:203 +#. i18n: file: plasmoid-kde4/appearance.ui:178 #. i18n: ectx: property (text), widget (QLabel, label_fontWeight) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:145 rc.cpp:21 +#: plasmoid-kf5/package/contents/ui/appearance.qml:145 +#: resources/translations-plasmoid/rc.cpp:21 rc.cpp:21 msgid "Font weight" msgstr "Толщина шрифта" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153 +#: plasmoid-kf5/package/contents/ui/appearance.qml:153 msgid "light" msgstr "маленький" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200 +#: plasmoid-kf5/package/contents/ui/appearance.qml:157 +#: plasmoid-kf5/package/contents/ui/appearance.qml:200 msgid "normal" msgstr "нормальный" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161 +#: plasmoid-kf5/package/contents/ui/appearance.qml:161 msgid "demi bold" msgstr "нежирный" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165 +#: plasmoid-kf5/package/contents/ui/appearance.qml:165 msgid "bold" msgstr "жирный" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169 +#: plasmoid-kf5/package/contents/ui/appearance.qml:169 msgid "black" msgstr "очень жирный" -#. i18n: file: plasmoid-kde4/appearance.ui:267 +#. i18n: file: plasmoid-kde4/appearance.ui:223 #. i18n: ectx: property (text), widget (QLabel, label_fontStyle) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:192 rc.cpp:27 +#: plasmoid-kf5/package/contents/ui/appearance.qml:192 +#: resources/translations-plasmoid/rc.cpp:27 rc.cpp:27 msgid "Font style" msgstr "Стиль шрифта" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204 +#: plasmoid-kf5/package/contents/ui/appearance.qml:204 msgid "italic" msgstr "italic" -#. i18n: file: plasmoid-kde4/appearance.ui:80 +#. i18n: file: plasmoid-kde4/appearance.ui:90 #. i18n: ectx: property (text), widget (QLabel, label_fontColor) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:227 rc.cpp:9 +#: plasmoid-kf5/package/contents/ui/appearance.qml:227 +#: resources/translations-plasmoid/rc.cpp:9 rc.cpp:9 msgid "Font color" msgstr "Цвет шрифта" -#. i18n: file: plasmoid-kde4/appearance.ui:375 +#. i18n: file: plasmoid-kde4/appearance.ui:299 #. i18n: ectx: property (text), widget (QLabel, label_activeIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:250 rc.cpp:39 +#: plasmoid-kf5/package/contents/ui/appearance.qml:250 +#: resources/translations-plasmoid/rc.cpp:39 rc.cpp:39 msgid "Active icon" msgstr "Иконка активного подключения" -#. i18n: file: plasmoid-kde4/appearance.ui:63 +#. i18n: file: plasmoid-kde4/appearance.ui:73 #. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) -#. i18n: file: plasmoid-kde4/appearance.ui:391 +#. i18n: file: plasmoid-kde4/appearance.ui:325 #. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) -#. i18n: file: plasmoid-kde4/dataengine.ui:50 +#. i18n: file: plasmoid-kde4/dataengine.ui:60 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/dataengine.ui:83 +#. i18n: file: plasmoid-kde4/dataengine.ui:103 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/dataengine.ui:119 +#. i18n: file: plasmoid-kde4/dataengine.ui:149 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) -#. i18n: file: plasmoid-kde4/dataengine.ui:155 +#. i18n: file: plasmoid-kde4/dataengine.ui:195 #. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) -#. i18n: file: plasmoid-kde4/widget.ui:108 +#. i18n: file: plasmoid-kde4/widget.ui:102 #. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) -#. i18n: file: plasmoid-kde4/widget.ui:144 +#. i18n: file: plasmoid-kde4/widget.ui:148 #. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) -#. i18n: file: plasmoid-kde4/widget.ui:177 +#. i18n: file: plasmoid-kde4/widget.ui:191 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:210 +#. i18n: file: plasmoid-kde4/widget.ui:234 #. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:246 +#. i18n: file: plasmoid-kde4/widget.ui:280 #. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) -#. i18n: file: plasmoid-kde4/widget.ui:282 +#. i18n: file: plasmoid-kde4/widget.ui:326 #. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42 -#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 -#: rc.cpp:99 rc.cpp:105 rc.cpp:111 +#. i18n: file: plasmoid-kde4/appearance.ui:73 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon) +#. i18n: file: plasmoid-kde4/appearance.ui:325 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon) +#. i18n: file: plasmoid-kde4/dataengine.ui:60 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/dataengine.ui:103 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/dataengine.ui:149 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4) +#. i18n: file: plasmoid-kde4/dataengine.ui:195 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6) +#. i18n: file: plasmoid-kde4/widget.ui:102 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_gui) +#. i18n: file: plasmoid-kde4/widget.ui:148 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_helper) +#. i18n: file: plasmoid-kde4/widget.ui:191 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:234 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:280 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_sudo) +#. i18n: file: plasmoid-kde4/widget.ui:326 +#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi) +#: plasmoid-kf5/package/contents/ui/appearance.qml:260 +#: plasmoid-kf5/package/contents/ui/appearance.qml:292 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:59 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:92 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:150 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:208 +#: plasmoid-kf5/package/contents/ui/widget.qml:90 +#: plasmoid-kf5/package/contents/ui/widget.qml:147 +#: plasmoid-kf5/package/contents/ui/widget.qml:181 +#: plasmoid-kf5/package/contents/ui/widget.qml:216 +#: plasmoid-kf5/package/contents/ui/widget.qml:273 +#: plasmoid-kf5/package/contents/ui/widget.qml:330 +#: resources/translations-plasmoid/rc.cpp:6 +#: resources/translations-plasmoid/rc.cpp:42 +#: resources/translations-plasmoid/rc.cpp:54 +#: resources/translations-plasmoid/rc.cpp:60 +#: resources/translations-plasmoid/rc.cpp:66 +#: resources/translations-plasmoid/rc.cpp:72 +#: resources/translations-plasmoid/rc.cpp:81 +#: resources/translations-plasmoid/rc.cpp:87 +#: resources/translations-plasmoid/rc.cpp:93 +#: resources/translations-plasmoid/rc.cpp:99 +#: resources/translations-plasmoid/rc.cpp:105 +#: resources/translations-plasmoid/rc.cpp:111 rc.cpp:6 rc.cpp:42 rc.cpp:54 +#: rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93 rc.cpp:99 +#: rc.cpp:105 rc.cpp:111 msgid "Browse" msgstr "Обзор" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267 -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157 -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337 +#: plasmoid-kf5/package/contents/ui/appearance.qml:267 +#: plasmoid-kf5/package/contents/ui/appearance.qml:299 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:66 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:99 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:157 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:215 +#: plasmoid-kf5/package/contents/ui/widget.qml:97 +#: plasmoid-kf5/package/contents/ui/widget.qml:153 +#: plasmoid-kf5/package/contents/ui/widget.qml:188 +#: plasmoid-kf5/package/contents/ui/widget.qml:223 +#: plasmoid-kf5/package/contents/ui/widget.qml:280 +#: plasmoid-kf5/package/contents/ui/widget.qml:337 msgid "Select a path" msgstr "Выберете путь" #. i18n: file: plasmoid-kde4/appearance.ui:47 #. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon) -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:282 rc.cpp:3 +#: plasmoid-kf5/package/contents/ui/appearance.qml:282 +#: resources/translations-plasmoid/rc.cpp:3 rc.cpp:3 msgid "Inactive icon" msgstr "Иконка неактивного подключения" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:309 +#: plasmoid-kf5/package/contents/ui/appearance.qml:309 msgid "Select a color" msgstr "Укажите цвет" -#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:318 +#: plasmoid-kf5/package/contents/ui/appearance.qml:318 msgid "Select a font" msgstr "Укажите шрифт" #. i18n: file: plasmoid-kde4/dataengine.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#. i18n: file: plasmoid-kde4/widget.ui:161 +#. i18n: file: plasmoid-kde4/widget.ui:165 #. i18n: ectx: property (text), widget (QLabel, label_netctl) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90 +#. i18n: file: plasmoid-kde4/dataengine.ui:34 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#. i18n: file: plasmoid-kde4/widget.ui:165 +#. i18n: ectx: property (text), widget (QLabel, label_netctl) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:49 +#: plasmoid-kf5/package/contents/ui/widget.qml:169 +#: resources/translations-plasmoid/rc.cpp:51 +#: resources/translations-plasmoid/rc.cpp:90 rc.cpp:51 rc.cpp:90 msgid "Path to netctl" msgstr "Путь к netctl" -#. i18n: file: plasmoid-kde4/dataengine.ui:67 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#. i18n: file: plasmoid-kde4/widget.ui:194 +#. i18n: file: plasmoid-kde4/widget.ui:208 #. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82 -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96 +#. i18n: file: plasmoid-kde4/dataengine.ui:77 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#. i18n: file: plasmoid-kde4/widget.ui:208 +#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto) +#: plasmoid-kf5/package/contents/ui/dataengine.qml:82 +#: plasmoid-kf5/package/contents/ui/widget.qml:204 +#: resources/translations-plasmoid/rc.cpp:57 +#: resources/translations-plasmoid/rc.cpp:96 rc.cpp:57 rc.cpp:96 msgid "Path to netctl-auto" msgstr "Путь к netctl-auto" -#. i18n: file: plasmoid-kde4/dataengine.ui:100 +#. i18n: file: plasmoid-kde4/dataengine.ui:123 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp4) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:115 rc.cpp:63 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:115 +#: resources/translations-plasmoid/rc.cpp:63 rc.cpp:63 msgid "Check external IPv4" msgstr "Проверять внешний IPv4" -#. i18n: file: plasmoid-kde4/dataengine.ui:136 +#. i18n: file: plasmoid-kde4/dataengine.ui:169 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp6) -#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:173 rc.cpp:69 +#: plasmoid-kf5/package/contents/ui/dataengine.qml:173 +#: resources/translations-plasmoid/rc.cpp:69 rc.cpp:69 msgid "Check external IPv6" msgstr "Проверять внешний IPv6" -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -msgid "inactive" -msgstr "неактивен" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:92 -msgid "active" -msgstr "активен" - -#: plasmoid-kf5/plasmoid/contents/ui/main.qml:91 -msgid "Network status has been changed to '%1'" -msgstr "Сетевой статус был изменен на '%1'" - #. i18n: file: plasmoid-kde4/widget.ui:34 #. i18n: ectx: property (text), widget (QLabel, label_autoUpdate) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:60 rc.cpp:75 +#: plasmoid-kf5/package/contents/ui/widget.qml:60 +#: resources/translations-plasmoid/rc.cpp:75 rc.cpp:75 msgid "Auto update interval, msec" msgstr "Интервал автообновления, мсек" -#. i18n: file: plasmoid-kde4/widget.ui:92 +#. i18n: file: plasmoid-kde4/widget.ui:76 #. i18n: ectx: property (text), widget (QLabel, label_gui) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:80 rc.cpp:78 +#: plasmoid-kf5/package/contents/ui/widget.qml:80 +#: resources/translations-plasmoid/rc.cpp:78 rc.cpp:78 msgid "Path to GUI" msgstr "Путь к GUI" -#. i18n: file: plasmoid-kde4/widget.ui:125 +#. i18n: file: plasmoid-kde4/widget.ui:122 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_helper) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:113 rc.cpp:84 +#: plasmoid-kf5/package/contents/ui/widget.qml:113 +#: resources/translations-plasmoid/rc.cpp:84 rc.cpp:84 msgid "Use helper" msgstr "Использовать хелпер" -#. i18n: file: plasmoid-kde4/widget.ui:227 +#. i18n: file: plasmoid-kde4/widget.ui:254 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:239 rc.cpp:102 +#: plasmoid-kf5/package/contents/ui/widget.qml:239 +#: resources/translations-plasmoid/rc.cpp:102 rc.cpp:102 msgid "Use sudo for netctl" msgstr "Использовать sudo для netctl" -#. i18n: file: plasmoid-kde4/widget.ui:263 +#. i18n: file: plasmoid-kde4/widget.ui:300 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi) -#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:296 rc.cpp:108 +#: plasmoid-kf5/package/contents/ui/widget.qml:296 +#: resources/translations-plasmoid/rc.cpp:108 rc.cpp:108 msgid "Show 'Start WiFi menu'" msgstr "Показать 'Запустить WiFi-menu'" -#: plasmoid-kf5/plugin/netctladds.cpp:160 +#: plasmoid-kf5/plugin/netctladds.cpp:91 +msgid "Homepage" +msgstr "Домашняя страница" + +#: plasmoid-kf5/plugin/netctladds.cpp:92 +msgid "Repository" +msgstr "Репозиторий" + +#: plasmoid-kf5/plugin/netctladds.cpp:93 +msgid "Bugtracker" +msgstr "Багтрекер" + +#: plasmoid-kf5/plugin/netctladds.cpp:94 +msgid "Translation issue" +msgstr "Тикет перевода" + +#: plasmoid-kf5/plugin/netctladds.cpp:95 +msgid "AUR packages" +msgstr "Пакеты в AUR" + +#: plasmoid-kf5/plugin/netctladds.cpp:145 msgid "Run %1" msgstr "Запуск %1" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:161 +msgid "Network status has been changed to active" +msgstr "Сетевой статус был изменен на активен" + +#: plasmoid-kf5/plugin/netctladds.cpp:163 +msgid "Network status has been changed to inactive" +msgstr "Сетевой статус был изменен на неактивен" + +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 msgid "Select profile" msgstr "Выберете профиль" -#: plasmoid-kf5/plugin/netctladds.cpp:228 -#: plasmoid-kf5/plugin/netctladds.cpp:292 +#: plasmoid-kf5/plugin/netctladds.cpp:234 +#: plasmoid-kf5/plugin/netctladds.cpp:296 msgid "Profile:" msgstr "Профиль:" -#. i18n: file: plasmoid-kde4/appearance.ui:112 +#. i18n: file: plasmoid-kde4/appearance.ui:106 #. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor) -#: rc.cpp:12 +#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12 msgid "Set font color" msgstr "Укажите цвет шрифта" -#. i18n: file: plasmoid-kde4/appearance.ui:174 +#. i18n: file: plasmoid-kde4/appearance.ui:152 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize) -#: rc.cpp:18 +#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18 msgid "Set font size" msgstr "Укажите размер шрифта" -#. i18n: file: plasmoid-kde4/appearance.ui:235 +#. i18n: file: plasmoid-kde4/appearance.ui:194 #. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight) -#: rc.cpp:24 +#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24 msgid "Set font weight" msgstr "Укажите ширину шрифта" -#. i18n: file: plasmoid-kde4/appearance.ui:299 +#. i18n: file: plasmoid-kde4/appearance.ui:239 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle) -#: rc.cpp:30 +#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30 msgid "Set font style" msgstr "Укажите стиль шрифта" -#. i18n: file: plasmoid-kde4/appearance.ui:358 +#. i18n: file: plasmoid-kde4/appearance.ui:282 #. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font) -#: rc.cpp:36 +#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36 msgid "Set font family" msgstr "Укажите шрифт" -#. i18n: file: plasmoid-kde4/appearance.ui:440 +#. i18n: file: plasmoid-kde4/appearance.ui:358 #. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign) -#: rc.cpp:48 +#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48 msgid "Set text align" msgstr "Установите выравнивание текста" -#. i18n: file: plasmoid-kde4/widget.ui:291 +#. i18n: file: plasmoid-kde4/widget.ui:353 #. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface) -#: rc.cpp:114 +#: resources/translations-plasmoid/rc.cpp:114 rc.cpp:114 msgid "Show more detailed interface" msgstr "Показать более детальный интерфейс" -#. i18n: file: plasmoid-kde4/widget.ui:309 +#. i18n: file: plasmoid-kde4/widget.ui:373 #. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit) -#: rc.cpp:117 +#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117 msgid "" "$info - active profile information\n" "$current - current profile name\n" @@ -495,16 +554,22 @@ msgstr "" "$profiles - список профилей netctl\n" "$status - статус текущего профиля (static/enabled)" -#: rc.cpp:126 +#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126 msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "Evgeniy Alekseev" -#: rc.cpp:127 +#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127 msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "esalexeev@gmail.com" +#~ msgid "inactive" +#~ msgstr "неактивен" + +#~ msgid "active" +#~ msgstr "активен" + #~ msgid "Acknowledgement" #~ msgstr "Благодарности" diff --git a/sources/resources/translations/en.ts b/sources/resources/translations/en.ts index 1dfce73..1ea2573 100644 --- a/sources/resources/translations/en.ts +++ b/sources/resources/translations/en.ts @@ -69,7 +69,7 @@ BridgeWidget Form - Form + Form Bridge settings @@ -182,6 +182,14 @@ Could not run helper Could not run helper + + User is not in network group, helper will not be started + User is not in network group, helper will not be started + + + IP address does not match the standard + IP address does not match the standard + EthernetWidget @@ -195,15 +203,15 @@ Hide advanced - Hide advanced + Hide advanced Show advanced - Show advanced + Show advanced Form - Form + Form Ethernet options @@ -286,7 +294,7 @@ Form - Form + Form General @@ -298,7 +306,7 @@ <html><head/><body><p>A description of the profile</p></body></html> - A description of the profile + A description of the profile Connection @@ -364,20 +372,24 @@ Debug mode Debug mode + + A description of the profile + A description of the profile + IpWidget Hide advanced - Hide advanced + Hide advanced Show advanced - Show advanced + Show advanced Form - Form + Form IP options @@ -413,7 +425,7 @@ An IP routing gateway address - An IP routing gateway address + An IP routing gateway address IP6 @@ -441,7 +453,7 @@ An IPv6 routing gateway address - An IPv6 routing gateway address + An IPv6 routing gateway address Routes @@ -567,12 +579,32 @@ Maximum time, in seconds, to wait for IPv6’s Duplicate Address Detection to succeed Maximum time, in seconds, to wait for IPv6’s Duplicate Address Detection to succeed + + Should be in CIDR form according to standards + Should be in CIDR form according to standards + + + An IP routing gateway address. +Should be according to standards + An IP routing gateway address. +Should be according to standards + + + An IPv6 routing gateway address. +Should be according to standards + An IPv6 routing gateway address. +Should be according to standards + + + Should be according to standards + Should be according to standards + MacvlanWidget Form - Form + Form macvlan settings @@ -596,23 +628,7 @@ - MainWindow - - Ready - Ready - - - Updated - Updated - - - Error - Error - - - Done - Done - + MainWidget Stop Stop @@ -629,6 +645,161 @@ Enable Enable + + Name + Name + + + Description + Description + + + Active + Active + + + Enabled + Enabled + + + Type + Type + + + Is wireless + Is wireless + + + Refresh + Refresh + + + Start profile + Start profile + + + Restart profile + Restart profile + + + Enable profile + Enable profile + + + Edit profile + Edit profile + + + Remove profile + Remove profile + + + Stop profile + Stop profile + + + Disable profile + Disable profile + + + Refresh table + Refresh table + + + Ctrl+R + Ctrl+R + + + Start or stop selected profile + Start or stop selected profile + + + Switch + Switch + + + Switch to selected profile + Switch to selected profile + + + Restart + Restart + + + Restart selected profile + Restart selected profile + + + Enable or disable selected profile + Enable or disable selected profile + + + Stop all + Stop all + + + Stop all profiles + Stop all profiles + + + Edit + Edit + + + Edit selected profile + Edit selected profile + + + Remove + Remove + + + Remove selected profile + Remove selected profile + + + netctl-auto is running + netctl-auto is running + + + Main actions toolbar + Main actions toolbar + + + + MainWindow + + Ready + Ready + + + Updated + Updated + + + Error + Error + + + Done + Done + + + Stop + Stop + + + Start + Start + + + Disable + Disable + + + Enable + Enable + Save profile as... Save profile as... @@ -723,35 +894,35 @@ Name - Name + Name Description - Description + Description Status - Status + Status Refresh - Refresh + Refresh Ctrl+R - Ctrl+R + Ctrl+R Restart - Restart + Restart Connect to profile - Connect to profile + Connect to profile Profile - Profile + Profile Browse @@ -759,27 +930,27 @@ Clear - Clear + Clear Load - Load + Load Save - Save + Save Create a new profile - Create a new profile + Create a new profile Please install 'wpa_supplicant' before using it - Please install 'wpa_supplicant' before using it + Please install 'wpa_supplicant' before using it Signal - Signal + Signal Security @@ -787,7 +958,7 @@ Connect to Wi-Fi - Connect to Wi-Fi + Connect to Wi-Fi Menu @@ -803,55 +974,55 @@ Remove - Remove + Remove Stop profile - Stop profile + Stop profile Start profile - Start profile + Start profile Disable profile - Disable profile + Disable profile Enable profile - Enable profile + Enable profile Stop WiFi - Stop WiFi + Stop WiFi Start WiFi - Start WiFi + Start WiFi Restart profile - Restart profile + Restart profile Edit profile - Edit profile + Edit profile Remove profile - Remove profile + Remove profile Load profile - Load profile + Load profile Save profile - Save profile + Save profile Start Wi-Fi - Start Wi-Fi + Start Wi-Fi netctl-auto @@ -859,7 +1030,7 @@ Actions - Actions + Actions Name==Description==Status @@ -881,7 +1052,7 @@ Parametrs: - Parametrs: + Parametrs: Open window: @@ -905,15 +1076,15 @@ select ESSID %1 - select ESSID %1 + select ESSID %1 open profile %1 - open profile %1 + open profile %1 select profile %1 - select profile %1 + select profile %1 Additional flags: @@ -933,7 +1104,7 @@ open a tab with number %1 - open a tab with number %1 + open a tab with number %1 Show messages: @@ -957,7 +1128,7 @@ cmake flags: - cmake flags: + cmake flags: Version : %1 @@ -983,15 +1154,15 @@ netctl-auto is running - netctl-auto is running + netctl-auto is running Show - Show + Show Help - Help + Help read configuration from file %1 @@ -1027,19 +1198,19 @@ Active - Active + Active Enabled - Enabled + Enabled Exists - Exists + Exists ESSID - ESSID + ESSID start maximized @@ -1047,7 +1218,7 @@ start minimized - start minimized + start minimized Options: @@ -1055,7 +1226,7 @@ start as daemon - start as daemon + start as daemon start minimized to tray @@ -1087,15 +1258,15 @@ DBus API reference - DBus API reference + DBus API reference Security notes - Security notes + Security notes Library documentation - Library documentation + Library documentation Documentation @@ -1111,11 +1282,11 @@ Switch to profile - Switch to profile + Switch to profile Stop all profiles - Stop all profiles + Stop all profiles start detached from console @@ -1123,11 +1294,11 @@ Connection is successfully. - Connection is successfully. + Connection is successfully. Connection failed. - Connection failed. + Connection failed. Do you want to save profile %1? @@ -1139,15 +1310,15 @@ Switch - Switch + Switch Stop all - Stop all + Stop all Edit - Edit + Edit DBus API @@ -1173,6 +1344,62 @@ Project properties Project properties + + Connection is successfully + Connection is successfully + + + Connection failed + Connection failed + + + Information + Information + + + Application has been hidden to tray + Application has been hidden to tray + + + Show security notes + Show security notes + + + Show DBus API + Show DBus API + + + Show library docs + Show library docs + + + About this application + About this application + + + netctl control + netctl control + + + Ctrl+N + Ctrl+N + + + Profiles + Profiles + + + Ctrl+P + Ctrl+P + + + Ctrl+W + Ctrl+W + + + Toolbar + Toolbar + MobileWidget @@ -1186,15 +1413,15 @@ Hide advanced - Hide advanced + Hide advanced Show advanced - Show advanced + Show advanced Form - Form + Form Mobile PPP settings @@ -1349,11 +1576,11 @@ yes - yes + yes Updated - Updated + Updated Enable all profiles @@ -1381,7 +1608,7 @@ Disable profile - Disable profile + Disable profile Esc @@ -1421,37 +1648,112 @@ no - no + no Profile Profile + + Enabled + Enabled + + + Start or stop service + Start or stop service + + + Enable or disable service + Enable or disable service + + + Refresh table + Refresh table + + + Ctrl+R + Ctrl+R + + + Enable or disable profile + Enable or disable profile + + + Toolbar + Toolbar + NetctlHelper Build date: %1 - Build date: %1 + Build date: %1 cmake flags - cmake flags + cmake flags DBus configuration - DBus configuration + DBus configuration Documentation - Documentation + Documentation + + + + NewProfileWidget + + Clear + Clear + + + Clear data + Clear data + + + Ctrl+R + Ctrl+R + + + Load + Load + + + Load selected profile + Load selected profile + + + Save + Save + + + Save selected profile + Save selected profile + + + Remove + Remove + + + Remove selected profile + Remove selected profile + + + Profile + Profile + + + New profile toolbar + New profile toolbar PasswdWidget Form - Form + Form Password @@ -1461,6 +1763,10 @@ ESSID ESSID + + Show symbols + Show symbols + PppoeWidget @@ -1474,15 +1780,15 @@ Hide advanced - Hide advanced + Hide advanced Show advanced - Show advanced + Show advanced Form - Form + Form PPPoE settings @@ -1669,7 +1975,7 @@ You will need to restart the application - You will need to restart the application + You will need to restart the application General @@ -1825,11 +2131,11 @@ wpa_actiond path - wpa_actiond path + wpa_actiond path Path to wpa_actiond - Path to wpa_actiond + Path to wpa_actiond Enable system tray @@ -1881,7 +2187,7 @@ Close helper after exit - Close helper after exit + Close helper after exit Helper command @@ -1905,22 +2211,70 @@ Close helper after exit (doesn't work while systemd service is active) - Close helper after exit (doesn't work while systemd service is active) + Close helper after exit (doesn't work while systemd service is active) There are too binaries. `netctlgui-helper` should be running as root (for example from systemd), otherwise interface `/ctrl` will not be available. `netctlgui-helper-suid` may be running as normal user, but you should keep it in mind that it has SUID bit. - There are too binaries. `netctlgui-helper` should be running as root (for example from systemd), otherwise interface `/ctrl` will not be available. `netctlgui-helper-suid` may be running as normal user, but you should keep it in mind that it has SUID bit. + There are too binaries. `netctlgui-helper` should be running as root (for example from systemd), otherwise interface `/ctrl` will not be available. `netctlgui-helper-suid` may be running as normal user, but you should keep it in mind that it has SUID bit. Skip components checking Skip components checking + + Toolbars + Toolbars + + + Control group + Control group + + + Main toolbar + Main toolbar + + + Left + Left + + + Right + Right + + + Top + Top + + + Bottom + Bottom + + + Disabled + Disabled + + + netctl toolbar + netctl toolbar + + + netctl-auto toolbar + netctl-auto toolbar + + + Profiles toolbar + Profiles toolbar + + + WiFi toolbar + WiFi toolbar + TrayIcon netctl status - netctl status + netctl status Quit @@ -1928,11 +2282,11 @@ Show - Show + Show Show netctl-auto - Show netctl-auto + Show netctl-auto Status @@ -1940,15 +2294,15 @@ Hide - Hide + Hide Hide netctl-auto - Hide netctl-auto + Hide netctl-auto Profile - Profile + Profile (inactive) @@ -1956,19 +2310,19 @@ (netctl-auto) - (netctl-auto) + (netctl-auto) (enabled) - (enabled) + (enabled) (static) - (static) + (static) Start another profile - Start another profile + Start another profile Stop %1 @@ -2018,12 +2372,16 @@ Stop all profiles Stop all profiles + + netctl-auto + netctl-auto + TunnelWidget Form - Form + Form Tunnel settings @@ -2090,7 +2448,7 @@ TuntapWidget Form - Form + Form Tuntap settings @@ -2133,7 +2491,7 @@ VlanWidget Form - Form + Form vlan settings @@ -2148,19 +2506,130 @@ vlan identifier + + WiFiMenuWidget + + Start + Start + + + Stop + Stop + + + Processing... + Processing... + + + MHz + MHz + + + Name + Name + + + Type + Type + + + # of points + # of points + + + Signal + Signal + + + Security + Security + + + Active + Active + + + Exists + Exists + + + 2GHz + 2GHz + + + 5GHz + 5GHz + + + 2GHz and 5GHz + 2GHz and 5GHz + + + N\A + N\A + + + Point + Point + + + Refresh + Refresh + + + Start WiFi + Start WiFi + + + Stop WiFi + Stop WiFi + + + Please install 'wpa_supplicant' before use it + Please install 'wpa_supplicant' before use it + + + Information + Information + + + This isn't the functionality you're looking for + This isn't the functionality you're looking for + + + Refresh table + Refresh table + + + Ctrl+R + Ctrl+R + + + Connect or disconnect from selected ESSID + Connect or disconnect from selected ESSID + + + Please install 'wpa_supplicant' before using it + Please install 'wpa_supplicant' before using it + + + WiFi menu toolbar + WiFi menu toolbar + + WirelessWidget Hide advanced - Hide advanced + Hide advanced Show advanced - Show advanced + Show advanced Form - Form + Form Wireless options diff --git a/sources/resources/translations/ja.ts b/sources/resources/translations/ja.ts index c5f3404..11fc2ba 100644 --- a/sources/resources/translations/ja.ts +++ b/sources/resources/translations/ja.ts @@ -82,22 +82,21 @@ BridgeWidget - Form - フォーム + フォーム - + Bridge settings ブリッジの設定 - + Skip (R)STP and immediately activate all bridge members (R)STP をスキップし直ちにすべてのブリッジメンバを活性化する - + Skip forwarding delay 転送遅延をスキップする @@ -105,127 +104,137 @@ ErrorWindow - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + Error! エラー! - + Could not find components コンポーネントを見付けられません - + Does not support yet まだサポートしていません - + Profile name is not set プロファイル名が設定されていません - + Bind interfaces are not set インターフェースとの紐付けが設定されていません - + Description is not set 説明が記載されていません - + Ip settings are not set IP の設定が指定されていません - + Configuration file does not exist 設定ファイルが存在しません - + Key is not set キーが設定されていません - + Wireless settings are not set 無線設定が指定されていません - + Configuration file is not set 設定ファイルが存在しません - + ESSID is not set ESSID が設定されていません - + MAC address is incorrect MAC アドレスが正しくありません - + Session ID is not set セッション ID が設定されていません - - + + User is not in network group, helper will not be started + + + + APN is not set APN が設定されていません - + Empty user/group name ユーザ名/グループ名が空です - + Could not find profile プロファイルが見付かりません - + Could not find ESSID ESSID を発見できません - + Could not run helper ヘルパを起動できません - + + IP address does not match the standard + + + + Unknown error 不明なエラーです - + Sender : %1 送信元:%1 @@ -233,231 +242,229 @@ EthernetWidget - Form - フォーム + フォーム - + Ethernet options イーサネットのオプション - - Hide advanced - 詳細を隠す + 詳細を隠す - + <html><head/><body><p>Whether or not the absence of a carrier is acceptable</p></body></html> I don't know this translation is exactry correct because of my lack of knowledge in network. <html><head/><body><p>受理可能なキャリアの不在を問わない</p></body></html> - + Skip no carrier 存在しないキャリアをスキップ - + Set to ‘yes’ to use 802.1x authentication 802.1.x 認証を使用「する」ように設定する - + 802.1x authentication 802.1.x 認証 - + WPA config file WPA 設定ファイル - + Path to a wpa_supplicant configuration file wpa_supplicant 設定ファイルへのパス - + Browse ブラウズ - + WPA driver WPA ドライバ - + The wpa_supplicant driver to use for 802.1x authentication 802.1.x 認証利用の為の wpa_supplicant ドライバ - + wired wired - + nl80211 nl80211 - + wext wext - + Timeout carrier キャリアのタイムアウト - + Maximum time, in seconds, to wait for a carrier キャリアを待機する最大時間(秒) - + Timeout WPA WPA のタイムアウト - + Maximum time, in seconds, to wait for 802.1x authentication to succeed 802.1.x 認証の成功を待機する最大時間(秒) - - + + Select wpa configuration file WPA 設定ファイルを選択 - - + + Configuration files (*.conf) 設定ファイル (*.conf) - Show advanced - 詳細を表示 + 詳細を表示 GeneralWidget - Form - フォーム + フォーム - + General 一般 - + Description 説明 - <html><head/><body><p>A description of the profile</p></body></html> - <html><head/><body><p>プロファイルの説明</p></body></html> + <html><head/><body><p>プロファイルの説明</p></body></html> - + Connection 接続 - + The connection type used by the profile プロファイルで利用される接続 - + Interface インターフェース - + The name of the associated network interface 確立されたネットワークインターフェースの名前 - + Binds to interfaces インターフェースとの紐付け - - + + Add 追加 - + An array of physical network interfaces that this profile needs before it can be started 開始前にプロファイルを必要とする物理ネットワークインターフェース - - + Hide advanced 詳細を隠す - + + A description of the profile + + + + After - + An array of profile names that should be started before this profile is started 開始前にプロファイルを必要とするプロファイル名 - + Command after starting 開始後に実行するコマンド - + A command that is executed after a connection is established 接続確立後に実行されるコマンド - + Command before stoping 停止前に実行するコマンド - + A command that is executed before a connection is brought down 接続切断前に実行されるコマンド - + Set to ‘yes’ to force connecting even if the interface is up インターフェースが有効であっても強制的に接続「する」ように設定する - + Force connect 接続を強制 - + Debug mode デバッグモード - + Show advanced 詳細を表示 @@ -465,623 +472,794 @@ IpWidget - Form - フォーム + フォーム - + IP options IP オプション - + IP IP - - + + dhcp DHCP - - + + static 静的 - + Address アドレス (IPv4) - - - - - - - + + + + + + + Add 追加 - + An array of IP addresses suffixed with ‘/<netmask>’ '</netmask>' が後続するIPアドレスの列 - + Gateway ゲートウェイ (IPv4) - An IP routing gateway address - IPv4 ルーティングゲートウェイアドレス + IPv4 ルーティングゲートウェイアドレス - + IP6 IP6 - + dhcp-noaddr dhcp-noaddr - + stateless ステートレス - + Address6 アドレス (IPv6) - + An array of IPv6 addresses IPv6 アドレスの列 - + Gateway6 ゲートウェイ (IPv6) - An IPv6 routing gateway address - IPv6 ルーティングゲートウェイアドレス + IPv6 ルーティングゲートウェイアドレス - - Hide advanced - 詳細を隠す + 詳細を隠す - + Routes ルート (IPv4) - - + + via 経由 - - + + An array of custom routes 編集された経路の列 - + Routes6 ルート (IPv6) - + Custom カスタム - + An array of argument lines to pass to ip IPへ渡す引数列 - + Hostname ホスト名 - + A system hostname システムのホスト名 - + Timeout DAD DAD のタイムアウト - + Maximum time, in seconds, to wait for IPv6’s Duplicate Address Detection to succeed IPv6 における重複アドレス検出の成功を待機する最大時間(秒) - + DHCP client DHCP クライアント - + The name of the preferred DHCP client 優先する DHCP クライアントの名前 - + dhcpcd dhcpcd - + + + + + Should be in CIDR form according to standards + + + + + An IP routing gateway address. +Should be according to standards + + + + + An IPv6 routing gateway address. +Should be according to standards + + + + + + + Should be according to standards + + + + dhclient dhclient - + dhcpcd options dhcpcd オプション - - - + + + Additional options to be passed to the DHCP client DHCPクライアントへ渡す追加オプション - + dhclient options dhclientオプション (IPv4) - + dhclient options (6) dhclient オプション (IPv6) - + Timeout DHCP DHCP のタイムアウト - + Maximum time, in seconds, to wait for DHCP to be successful DHCP が成功するまでの最大待機時間(秒) - + Set to ‘yes’ to release the DHCP lease when the profile is stopped プロファイル停止時に DHCP リースの解放のために 'yes' を設定する - + DHCP release on stop 停止時に DHCP を解放する - + DNS DNS - + An array of DNS nameservers DNSネームサーバの列 - + DNS domain DNS ドメイン - + A ‘domain’ line for /etc/resolv.conf /etc/resolv.conf に対する 'domain' 行 - + DNS search DNS 検索 - + A ‘search’ line for /etc/resolv.conf /etc/resolv.conf に対する 'search' 行 - + DNS options DNS オプション - + An array of ‘options’ lines for /etc/resolv.conf /etc/resolv.conf に対する 'options' 行の列 - Show advanced - 詳細を表示 + 詳細を表示 MacvlanWidget - Form - フォーム + フォーム - + macvlan settings macvlan 設定 - + Mode モード - + MAC address MAC アドレス - + Optional static MAC address 追加的な静的 MAC アドレス - MainWindow + MainWidget - - Netctl GUI - Netctl GUI + + Stop + 停止 - - Connect to profile - 接続するプロファイル - - - - - - - Name - 名前 - - - - - Description - 説明 - - - - - - - Refresh - 再読み込み - - - - Restart - 再開 - - - - - - - + + Start 開始 - - Create a new profile - プロファイルを新規作成する + + Disable + - - - Profile - プロファイル + + + Enable + - - Clear - クリア + + + Name + 名前 - - Switch - 切り替え + + + Description + 説明 - - Stop all - 全て停止 - - - - Load - 読み込み - - - - Edit - 編集 - - - - - Remove - 削除 - - - - DBus API - DBus API - - - - Library - ライブラリ - - - - Report a bug - バグを報告する - - - - Save - 保存 - - - - Please install 'wpa_supplicant' before using it - 使用前に 'wpa_supplicant' をインストールして下さい - - - - About - 概要 - - - - netctl-auto is running - netctl-auto は実行中です - - - - Show - 表示 - - - - - Signal - 信号 - - - - - - Security - セキュリティ - - - - Menu - メニュー - - - - Actions - アクション - - - - Help - ヘルプ - - - - Settings - 設定 - - - - Ctrl+S - Ctrl+S - - - - Quit - 終了 - - - - Ctrl+Q - Ctrl+Q - - - - - Start profile - プロファイルを開始 - - - - Restart profile - プロファイルを再開 - - - - - Enable profile - プロファイルを有効化 - - - - Edit profile - プロファイルを編集 - - - - Remove profile - プロファイルを削除 - - - - netctl-auto - netctl-auto - - - - Ready - 用意 - - - - yes - はい - - - - no - いいえ - - - - - - + + Active - 活性化 + - - + + Enabled 有効 - - - - Updated - 最新 + + Type + - + + Is wireless + + + + + + Refresh + 再読み込み + + + + + Start profile + + + + + Restart profile + + + + + + Enable profile + + + + + Edit profile + プロファイルを編集 + + + + Remove profile + プロファイルを削除 + + + Stop profile - プロファイルを停止 + - + Disable profile プロファイルを無効化 - - + + Refresh table + + + + + Ctrl+R + Ctrl+R + + + + Start or stop selected profile + + + + + Switch + 切り替え + + + + Switch to selected profile + + + + + Restart + 再開 + + + + Restart selected profile + + + + + Enable or disable selected profile + + + + + Stop all + 全て停止 + + + + Stop all profiles + すべてのプロセスを停止する + + + + Edit + 編集 + + + + Edit selected profile + + + + + Remove + 削除 + + + + Remove selected profile + + + + + netctl-auto is running + netctl-auto は実行中です + + + + Main actions toolbar + + + + + MainWindow + + + Netctl GUI + Netctl GUI + + + Connect to profile + 接続するプロファイル + + + Name + 名前 + + + Description + 説明 + + + Refresh + 再読み込み + + + Restart + 再開 + + + Start + 開始 + + + Create a new profile + プロファイルを新規作成する + + + Profile + プロファイル + + + Clear + クリア + + + Switch + 切り替え + + + Stop all + 全て停止 + + + Load + 読み込み + + + Edit + 編集 + + + Remove + 削除 + + + + DBus API + DBus API + + + + Show DBus API + + + + + Library + ライブラリ + + + + Show library docs + + + + + Report a bug + バグを報告する + + + Save + 保存 + + + Please install 'wpa_supplicant' before using it + 使用前に 'wpa_supplicant' をインストールして下さい + + + + About + 概要 + + + netctl-auto is running + netctl-auto は実行中です + + + Show + 表示 + + + Signal + 信号 + + + + Security + セキュリティ + + + + Show security notes + + + + + About this application + + + + + + netctl control + + + + + Ctrl+N + Ctrl+N + + + + + Profiles + + + + + Ctrl+P + Ctrl+P + + + + Ctrl+W + Ctrl+W + + + + Menu + メニュー + + + + Toolbar + + + + Actions + アクション + + + Help + ヘルプ + + + + Settings + 設定 + + + + Ctrl+S + Ctrl+S + + + + Quit + 終了 + + + + Ctrl+Q + Ctrl+Q + + + Start profile + プロファイルを開始 + + + Restart profile + プロファイルを再開 + + + Enable profile + プロファイルを有効化 + + + Edit profile + プロファイルを編集 + + + Remove profile + プロファイルを削除 + + + + netctl-auto + netctl-auto + + + + Ready + 用意 + + + + yes + はい + + + + no + いいえ + + + Active + 活性化 + + + Enabled + 有効 + + + Updated + 最新 + + + Stop profile + プロファイルを停止 + + + Disable profile + プロファイルを無効化 + + Exists - 存在 + 存在 - Disable - 無効化 + 無効化 - - Enable - 有効化 + 有効化 - ESSID - ESSID + ESSID - Stop WiFi - WiFiを停止 + WiFiを停止 - - - Start WiFi - WiFiを開始 + WiFiを開始 - - - - - - - - - - - - - - + + Information + + + + + Application has been hidden to tray + + + + Done 完了 - - - - - - - - - - - - - - + Error エラー - - Stop - 停止 + 停止 @@ -1090,203 +1268,211 @@ 不明なフラグ - + Usage: 使用法: - + Open window: ウィンドウの展開: - + start detached from console コンソールから分離して開始する - + start maximized 最大化して実行 - + show about window ウィンドウの概要を表示 - + show netctl-auto window netctl-auto ウィンドウを表示 - + show settings window 設定ウィンドウを表示 - + Functions: 機能: - + Options: オプション: - + start minimized to tray トレイに最小化された状態で開始 - + select this ESSID この ESSID を選択 - + open this profile このプロファイルを開く - + select this profile このプロファイルを選択 - + Additional flags: 追加のフラグ: - + read configuration from this file このファイルから設定を読み込む - + print debug information デバッグ情報を出力 - + start with default settings デフォルトの設定で開始 - + set options for this run, comma separated この実行に対するオプションの設定(コンマで区切る) - + open a tab with this number 指定した番号のタブを開く - + Show messages: メッセージの表示: - + show version and exit バージョンを出力して終了 - + show build information and exit ビルド情報を表示して終了 - + show this help and exit このヘルプを表示して終了 - + Build date: %1 ビルド日時:%1 - + cmake flags cmake フラグ - + cmake properties cmake プロファイル - + Components コンポーネント - + Additional components 追加のコンポーネント - + Project properties プロジェクトのプロパティ - + DBus configuration DBus 設定 - + Documentation ドキュメンテーション - + Version バージョン - + Author 作者 - + License ライセンス - + Restore existing session. 既存のセッションを復元します。 - + Close existing session. 既存のセッションを閉じます。 - Connection is successfully. - 接続が無事に確立されました。 + 接続が無事に確立されました。 - Connection failed. - 接続の確立に失敗しました。 + 接続の確立に失敗しました。 - + + Connection is successfully + + + + + Connection failed + + + + Do you want to save profile %1? プロファイル%1を保存しますか? - - + + WiFi menu WiFi メニュー @@ -1294,905 +1480,1059 @@ MobileWidget - Form - フォーム + フォーム - + Mobile PPP settings モバイル PPP の設定 - + Username ユーザ名 - - + + The username and password to connect with 接続する際のユーザ名とパスワード - + Password パスワード - + Access point name アクセスポイント名 - + The access point (apn) to connect on 接続するアクセスポイント (APN) - + PIN PIN - + If your modem requires a PIN to unlock, use this option モデムが PIN のアンロックを要求する場合にこのオプションを使用する - + Mode モード - + This option is used to specify the connection mode このオプションは接続モードを示す際に使用されます - + None 無し - + 3Gpref 3Gpref - + 3Gonly 3Gonly - + GPRSpref GPRSpref - + GPRSonly GPRSonly - - Show advanced - 詳細を表示 + 詳細を表示 - + Max fail 最大失敗回数 - + The number of consecutive failed connection attempts to tolerate 連続して失敗した接続試行について許容できる回数 - + Use the default route provided by the peer ピアから提供されるデフォルトの経路を使用 - + Default route デフォルトの経路 - + Use the DNS provided by the peer ピアから提供される DNS を使用 - + Use peer DNS ピア DNS を使用 - + Options file オプションのファイル - + A file to read additional pppd options from 追加の PPPD オプションを読み込む為のファイル - + Browse ブラウズ - + Select options file オプションファイルを選択 - + Configuration files (*.conf) 設定ファイル (*.conf) - Hide advanced - 詳細を隠す + 詳細を隠す NetctlAutoWindow - + netctl-auto netctl-auto - + Esc Esc - + + Start or stop service + + + + Restart service サービスを再開 - - + + Enable or disable service + + + + Refresh 再読み込み - - + + Refresh table + + + + + Ctrl+R + Ctrl+R + + + + Enable or disable profile + + + + + Name 名前 - - + + Description 説明 - - + + Active 活性化 - - + + Enabled + 有効 + + + Disabled 無効 - + Switch 切り替え - + + Toolbar + + + + Menu メニュー - + Ready 用意 - + Disable service サービスを無効化 - - + + Enable service サービスを有効化 - + netctl-auto is running netctl-auto は実行中です - + Stop service サービスを停止 - - + + Start service サービスを開始 - + netctl-auto is not running netctl-auto は実行されていません - yes - はい + はい - no - いいえ + いいえ - + Profile プロファイル - Updated - 最新 + 最新 - - - + Enable profile プロファイルを有効化 - - + + Enable all profiles 全てのプロファイルを有効化 - - + + Disable all profiles 全てのプロファイルを無効化 - - - + + + Enable 有効 - - + + Disable 無効 - - - - - - - + Done 完了 - - - - - - - + Error エラー - Disable profile - プロファイルを無効化 + プロファイルを無効化 - - + + Switch to profile プロファイルを切り替える - + Close 閉じる - PasswdWidget + NewProfileWidget - - Form - フォーム + + Clear + クリア - - + + Clear data + + + + + Ctrl+R + Ctrl+R + + + + Load + 読み込み + + + + Load selected profile + + + + + Save + 保存 + + + + Save selected profile + + + + + Remove + 削除 + + + + Remove selected profile + + + + + Profile + プロファイル + + + + New profile toolbar + + + + + PasswdWidget + + Form + フォーム + + + + Password パスワード - + ESSID ESSID + + + Show symbols + + PppoeWidget - Form - フォーム + フォーム - + PPPoE settings PPPoE 設定 - + Username ユーザ名 - - + + The username and password to connect with 接続に用いるユーザ名及びパスワード - + Password パスワード - + Connection mode 接続モード - + This option specifies how a connection should be established どのように接続を確立すべきであるかを指定するオプション - + persist persist - + demand demand - + Idle timeout アイドル時のタイムアウト - + This option specifies the idle time (in seconds) after which ‘pppd’ should disconnect 'pppd' が切断されるべきアイドル時間(秒)を指定するオプション - - Show advanced - 詳細を表示 + 詳細を表示 - + Max fail 最大失敗回数 - + The number of consecutive failed connection attempts to tolerate 連続して失敗した接続試行について許容可能な回数 - + Use the default route provided by the peer ピアから提供されるデフォルトの経路を使用 - + Default route デフォルトの経路 - + Use the DNS provided by the peer ピアから提供される DNS を使用 - + Use peer DNS ピア DNS を使用 - + PPP unit PPP ユニット - + Set the ppp unit number in the interface name (ppp0, ppp1, etc.) インターフェース名に用いる PPP ユニット数を設定(ppp0, ppp1, 等) - + LCP echo interval LCP エコー間隔 - - + + These options override default LCP parameters from ‘/etc/ppp/options’ これらのオプションは '/etc/ppp/options' からのデフォルトの LCP パラメータを上書きします  - + LCP echo failure LCP エコー失敗回数 - + Options file オプションファイル - + A file to read additional pppd options from 追加の pppd オプションを読み込むファイル - + Browse ブラウズ - + PPPoE service PPPoE サービス - + This option specifies the PPPoE service name このオプションは PPPoE サービス名を指定します - + PPPoE AC PPPoE AC - + This option specifies the PPPoE access concentrator name このオプションは PPPoE アクセスコンセントレータ名を指定します - + PPPoE session PPPoE セッション - + This option specifies an existing session to attach to, MAC address このオプションはセッションに対して用いる MAC アドレスを指定します - + PPPoE MAC PPPoE MAC - + Only connect to specified MAC address 指定した MAC アドレスのみを用いて接続する - + Enable IPv6 support IPv6 サポートを有効化 - + PPPoE IPv6 PPPoE IPv6 - + Select options file オプションファイルを指定 - + Configuration files (*.conf) 設定ファイル (*.conf) - Hide advanced - 詳細を隠す + 詳細を隠す SettingsWindow - + Settings 設定 - + General 一般 - + Language 言語 - + + Select a language 言語を選択 - + netctl netctl - + netctl path netctl のパス - + Path to netctl netctl のパス - - - - - - - - - - + + + + + + + + + + Browse ブラウズ - + Profile path プロファイルのパス - + Path to profile directory プロファイルがあるディレクトリのパス - + sudo sudo - + sudo path sudo path - + Path to sudo sudo へのパス - + wpa_supplicant wpa_supplicant - + Helper ヘルパ - + Enable system tray システムトレイでの表示を有効にする - + Minimize to tray instead of closing ウィンドウを閉じるかわりにシステムトレイへ最小化する - + Start minimized to tray システムトレイへ最小化された状態で起動する - + Skip components checking コンポーネントの確認をスキップする - + It is recommended to use systemd integration. See `man 1 netctlgui-helper` for more details. systemd へ統合された機能の仕様が推奨されます。詳細は `man 1 netctlgui-helper` を参照して下さい。 - + Helper status ヘルパの状態 - + Use helper ヘルパを使用する - + Force use sudo in helper ヘルパにて sudo の使用を強制する - + Helper command コマンド - + Helper service サービス - + Name of netctlgui-helper service Netctl GUIヘルパのサービス名 - + systemctl path systemctl path - + Path to systemctl systemctl へのパス - + netctl-auto path netctl-auto へのパス - + Path to netctl-auto netctl-auto へのパス - + netctl-auto service netctl-auto サービスへのパス - + + Toolbars + + + + + Close helper after exit + + + + + Control group + + + + Name of netctl-auto systemd service netctl-auto サービスの名前 - + wpa_supplicant path wpa_supplicant へのパス - + Path to wpa_supplicant wpa_supplicant へのパス - + wpa_cli path wpa_cli path - + Path to wpa_cli wpa_cli へのパス - + PID file PID ファイル - + wpa_supplicant PID file wpa_supplicant の PID ファイル - + wpa_supplicant drivers wpa_supplicant drivers - + wpa_supplicant drivers comma separated wpa_suppricant のドライバ(コンマで区切る) - + ctrl_interface directory ctrl_interface のディレクトリ - + Path to control directory Netctl GUI で管理するディレクトリのパス - + ctrl_interface group ctrl_interface 群 - + Group of control directory Netctl GUI で管理しているディレクトリ群 - + + Main toolbar + + + + + + + + + Left + + + + + + + + + Right + + + + + + + + + Top + + + + + + + + + Bottom + + + + + + + + + Disabled + 無効 + + + + netctl toolbar + + + + + netctl-auto toolbar + + + + + Profiles toolbar + + + + + WiFi toolbar + + + + Other その他 - Close helper after exit (doesn't work while systemd service is active) - 終了後にヘルパを閉じる(systemd のサービスが有効となるまで機能しません) + 終了後にヘルパを閉じる(systemd のサービスが有効となるまで機能しません) - + Path to interface list インターフェースリストのパス - + Path to directory which contains network devices ネットワークインターフェースがあるディレクトリへのパス - + Path to rfkill device list Rfkill デバイスリストのパス - + Path to directory which contains rfkill devices Rfkill デバイスがあるディレクトリのパス - - + + Prefered wireless interface 優先する無線インターフェース - + Select path to directory with interfaces ネットワークインターフェースがあるディレクトリへのパス - + Select netctl command netctl コマンドを選択 - + All files (*) 全てのファイル (*) - - + + Select helper command ヘルパのコマンドを選択 - + Select netctl-auto command netctl-auto コマンドを選択 - + Select path to profile directory プロファイルがあるディレクトリのパス - + Select path to directory with rfkill devices Rfkill デバイスがあるディレクトリのパス - + Select sudo command sudo コマンドを選択 - + Select systemctl command systemctl コマンドを選択 - + Select wpa_cli command wpa_cli コマンドを選択 - + Select wpa_supplicant command wpa_supplicant コマンドを選択 - + Active (systemd) 有効 (systemd) - + Active 有効 - - + + Stop 停止 - + Inactive 無効 - - + + Start 開始 @@ -2200,201 +2540,192 @@ TrayIcon - - netctl status - netctl の状態 + netctl の状態 - - Profile - プロファイル + プロファイル - + (inactive) (無効) - (netctl-auto) - (netctl-auto) + (netctl-auto) - Start another profile - 他のプロファイルを開始する + 他のプロファイルを開始する - + + netctl-auto + netctl-auto + + + Stop %1 %1を停止する - + Restart %1 %1を再起動 - + Disable %1 %1を無効にする - + Enable %1 %1を有効にする - - + Start profile プロファイルを開始する - + Stop profile プロファイルを停止する - + Stop all profiles すべてのプロセスを停止する - + Switch to profile プロファイルを切り替える - + Restart profile プロファイルを再開する - + Enable profile プロファイルを有効 - + Quit 終了 - - Show - 表示 + 表示 - + static 静的 - + enabled 有効 - Show netctl-auto - netctl-auto を表示 + netctl-auto を表示 - - - + Status 状態 - Hide - 隠す + 隠す TunnelWidget - Form - フォーム + フォーム - + Tunnel settings トンネルの設定 - + Mode モード - + The tunnel type トンネルのタイプ - + ipip ipip - + gre gre - + sit sit - + isatap isatap - + ip6ip6 ip6ip6 - + ipip6 ipip6 - + ip6gre ip6gre - + any すべて - + Local ローカル - + The address of the local end of the tunnel トンネルのローカルにおける始点アドレス - + Remote リモート - + The address of the remote end of the tunnel トンネルのリモートにおける終点アドレス @@ -2402,52 +2733,51 @@ TuntapWidget - Form - フォーム + フォーム - + Tuntap settings TUN/TAP 設定 - + Mode モード - + Either ‘tun’, or ‘tap’ 'TUN' 又は 'TAP' のどれか - + tun TUN - + tap TAP - + User ユーザ - + The owning user of the tun/tap interface TUN/TAP インターフェースを所有するユーザ - + Group グループ - + The owning group of the tun/tap interface TUN/TAP インターフェースを所有するグループ @@ -2455,251 +2785,396 @@ VlanWidget - Form - フォーム + フォーム - + vlan settings VLAN 設定 - + vlan ID VLAN ID - + vlan identifier VLAN 識別子 - WirelessWidget + WiFiMenuWidget - - Form - フォーム + + + Start + 開始 - - Wireless options - 無線オプション + + Stop + 停止 - + + Processing... + + + + + + MHz + + + + + + Name + 名前 + + + + + + Type + + + + + + # of points + + + + + + Signal + 信号 + + + + Security セキュリティ - + + + Active + + + + + + Exists + 存在 + + + + 2GHz + + + + + 5GHz + + + + + 2GHz and 5GHz + + + + + N\A + + + + + Point + + + + + + Refresh + 再読み込み + + + + + Start WiFi + WiFiを開始 + + + + Stop WiFi + WiFiを停止 + + + + Please install 'wpa_supplicant' before use it + 使用前に 'wpa_supplicant' をインストールして下さい + + + + Information + + + + + This isn't the functionality you're looking for + + + + + Refresh table + + + + + Ctrl+R + Ctrl+R + + + + Connect or disconnect from selected ESSID + + + + + Please install 'wpa_supplicant' before using it + 使用前に 'wpa_supplicant' をインストールして下さい + + + + WiFi menu toolbar + + + + + WirelessWidget + + Form + フォーム + + + + Wireless options + 無線オプション + + + + Security + セキュリティ + + + none none - + wep wep - + wpa wpa - + wpa-configsection wpa-configsection - + wpa-config wpa-config - + ESSID ESSID - + The name of the network to connect to 接続するネットワーク名 - + Wpa config section WPA 設定セクション - - - + + + Add 追加 - + Array of lines that form a network block for wpa_supplicant wpa_supplicant に対するネットワークブロックを形作る行 - + Wpa config file WPA 設定ファイル - + Path to a wpa_supplicant configuration file wpa_supplicant 設定ファイルへのパス - + Browse ブラウズ - + Key キー - + The secret key to a WEP, or WPA encrypted network WEP 又は WPA 暗号化ネットワークの秘密鍵 - + Whether or not the specified network is a hidden network 指定したネットワークが隠蔽されたものであるかを問わない - + Hidden 隠蔽 - + Whether or not to use ad-hoc mode アドホックモードを使用するかを問わない - + Ad-hoc アドホック - - Show advanced - 詳細を表示する + 詳細を表示する - + Scan frequencies 帯域をスキャン - + A space-separated list of frequencies in MHz to scan when searching for the network ネットワークを検索する際に対象となる帯域 (MHz) をスペースで区切ったリスト - + Frequency 帯域 - - + + Priority group for the network ネットワークの優先グループ - + Priority 優先度 - + Country - + The country for which frequency regulations will be enforced 周波数帯域の制限が実施される国 - + WPA group WPA グループ - + Group that has the authority to configure wpa_supplicant via its control interface wpa_supplicant のコントロールインターフェースを用いてその設定をする権威者が存在するグループ - + Drivers ドライバ - + west west - + nl80211 nl80211 - + wired wired - + The wpa_supplicant driver to use 使用する wpa_supplicant ドライバ - + RFkill device RFkill デバイス - + The name of an rfkill device Rfkill デバイスの名前 - + Timeout WPA WPA のタイムアウト - + Maximum time, in seconds, to wait for steps in the association and authentication to succeed 接続確立と認証の成功との段階を待機する最大時間(秒) - + Whether or not to exclude this profile from automatic profile selection 自動的なプロファイル選択からこのプロファイルを除外するか否かを問わない - + Exclude auto プロファイルを除外する - Hide advanced - 詳細を隠す + 詳細を隠す diff --git a/sources/resources/translations/netctl-gui.ts b/sources/resources/translations/netctl-gui.ts index 70563df..7f57e89 100644 --- a/sources/resources/translations/netctl-gui.ts +++ b/sources/resources/translations/netctl-gui.ts @@ -1,6 +1,6 @@ - + About @@ -81,22 +81,17 @@ BridgeWidget - - Form - - - - + Bridge settings - + Skip (R)STP and immediately activate all bridge members - + Skip forwarding delay @@ -104,127 +99,137 @@ ErrorWindow - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + Error! - + Could not find components - + Does not support yet - + Profile name is not set - + Bind interfaces are not set - + Description is not set - + Ip settings are not set - + Configuration file does not exist - + Key is not set - + Wireless settings are not set - + Configuration file is not set - + ESSID is not set - + MAC address is incorrect - + Session ID is not set - - + + User is not in network group, helper will not be started + + + + APN is not set - + Empty user/group name - + Could not find profile - + Could not find ESSID - + Could not run helper - + + IP address does not match the standard + + + + Unknown error - + Sender : %1 @@ -232,230 +237,208 @@ EthernetWidget - - Form - - - - + Ethernet options - - - Hide advanced - - - - + <html><head/><body><p>Whether or not the absence of a carrier is acceptable</p></body></html> - + Skip no carrier - - + + Set to ‘yes’ to use 802.1x authentication - + 802.1x authentication - + WPA config file - + Path to a wpa_supplicant configuration file - + Browse - + WPA driver - + The wpa_supplicant driver to use for 802.1x authentication - + wired - + nl80211 - + wext - + Timeout carrier - + Maximum time, in seconds, to wait for a carrier - + Timeout WPA - + Maximum time, in seconds, to wait for 802.1x authentication to succeed - - + + Select wpa configuration file - - + + Configuration files (*.conf) - - - Show advanced - - GeneralWidget - - Form - - - - + General - + Description - - <html><head/><body><p>A description of the profile</p></body></html> - - - - + Connection - + The connection type used by the profile - + Interface - + The name of the associated network interface - + Binds to interfaces - - + + Add - + An array of physical network interfaces that this profile needs before it can be started - - + Hide advanced - + + A description of the profile + + + + After - + An array of profile names that should be started before this profile is started - + Command after starting - + A command that is executed after a connection is established - + Command before stoping - + A command that is executed before a connection is brought down - - + + Set to ‘yes’ to force connecting even if the interface is up - + Force connect - + Debug mode - + Show advanced @@ -463,624 +446,619 @@ IpWidget - - Form - - - - + IP options - + IP - - + + dhcp - - + + static - + Address - - - - - - - + + + + + + + Add - - + + An array of IP addresses suffixed with ‘/<netmask>’ - + Gateway - - An IP routing gateway address - - - - + IP6 - + dhcp-noaddr - + stateless - + Address6 - + An array of IPv6 addresses - + Gateway6 - - An IPv6 routing gateway address - - - - - - Hide advanced - - - - + Routes - - + + via - - + + An array of custom routes - + Routes6 - + Custom - + An array of argument lines to pass to ip - + Hostname - + A system hostname - + Timeout DAD - - + + Maximum time, in seconds, to wait for IPv6’s Duplicate Address Detection to succeed - + DHCP client - + The name of the preferred DHCP client - + dhcpcd - + + + + + Should be in CIDR form according to standards + + + + + An IP routing gateway address. +Should be according to standards + + + + + An IPv6 routing gateway address. +Should be according to standards + + + + + + + Should be according to standards + + + + dhclient - + dhcpcd options - - - + + + Additional options to be passed to the DHCP client - + dhclient options - + dhclient options (6) - + Timeout DHCP - + Maximum time, in seconds, to wait for DHCP to be successful - - + + Set to ‘yes’ to release the DHCP lease when the profile is stopped - + DHCP release on stop - + DNS - + An array of DNS nameservers - + DNS domain - - + + A ‘domain’ line for /etc/resolv.conf - + DNS search - - + + A ‘search’ line for /etc/resolv.conf - + DNS options - - + + An array of ‘options’ lines for /etc/resolv.conf - - - Show advanced - - MacvlanWidget - - Form - - - - + macvlan settings - + Mode - + MAC address - + Optional static MAC address + + MainWidget + + + Stop + + + + + + Start + + + + + Disable + + + + + + Enable + + + + + + Name + + + + + + Description + + + + + + Active + + + + + + Enabled + + + + + Type + + + + + Is wireless + + + + + + Refresh + + + + + + Start profile + + + + + Restart profile + + + + + + Enable profile + + + + + Edit profile + + + + + Remove profile + + + + + Stop profile + + + + + Disable profile + + + + + Refresh table + + + + + Ctrl+R + + + + + Start or stop selected profile + + + + + Switch + + + + + Switch to selected profile + + + + + Restart + + + + + Restart selected profile + + + + + Enable or disable selected profile + + + + + Stop all + + + + + Stop all profiles + + + + + Edit + + + + + Edit selected profile + + + + + Remove + + + + + Remove selected profile + + + + + netctl-auto is running + + + + + Main actions toolbar + + + MainWindow - + Netctl GUI - - Connect to profile - - - - - - - - Name - - - - - - Description - - - - - - - - Refresh - - - - - Restart - - - - - - - - - Start - - - - - Create a new profile - - - - - - Profile - - - - - Clear - - - - - Switch - - - - - Stop all - - - - - Load - - - - - Edit - - - - - - Remove - - - - + DBus API - + + Show DBus API + + + + Library - + + Show library docs + + + + Report a bug - - Save - - - - - Please install 'wpa_supplicant' before using it - - - - + About - - netctl-auto is running - - - - - Show - - - - - - Signal - - - - - - + Security - + + Show security notes + + + + + About this application + + + + + + netctl control + + + + + Ctrl+N + + + + + + Profiles + + + + + Ctrl+P + + + + + Ctrl+W + + + + Menu - - Actions + + Toolbar - - Help - - - - + Settings - + Ctrl+S - + Quit - + Ctrl+Q - - - Start profile - - - - - Restart profile - - - - - - Enable profile - - - - - Edit profile - - - - - Remove profile - - - - + netctl-auto - + Ready - + yes - + no - - - - - Active + + Information - - - Enabled + + Application has been hidden to tray - - - - Updated - - - - - Stop profile - - - - - Disable profile - - - - - - Exists - - - - - Disable - - - - - - Enable - - - - - ESSID - - - - - Stop WiFi - - - - - - - Start WiFi - - - - - - - - - - - - - - - - - + Done - - - - - - - - - - - - - - + Error - - - - Stop - - Unknown flag @@ -1088,203 +1066,203 @@ - + Usage: - + Open window: - + start detached from console - + start maximized - + show about window - + show netctl-auto window - + show settings window - + Functions: - + Options: - + start minimized to tray - + select this ESSID - + open this profile - + select this profile - + Additional flags: - + read configuration from this file - + print debug information - + start with default settings - + set options for this run, comma separated - + open a tab with this number - + Show messages: - + show version and exit - + show build information and exit - + show this help and exit - + Build date: %1 - + cmake flags - + cmake properties - + Components - + Additional components - + Project properties - + DBus configuration - + Documentation - + Version - + Author - + License - + Restore existing session. - + Close existing session. - - Connection is successfully. + + Connection is successfully - - Connection failed. + + Connection failed - + Do you want to save profile %1? - - + + WiFi menu @@ -1292,905 +1270,1011 @@ MobileWidget - - Form - - - - + Mobile PPP settings - + Username - - + + The username and password to connect with - + Password - + Access point name - + The access point (apn) to connect on - + PIN - + If your modem requires a PIN to unlock, use this option - + Mode - + This option is used to specify the connection mode - + None - + 3Gpref - + 3Gonly - + GPRSpref - + GPRSonly - - - Show advanced - - - - + Max fail - + The number of consecutive failed connection attempts to tolerate - + Use the default route provided by the peer - + Default route - + Use the DNS provided by the peer - + Use peer DNS - + Options file - + A file to read additional pppd options from - + Browse - + Select options file - + Configuration files (*.conf) - - - Hide advanced - - NetctlAutoWindow - + netctl-auto - + Esc - + + Start or stop service + + + + Restart service - - + + Enable or disable service + + + + Refresh - - + + Refresh table + + + + + Ctrl+R + + + + + Enable or disable profile + + + + + Name - - + + Description - - + + Active - - + + Enabled + + + + Disabled - + Switch - + + Toolbar + + + + Menu - + Ready - + Disable service - - + + Enable service - + netctl-auto is running - + Stop service - - + + Start service - + netctl-auto is not running - - yes - - - - - no - - - - + Profile - - Updated - - - - - - + Enable profile - - + + Enable all profiles - - + + Disable all profiles - - - + + + Enable - - + + Disable - - - - - - - + Done - - - - - - - + Error - - Disable profile - - - - - + + Switch to profile - + Close + + NewProfileWidget + + + Clear + + + + + Clear data + + + + + Ctrl+R + + + + + Load + + + + + Load selected profile + + + + + Save + + + + + Save selected profile + + + + + Remove + + + + + Remove selected profile + + + + + Profile + + + + + New profile toolbar + + + PasswdWidget - - Form - - - - - + + Password - + ESSID + + + Show symbols + + PppoeWidget - - Form - - - - + PPPoE settings - + Username - - + + The username and password to connect with - + Password - + Connection mode - + This option specifies how a connection should be established - + persist - + demand - + Idle timeout - - + + This option specifies the idle time (in seconds) after which ‘pppd’ should disconnect - - - Show advanced - - - - + Max fail - + The number of consecutive failed connection attempts to tolerate - + Use the default route provided by the peer - + Default route - + Use the DNS provided by the peer - + Use peer DNS - + PPP unit - + Set the ppp unit number in the interface name (ppp0, ppp1, etc.) - + LCP echo interval - - - + + + These options override default LCP parameters from ‘/etc/ppp/options’ - + LCP echo failure - + Options file - + A file to read additional pppd options from - + Browse - + PPPoE service - + This option specifies the PPPoE service name - + PPPoE AC - + This option specifies the PPPoE access concentrator name - + PPPoE session - + This option specifies an existing session to attach to, MAC address - + PPPoE MAC - + Only connect to specified MAC address - + Enable IPv6 support - + PPPoE IPv6 - + Select options file - + Configuration files (*.conf) - - - Hide advanced - - SettingsWindow - + Settings - + General - + Language - + + Select a language - + netctl - + netctl path - + Path to netctl - - - - - - - - - - + + + + + + + + + + Browse - + Profile path - + Path to profile directory - + sudo - + sudo path - + Path to sudo - + wpa_supplicant - + Helper - + Enable system tray - + Minimize to tray instead of closing - + Start minimized to tray - + Skip components checking - + It is recommended to use systemd integration. See `man 1 netctlgui-helper` for more details. - + Helper status - + Use helper - + Force use sudo in helper - + Helper command - + Helper service - + Name of netctlgui-helper service - + systemctl path - + Path to systemctl - + netctl-auto path - + Path to netctl-auto - + netctl-auto service - + + Toolbars + + + + + Close helper after exit + + + + + Control group + + + + Name of netctl-auto systemd service - + wpa_supplicant path - + Path to wpa_supplicant - + wpa_cli path - + Path to wpa_cli - + PID file - + wpa_supplicant PID file - + wpa_supplicant drivers - + wpa_supplicant drivers comma separated - + ctrl_interface directory - + Path to control directory - + ctrl_interface group - + Group of control directory - + + Main toolbar + + + + + + + + + Left + + + + + + + + + Right + + + + + + + + + Top + + + + + + + + + Bottom + + + + + + + + + Disabled + + + + + netctl toolbar + + + + + netctl-auto toolbar + + + + + Profiles toolbar + + + + + WiFi toolbar + + + + Other - - Close helper after exit (doesn't work while systemd service is active) - - - - + Path to interface list - + Path to directory which contains network devices - + Path to rfkill device list - + Path to directory which contains rfkill devices - - + + Prefered wireless interface - + Select path to directory with interfaces - + Select netctl command - + All files (*) - - + + Select helper command - + Select netctl-auto command - + Select path to profile directory - + Select path to directory with rfkill devices - + Select sudo command - + Select systemctl command - + Select wpa_cli command - + Select wpa_supplicant command - + Active (systemd) - + Active - - + + Stop - + Inactive - - + + Start @@ -2198,201 +2282,160 @@ TrayIcon - - - netctl status - - - - - - Profile - - - - + (inactive) - - (netctl-auto) + + netctl-auto - - Start another profile - - - - + Stop %1 - + Restart %1 - + Disable %1 - + Enable %1 - - + Start profile - + Stop profile - + Stop all profiles - + Switch to profile - + Restart profile - + Enable profile - + Quit - - - Show - - - - + static - + enabled - - Show netctl-auto - - - - - - + Status - - - Hide - - TunnelWidget - - Form - - - - + Tunnel settings - + Mode - + The tunnel type - + ipip - + gre - + sit - + isatap - + ip6ip6 - + ipip6 - + ip6gre - + any - + Local - + The address of the local end of the tunnel - + Remote - + The address of the remote end of the tunnel @@ -2400,52 +2443,47 @@ TuntapWidget - - Form - - - - + Tuntap settings - + Mode - - + + Either ‘tun’, or ‘tap’ - + tun - + tap - + User - + The owning user of the tun/tap interface - + Group - + The owning group of the tun/tap interface @@ -2453,251 +2491,380 @@ VlanWidget - - Form - - - - + vlan settings - + vlan ID - + vlan identifier + + WiFiMenuWidget + + + + Start + + + + + Stop + + + + + Processing... + + + + + + MHz + + + + + + Name + + + + + + + Type + + + + + + # of points + + + + + + Signal + + + + + + Security + + + + + + Active + + + + + + Exists + + + + + 2GHz + + + + + 5GHz + + + + + 2GHz and 5GHz + + + + + N\A + + + + + Point + + + + + + Refresh + + + + + + Start WiFi + + + + + Stop WiFi + + + + + Please install 'wpa_supplicant' before use it + + + + + Information + + + + + This isn't the functionality you're looking for + + + + + Refresh table + + + + + Ctrl+R + + + + + Connect or disconnect from selected ESSID + + + + + Please install 'wpa_supplicant' before using it + + + + + WiFi menu toolbar + + + WirelessWidget - - Form - - - - + Wireless options - + Security - + none - + wep - + wpa - + wpa-configsection - + wpa-config - + ESSID - + The name of the network to connect to - + Wpa config section - - - + + + Add - + Array of lines that form a network block for wpa_supplicant - + Wpa config file - + Path to a wpa_supplicant configuration file - + Browse - + Key - + The secret key to a WEP, or WPA encrypted network - + Whether or not the specified network is a hidden network - + Hidden - + Whether or not to use ad-hoc mode - + Ad-hoc - - - Show advanced - - - - + Scan frequencies - + A space-separated list of frequencies in MHz to scan when searching for the network - + Frequency - - + + Priority group for the network - + Priority - + Country - + The country for which frequency regulations will be enforced - + WPA group - + Group that has the authority to configure wpa_supplicant via its control interface - + Drivers - + west - + nl80211 - + wired - + The wpa_supplicant driver to use - + RFkill device - + The name of an rfkill device - + Timeout WPA - + Maximum time, in seconds, to wait for steps in the association and authentication to succeed - + Whether or not to exclude this profile from automatic profile selection - + Exclude auto - - - Hide advanced - - diff --git a/sources/resources/translations/ru.ts b/sources/resources/translations/ru.ts index 0e39b7b..78884e7 100644 --- a/sources/resources/translations/ru.ts +++ b/sources/resources/translations/ru.ts @@ -69,7 +69,7 @@ BridgeWidget Form - Form + Form Bridge settings @@ -182,6 +182,14 @@ Could not run helper Не могу запустить хелпер + + User is not in network group, helper will not be started + Пользователь не в группе network, хелпер не будет запущен + + + IP address does not match the standard + IP адрес не соответствует стандартам + EthernetWidget @@ -195,15 +203,15 @@ Hide advanced - Скрыть расширенные + Скрыть расширенные Show advanced - Показать расширенные + Показать расширенные Form - Form + Form Ethernet options @@ -286,7 +294,7 @@ Form - Form + Form General @@ -298,7 +306,7 @@ <html><head/><body><p>A description of the profile</p></body></html> - Описание профиля + Описание профиля Connection @@ -364,20 +372,24 @@ Debug mode Режим отладки + + A description of the profile + Описание профиля + IpWidget Hide advanced - Скрыть расширенные + Скрыть расширенные Show advanced - Показать расширенные + Показать расширенные Form - Form + Form IP options @@ -413,7 +425,7 @@ An IP routing gateway address - Адрес IP шлюза + Адрес IP шлюза IP6 @@ -441,7 +453,7 @@ An IPv6 routing gateway address - Адрес IPv6 шлюза + Адрес IPv6 шлюза Routes @@ -567,12 +579,32 @@ Maximum time, in seconds, to wait for IPv6’s Duplicate Address Detection to succeed Максимальное время в секундах для ожидания выполнения детектирования дубликации IPv6 адресов + + Should be in CIDR form according to standards + Должно быть в формате CIDR согласно стандартам + + + An IP routing gateway address. +Should be according to standards + IP адрес шлюза. +Должен соответствовать стандартам + + + An IPv6 routing gateway address. +Should be according to standards + IPv6 адрес шлюза. +Должен соответствовать стандартам + + + Should be according to standards + Должен соответствовать стандартам + MacvlanWidget Form - Form + Form macvlan settings @@ -596,23 +628,7 @@ - MainWindow - - Ready - Готов - - - Updated - Обновлено - - - Error - Ошибка - - - Done - Выполнено - + MainWidget Stop Стоп @@ -629,6 +645,161 @@ Enable Включить + + Name + Имя + + + Description + Описание + + + Active + Активен + + + Enabled + Включен + + + Type + Тип + + + Is wireless + Беспроводной + + + Refresh + Обновить + + + Start profile + Запустить профиль + + + Restart profile + Перезапустить профиль + + + Enable profile + Включить профиль + + + Edit profile + Отредактировать профиль + + + Remove profile + Удалить профиль + + + Stop profile + Остановить профиль + + + Disable profile + Отключить профиль + + + Refresh table + Обновить таблицу + + + Ctrl+R + Ctrl+R + + + Start or stop selected profile + Остановить или запустить выбранный профиль + + + Switch + Переключить + + + Switch to selected profile + Переключить на выбранный профиль + + + Restart + Перезапуск + + + Restart selected profile + Перезапустить выбранный профиль + + + Enable or disable selected profile + Отключить или включить выбранный профиль + + + Stop all + Остановить все + + + Stop all profiles + Остановить все профили + + + Edit + Редактировать + + + Edit selected profile + Редактировать выбранный профиль + + + Remove + Удалить + + + Remove selected profile + Удалить выбранный профиль + + + netctl-auto is running + netctl-auto запущен + + + Main actions toolbar + Основные действия + + + + MainWindow + + Ready + Готов + + + Updated + Обновлено + + + Error + Ошибка + + + Done + Выполнено + + + Stop + Стоп + + + Start + Старт + + + Disable + Отключить + + + Enable + Включить + Save profile as... Сохранить профиль как... @@ -723,35 +894,35 @@ Name - Имя + Имя Description - Описание + Описание Status - Статус + Статус Refresh - Обновить + Обновить Ctrl+R - Ctrl+R + Ctrl+R Restart - Перезапуск + Перезапуск Connect to profile - Включить профиль + Включить профиль Profile - Профиль + Профиль Browse @@ -759,27 +930,27 @@ Clear - Очистить + Очистить Load - Загрузить + Загрузить Save - Сохранить + Сохранить Create a new profile - Создать новый профиль + Создать новый профиль Please install 'wpa_supplicant' before using it - Установите 'wpa_supplicant' для использования этого модуля + Установите 'wpa_supplicant' для использования этого модуля Signal - Сигнал + Сигнал Security @@ -787,7 +958,7 @@ Connect to Wi-Fi - Подключиться к Wi-Fi + Подключиться к Wi-Fi Menu @@ -803,55 +974,55 @@ Remove - Удалить + Удалить Stop profile - Остановить профиль + Остановить профиль Start profile - Запустить профиль + Запустить профиль Disable profile - Отключить профиль + Отключить профиль Enable profile - Включить профиль + Включить профиль Stop WiFi - Остановить WiFi + Остановить WiFi Start WiFi - Подключить WiFi + Подключить WiFi Restart profile - Перезапустить профиль + Перезапустить профиль Edit profile - Отредактировать профиль + Отредактировать профиль Remove profile - Удалить профиль + Удалить профиль Load profile - Загрузить профиль + Загрузить профиль Save profile - Сохранить профиль + Сохранить профиль Start Wi-Fi - Подключить WiFi + Подключить WiFi netctl-auto @@ -859,7 +1030,7 @@ Actions - Действия + Действия Name==Description==Status @@ -880,7 +1051,7 @@ Parametrs: - Параметры: + Параметры: Open window: @@ -904,15 +1075,15 @@ select ESSID %1 - выбрать ESSID %1 + выбрать ESSID %1 open profile %1 - открыть профиль %1 + открыть профиль %1 select profile %1 - выбрать профиль %1 + выбрать профиль %1 Additional flags: @@ -932,7 +1103,7 @@ open a tab with number %1 - открыть вкладку с номером %1 + открыть вкладку с номером %1 Show messages: @@ -956,7 +1127,7 @@ cmake flags: - Флаги cmake: + Флаги cmake: Version : %1 @@ -982,15 +1153,15 @@ netctl-auto is running - netctl-auto запущен + netctl-auto запущен Show - Показать + Показать Help - Справка + Справка read configuration from file %1 @@ -1026,19 +1197,19 @@ Active - Активен + Активен Enabled - Включен + Включен Exists - Существует + Существует ESSID - ESSID + ESSID start maximized @@ -1046,7 +1217,7 @@ start minimized - запустить свернутым + запустить свернутым Options: @@ -1054,7 +1225,7 @@ start as daemon - запустить, как демон + запустить, как демон start minimized to tray @@ -1086,15 +1257,15 @@ DBus API reference - Описание DBus API + Описание DBus API Security notes - Примечания о безопасности + Примечания о безопасности Library documentation - Документация + Документация Documentation @@ -1110,11 +1281,11 @@ Switch to profile - Переключиться на профиль + Переключиться на профиль Stop all profiles - Остановить все профили + Остановить все профили start detached from console @@ -1122,11 +1293,11 @@ Connection is successfully. - Соединение установлено. + Соединение установлено. Connection failed. - Соединение не установлено. + Соединение не установлено. Do you want to save profile %1? @@ -1138,15 +1309,15 @@ Switch - Переключить + Переключить Stop all - Остановить все + Остановить все Edit - Редактировать + Редактировать DBus API @@ -1172,6 +1343,62 @@ Project properties Свойства проекта + + Connection is successfully + Соединение установлено + + + Connection failed + Соединение не установлено + + + Information + Информация + + + Application has been hidden to tray + Приложение было скрыто в трей + + + Show security notes + Показать примечания о безопасности + + + Show DBus API + Показать DBus API + + + Show library docs + Показать документацию к библиотеке + + + About this application + О приложении + + + netctl control + Управление netctl + + + Ctrl+N + Ctrl+N + + + Profiles + Профили + + + Ctrl+P + Ctrl+P + + + Ctrl+W + Ctrl+W + + + Toolbar + Панель инструментов + MobileWidget @@ -1185,15 +1412,15 @@ Hide advanced - Скрыть расширенные + Скрыть расширенные Show advanced - Показать расширенные + Показать расширенные Form - Form + Form Mobile PPP settings @@ -1348,11 +1575,11 @@ yes - да + да Updated - Обновлено + Обновлено Enable all profiles @@ -1380,7 +1607,7 @@ Disable profile - Отключить профиль + Отключить профиль Esc @@ -1420,37 +1647,112 @@ no - нет + нет Profile Профиль + + Enabled + Включен + + + Start or stop service + Запустить или остановить сервис + + + Enable or disable service + Включить или отключить сервис + + + Refresh table + Обновить таблицу + + + Ctrl+R + Ctrl+R + + + Enable or disable profile + Отключить или включить выбранный профиль + + + Toolbar + Панель инструментов + NetctlHelper Build date: %1 - Дата сборки: %1 + Дата сборки: %1 cmake flags - Флаги cmake + Флаги cmake DBus configuration - Настройка DBus + Настройка DBus Documentation - Документация + Документация + + + + NewProfileWidget + + Clear + Очистить + + + Clear data + Очистить данные + + + Ctrl+R + Ctrl+R + + + Load + Загрузить + + + Load selected profile + Загрузить выбранный профиль + + + Save + Сохранить + + + Save selected profile + Сохранить выбранный профиль + + + Remove + Удалить + + + Remove selected profile + Удалить выбранный профиль + + + Profile + Профиль + + + New profile toolbar + Управление профилями PasswdWidget Form - Form + Form Password @@ -1460,6 +1762,10 @@ ESSID ESSID + + Show symbols + Показать символы + PppoeWidget @@ -1473,15 +1779,15 @@ Hide advanced - Скрыть расширенные + Скрыть расширенные Show advanced - Показать расширенные + Показать расширенные Form - Form + Form PPPoE settings @@ -1668,7 +1974,7 @@ You will need to restart the application - You will need to restart the application + You will need to restart the application General @@ -1824,11 +2130,11 @@ wpa_actiond path - Путь к wpa_actiond + Путь к wpa_actiond Path to wpa_actiond - Путь к wpa_actiond + Путь к wpa_actiond Enable system tray @@ -1880,7 +2186,7 @@ Close helper after exit - Закрыть хелпер после выхода + Закрыть хелпер после выхода Helper command @@ -1904,22 +2210,70 @@ Close helper after exit (doesn't work while systemd service is active) - Закрыть хелпер после выхода (не работает, если запущен сервис systemd) + Закрыть хелпер после выхода (не работает, если запущен сервис systemd) There are too binaries. `netctlgui-helper` should be running as root (for example from systemd), otherwise interface `/ctrl` will not be available. `netctlgui-helper-suid` may be running as normal user, but you should keep it in mind that it has SUID bit. - Существует два бинарных файла. `netctlgui-helper` должен быть запущен от root'а (например, через systemd), в противном случае интерфейс `/ctrl` не будет доступен. `netctlgui-helper-suid` может быть запущен от обычного пользователя, однако Вы должны иметь в виду, что он имеет SUID бит. + Существует два бинарных файла. `netctlgui-helper` должен быть запущен от root'а (например, через systemd), в противном случае интерфейс `/ctrl` не будет доступен. `netctlgui-helper-suid` может быть запущен от обычного пользователя, однако Вы должны иметь в виду, что он имеет SUID бит. Skip components checking Пропустить проверку компонентов + + Toolbars + Панели инструментов + + + Control group + Управляющая группа + + + Main toolbar + Основная панель инструментов + + + Left + Слева + + + Right + Справа + + + Top + Сверху + + + Bottom + Снизу + + + Disabled + Отключен + + + netctl toolbar + Управление netctl + + + netctl-auto toolbar + Управление netctl-auto + + + Profiles toolbar + Управление профилями + + + WiFi toolbar + Управление WiFi + TrayIcon netctl status - Статус netctl + Статус netctl Quit @@ -1927,11 +2281,11 @@ Show - Показать + Показать Show netctl-auto - Показать netctl-auto + Показать netctl-auto Status @@ -1939,15 +2293,15 @@ Hide - Свернуть + Свернуть Hide netctl-auto - Свернуть netctl-auto + Свернуть netctl-auto Profile - Профиль + Профиль (inactive) @@ -1955,19 +2309,19 @@ (netctl-auto) - (netctl-auto) + (netctl-auto) (enabled) - (включен) + (включен) (static) - (статический) + (статический) Start another profile - Запустить другой профиль + Запустить другой профиль Stop %1 @@ -2017,12 +2371,16 @@ Stop all profiles Остановить все профили + + netctl-auto + netctl-auto + TunnelWidget Form - Form + Form Tunnel settings @@ -2089,7 +2447,7 @@ TuntapWidget Form - Form + Form Tuntap settings @@ -2132,7 +2490,7 @@ VlanWidget Form - Form + Form vlan settings @@ -2147,19 +2505,130 @@ Идентификатор vlan + + WiFiMenuWidget + + Start + Старт + + + Stop + Стоп + + + Processing... + Обработка + + + MHz + МГц + + + Name + Имя + + + Type + Тип + + + # of points + Число точек + + + Signal + Сигнал + + + Security + Безопасность + + + Active + Активен + + + Exists + Существует + + + 2GHz + 2ГГц + + + 5GHz + 5ГГц + + + 2GHz and 5GHz + 2ГГц и 5ГГц + + + N\A + N\A + + + Point + Точка + + + Refresh + Обновить + + + Start WiFi + Подключить WiFi + + + Stop WiFi + Остановить WiFi + + + Please install 'wpa_supplicant' before use it + Установите 'wpa_supplicant' для использования этого модуля + + + Information + Информация + + + This isn't the functionality you're looking for + Это не та функциональность, которую вы ищите + + + Refresh table + Обновить таблицу + + + Ctrl+R + Ctrl+R + + + Connect or disconnect from selected ESSID + Подключиться или отключиться к выбранному ESSID + + + Please install 'wpa_supplicant' before using it + Установите 'wpa_supplicant' для использования этого модуля + + + WiFi menu toolbar + Панель инструментов WiFi + + WirelessWidget Hide advanced - Скрыть расширенные + Скрыть расширенные Show advanced - Показать расширенные + Показать расширенные Form - Form + Form Wireless options