mirror of
https://github.com/arcan1s/netctl-gui.git
synced 2025-04-24 15:37:23 +00:00
parent
e4bcfb1653
commit
bf7521481a
@ -1,3 +0,0 @@
|
|||||||
[Dolphin]
|
|
||||||
Timestamp=2015,3,7,17,10,22
|
|
||||||
Version=3
|
|
@ -23,11 +23,14 @@
|
|||||||
#include <QFileDialog>
|
#include <QFileDialog>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
|
#include <grp.h>
|
||||||
|
|
||||||
#include <language/language.h>
|
#include <language/language.h>
|
||||||
#include <pdebug/pdebug.h>
|
#include <pdebug/pdebug.h>
|
||||||
|
#include <task/taskadds.h>
|
||||||
|
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
|
|
||||||
SettingsWindow::SettingsWindow(QWidget *parent, const bool debugCmd, const QString configFile)
|
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);
|
ui->setupUi(this);
|
||||||
addLanguages();
|
addLanguages();
|
||||||
|
addGroups();
|
||||||
createActions();
|
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::Ok), SIGNAL(clicked(bool)), this, SLOT(closeWindow()));
|
||||||
connect(ui->buttonBox->button(QDialogButtonBox::Reset), SIGNAL(clicked(bool)), this, SLOT(restoreSettings()));
|
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->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->checkBox_enableTray, SIGNAL(stateChanged(int)), this, SLOT(setTray()));
|
||||||
connect(ui->treeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
|
connect(ui->treeWidget, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
|
||||||
this, SLOT(changePage(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 << "<!DOCTYPE busconfig PUBLIC" << endl;
|
||||||
|
out << " \"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN\"" << endl;
|
||||||
|
out << " \"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd\">" << endl;
|
||||||
|
out << "<busconfig>" << endl;
|
||||||
|
// group body
|
||||||
|
out << " <policy group=\"" << group << "\">" << endl;
|
||||||
|
out << " <allow own=\"org.netctlgui.helper\"/>" << endl;
|
||||||
|
out << " <allow send_destination=\"org.netctlgui.helper\"/>" << endl;
|
||||||
|
out << " <allow receive_sender=\"org.netctlgui.helper\"/>" << endl;
|
||||||
|
out << " </policy>" << endl;
|
||||||
|
// root body
|
||||||
|
out << " <policy user=\"root\">" << endl;
|
||||||
|
out << " <allow own=\"org.netctlgui.helper\"/>" << endl;
|
||||||
|
out << " <allow send_destination=\"org.netctlgui.helper\"/>" << endl;
|
||||||
|
out << " <allow receive_sender=\"org.netctlgui.helper\"/>" << endl;
|
||||||
|
out << " </policy>" << endl;
|
||||||
|
// footer
|
||||||
|
out << "</busconfig>" << 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)
|
void SettingsWindow::changePage(QTreeWidgetItem *current, QTreeWidgetItem *previous)
|
||||||
{
|
{
|
||||||
Q_UNUSED(previous);
|
Q_UNUSED(previous);
|
||||||
@ -177,7 +254,6 @@ void SettingsWindow::saveSettings()
|
|||||||
|
|
||||||
settings.beginGroup(QString("Helper"));
|
settings.beginGroup(QString("Helper"));
|
||||||
settings.setValue(QString("USE_HELPER"), config[QString("USE_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("FORCE_SUDO"), config[QString("FORCE_SUDO")]);
|
||||||
settings.setValue(QString("CLOSE_HELPER"), config[QString("CLOSE_HELPER")]);
|
settings.setValue(QString("CLOSE_HELPER"), config[QString("CLOSE_HELPER")]);
|
||||||
settings.setValue(QString("HELPER_PATH"), config[QString("HELPER_PATH")]);
|
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 ' <policy group="network">'
|
||||||
|
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()
|
void SettingsWindow::setTray()
|
||||||
{
|
{
|
||||||
if (debug) qDebug() << PDEBUG;
|
if (debug) qDebug() << PDEBUG;
|
||||||
@ -311,6 +419,7 @@ void SettingsWindow::showWindow()
|
|||||||
{
|
{
|
||||||
if (debug) qDebug() << PDEBUG;
|
if (debug) qDebug() << PDEBUG;
|
||||||
|
|
||||||
|
setHelperGroup();
|
||||||
setSettings(getSettings());
|
setSettings(getSettings());
|
||||||
setTray();
|
setTray();
|
||||||
updateHelper();
|
updateHelper();
|
||||||
@ -478,7 +587,6 @@ QMap<QString, QString> SettingsWindow::getSettings(QString fileName)
|
|||||||
|
|
||||||
settings.beginGroup(QString("Helper"));
|
settings.beginGroup(QString("Helper"));
|
||||||
config[QString("USE_HELPER")] = settings.value(QString("USE_HELPER"), QString("true")).toString();
|
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("FORCE_SUDO")] = settings.value(QString("FORCE_SUDO"), QString("false")).toString();
|
||||||
config[QString("CLOSE_HELPER")] = settings.value(QString("CLOSE_HELPER"), 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();
|
config[QString("HELPER_PATH")] = settings.value(QString("HELPER_PATH"), QString("/usr/bin/netctlgui-helper")).toString();
|
||||||
|
@ -48,9 +48,12 @@ public slots:
|
|||||||
void showWindow();
|
void showWindow();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
void addGroups();
|
||||||
void addLanguages();
|
void addLanguages();
|
||||||
|
void applyHelperGroup();
|
||||||
void changePage(QTreeWidgetItem *current, QTreeWidgetItem *previous);
|
void changePage(QTreeWidgetItem *current, QTreeWidgetItem *previous);
|
||||||
void saveSettings();
|
void saveSettings();
|
||||||
|
void setHelperGroup();
|
||||||
void setTray();
|
void setTray();
|
||||||
void updateHelper();
|
void updateHelper();
|
||||||
// buttons
|
// buttons
|
||||||
|
@ -119,7 +119,9 @@
|
|||||||
<string>Toolbars</string>
|
<string>Toolbars</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset theme="configure-toolbars"/>
|
<iconset theme="configure-toolbars">
|
||||||
|
<normaloff/>
|
||||||
|
</iconset>
|
||||||
</property>
|
</property>
|
||||||
</item>
|
</item>
|
||||||
</widget>
|
</widget>
|
||||||
@ -477,39 +479,6 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<layout class="QHBoxLayout" name="layout_group">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_group">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
||||||
<horstretch>1</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Control group</string>
|
|
||||||
</property>
|
|
||||||
<property name="alignment">
|
|
||||||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QComboBox" name="comboBox_group">
|
|
||||||
<property name="sizePolicy">
|
|
||||||
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
|
||||||
<horstretch>2</horstretch>
|
|
||||||
<verstretch>0</verstretch>
|
|
||||||
</sizepolicy>
|
|
||||||
</property>
|
|
||||||
<property name="toolTip">
|
|
||||||
<string>Select a language</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_helperService">
|
<layout class="QHBoxLayout" name="layout_helperService">
|
||||||
<item>
|
<item>
|
||||||
@ -586,6 +555,59 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="Line" name="line">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Vertical</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_group">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_group">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||||||
|
<horstretch>7</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Control group</string>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QComboBox" name="comboBox_group">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Preferred" vsizetype="Fixed">
|
||||||
|
<horstretch>10</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Select a language</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox_applyGroup">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||||
|
<horstretch>4</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Apply</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<spacer name="spacer_helper">
|
<spacer name="spacer_helper">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
@ -1230,8 +1252,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>542</width>
|
<width>436</width>
|
||||||
<height>330</height>
|
<height>107</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_11">
|
<layout class="QVBoxLayout" name="verticalLayout_11">
|
||||||
@ -1391,8 +1413,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>542</width>
|
<width>201</width>
|
||||||
<height>330</height>
|
<height>177</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_15">
|
<layout class="QVBoxLayout" name="verticalLayout_15">
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QMenu>
|
#include <QMenu>
|
||||||
|
#include <QMessageBox>
|
||||||
|
|
||||||
#include <pdebug/pdebug.h>
|
#include <pdebug/pdebug.h>
|
||||||
|
|
||||||
@ -352,6 +353,7 @@ bool WiFiMenuWidget::wifiTabSetEnabled(const bool state)
|
|||||||
if (debug) qDebug() << PDEBUG;
|
if (debug) qDebug() << PDEBUG;
|
||||||
if (debug) qDebug() << PDEBUG << ":" << "State" << state;
|
if (debug) qDebug() << PDEBUG << ":" << "State" << state;
|
||||||
|
|
||||||
|
ui->actionFunc->setEnabled(!state);
|
||||||
ui->tableWidget_wifi->setEnabled(state);
|
ui->tableWidget_wifi->setEnabled(state);
|
||||||
if (!state) ui->label_wifi->setText(QApplication::translate("WiFiMenuWidget", "Please install 'wpa_supplicant' before use it"));
|
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()
|
void WiFiMenuWidget::wifiTabStart()
|
||||||
{
|
{
|
||||||
if (debug) qDebug() << PDEBUG;
|
if (debug) qDebug() << PDEBUG;
|
||||||
@ -418,6 +429,7 @@ void WiFiMenuWidget::createActions()
|
|||||||
if (debug) qDebug() << PDEBUG;
|
if (debug) qDebug() << PDEBUG;
|
||||||
|
|
||||||
// menu actions
|
// menu actions
|
||||||
|
connect(ui->actionFunc, SIGNAL(triggered(bool)), this, SLOT(wifiTabShowInfo()));
|
||||||
connect(ui->actionRefresh, SIGNAL(triggered(bool)), this, SLOT(updateWifiTab()));
|
connect(ui->actionRefresh, SIGNAL(triggered(bool)), this, SLOT(updateWifiTab()));
|
||||||
connect(ui->actionStart, SIGNAL(triggered(bool)), this, SLOT(wifiTabStart()));
|
connect(ui->actionStart, SIGNAL(triggered(bool)), this, SLOT(wifiTabStart()));
|
||||||
// wifi tab events
|
// wifi tab events
|
||||||
|
@ -58,6 +58,7 @@ private slots:
|
|||||||
// wifi tab slots
|
// wifi tab slots
|
||||||
void wifiTabContextualMenu(const QPoint &pos);
|
void wifiTabContextualMenu(const QPoint &pos);
|
||||||
bool wifiTabSetEnabled(const bool state);
|
bool wifiTabSetEnabled(const bool state);
|
||||||
|
int wifiTabShowInfo();
|
||||||
void wifiTabStart();
|
void wifiTabStart();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -113,6 +113,7 @@
|
|||||||
<addaction name="actionRefresh"/>
|
<addaction name="actionRefresh"/>
|
||||||
<addaction name="separator"/>
|
<addaction name="separator"/>
|
||||||
<addaction name="actionStart"/>
|
<addaction name="actionStart"/>
|
||||||
|
<addaction name="actionFunc"/>
|
||||||
</widget>
|
</widget>
|
||||||
<action name="actionRefresh">
|
<action name="actionRefresh">
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
@ -143,6 +144,7 @@
|
|||||||
<string>Connect or disconnect from selected ESSID</string>
|
<string>Connect or disconnect from selected ESSID</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
|
<action name="actionFunc"/>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
<connections/>
|
<connections/>
|
||||||
|
@ -23,9 +23,6 @@ SKIPCOMPONENTS=false
|
|||||||
# use netctlgui-helper if it is available.
|
# use netctlgui-helper if it is available.
|
||||||
# This option is not recognized by netctlgui-helper
|
# This option is not recognized by netctlgui-helper
|
||||||
USE_HELPER=true
|
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 use SUDO_PATH for helper instead of using setuid(3) to child processes
|
||||||
FORCE_SUDO=false
|
FORCE_SUDO=false
|
||||||
# hide application to tray on exit if tray is available.
|
# hide application to tray on exit if tray is available.
|
||||||
@ -77,6 +74,3 @@ IFACE_DIR=/sys/class/net/
|
|||||||
RFKILL_DIR=/sys/class/rfkill/
|
RFKILL_DIR=/sys/class/rfkill/
|
||||||
# prefered wireless interface
|
# prefered wireless interface
|
||||||
PREFERED_IFACE=
|
PREFERED_IFACE=
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ public slots:
|
|||||||
QString LibraryDocs();
|
QString LibraryDocs();
|
||||||
QString Pony();
|
QString Pony();
|
||||||
QString SecurityDocs();
|
QString SecurityDocs();
|
||||||
bool SelfDestruct();
|
bool SelfDestruct(const QString approve);
|
||||||
QStringList Settings();
|
QStringList Settings();
|
||||||
QStringList UIDs();
|
QStringList UIDs();
|
||||||
bool Update();
|
bool Update();
|
||||||
|
@ -156,7 +156,6 @@ QMap<QString, QString> NetctlHelper::getSettings(const QString file)
|
|||||||
|
|
||||||
settings.beginGroup(QString("Helper"));
|
settings.beginGroup(QString("Helper"));
|
||||||
config[QString("USE_HELPER")] = settings.value(QString("USE_HELPER"), QString("true")).toString();
|
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("FORCE_SUDO")] = settings.value(QString("FORCE_SUDO"), QString("false")).toString();
|
||||||
config[QString("CLOSE_HELPER")] = settings.value(QString("CLOSE_HELPER"), 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();
|
config[QString("HELPER_PATH")] = settings.value(QString("HELPER_PATH"), QString("/usr/bin/netctlgui-helper")).toString();
|
||||||
|
@ -11,147 +11,152 @@
|
|||||||
</translation>
|
</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="54"/>
|
<location filename="../../helper/src/messages.cpp" line="53"/>
|
||||||
<source>Usage:</source>
|
<source>Usage:</source>
|
||||||
<translation>Usage:</translation>
|
<translation>Usage:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="56"/>
|
<location filename="../../helper/src/messages.cpp" line="55"/>
|
||||||
<source>Options:</source>
|
<source>Options:</source>
|
||||||
<translation>Options:</translation>
|
<translation>Options:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="59"/>
|
<location filename="../../helper/src/messages.cpp" line="57"/>
|
||||||
<source>read configuration from this file</source>
|
<source>read configuration from this file</source>
|
||||||
<translation>read configuration from this file</translation>
|
<translation>read configuration from this file</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="61"/>
|
<location filename="../../helper/src/messages.cpp" line="58"/>
|
||||||
<source>print debug information</source>
|
<source>print debug information</source>
|
||||||
<translation>print debug information</translation>
|
<translation>print debug information</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="63"/>
|
<location filename="../../helper/src/messages.cpp" line="59"/>
|
||||||
<source>do not start as daemon</source>
|
<source>do not start as daemon</source>
|
||||||
<translation>do not start as daemon</translation>
|
<translation>do not start as daemon</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="65"/>
|
<location filename="../../helper/src/messages.cpp" line="60"/>
|
||||||
<source>force replace the existing session</source>
|
<source>force replace the existing session</source>
|
||||||
<translation>force replace the existing session</translation>
|
<translation>force replace the existing session</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="67"/>
|
<location filename="../../helper/src/messages.cpp" line="61"/>
|
||||||
<source>force restore the existing session</source>
|
<source>force restore the existing session</source>
|
||||||
<translation>force restore the existing session</translation>
|
<translation>force restore the existing session</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="69"/>
|
<location filename="../../helper/src/messages.cpp" line="62"/>
|
||||||
|
<source>force create user DBus session</source>
|
||||||
|
<translation>force create user DBus session</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../helper/src/messages.cpp" line="63"/>
|
||||||
<source>do not read user configuration, system-wide only</source>
|
<source>do not read user configuration, system-wide only</source>
|
||||||
<translation>do not read user configuration, system-wide only</translation>
|
<translation>do not read user configuration, system-wide only</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="70"/>
|
<location filename="../../helper/src/messages.cpp" line="64"/>
|
||||||
<source>Show messages:</source>
|
<source>Show messages:</source>
|
||||||
<translation>Show messages:</translation>
|
<translation>Show messages:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="72"/>
|
<location filename="../../helper/src/messages.cpp" line="65"/>
|
||||||
<source>show version and exit</source>
|
<source>show version and exit</source>
|
||||||
<translation>show version and exit</translation>
|
<translation>show version and exit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="74"/>
|
<location filename="../../helper/src/messages.cpp" line="66"/>
|
||||||
<source>show build information and exit</source>
|
<source>show build information and exit</source>
|
||||||
<translation>show build information and exit</translation>
|
<translation>show build information and exit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="76"/>
|
<location filename="../../helper/src/messages.cpp" line="67"/>
|
||||||
<source>show this help and exit</source>
|
<source>show this help and exit</source>
|
||||||
<translation>show this help and exit</translation>
|
<translation>show this help and exit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="86"/>
|
<location filename="../../helper/src/messages.cpp" line="77"/>
|
||||||
<source>Build date: %1</source>
|
<source>Build date: %1</source>
|
||||||
<translation>Build date: %1</translation>
|
<translation>Build date: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="89"/>
|
<location filename="../../helper/src/messages.cpp" line="80"/>
|
||||||
<source>cmake flags</source>
|
<source>cmake flags</source>
|
||||||
<translation>cmake flags</translation>
|
<translation>cmake flags</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="91"/>
|
<location filename="../../helper/src/messages.cpp" line="82"/>
|
||||||
<source>cmake properties</source>
|
<source>cmake properties</source>
|
||||||
<translation>cmake properties</translation>
|
<translation>cmake properties</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="95"/>
|
<location filename="../../helper/src/messages.cpp" line="86"/>
|
||||||
<source>Components</source>
|
<source>Components</source>
|
||||||
<translation>Components</translation>
|
<translation>Components</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="102"/>
|
<location filename="../../helper/src/messages.cpp" line="93"/>
|
||||||
<source>Additional components</source>
|
<source>Additional components</source>
|
||||||
<translation>Additional components</translation>
|
<translation>Additional components</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="106"/>
|
<location filename="../../helper/src/messages.cpp" line="97"/>
|
||||||
<source>Project properties</source>
|
<source>Project properties</source>
|
||||||
<translation>Project properties</translation>
|
<translation>Project properties</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="112"/>
|
<location filename="../../helper/src/messages.cpp" line="104"/>
|
||||||
<source>DBus configuration</source>
|
<source>DBus configuration</source>
|
||||||
<translation>DBus configuration</translation>
|
<translation>DBus configuration</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="121"/>
|
<location filename="../../helper/src/messages.cpp" line="113"/>
|
||||||
<source>Documentation</source>
|
<source>Documentation</source>
|
||||||
<translation>Documentation</translation>
|
<translation>Documentation</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="133"/>
|
<location filename="../../helper/src/messages.cpp" line="124"/>
|
||||||
<source>Version</source>
|
<source>Version</source>
|
||||||
<translation>Version</translation>
|
<translation>Version</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="136"/>
|
<location filename="../../helper/src/messages.cpp" line="125"/>
|
||||||
<source>Author</source>
|
<source>Author</source>
|
||||||
<translation>Author</translation>
|
<translation>Author</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="139"/>
|
<location filename="../../helper/src/messages.cpp" line="126"/>
|
||||||
<source>License</source>
|
<source>License</source>
|
||||||
<translation>License</translation>
|
<translation>License</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>The helper is running with EUID %1. Functions will not be available.</source>
|
<source>The helper is running with EUID %1. Functions will not be available.</source>
|
||||||
<translation type="vanished">The helper is running with EUID %1. Functions will not be available.</translation>
|
<translation type="obsolete">The helper is running with EUID %1. Functions will not be available.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>The helper is running with EUID %1. Some functions will not be available.</source>
|
<source>The helper is running with EUID %1. Some functions will not be available.</source>
|
||||||
<translation type="vanished">The helper is running with EUID %1. Some functions will not be available.</translation>
|
<translation type="obsolete">The helper is running with EUID %1. Some functions will not be available.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="95"/>
|
<location filename="../../helper/src/main.cpp" line="102"/>
|
||||||
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
||||||
<translation>The helper is running with EUID %1. Some functions may not be available.</translation>
|
<translation>The helper is running with EUID %1. Some functions may not be available.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="97"/>
|
<location filename="../../helper/src/main.cpp" line="104"/>
|
||||||
<source>See security notes for more details.</source>
|
<source>See security notes for more details.</source>
|
||||||
<translation>See security notes for more details.</translation>
|
<translation>See security notes for more details.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="136"/>
|
<location filename="../../helper/src/main.cpp" line="151"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="147"/>
|
<location filename="../../helper/src/main.cpp" line="162"/>
|
||||||
<source>Replace existing session.</source>
|
<source>Replace existing session.</source>
|
||||||
<translation>Replace existing session.</translation>
|
<translation>Replace existing session.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="141"/>
|
<location filename="../../helper/src/main.cpp" line="156"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="153"/>
|
<location filename="../../helper/src/main.cpp" line="168"/>
|
||||||
<source>Restore existing session.</source>
|
<source>Restore existing session.</source>
|
||||||
<translation>Restore existing session.</translation>
|
<translation>Restore existing session.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.1" language="ja_JP">
|
<TS version="2.0" language="ja_JP">
|
||||||
<context>
|
<context>
|
||||||
<name>NetctlHelper</name>
|
<name>NetctlHelper</name>
|
||||||
<message>
|
<message>
|
||||||
@ -10,139 +10,144 @@
|
|||||||
<translation>不明なフラグです</translation>
|
<translation>不明なフラグです</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="54"/>
|
<location filename="../../helper/src/messages.cpp" line="53"/>
|
||||||
<source>Usage:</source>
|
<source>Usage:</source>
|
||||||
<translation>使用法:</translation>
|
<translation>使用法:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="56"/>
|
<location filename="../../helper/src/messages.cpp" line="55"/>
|
||||||
<source>Options:</source>
|
<source>Options:</source>
|
||||||
<translation>オプション:</translation>
|
<translation>オプション:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="59"/>
|
<location filename="../../helper/src/messages.cpp" line="57"/>
|
||||||
<source>read configuration from this file</source>
|
<source>read configuration from this file</source>
|
||||||
<translation>このファイルから設定を読み込む</translation>
|
<translation>このファイルから設定を読み込む</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="61"/>
|
<location filename="../../helper/src/messages.cpp" line="58"/>
|
||||||
<source>print debug information</source>
|
<source>print debug information</source>
|
||||||
<translation>デバッグ情報を表示する</translation>
|
<translation>デバッグ情報を表示する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="63"/>
|
<location filename="../../helper/src/messages.cpp" line="59"/>
|
||||||
<source>do not start as daemon</source>
|
<source>do not start as daemon</source>
|
||||||
<translation>デーモンとして実行しない</translation>
|
<translation>デーモンとして実行しない</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="65"/>
|
<location filename="../../helper/src/messages.cpp" line="60"/>
|
||||||
<source>force replace the existing session</source>
|
<source>force replace the existing session</source>
|
||||||
<translation>既存のセッションを強制的に置き換える</translation>
|
<translation>既存のセッションを強制的に置き換える</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="67"/>
|
<location filename="../../helper/src/messages.cpp" line="61"/>
|
||||||
<source>force restore the existing session</source>
|
<source>force restore the existing session</source>
|
||||||
<translation>既存のセッションを強制的に復帰させる</translation>
|
<translation>既存のセッションを強制的に復帰させる</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="69"/>
|
<location filename="../../helper/src/messages.cpp" line="62"/>
|
||||||
|
<source>force create user DBus session</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../helper/src/messages.cpp" line="63"/>
|
||||||
<source>do not read user configuration, system-wide only</source>
|
<source>do not read user configuration, system-wide only</source>
|
||||||
<translation>ユーザの設定ファイルではなくシステム全体の設定ファイルのみを読み込む</translation>
|
<translation>ユーザの設定ファイルではなくシステム全体の設定ファイルのみを読み込む</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="70"/>
|
<location filename="../../helper/src/messages.cpp" line="64"/>
|
||||||
<source>Show messages:</source>
|
<source>Show messages:</source>
|
||||||
<translation>メッセージの表示:</translation>
|
<translation>メッセージの表示:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="72"/>
|
<location filename="../../helper/src/messages.cpp" line="65"/>
|
||||||
<source>show version and exit</source>
|
<source>show version and exit</source>
|
||||||
<translation>バージョンを表示して終了</translation>
|
<translation>バージョンを表示して終了</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="74"/>
|
<location filename="../../helper/src/messages.cpp" line="66"/>
|
||||||
<source>show build information and exit</source>
|
<source>show build information and exit</source>
|
||||||
<translation>ビルド情報を表示して終了</translation>
|
<translation>ビルド情報を表示して終了</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="76"/>
|
<location filename="../../helper/src/messages.cpp" line="67"/>
|
||||||
<source>show this help and exit</source>
|
<source>show this help and exit</source>
|
||||||
<translation>このヘルプを表示して終了</translation>
|
<translation>このヘルプを表示して終了</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="86"/>
|
<location filename="../../helper/src/messages.cpp" line="77"/>
|
||||||
<source>Build date: %1</source>
|
<source>Build date: %1</source>
|
||||||
<translation>ビルド日時:%1</translation>
|
<translation>ビルド日時:%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="89"/>
|
<location filename="../../helper/src/messages.cpp" line="80"/>
|
||||||
<source>cmake flags</source>
|
<source>cmake flags</source>
|
||||||
<translation>cmake のフラグ</translation>
|
<translation>cmake のフラグ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="91"/>
|
<location filename="../../helper/src/messages.cpp" line="82"/>
|
||||||
<source>cmake properties</source>
|
<source>cmake properties</source>
|
||||||
<translation>cmake のプロパティ</translation>
|
<translation>cmake のプロパティ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="95"/>
|
<location filename="../../helper/src/messages.cpp" line="86"/>
|
||||||
<source>Components</source>
|
<source>Components</source>
|
||||||
<translation>コンポーネント</translation>
|
<translation>コンポーネント</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="102"/>
|
<location filename="../../helper/src/messages.cpp" line="93"/>
|
||||||
<source>Additional components</source>
|
<source>Additional components</source>
|
||||||
<translation>追加のコンポーネント</translation>
|
<translation>追加のコンポーネント</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="106"/>
|
<location filename="../../helper/src/messages.cpp" line="97"/>
|
||||||
<source>Project properties</source>
|
<source>Project properties</source>
|
||||||
<translation>プロジェクトのプロパティ</translation>
|
<translation>プロジェクトのプロパティ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="112"/>
|
<location filename="../../helper/src/messages.cpp" line="104"/>
|
||||||
<source>DBus configuration</source>
|
<source>DBus configuration</source>
|
||||||
<translation>DBus 設定</translation>
|
<translation>DBus 設定</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="121"/>
|
<location filename="../../helper/src/messages.cpp" line="113"/>
|
||||||
<source>Documentation</source>
|
<source>Documentation</source>
|
||||||
<translation>ドキュメンテーション</translation>
|
<translation>ドキュメンテーション</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="133"/>
|
<location filename="../../helper/src/messages.cpp" line="124"/>
|
||||||
<source>Version</source>
|
<source>Version</source>
|
||||||
<translation>バージョン</translation>
|
<translation>バージョン</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="136"/>
|
<location filename="../../helper/src/messages.cpp" line="125"/>
|
||||||
<source>Author</source>
|
<source>Author</source>
|
||||||
<translation>作者</translation>
|
<translation>作者</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="139"/>
|
<location filename="../../helper/src/messages.cpp" line="126"/>
|
||||||
<source>License</source>
|
<source>License</source>
|
||||||
<translation>ライセンス</translation>
|
<translation>ライセンス</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="95"/>
|
<location filename="../../helper/src/main.cpp" line="102"/>
|
||||||
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
||||||
<translation>このヘルパは EUID %1 として実行されています。いくつか利用できない機能が存在します。</translation>
|
<translation>このヘルパは EUID %1 として実行されています。いくつか利用できない機能が存在します。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="97"/>
|
<location filename="../../helper/src/main.cpp" line="104"/>
|
||||||
<source>See security notes for more details.</source>
|
<source>See security notes for more details.</source>
|
||||||
<translation>詳細情報を得るにはセキュリティノートを参照して下さい。</translation>
|
<translation>詳細情報を得るにはセキュリティノートを参照して下さい。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="136"/>
|
<location filename="../../helper/src/main.cpp" line="151"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="147"/>
|
<location filename="../../helper/src/main.cpp" line="162"/>
|
||||||
<source>Replace existing session.</source>
|
<source>Replace existing session.</source>
|
||||||
<translation>既存のセッションを置き換える。</translation>
|
<translation>既存のセッションを置き換える。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="141"/>
|
<location filename="../../helper/src/main.cpp" line="156"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="153"/>
|
<location filename="../../helper/src/main.cpp" line="168"/>
|
||||||
<source>Restore existing session.</source>
|
<source>Restore existing session.</source>
|
||||||
<translation>既存のセッションを復帰させる。</translation>
|
<translation>既存のセッションを復帰させる。</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.1">
|
<TS version="2.0">
|
||||||
<context>
|
<context>
|
||||||
<name>NetctlHelper</name>
|
<name>NetctlHelper</name>
|
||||||
<message>
|
<message>
|
||||||
@ -10,139 +10,144 @@
|
|||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="54"/>
|
<location filename="../../helper/src/messages.cpp" line="53"/>
|
||||||
<source>Usage:</source>
|
<source>Usage:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="56"/>
|
<location filename="../../helper/src/messages.cpp" line="55"/>
|
||||||
<source>Options:</source>
|
<source>Options:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="59"/>
|
<location filename="../../helper/src/messages.cpp" line="57"/>
|
||||||
<source>read configuration from this file</source>
|
<source>read configuration from this file</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="61"/>
|
<location filename="../../helper/src/messages.cpp" line="58"/>
|
||||||
<source>print debug information</source>
|
<source>print debug information</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="63"/>
|
<location filename="../../helper/src/messages.cpp" line="59"/>
|
||||||
<source>do not start as daemon</source>
|
<source>do not start as daemon</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="65"/>
|
<location filename="../../helper/src/messages.cpp" line="60"/>
|
||||||
<source>force replace the existing session</source>
|
<source>force replace the existing session</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="67"/>
|
<location filename="../../helper/src/messages.cpp" line="61"/>
|
||||||
<source>force restore the existing session</source>
|
<source>force restore the existing session</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="69"/>
|
<location filename="../../helper/src/messages.cpp" line="62"/>
|
||||||
|
<source>force create user DBus session</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../helper/src/messages.cpp" line="63"/>
|
||||||
<source>do not read user configuration, system-wide only</source>
|
<source>do not read user configuration, system-wide only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="70"/>
|
<location filename="../../helper/src/messages.cpp" line="64"/>
|
||||||
<source>Show messages:</source>
|
<source>Show messages:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="72"/>
|
<location filename="../../helper/src/messages.cpp" line="65"/>
|
||||||
<source>show version and exit</source>
|
<source>show version and exit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="74"/>
|
<location filename="../../helper/src/messages.cpp" line="66"/>
|
||||||
<source>show build information and exit</source>
|
<source>show build information and exit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="76"/>
|
<location filename="../../helper/src/messages.cpp" line="67"/>
|
||||||
<source>show this help and exit</source>
|
<source>show this help and exit</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="86"/>
|
<location filename="../../helper/src/messages.cpp" line="77"/>
|
||||||
<source>Build date: %1</source>
|
<source>Build date: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="89"/>
|
<location filename="../../helper/src/messages.cpp" line="80"/>
|
||||||
<source>cmake flags</source>
|
<source>cmake flags</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="91"/>
|
<location filename="../../helper/src/messages.cpp" line="82"/>
|
||||||
<source>cmake properties</source>
|
<source>cmake properties</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="95"/>
|
<location filename="../../helper/src/messages.cpp" line="86"/>
|
||||||
<source>Components</source>
|
<source>Components</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="102"/>
|
<location filename="../../helper/src/messages.cpp" line="93"/>
|
||||||
<source>Additional components</source>
|
<source>Additional components</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="106"/>
|
<location filename="../../helper/src/messages.cpp" line="97"/>
|
||||||
<source>Project properties</source>
|
<source>Project properties</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="112"/>
|
<location filename="../../helper/src/messages.cpp" line="104"/>
|
||||||
<source>DBus configuration</source>
|
<source>DBus configuration</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="121"/>
|
<location filename="../../helper/src/messages.cpp" line="113"/>
|
||||||
<source>Documentation</source>
|
<source>Documentation</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="133"/>
|
<location filename="../../helper/src/messages.cpp" line="124"/>
|
||||||
<source>Version</source>
|
<source>Version</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="136"/>
|
<location filename="../../helper/src/messages.cpp" line="125"/>
|
||||||
<source>Author</source>
|
<source>Author</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="139"/>
|
<location filename="../../helper/src/messages.cpp" line="126"/>
|
||||||
<source>License</source>
|
<source>License</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="95"/>
|
<location filename="../../helper/src/main.cpp" line="102"/>
|
||||||
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="97"/>
|
<location filename="../../helper/src/main.cpp" line="104"/>
|
||||||
<source>See security notes for more details.</source>
|
<source>See security notes for more details.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="136"/>
|
<location filename="../../helper/src/main.cpp" line="151"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="147"/>
|
<location filename="../../helper/src/main.cpp" line="162"/>
|
||||||
<source>Replace existing session.</source>
|
<source>Replace existing session.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="141"/>
|
<location filename="../../helper/src/main.cpp" line="156"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="153"/>
|
<location filename="../../helper/src/main.cpp" line="168"/>
|
||||||
<source>Restore existing session.</source>
|
<source>Restore existing session.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -11,143 +11,148 @@
|
|||||||
</translation>
|
</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="54"/>
|
<location filename="../../helper/src/messages.cpp" line="53"/>
|
||||||
<source>Usage:</source>
|
<source>Usage:</source>
|
||||||
<translation>Использование:</translation>
|
<translation>Использование:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="56"/>
|
<location filename="../../helper/src/messages.cpp" line="55"/>
|
||||||
<source>Options:</source>
|
<source>Options:</source>
|
||||||
<translation>Опции:</translation>
|
<translation>Опции:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="59"/>
|
<location filename="../../helper/src/messages.cpp" line="57"/>
|
||||||
<source>read configuration from this file</source>
|
<source>read configuration from this file</source>
|
||||||
<translation>прочитать настройки из данного файла</translation>
|
<translation>прочитать настройки из данного файла</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="61"/>
|
<location filename="../../helper/src/messages.cpp" line="58"/>
|
||||||
<source>print debug information</source>
|
<source>print debug information</source>
|
||||||
<translation>показать отладочную информацию</translation>
|
<translation>показать отладочную информацию</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="63"/>
|
<location filename="../../helper/src/messages.cpp" line="59"/>
|
||||||
<source>do not start as daemon</source>
|
<source>do not start as daemon</source>
|
||||||
<translation>не запускать как демон</translation>
|
<translation>не запускать как демон</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="65"/>
|
<location filename="../../helper/src/messages.cpp" line="60"/>
|
||||||
<source>force replace the existing session</source>
|
<source>force replace the existing session</source>
|
||||||
<translation>принудительно заменить существующую сессию</translation>
|
<translation>принудительно заменить существующую сессию</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="67"/>
|
<location filename="../../helper/src/messages.cpp" line="61"/>
|
||||||
<source>force restore the existing session</source>
|
<source>force restore the existing session</source>
|
||||||
<translation>принудительно восстановить существующую сессию</translation>
|
<translation>принудительно восстановить существующую сессию</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="69"/>
|
<location filename="../../helper/src/messages.cpp" line="62"/>
|
||||||
|
<source>force create user DBus session</source>
|
||||||
|
<translation>принудительно создать пользовательскую сессию DBus</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../helper/src/messages.cpp" line="63"/>
|
||||||
<source>do not read user configuration, system-wide only</source>
|
<source>do not read user configuration, system-wide only</source>
|
||||||
<translation>не считывать пользовательские настройки, только системные</translation>
|
<translation>не считывать пользовательские настройки, только системные</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="70"/>
|
<location filename="../../helper/src/messages.cpp" line="64"/>
|
||||||
<source>Show messages:</source>
|
<source>Show messages:</source>
|
||||||
<translation>Показать сообщения:</translation>
|
<translation>Показать сообщения:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="72"/>
|
<location filename="../../helper/src/messages.cpp" line="65"/>
|
||||||
<source>show version and exit</source>
|
<source>show version and exit</source>
|
||||||
<translation>показать версию и выход</translation>
|
<translation>показать версию и выход</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="74"/>
|
<location filename="../../helper/src/messages.cpp" line="66"/>
|
||||||
<source>show build information and exit</source>
|
<source>show build information and exit</source>
|
||||||
<translation>показать информацию о сборке и выход</translation>
|
<translation>показать информацию о сборке и выход</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="76"/>
|
<location filename="../../helper/src/messages.cpp" line="67"/>
|
||||||
<source>show this help and exit</source>
|
<source>show this help and exit</source>
|
||||||
<translation>показать справку и выход</translation>
|
<translation>показать справку и выход</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="86"/>
|
<location filename="../../helper/src/messages.cpp" line="77"/>
|
||||||
<source>Build date: %1</source>
|
<source>Build date: %1</source>
|
||||||
<translation>Дата сборки: %1</translation>
|
<translation>Дата сборки: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="89"/>
|
<location filename="../../helper/src/messages.cpp" line="80"/>
|
||||||
<source>cmake flags</source>
|
<source>cmake flags</source>
|
||||||
<translation>Флаги cmake</translation>
|
<translation>Флаги cmake</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="91"/>
|
<location filename="../../helper/src/messages.cpp" line="82"/>
|
||||||
<source>cmake properties</source>
|
<source>cmake properties</source>
|
||||||
<translation>Свойства cmake</translation>
|
<translation>Свойства cmake</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="95"/>
|
<location filename="../../helper/src/messages.cpp" line="86"/>
|
||||||
<source>Components</source>
|
<source>Components</source>
|
||||||
<translation>Компоненты</translation>
|
<translation>Компоненты</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="102"/>
|
<location filename="../../helper/src/messages.cpp" line="93"/>
|
||||||
<source>Additional components</source>
|
<source>Additional components</source>
|
||||||
<translation>Дополнительные компоненты</translation>
|
<translation>Дополнительные компоненты</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="106"/>
|
<location filename="../../helper/src/messages.cpp" line="97"/>
|
||||||
<source>Project properties</source>
|
<source>Project properties</source>
|
||||||
<translation>Свойства проекта</translation>
|
<translation>Свойства проекта</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="112"/>
|
<location filename="../../helper/src/messages.cpp" line="104"/>
|
||||||
<source>DBus configuration</source>
|
<source>DBus configuration</source>
|
||||||
<translation>Настройка DBus</translation>
|
<translation>Настройка DBus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="121"/>
|
<location filename="../../helper/src/messages.cpp" line="113"/>
|
||||||
<source>Documentation</source>
|
<source>Documentation</source>
|
||||||
<translation>Документация</translation>
|
<translation>Документация</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="133"/>
|
<location filename="../../helper/src/messages.cpp" line="124"/>
|
||||||
<source>Version</source>
|
<source>Version</source>
|
||||||
<translation>Версия</translation>
|
<translation>Версия</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="136"/>
|
<location filename="../../helper/src/messages.cpp" line="125"/>
|
||||||
<source>Author</source>
|
<source>Author</source>
|
||||||
<translation>Автор</translation>
|
<translation>Автор</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/messages.cpp" line="139"/>
|
<location filename="../../helper/src/messages.cpp" line="126"/>
|
||||||
<source>License</source>
|
<source>License</source>
|
||||||
<translation>Лицензия</translation>
|
<translation>Лицензия</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>The helper is running with EUID %1. Some functions will not be available.</source>
|
<source>The helper is running with EUID %1. Some functions will not be available.</source>
|
||||||
<translation type="vanished">Хелпер запущен с EUID %1. Некоторые функции не будут доступны.</translation>
|
<translation type="obsolete">Хелпер запущен с EUID %1. Некоторые функции не будут доступны.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="95"/>
|
<location filename="../../helper/src/main.cpp" line="102"/>
|
||||||
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
<source>The helper is running with EUID %1. Some functions may not be available.</source>
|
||||||
<translation>Хелпер запущен с EUID %1. Некоторые функции могут быть недоступны.</translation>
|
<translation>Хелпер запущен с EUID %1. Некоторые функции могут быть недоступны.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="97"/>
|
<location filename="../../helper/src/main.cpp" line="104"/>
|
||||||
<source>See security notes for more details.</source>
|
<source>See security notes for more details.</source>
|
||||||
<translation>Смотри примечания о безопасности для более подробной информации.</translation>
|
<translation>Смотри примечания о безопасности для более подробной информации.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="136"/>
|
<location filename="../../helper/src/main.cpp" line="151"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="147"/>
|
<location filename="../../helper/src/main.cpp" line="162"/>
|
||||||
<source>Replace existing session.</source>
|
<source>Replace existing session.</source>
|
||||||
<translation>Замещение существующей сессии.</translation>
|
<translation>Замещение существующей сессии.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../helper/src/main.cpp" line="141"/>
|
<location filename="../../helper/src/main.cpp" line="156"/>
|
||||||
<location filename="../../helper/src/main.cpp" line="153"/>
|
<location filename="../../helper/src/main.cpp" line="168"/>
|
||||||
<source>Restore existing session.</source>
|
<source>Restore existing session.</source>
|
||||||
<translation>Восстановление существующей сессии.</translation>
|
<translation>Восстановление существующей сессии.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -6,8 +6,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\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: 2015-01-09 04:55+0300\n"
|
"PO-Revision-Date: 2015-03-17 12:49+0300\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -18,103 +18,103 @@ msgstr ""
|
|||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 1.5\n"
|
||||||
|
|
||||||
#: 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"
|
msgid "Set profile %1 disabled"
|
||||||
msgstr "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"
|
msgid "Set profile %1 enabled"
|
||||||
msgstr "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"
|
msgid "Restart profile %1"
|
||||||
msgstr "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"
|
msgid "Start profile %1"
|
||||||
msgstr "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"
|
msgid "Stop profile %1"
|
||||||
msgstr "Stop profile %1"
|
msgstr "Stop profile %1"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467
|
#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132
|
#: plasmoid-kf5/package/contents/ui/main.qml:106
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:274
|
#: plasmoid-kf5/plugin/netctladds.cpp:279
|
||||||
msgid "Stop all profiles"
|
msgid "Stop all profiles"
|
||||||
msgstr "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"
|
msgid "Switch to profile %1"
|
||||||
msgstr "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"
|
msgid "Start another profile"
|
||||||
msgstr "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"
|
msgid "Stop %1"
|
||||||
msgstr "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"
|
msgid "Restart %1"
|
||||||
msgstr "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"
|
msgid "Disable %1"
|
||||||
msgstr "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"
|
msgid "Enable %1"
|
||||||
msgstr "Enable %1"
|
msgstr "Enable %1"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454
|
#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130
|
#: plasmoid-kf5/package/contents/ui/main.qml:104
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211
|
#: plasmoid-kf5/package/contents/ui/main.qml:191
|
||||||
msgid "Start profile"
|
msgid "Start profile"
|
||||||
msgstr "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"
|
msgid "Stop profile"
|
||||||
msgstr "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"
|
msgid "Switch to profile"
|
||||||
msgstr "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"
|
msgid "Restart profile"
|
||||||
msgstr "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"
|
msgid "Enable profile"
|
||||||
msgstr "Enable profile"
|
msgstr "Enable profile"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:489
|
#: plasmoid-kde4/netctl.cpp:479
|
||||||
msgid "Show netctl-gui"
|
msgid "Show netctl-gui"
|
||||||
msgstr "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"
|
msgid "Show WiFi menu"
|
||||||
msgstr "Show WiFi menu"
|
msgstr "Show WiFi menu"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:521
|
#: plasmoid-kde4/netctl.cpp:511
|
||||||
msgid "Start GUI"
|
msgid "Start GUI"
|
||||||
msgstr "Start GUI"
|
msgstr "Start GUI"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:532
|
#: plasmoid-kde4/netctl.cpp:522
|
||||||
msgid "Start WiFi menu"
|
msgid "Start WiFi menu"
|
||||||
msgstr "Start WiFi menu"
|
msgstr "Start WiFi menu"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:572
|
#: plasmoid-kde4/netctl.cpp:563
|
||||||
msgid "Network is up"
|
msgid "Network is up"
|
||||||
msgstr "Network is up"
|
msgstr "Network is up"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:576
|
#: plasmoid-kde4/netctl.cpp:567
|
||||||
msgid "Network is down"
|
msgid "Network is down"
|
||||||
msgstr "Network is down"
|
msgstr "Network is down"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:766
|
#: plasmoid-kde4/netctl.cpp:754
|
||||||
msgid ""
|
msgid ""
|
||||||
"Version %1\n"
|
"Version %1\n"
|
||||||
"(build date %2)"
|
"(build date %2)"
|
||||||
@ -122,358 +122,417 @@ msgstr ""
|
|||||||
"Version %1\n"
|
"Version %1\n"
|
||||||
"(build date %2)"
|
"(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."
|
msgid "KDE widget which interacts with netctl."
|
||||||
msgstr "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:"
|
msgid "Links:"
|
||||||
msgstr "Links:"
|
msgstr "Links:"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91
|
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99
|
||||||
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
|
|
||||||
msgid "This software is licensed under %1"
|
msgid "This software is licensed under %1"
|
||||||
msgstr "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"
|
msgid "Translators: %1"
|
||||||
msgstr "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"
|
msgid "This software uses: %1"
|
||||||
msgstr "This software uses: %1"
|
msgstr "This software uses: %1"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:786
|
#: plasmoid-kde4/netctl.cpp:781
|
||||||
msgid "Netctl plasmoid"
|
msgid "Netctl plasmoid"
|
||||||
msgstr "Netctl plasmoid"
|
msgstr "Netctl plasmoid"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:787
|
#: plasmoid-kde4/netctl.cpp:782
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:31
|
#: plasmoid-kf5/package/contents/config/config.qml:31
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Appearance"
|
msgstr "Appearance"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:788
|
#: plasmoid-kde4/netctl.cpp:783
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:37
|
#: plasmoid-kf5/package/contents/config/config.qml:37
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:789
|
#: plasmoid-kde4/netctl.cpp:784
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:43
|
#: plasmoid-kf5/package/contents/config/config.qml:43
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41
|
#: plasmoid-kf5/package/contents/ui/about.qml:41
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "About"
|
msgstr "About"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:25
|
#: plasmoid-kf5/package/contents/config/config.qml:25
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Widget"
|
msgstr "Widget"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74
|
#: plasmoid-kf5/package/contents/ui/about.qml:74
|
||||||
msgid "Acknowledgment"
|
msgid "Acknowledgment"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Text align"
|
||||||
msgstr "Text align"
|
msgstr "Text align"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:72
|
||||||
msgid "center"
|
msgid "center"
|
||||||
msgstr "center"
|
msgstr "center"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:76
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr "right"
|
msgstr "right"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:80
|
||||||
msgid "left"
|
msgid "left"
|
||||||
msgstr "left"
|
msgstr "left"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:84
|
||||||
msgid "justify"
|
msgid "justify"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Font"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Font size"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Font weight"
|
||||||
msgstr "Font weight"
|
msgstr "Font weight"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:153
|
||||||
msgid "light"
|
msgid "light"
|
||||||
msgstr "light"
|
msgstr "light"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:200
|
||||||
msgid "normal"
|
msgid "normal"
|
||||||
msgstr "normal"
|
msgstr "normal"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:161
|
||||||
msgid "demi bold"
|
msgid "demi bold"
|
||||||
msgstr "demi bold"
|
msgstr "demi bold"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:165
|
||||||
msgid "bold"
|
msgid "bold"
|
||||||
msgstr "bold"
|
msgstr "bold"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:169
|
||||||
msgid "black"
|
msgid "black"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Font style"
|
||||||
msgstr "Font style"
|
msgstr "Font style"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:204
|
||||||
msgid "italic"
|
msgid "italic"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Font color"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Active icon"
|
||||||
msgstr "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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260
|
#. i18n: file: plasmoid-kde4/appearance.ui:73
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59
|
#. i18n: file: plasmoid-kde4/appearance.ui:325
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150
|
#. i18n: file: plasmoid-kde4/dataengine.ui:60
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90
|
#. i18n: file: plasmoid-kde4/dataengine.ui:103
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181
|
#. i18n: file: plasmoid-kde4/dataengine.ui:149
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273
|
#. i18n: file: plasmoid-kde4/dataengine.ui:195
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6)
|
||||||
#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93
|
#. i18n: file: plasmoid-kde4/widget.ui:102
|
||||||
#: rc.cpp:99 rc.cpp:105 rc.cpp:111
|
#. 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"
|
msgid "Browse"
|
||||||
msgstr "Browse"
|
msgstr "Browse"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:267
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:299
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:66
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:99
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:215
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97
|
#: plasmoid-kf5/package/contents/ui/widget.qml:97
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153
|
#: plasmoid-kf5/package/contents/ui/widget.qml:153
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188
|
#: plasmoid-kf5/package/contents/ui/widget.qml:188
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223
|
#: plasmoid-kf5/package/contents/ui/widget.qml:223
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280
|
#: plasmoid-kf5/package/contents/ui/widget.qml:280
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337
|
#: plasmoid-kf5/package/contents/ui/widget.qml:337
|
||||||
msgid "Select a path"
|
msgid "Select a path"
|
||||||
msgstr "Select a path"
|
msgstr "Select a path"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
#. 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"
|
msgid "Inactive icon"
|
||||||
msgstr "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"
|
msgid "Select a color"
|
||||||
msgstr "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"
|
msgid "Select a font"
|
||||||
msgstr "Select a font"
|
msgstr "Select a font"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
#. 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90
|
#. 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"
|
msgid "Path to netctl"
|
||||||
msgstr "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: 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82
|
#. i18n: file: plasmoid-kde4/dataengine.ui:77
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96
|
#. 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"
|
msgid "Path to netctl-auto"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Check external IPv4"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Check external IPv6"
|
||||||
msgstr "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: file: plasmoid-kde4/widget.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
#. 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"
|
msgid "Auto update interval, msec"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Path to GUI"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Use helper"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Use sudo for netctl"
|
||||||
msgstr "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)
|
#. 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'"
|
msgid "Show 'Start WiFi menu'"
|
||||||
msgstr "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"
|
msgid "Run %1"
|
||||||
msgstr "Run %1"
|
msgstr "Run %1"
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:161
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
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"
|
msgid "Select profile"
|
||||||
msgstr "Select profile"
|
msgstr "Select profile"
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:234
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
#: plasmoid-kf5/plugin/netctladds.cpp:296
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr "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)
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
#: rc.cpp:12
|
#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12
|
||||||
msgid "Set font color"
|
msgid "Set font color"
|
||||||
msgstr "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)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
#: rc.cpp:18
|
#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18
|
||||||
msgid "Set font size"
|
msgid "Set font size"
|
||||||
msgstr "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)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
#: rc.cpp:24
|
#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24
|
||||||
msgid "Set font weight"
|
msgid "Set font weight"
|
||||||
msgstr "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)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
#: rc.cpp:30
|
#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30
|
||||||
msgid "Set font style"
|
msgid "Set font style"
|
||||||
msgstr "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)
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
#: rc.cpp:36
|
#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36
|
||||||
msgid "Set font family"
|
msgid "Set font family"
|
||||||
msgstr "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)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign)
|
||||||
#: rc.cpp:48
|
#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48
|
||||||
msgid "Set text align"
|
msgid "Set text align"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Show more detailed interface"
|
||||||
msgstr "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)
|
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit)
|
||||||
#: rc.cpp:117
|
#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117
|
||||||
msgid ""
|
msgid ""
|
||||||
"$info - active profile information\n"
|
"$info - active profile information\n"
|
||||||
"$current - current profile name\n"
|
"$current - current profile name\n"
|
||||||
@ -495,16 +554,22 @@ msgstr ""
|
|||||||
"$profiles - list of the netctl profiles\n"
|
"$profiles - list of the netctl profiles\n"
|
||||||
"$status - current profile status (static/enabled)"
|
"$status - current profile status (static/enabled)"
|
||||||
|
|
||||||
#: rc.cpp:126
|
#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: rc.cpp:127
|
#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
|
|
||||||
|
#~ msgid "inactive"
|
||||||
|
#~ msgstr "inactive"
|
||||||
|
|
||||||
|
#~ msgid "active"
|
||||||
|
#~ msgstr "active"
|
||||||
|
|
||||||
#~ msgid "Acknowledgement"
|
#~ msgid "Acknowledgement"
|
||||||
#~ msgstr "Acknowledgement"
|
#~ msgstr "Acknowledgement"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\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"
|
"PO-Revision-Date: 2014-10-13 16:37+0900\n"
|
||||||
"Last-Translator: NOGISAKA Sadata <ngsksdt@gmail.com>\n"
|
"Last-Translator: NOGISAKA Sadata <ngsksdt@gmail.com>\n"
|
||||||
"Language-Team: Japanese <kde-i18n-doc@kde.org>\n"
|
"Language-Team: Japanese <kde-i18n-doc@kde.org>\n"
|
||||||
@ -17,103 +17,103 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Lokalize 1.5\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"
|
msgid "Set profile %1 disabled"
|
||||||
msgstr "プロファイル %1 を無効にする"
|
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"
|
msgid "Set profile %1 enabled"
|
||||||
msgstr "プロファイル %1 を有効にする"
|
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"
|
msgid "Restart profile %1"
|
||||||
msgstr "プロファイル %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"
|
msgid "Start profile %1"
|
||||||
msgstr "プロファイル %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"
|
msgid "Stop profile %1"
|
||||||
msgstr "プロファイル %1 の利用を停止する"
|
msgstr "プロファイル %1 の利用を停止する"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467
|
#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132
|
#: plasmoid-kf5/package/contents/ui/main.qml:106
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:274
|
#: plasmoid-kf5/plugin/netctladds.cpp:279
|
||||||
msgid "Stop all profiles"
|
msgid "Stop all profiles"
|
||||||
msgstr "全てのプロファイルの利用を停止する"
|
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"
|
msgid "Switch to profile %1"
|
||||||
msgstr "プロファイルを %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"
|
msgid "Start another profile"
|
||||||
msgstr "他のプロファイルの利用を開始"
|
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"
|
msgid "Stop %1"
|
||||||
msgstr "%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"
|
msgid "Restart %1"
|
||||||
msgstr "%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"
|
msgid "Disable %1"
|
||||||
msgstr "%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"
|
msgid "Enable %1"
|
||||||
msgstr "%1 を有効にする"
|
msgstr "%1 を有効にする"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454
|
#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130
|
#: plasmoid-kf5/package/contents/ui/main.qml:104
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211
|
#: plasmoid-kf5/package/contents/ui/main.qml:191
|
||||||
msgid "Start profile"
|
msgid "Start profile"
|
||||||
msgstr "プロファイルの利用を開始"
|
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"
|
msgid "Stop profile"
|
||||||
msgstr "プロファイルの利用を停止する"
|
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"
|
msgid "Switch to profile"
|
||||||
msgstr "プロファイルを切り替える"
|
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"
|
msgid "Restart profile"
|
||||||
msgstr "プロファイルの利用を再開"
|
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"
|
msgid "Enable profile"
|
||||||
msgstr "プロファイルを有効にする"
|
msgstr "プロファイルを有効にする"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:489
|
#: plasmoid-kde4/netctl.cpp:479
|
||||||
msgid "Show netctl-gui"
|
msgid "Show netctl-gui"
|
||||||
msgstr "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"
|
msgid "Show WiFi menu"
|
||||||
msgstr "WiFi メニューを表示"
|
msgstr "WiFi メニューを表示"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:521
|
#: plasmoid-kde4/netctl.cpp:511
|
||||||
msgid "Start GUI"
|
msgid "Start GUI"
|
||||||
msgstr "GUI を開始"
|
msgstr "GUI を開始"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:532
|
#: plasmoid-kde4/netctl.cpp:522
|
||||||
msgid "Start WiFi menu"
|
msgid "Start WiFi menu"
|
||||||
msgstr "WiFi メニューを開始"
|
msgstr "WiFi メニューを開始"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:572
|
#: plasmoid-kde4/netctl.cpp:563
|
||||||
msgid "Network is up"
|
msgid "Network is up"
|
||||||
msgstr "ネットワークは有効です"
|
msgstr "ネットワークは有効です"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:576
|
#: plasmoid-kde4/netctl.cpp:567
|
||||||
msgid "Network is down"
|
msgid "Network is down"
|
||||||
msgstr "ネットワークは無効です"
|
msgstr "ネットワークは無効です"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:766
|
#: plasmoid-kde4/netctl.cpp:754
|
||||||
msgid ""
|
msgid ""
|
||||||
"Version %1\n"
|
"Version %1\n"
|
||||||
"(build date %2)"
|
"(build date %2)"
|
||||||
@ -121,364 +121,421 @@ msgstr ""
|
|||||||
"バージョン:%1\n"
|
"バージョン:%1\n"
|
||||||
"(ビルド日時:%2)"
|
"(ビルド日時:%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."
|
msgid "KDE widget which interacts with netctl."
|
||||||
msgstr "netctl と連携する KDE ウィジェット"
|
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:"
|
msgid "Links:"
|
||||||
msgstr "リンク:"
|
msgstr "リンク:"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91
|
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99
|
||||||
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
|
|
||||||
msgid "This software is licensed under %1"
|
msgid "This software is licensed under %1"
|
||||||
msgstr "このソフトウェアは %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"
|
msgid "Translators: %1"
|
||||||
msgstr "翻訳者:%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"
|
msgid "This software uses: %1"
|
||||||
msgstr "このソフトウェアは次を利用しています:%1"
|
msgstr "このソフトウェアは次を利用しています:%1"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:786
|
#: plasmoid-kde4/netctl.cpp:781
|
||||||
msgid "Netctl plasmoid"
|
msgid "Netctl plasmoid"
|
||||||
msgstr "Netctl plasmoid"
|
msgstr "Netctl plasmoid"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:787
|
#: plasmoid-kde4/netctl.cpp:782
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:31
|
#: plasmoid-kf5/package/contents/config/config.qml:31
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "外観"
|
msgstr "外観"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:788
|
#: plasmoid-kde4/netctl.cpp:783
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:37
|
#: plasmoid-kf5/package/contents/config/config.qml:37
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:789
|
#: plasmoid-kde4/netctl.cpp:784
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:43
|
#: plasmoid-kf5/package/contents/config/config.qml:43
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41
|
#: plasmoid-kf5/package/contents/ui/about.qml:41
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "概要"
|
msgstr "概要"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:25
|
#: plasmoid-kf5/package/contents/config/config.qml:25
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74
|
#: plasmoid-kf5/package/contents/ui/about.qml:74
|
||||||
msgid "Acknowledgment"
|
msgid "Acknowledgment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:408
|
#. i18n: file: plasmoid-kde4/appearance.ui:342
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_textAlign)
|
#. 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"
|
msgid "Text align"
|
||||||
msgstr "テキストの位置"
|
msgstr "テキストの位置"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:72
|
||||||
msgid "center"
|
msgid "center"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:76
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:80
|
||||||
msgid "left"
|
msgid "left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:84
|
||||||
msgid "justify"
|
msgid "justify"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:326
|
#. i18n: file: plasmoid-kde4/appearance.ui:266
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
#. 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"
|
msgid "Font"
|
||||||
msgstr "フォント"
|
msgstr "フォント"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:142
|
#. i18n: file: plasmoid-kde4/appearance.ui:136
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
#. 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"
|
msgid "Font size"
|
||||||
msgstr "フォントの大きさ"
|
msgstr "フォントの大きさ"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:203
|
#. i18n: file: plasmoid-kde4/appearance.ui:178
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
#. 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"
|
msgid "Font weight"
|
||||||
msgstr "フォントの太さ"
|
msgstr "フォントの太さ"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:153
|
||||||
msgid "light"
|
msgid "light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:200
|
||||||
msgid "normal"
|
msgid "normal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:161
|
||||||
msgid "demi bold"
|
msgid "demi bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:165
|
||||||
msgid "bold"
|
msgid "bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:169
|
||||||
msgid "black"
|
msgid "black"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:267
|
#. i18n: file: plasmoid-kde4/appearance.ui:223
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
#. 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"
|
msgid "Font style"
|
||||||
msgstr "フォントの字形"
|
msgstr "フォントの字形"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:204
|
||||||
msgid "italic"
|
msgid "italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:80
|
#. i18n: file: plasmoid-kde4/appearance.ui:90
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
#. 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"
|
msgid "Font color"
|
||||||
msgstr "フォントの色"
|
msgstr "フォントの色"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:375
|
#. i18n: file: plasmoid-kde4/appearance.ui:299
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
#. 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"
|
msgid "Active icon"
|
||||||
msgstr "アクティブ時のアイコン"
|
msgstr "アクティブ時のアイコン"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:63
|
#. i18n: file: plasmoid-kde4/appearance.ui:73
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
#. 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260
|
#. i18n: file: plasmoid-kde4/appearance.ui:73
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59
|
#. i18n: file: plasmoid-kde4/appearance.ui:325
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150
|
#. i18n: file: plasmoid-kde4/dataengine.ui:60
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90
|
#. i18n: file: plasmoid-kde4/dataengine.ui:103
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181
|
#. i18n: file: plasmoid-kde4/dataengine.ui:149
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273
|
#. i18n: file: plasmoid-kde4/dataengine.ui:195
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6)
|
||||||
#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93
|
#. i18n: file: plasmoid-kde4/widget.ui:102
|
||||||
#: rc.cpp:99 rc.cpp:105 rc.cpp:111
|
#. 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"
|
msgid "Browse"
|
||||||
msgstr "参照"
|
msgstr "参照"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:267
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:299
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:66
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:99
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:215
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97
|
#: plasmoid-kf5/package/contents/ui/widget.qml:97
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153
|
#: plasmoid-kf5/package/contents/ui/widget.qml:153
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188
|
#: plasmoid-kf5/package/contents/ui/widget.qml:188
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223
|
#: plasmoid-kf5/package/contents/ui/widget.qml:223
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280
|
#: plasmoid-kf5/package/contents/ui/widget.qml:280
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337
|
#: plasmoid-kf5/package/contents/ui/widget.qml:337
|
||||||
msgid "Select a path"
|
msgid "Select a path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
#. 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"
|
msgid "Inactive icon"
|
||||||
msgstr "非アクティブ時のアイコン"
|
msgstr "非アクティブ時のアイコン"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:309
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:309
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Select a color"
|
msgid "Select a color"
|
||||||
msgstr "フォントの色を設定する"
|
msgstr "フォントの色を設定する"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:318
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:318
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Select a font"
|
msgid "Select a font"
|
||||||
msgstr "フォントの大きさを設定する"
|
msgstr "フォントの大きさを設定する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
#. 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90
|
#. 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"
|
msgid "Path to netctl"
|
||||||
msgstr "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: 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82
|
#. i18n: file: plasmoid-kde4/dataengine.ui:77
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96
|
#. 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"
|
msgid "Path to netctl-auto"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Check external IPv4"
|
||||||
msgstr "外部 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)
|
#. 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"
|
msgid "Check external IPv6"
|
||||||
msgstr "外部 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: file: plasmoid-kde4/widget.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
#. 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"
|
msgid "Auto update interval, msec"
|
||||||
msgstr "自動更新の間隔(ミリ秒)"
|
msgstr "自動更新の間隔(ミリ秒)"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:92
|
#. i18n: file: plasmoid-kde4/widget.ui:76
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
#. 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"
|
msgid "Path to GUI"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Use helper"
|
||||||
msgstr "ヘルパを使用する"
|
msgstr "ヘルパを使用する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:227
|
#. i18n: file: plasmoid-kde4/widget.ui:254
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
#. 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"
|
msgid "Use sudo for netctl"
|
||||||
msgstr "netctl に対して sudo を使用する"
|
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)
|
#. 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'"
|
msgid "Show 'Start WiFi menu'"
|
||||||
msgstr "「Wifi メニューの開始」を表示"
|
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"
|
msgid "Run %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:161
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
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
|
#, fuzzy
|
||||||
msgid "Select profile"
|
msgid "Select profile"
|
||||||
msgstr "プロファイルの利用を停止する"
|
msgstr "プロファイルの利用を停止する"
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:234
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
#: plasmoid-kf5/plugin/netctladds.cpp:296
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr "プロファイルの利用を停止する"
|
msgstr "プロファイルの利用を停止する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:112
|
#. i18n: file: plasmoid-kde4/appearance.ui:106
|
||||||
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
#: rc.cpp:12
|
#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12
|
||||||
msgid "Set font color"
|
msgid "Set font color"
|
||||||
msgstr "フォントの色を設定する"
|
msgstr "フォントの色を設定する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:174
|
#. i18n: file: plasmoid-kde4/appearance.ui:152
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
#: rc.cpp:18
|
#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18
|
||||||
msgid "Set font size"
|
msgid "Set font size"
|
||||||
msgstr "フォントの大きさを設定する"
|
msgstr "フォントの大きさを設定する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:235
|
#. i18n: file: plasmoid-kde4/appearance.ui:194
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
#: rc.cpp:24
|
#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24
|
||||||
msgid "Set font weight"
|
msgid "Set font weight"
|
||||||
msgstr "フォントの太さを設定する"
|
msgstr "フォントの太さを設定する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:299
|
#. i18n: file: plasmoid-kde4/appearance.ui:239
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
#: rc.cpp:30
|
#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30
|
||||||
msgid "Set font style"
|
msgid "Set font style"
|
||||||
msgstr "フォントの字形を設定する"
|
msgstr "フォントの字形を設定する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:358
|
#. i18n: file: plasmoid-kde4/appearance.ui:282
|
||||||
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
#: rc.cpp:36
|
#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36
|
||||||
msgid "Set font family"
|
msgid "Set font family"
|
||||||
msgstr "フォントを設定する"
|
msgstr "フォントを設定する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:440
|
#. i18n: file: plasmoid-kde4/appearance.ui:358
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign)
|
||||||
#: rc.cpp:48
|
#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48
|
||||||
msgid "Set text align"
|
msgid "Set text align"
|
||||||
msgstr "テキストの位置を設定する"
|
msgstr "テキストの位置を設定する"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:291
|
#. i18n: file: plasmoid-kde4/widget.ui:353
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
#. 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"
|
msgid "Show more detailed interface"
|
||||||
msgstr "インターフェースについての詳細を表示"
|
msgstr "インターフェースについての詳細を表示"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:309
|
#. i18n: file: plasmoid-kde4/widget.ui:373
|
||||||
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit)
|
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit)
|
||||||
#: rc.cpp:117
|
#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117
|
||||||
msgid ""
|
msgid ""
|
||||||
"$info - active profile information\n"
|
"$info - active profile information\n"
|
||||||
"$current - current profile name\n"
|
"$current - current profile name\n"
|
||||||
@ -500,16 +557,24 @@ msgstr ""
|
|||||||
"$profiles - プロファイルの一覧\n"
|
"$profiles - プロファイルの一覧\n"
|
||||||
"$status - 現在のプロファイルの状態(静的/有効)"
|
"$status - 現在のプロファイルの状態(静的/有効)"
|
||||||
|
|
||||||
#: rc.cpp:126
|
#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "NOGISAKA Sadata"
|
msgstr "NOGISAKA Sadata"
|
||||||
|
|
||||||
#: rc.cpp:127
|
#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "ngsksdt@gmail.com "
|
msgstr "ngsksdt@gmail.com "
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
#~ msgid "inactive"
|
||||||
|
#~ msgstr "非アクティブ時のアイコン"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
#~ msgid "active"
|
||||||
|
#~ msgstr "非アクティブ時のアイコン"
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#~ msgid "Netctl GUI"
|
#~ msgid "Netctl GUI"
|
||||||
#~ msgstr "GUI を開始"
|
#~ msgstr "GUI を開始"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\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"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -17,460 +17,519 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: 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"
|
msgid "Set profile %1 disabled"
|
||||||
msgstr ""
|
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"
|
msgid "Set profile %1 enabled"
|
||||||
msgstr ""
|
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"
|
msgid "Restart profile %1"
|
||||||
msgstr ""
|
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"
|
msgid "Start profile %1"
|
||||||
msgstr ""
|
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"
|
msgid "Stop profile %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467
|
#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132
|
#: plasmoid-kf5/package/contents/ui/main.qml:106
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:274
|
#: plasmoid-kf5/plugin/netctladds.cpp:279
|
||||||
msgid "Stop all profiles"
|
msgid "Stop all profiles"
|
||||||
msgstr ""
|
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"
|
msgid "Switch to profile %1"
|
||||||
msgstr ""
|
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"
|
msgid "Start another profile"
|
||||||
msgstr ""
|
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"
|
msgid "Stop %1"
|
||||||
msgstr ""
|
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"
|
msgid "Restart %1"
|
||||||
msgstr ""
|
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"
|
msgid "Disable %1"
|
||||||
msgstr ""
|
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"
|
msgid "Enable %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454
|
#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130
|
#: plasmoid-kf5/package/contents/ui/main.qml:104
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211
|
#: plasmoid-kf5/package/contents/ui/main.qml:191
|
||||||
msgid "Start profile"
|
msgid "Start profile"
|
||||||
msgstr ""
|
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"
|
msgid "Stop profile"
|
||||||
msgstr ""
|
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"
|
msgid "Switch to profile"
|
||||||
msgstr ""
|
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"
|
msgid "Restart profile"
|
||||||
msgstr ""
|
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"
|
msgid "Enable profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:489
|
#: plasmoid-kde4/netctl.cpp:479
|
||||||
msgid "Show netctl-gui"
|
msgid "Show netctl-gui"
|
||||||
msgstr ""
|
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"
|
msgid "Show WiFi menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:521
|
#: plasmoid-kde4/netctl.cpp:511
|
||||||
msgid "Start GUI"
|
msgid "Start GUI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:532
|
#: plasmoid-kde4/netctl.cpp:522
|
||||||
msgid "Start WiFi menu"
|
msgid "Start WiFi menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:572
|
#: plasmoid-kde4/netctl.cpp:563
|
||||||
msgid "Network is up"
|
msgid "Network is up"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:576
|
#: plasmoid-kde4/netctl.cpp:567
|
||||||
msgid "Network is down"
|
msgid "Network is down"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:766
|
#: plasmoid-kde4/netctl.cpp:754
|
||||||
msgid ""
|
msgid ""
|
||||||
"Version %1\n"
|
"Version %1\n"
|
||||||
"(build date %2)"
|
"(build date %2)"
|
||||||
msgstr ""
|
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."
|
msgid "KDE widget which interacts with netctl."
|
||||||
msgstr ""
|
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:"
|
msgid "Links:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91
|
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99
|
||||||
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
|
|
||||||
msgid "This software is licensed under %1"
|
msgid "This software is licensed under %1"
|
||||||
msgstr ""
|
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"
|
msgid "Translators: %1"
|
||||||
msgstr ""
|
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"
|
msgid "This software uses: %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:786
|
#: plasmoid-kde4/netctl.cpp:781
|
||||||
msgid "Netctl plasmoid"
|
msgid "Netctl plasmoid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:787
|
#: plasmoid-kde4/netctl.cpp:782
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:31
|
#: plasmoid-kf5/package/contents/config/config.qml:31
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:788
|
#: plasmoid-kde4/netctl.cpp:783
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:37
|
#: plasmoid-kf5/package/contents/config/config.qml:37
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:789
|
#: plasmoid-kde4/netctl.cpp:784
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:43
|
#: plasmoid-kf5/package/contents/config/config.qml:43
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41
|
#: plasmoid-kf5/package/contents/ui/about.qml:41
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:25
|
#: plasmoid-kf5/package/contents/config/config.qml:25
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74
|
#: plasmoid-kf5/package/contents/ui/about.qml:74
|
||||||
msgid "Acknowledgment"
|
msgid "Acknowledgment"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:408
|
#. i18n: file: plasmoid-kde4/appearance.ui:342
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_textAlign)
|
#. 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"
|
msgid "Text align"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:72
|
||||||
msgid "center"
|
msgid "center"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:76
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:80
|
||||||
msgid "left"
|
msgid "left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:84
|
||||||
msgid "justify"
|
msgid "justify"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:326
|
#. i18n: file: plasmoid-kde4/appearance.ui:266
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
#. 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"
|
msgid "Font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:142
|
#. i18n: file: plasmoid-kde4/appearance.ui:136
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
#. 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"
|
msgid "Font size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:203
|
#. i18n: file: plasmoid-kde4/appearance.ui:178
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
#. 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"
|
msgid "Font weight"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:153
|
||||||
msgid "light"
|
msgid "light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:200
|
||||||
msgid "normal"
|
msgid "normal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:161
|
||||||
msgid "demi bold"
|
msgid "demi bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:165
|
||||||
msgid "bold"
|
msgid "bold"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:169
|
||||||
msgid "black"
|
msgid "black"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:267
|
#. i18n: file: plasmoid-kde4/appearance.ui:223
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
#. 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"
|
msgid "Font style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:204
|
||||||
msgid "italic"
|
msgid "italic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:80
|
#. i18n: file: plasmoid-kde4/appearance.ui:90
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontColor)
|
#. 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"
|
msgid "Font color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:375
|
#. i18n: file: plasmoid-kde4/appearance.ui:299
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
#. 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"
|
msgid "Active icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:63
|
#. i18n: file: plasmoid-kde4/appearance.ui:73
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
#. 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260
|
#. i18n: file: plasmoid-kde4/appearance.ui:73
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59
|
#. i18n: file: plasmoid-kde4/appearance.ui:325
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150
|
#. i18n: file: plasmoid-kde4/dataengine.ui:60
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90
|
#. i18n: file: plasmoid-kde4/dataengine.ui:103
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181
|
#. i18n: file: plasmoid-kde4/dataengine.ui:149
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273
|
#. i18n: file: plasmoid-kde4/dataengine.ui:195
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6)
|
||||||
#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93
|
#. i18n: file: plasmoid-kde4/widget.ui:102
|
||||||
#: rc.cpp:99 rc.cpp:105 rc.cpp:111
|
#. 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"
|
msgid "Browse"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:267
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:299
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:66
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:99
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:215
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97
|
#: plasmoid-kf5/package/contents/ui/widget.qml:97
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153
|
#: plasmoid-kf5/package/contents/ui/widget.qml:153
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188
|
#: plasmoid-kf5/package/contents/ui/widget.qml:188
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223
|
#: plasmoid-kf5/package/contents/ui/widget.qml:223
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280
|
#: plasmoid-kf5/package/contents/ui/widget.qml:280
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337
|
#: plasmoid-kf5/package/contents/ui/widget.qml:337
|
||||||
msgid "Select a path"
|
msgid "Select a path"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
#. 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"
|
msgid "Inactive icon"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:309
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:309
|
||||||
msgid "Select a color"
|
msgid "Select a color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:318
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:318
|
||||||
msgid "Select a font"
|
msgid "Select a font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
#. 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90
|
#. 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"
|
msgid "Path to netctl"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/dataengine.ui:67
|
#. i18n: file: plasmoid-kde4/dataengine.ui:77
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
#. 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82
|
#. i18n: file: plasmoid-kde4/dataengine.ui:77
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96
|
#. 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"
|
msgid "Path to netctl-auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/dataengine.ui:100
|
#. i18n: file: plasmoid-kde4/dataengine.ui:123
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp4)
|
#. 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"
|
msgid "Check external IPv4"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/dataengine.ui:136
|
#. i18n: file: plasmoid-kde4/dataengine.ui:169
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_extIp6)
|
#. 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"
|
msgid "Check external IPv6"
|
||||||
msgstr ""
|
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: file: plasmoid-kde4/widget.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
#. 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"
|
msgid "Auto update interval, msec"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:92
|
#. i18n: file: plasmoid-kde4/widget.ui:76
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
#. 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"
|
msgid "Path to GUI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:125
|
#. i18n: file: plasmoid-kde4/widget.ui:122
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_helper)
|
#. 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"
|
msgid "Use helper"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:227
|
#. i18n: file: plasmoid-kde4/widget.ui:254
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
#. 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"
|
msgid "Use sudo for netctl"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:263
|
#. i18n: file: plasmoid-kde4/widget.ui:300
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_wifi)
|
#. 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'"
|
msgid "Show 'Start WiFi menu'"
|
||||||
msgstr ""
|
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"
|
msgid "Run %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:161
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
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"
|
msgid "Select profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:234
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
#: plasmoid-kf5/plugin/netctladds.cpp:296
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:112
|
#. i18n: file: plasmoid-kde4/appearance.ui:106
|
||||||
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
#: rc.cpp:12
|
#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12
|
||||||
msgid "Set font color"
|
msgid "Set font color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:174
|
#. i18n: file: plasmoid-kde4/appearance.ui:152
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
#: rc.cpp:18
|
#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18
|
||||||
msgid "Set font size"
|
msgid "Set font size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:235
|
#. i18n: file: plasmoid-kde4/appearance.ui:194
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
#: rc.cpp:24
|
#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24
|
||||||
msgid "Set font weight"
|
msgid "Set font weight"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:299
|
#. i18n: file: plasmoid-kde4/appearance.ui:239
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
#: rc.cpp:30
|
#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30
|
||||||
msgid "Set font style"
|
msgid "Set font style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:358
|
#. i18n: file: plasmoid-kde4/appearance.ui:282
|
||||||
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
#: rc.cpp:36
|
#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36
|
||||||
msgid "Set font family"
|
msgid "Set font family"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:440
|
#. i18n: file: plasmoid-kde4/appearance.ui:358
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign)
|
||||||
#: rc.cpp:48
|
#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48
|
||||||
msgid "Set text align"
|
msgid "Set text align"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:291
|
#. i18n: file: plasmoid-kde4/widget.ui:353
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
#. 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"
|
msgid "Show more detailed interface"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:309
|
#. i18n: file: plasmoid-kde4/widget.ui:373
|
||||||
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit)
|
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit)
|
||||||
#: rc.cpp:117
|
#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117
|
||||||
msgid ""
|
msgid ""
|
||||||
"$info - active profile information\n"
|
"$info - active profile information\n"
|
||||||
"$current - current profile name\n"
|
"$current - current profile name\n"
|
||||||
@ -483,12 +542,12 @@ msgid ""
|
|||||||
"$status - current profile status (static/enabled)"
|
"$status - current profile status (static/enabled)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: rc.cpp:126
|
#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: rc.cpp:127
|
#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -6,8 +6,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/arcan1s/netctl-gui/issues\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: 2015-01-09 04:57+0300\n"
|
"PO-Revision-Date: 2015-03-17 12:49+0300\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -18,103 +18,103 @@ msgstr ""
|
|||||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 1.5\n"
|
||||||
|
|
||||||
#: 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"
|
msgid "Set profile %1 disabled"
|
||||||
msgstr "Выключение автозагрузки профиля %1"
|
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"
|
msgid "Set profile %1 enabled"
|
||||||
msgstr "Включение автозагрузки профиля %1"
|
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"
|
msgid "Restart profile %1"
|
||||||
msgstr "Перезапуск профиля %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"
|
msgid "Start profile %1"
|
||||||
msgstr "Запуск профиля %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"
|
msgid "Stop profile %1"
|
||||||
msgstr "Остановка профиля %1"
|
msgstr "Остановка профиля %1"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:329 plasmoid-kde4/netctl.cpp:467
|
#: plasmoid-kde4/netctl.cpp:321 plasmoid-kde4/netctl.cpp:457
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:132
|
#: plasmoid-kf5/package/contents/ui/main.qml:106
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:274
|
#: plasmoid-kf5/plugin/netctladds.cpp:279
|
||||||
msgid "Stop all profiles"
|
msgid "Stop all profiles"
|
||||||
msgstr "Остановить все профили"
|
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"
|
msgid "Switch to profile %1"
|
||||||
msgstr "Переключение на профиль %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"
|
msgid "Start another profile"
|
||||||
msgstr "Запустить другой профиль"
|
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"
|
msgid "Stop %1"
|
||||||
msgstr "Остановить %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"
|
msgid "Restart %1"
|
||||||
msgstr "Перезапустить %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"
|
msgid "Disable %1"
|
||||||
msgstr "Отключить %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"
|
msgid "Enable %1"
|
||||||
msgstr "Включить %1"
|
msgstr "Включить %1"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:431 plasmoid-kde4/netctl.cpp:454
|
#: plasmoid-kde4/netctl.cpp:421 plasmoid-kde4/netctl.cpp:444
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:130
|
#: plasmoid-kf5/package/contents/ui/main.qml:104
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/main.qml:211
|
#: plasmoid-kf5/package/contents/ui/main.qml:191
|
||||||
msgid "Start profile"
|
msgid "Start profile"
|
||||||
msgstr "Запустить профиль"
|
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"
|
msgid "Stop profile"
|
||||||
msgstr "Остановить профиль"
|
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"
|
msgid "Switch to profile"
|
||||||
msgstr "Переключить профиль"
|
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"
|
msgid "Restart profile"
|
||||||
msgstr "Перезапустить профиль"
|
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"
|
msgid "Enable profile"
|
||||||
msgstr "Включить профиль"
|
msgstr "Включить профиль"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:489
|
#: plasmoid-kde4/netctl.cpp:479
|
||||||
msgid "Show netctl-gui"
|
msgid "Show netctl-gui"
|
||||||
msgstr "Показать 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"
|
msgid "Show WiFi menu"
|
||||||
msgstr "Запустить WiFi-menu"
|
msgstr "Запустить WiFi-menu"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:521
|
#: plasmoid-kde4/netctl.cpp:511
|
||||||
msgid "Start GUI"
|
msgid "Start GUI"
|
||||||
msgstr "Запуск GUI"
|
msgstr "Запуск GUI"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:532
|
#: plasmoid-kde4/netctl.cpp:522
|
||||||
msgid "Start WiFi menu"
|
msgid "Start WiFi menu"
|
||||||
msgstr "Запуск WiFi-menu"
|
msgstr "Запуск WiFi-menu"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:572
|
#: plasmoid-kde4/netctl.cpp:563
|
||||||
msgid "Network is up"
|
msgid "Network is up"
|
||||||
msgstr "Сеть работает"
|
msgstr "Сеть работает"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:576
|
#: plasmoid-kde4/netctl.cpp:567
|
||||||
msgid "Network is down"
|
msgid "Network is down"
|
||||||
msgstr "Сеть не работает"
|
msgstr "Сеть не работает"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:766
|
#: plasmoid-kde4/netctl.cpp:754
|
||||||
msgid ""
|
msgid ""
|
||||||
"Version %1\n"
|
"Version %1\n"
|
||||||
"(build date %2)"
|
"(build date %2)"
|
||||||
@ -122,358 +122,417 @@ msgstr ""
|
|||||||
"Версия %1\n"
|
"Версия %1\n"
|
||||||
"(дата сборки %2)"
|
"(дата сборки %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."
|
msgid "KDE widget which interacts with netctl."
|
||||||
msgstr "Виджет KDE, который взаимодействует с 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:"
|
msgid "Links:"
|
||||||
msgstr "Ссылки:"
|
msgstr "Ссылки:"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:91
|
#: plasmoid-kde4/netctl.cpp:769 plasmoid-kf5/plugin/netctladds.cpp:99
|
||||||
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
|
|
||||||
msgid "This software is licensed under %1"
|
msgid "This software is licensed under %1"
|
||||||
msgstr "Данное приложение лицензировано под %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"
|
msgid "Translators: %1"
|
||||||
msgstr "Переводчики: %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"
|
msgid "This software uses: %1"
|
||||||
msgstr "Данное приложение использует: %1"
|
msgstr "Данное приложение использует: %1"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:786
|
#: plasmoid-kde4/netctl.cpp:781
|
||||||
msgid "Netctl plasmoid"
|
msgid "Netctl plasmoid"
|
||||||
msgstr "Netctl plasmoid"
|
msgstr "Netctl plasmoid"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:787
|
#: plasmoid-kde4/netctl.cpp:782
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:31
|
#: plasmoid-kf5/package/contents/config/config.qml:31
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Внешний вид"
|
msgstr "Внешний вид"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:788
|
#: plasmoid-kde4/netctl.cpp:783
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:37
|
#: plasmoid-kf5/package/contents/config/config.qml:37
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#: plasmoid-kde4/netctl.cpp:789
|
#: plasmoid-kde4/netctl.cpp:784
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:43
|
#: plasmoid-kf5/package/contents/config/config.qml:43
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:41
|
#: plasmoid-kf5/package/contents/ui/about.qml:41
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "О программе"
|
msgstr "О программе"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/config/config.qml:25
|
#: plasmoid-kf5/package/contents/config/config.qml:25
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Виджет"
|
msgstr "Виджет"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/about.qml:74
|
#: plasmoid-kf5/package/contents/ui/about.qml:74
|
||||||
msgid "Acknowledgment"
|
msgid "Acknowledgment"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Text align"
|
||||||
msgstr "Выравнивание текста"
|
msgstr "Выравнивание текста"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:72
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:72
|
||||||
msgid "center"
|
msgid "center"
|
||||||
msgstr "по центру"
|
msgstr "по центру"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:76
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:76
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr "справа"
|
msgstr "справа"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:80
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:80
|
||||||
msgid "left"
|
msgid "left"
|
||||||
msgstr "слева"
|
msgstr "слева"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:84
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:84
|
||||||
msgid "justify"
|
msgid "justify"
|
||||||
msgstr "по ширине"
|
msgstr "по ширине"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:326
|
#. i18n: file: plasmoid-kde4/appearance.ui:266
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
#. 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"
|
msgid "Font"
|
||||||
msgstr "Шрифт"
|
msgstr "Шрифт"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:142
|
#. i18n: file: plasmoid-kde4/appearance.ui:136
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
#. 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"
|
msgid "Font size"
|
||||||
msgstr "Размер шрифта"
|
msgstr "Размер шрифта"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:203
|
#. i18n: file: plasmoid-kde4/appearance.ui:178
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontWeight)
|
#. 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"
|
msgid "Font weight"
|
||||||
msgstr "Толщина шрифта"
|
msgstr "Толщина шрифта"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:153
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:153
|
||||||
msgid "light"
|
msgid "light"
|
||||||
msgstr "маленький"
|
msgstr "маленький"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:157
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:200
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:200
|
||||||
msgid "normal"
|
msgid "normal"
|
||||||
msgstr "нормальный"
|
msgstr "нормальный"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:161
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:161
|
||||||
msgid "demi bold"
|
msgid "demi bold"
|
||||||
msgstr "нежирный"
|
msgstr "нежирный"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:165
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:165
|
||||||
msgid "bold"
|
msgid "bold"
|
||||||
msgstr "жирный"
|
msgstr "жирный"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:169
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:169
|
||||||
msgid "black"
|
msgid "black"
|
||||||
msgstr "очень жирный"
|
msgstr "очень жирный"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:267
|
#. i18n: file: plasmoid-kde4/appearance.ui:223
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontStyle)
|
#. 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"
|
msgid "Font style"
|
||||||
msgstr "Стиль шрифта"
|
msgstr "Стиль шрифта"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:204
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:204
|
||||||
msgid "italic"
|
msgid "italic"
|
||||||
msgstr "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)
|
#. 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"
|
msgid "Font color"
|
||||||
msgstr "Цвет шрифта"
|
msgstr "Цвет шрифта"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:375
|
#. i18n: file: plasmoid-kde4/appearance.ui:299
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_activeIcon)
|
#. 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"
|
msgid "Active icon"
|
||||||
msgstr "Иконка активного подключения"
|
msgstr "Иконка активного подключения"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:63
|
#. i18n: file: plasmoid-kde4/appearance.ui:73
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
#. 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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_wifi)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:260
|
#. i18n: file: plasmoid-kde4/appearance.ui:73
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:292
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_inactiveIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:59
|
#. i18n: file: plasmoid-kde4/appearance.ui:325
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:92
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_activeIcon)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:150
|
#. i18n: file: plasmoid-kde4/dataengine.ui:60
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:208
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:90
|
#. i18n: file: plasmoid-kde4/dataengine.ui:103
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:147
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:181
|
#. i18n: file: plasmoid-kde4/dataengine.ui:149
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:216
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp4)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:273
|
#. i18n: file: plasmoid-kde4/dataengine.ui:195
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:330 rc.cpp:6 rc.cpp:42
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_extIp6)
|
||||||
#: rc.cpp:54 rc.cpp:60 rc.cpp:66 rc.cpp:72 rc.cpp:81 rc.cpp:87 rc.cpp:93
|
#. i18n: file: plasmoid-kde4/widget.ui:102
|
||||||
#: rc.cpp:99 rc.cpp:105 rc.cpp:111
|
#. 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"
|
msgid "Browse"
|
||||||
msgstr "Обзор"
|
msgstr "Обзор"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:267
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:267
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:299
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:299
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:66
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:66
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:99
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:99
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:157
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:157
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:215
|
#: plasmoid-kf5/package/contents/ui/dataengine.qml:215
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:97
|
#: plasmoid-kf5/package/contents/ui/widget.qml:97
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:153
|
#: plasmoid-kf5/package/contents/ui/widget.qml:153
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:188
|
#: plasmoid-kf5/package/contents/ui/widget.qml:188
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:223
|
#: plasmoid-kf5/package/contents/ui/widget.qml:223
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:280
|
#: plasmoid-kf5/package/contents/ui/widget.qml:280
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:337
|
#: plasmoid-kf5/package/contents/ui/widget.qml:337
|
||||||
msgid "Select a path"
|
msgid "Select a path"
|
||||||
msgstr "Выберете путь"
|
msgstr "Выберете путь"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
#. i18n: file: plasmoid-kde4/appearance.ui:47
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_inactiveIcon)
|
#. 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"
|
msgid "Inactive icon"
|
||||||
msgstr "Иконка неактивного подключения"
|
msgstr "Иконка неактивного подключения"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:309
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:309
|
||||||
msgid "Select a color"
|
msgid "Select a color"
|
||||||
msgstr "Укажите цвет"
|
msgstr "Укажите цвет"
|
||||||
|
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/appearance.qml:318
|
#: plasmoid-kf5/package/contents/ui/appearance.qml:318
|
||||||
msgid "Select a font"
|
msgid "Select a font"
|
||||||
msgstr "Укажите шрифт"
|
msgstr "Укажите шрифт"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
#. 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctl)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:49
|
#. i18n: file: plasmoid-kde4/dataengine.ui:34
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:169 rc.cpp:51 rc.cpp:90
|
#. 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"
|
msgid "Path to netctl"
|
||||||
msgstr "Путь к 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: 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)
|
#. i18n: ectx: property (text), widget (QLabel, label_netctlAuto)
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/dataengine.qml:82
|
#. i18n: file: plasmoid-kde4/dataengine.ui:77
|
||||||
#: plasmoid-kf5/plasmoid/contents/ui/widget.qml:204 rc.cpp:57 rc.cpp:96
|
#. 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"
|
msgid "Path to netctl-auto"
|
||||||
msgstr "Путь к 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)
|
#. 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"
|
msgid "Check external IPv4"
|
||||||
msgstr "Проверять внешний 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)
|
#. 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"
|
msgid "Check external IPv6"
|
||||||
msgstr "Проверять внешний 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: file: plasmoid-kde4/widget.ui:34
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_autoUpdate)
|
#. 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"
|
msgid "Auto update interval, msec"
|
||||||
msgstr "Интервал автообновления, мсек"
|
msgstr "Интервал автообновления, мсек"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:92
|
#. i18n: file: plasmoid-kde4/widget.ui:76
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gui)
|
#. 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"
|
msgid "Path to GUI"
|
||||||
msgstr "Путь к 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)
|
#. 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"
|
msgid "Use helper"
|
||||||
msgstr "Использовать хелпер"
|
msgstr "Использовать хелпер"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:227
|
#. i18n: file: plasmoid-kde4/widget.ui:254
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_sudo)
|
#. 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"
|
msgid "Use sudo for netctl"
|
||||||
msgstr "Использовать sudo для 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)
|
#. 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'"
|
msgid "Show 'Start WiFi menu'"
|
||||||
msgstr "Показать 'Запустить 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"
|
msgid "Run %1"
|
||||||
msgstr "Запуск %1"
|
msgstr "Запуск %1"
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:161
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
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"
|
msgid "Select profile"
|
||||||
msgstr "Выберете профиль"
|
msgstr "Выберете профиль"
|
||||||
|
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:228
|
#: plasmoid-kf5/plugin/netctladds.cpp:234
|
||||||
#: plasmoid-kf5/plugin/netctladds.cpp:292
|
#: plasmoid-kf5/plugin/netctladds.cpp:296
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr "Профиль:"
|
msgstr "Профиль:"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:112
|
#. i18n: file: plasmoid-kde4/appearance.ui:106
|
||||||
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
#. i18n: ectx: property (toolTip), widget (KColorCombo, kcolorcombo_fontColor)
|
||||||
#: rc.cpp:12
|
#: resources/translations-plasmoid/rc.cpp:12 rc.cpp:12
|
||||||
msgid "Set font color"
|
msgid "Set font color"
|
||||||
msgstr "Укажите цвет шрифта"
|
msgstr "Укажите цвет шрифта"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:174
|
#. i18n: file: plasmoid-kde4/appearance.ui:152
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontSize)
|
||||||
#: rc.cpp:18
|
#: resources/translations-plasmoid/rc.cpp:18 rc.cpp:18
|
||||||
msgid "Set font size"
|
msgid "Set font size"
|
||||||
msgstr "Укажите размер шрифта"
|
msgstr "Укажите размер шрифта"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:235
|
#. i18n: file: plasmoid-kde4/appearance.ui:194
|
||||||
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
#. i18n: ectx: property (toolTip), widget (QSpinBox, spinBox_fontWeight)
|
||||||
#: rc.cpp:24
|
#: resources/translations-plasmoid/rc.cpp:24 rc.cpp:24
|
||||||
msgid "Set font weight"
|
msgid "Set font weight"
|
||||||
msgstr "Укажите ширину шрифта"
|
msgstr "Укажите ширину шрифта"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:299
|
#. i18n: file: plasmoid-kde4/appearance.ui:239
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_fontStyle)
|
||||||
#: rc.cpp:30
|
#: resources/translations-plasmoid/rc.cpp:30 rc.cpp:30
|
||||||
msgid "Set font style"
|
msgid "Set font style"
|
||||||
msgstr "Укажите стиль шрифта"
|
msgstr "Укажите стиль шрифта"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:358
|
#. i18n: file: plasmoid-kde4/appearance.ui:282
|
||||||
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
#. i18n: ectx: property (toolTip), widget (QFontComboBox, fontComboBox_font)
|
||||||
#: rc.cpp:36
|
#: resources/translations-plasmoid/rc.cpp:36 rc.cpp:36
|
||||||
msgid "Set font family"
|
msgid "Set font family"
|
||||||
msgstr "Укажите шрифт"
|
msgstr "Укажите шрифт"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/appearance.ui:440
|
#. i18n: file: plasmoid-kde4/appearance.ui:358
|
||||||
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign)
|
#. i18n: ectx: property (toolTip), widget (QComboBox, comboBox_textAlign)
|
||||||
#: rc.cpp:48
|
#: resources/translations-plasmoid/rc.cpp:48 rc.cpp:48
|
||||||
msgid "Set text align"
|
msgid "Set text align"
|
||||||
msgstr "Установите выравнивание текста"
|
msgstr "Установите выравнивание текста"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:291
|
#. i18n: file: plasmoid-kde4/widget.ui:353
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_showBigInterface)
|
#. 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"
|
msgid "Show more detailed interface"
|
||||||
msgstr "Показать более детальный интерфейс"
|
msgstr "Показать более детальный интерфейс"
|
||||||
|
|
||||||
#. i18n: file: plasmoid-kde4/widget.ui:309
|
#. i18n: file: plasmoid-kde4/widget.ui:373
|
||||||
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit)
|
#. i18n: ectx: property (toolTip), widget (QPlainTextEdit, textEdit)
|
||||||
#: rc.cpp:117
|
#: resources/translations-plasmoid/rc.cpp:117 rc.cpp:117
|
||||||
msgid ""
|
msgid ""
|
||||||
"$info - active profile information\n"
|
"$info - active profile information\n"
|
||||||
"$current - current profile name\n"
|
"$current - current profile name\n"
|
||||||
@ -495,16 +554,22 @@ msgstr ""
|
|||||||
"$profiles - список профилей netctl\n"
|
"$profiles - список профилей netctl\n"
|
||||||
"$status - статус текущего профиля (static/enabled)"
|
"$status - статус текущего профиля (static/enabled)"
|
||||||
|
|
||||||
#: rc.cpp:126
|
#: resources/translations-plasmoid/rc.cpp:126 rc.cpp:126
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: rc.cpp:127
|
#: resources/translations-plasmoid/rc.cpp:127 rc.cpp:127
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
|
|
||||||
|
#~ msgid "inactive"
|
||||||
|
#~ msgstr "неактивен"
|
||||||
|
|
||||||
|
#~ msgid "active"
|
||||||
|
#~ msgstr "активен"
|
||||||
|
|
||||||
#~ msgid "Acknowledgement"
|
#~ msgid "Acknowledgement"
|
||||||
#~ msgstr "Благодарности"
|
#~ msgstr "Благодарности"
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user