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