prepare to release 1.7.0

Commit before merging
This commit is contained in:
arcan1s
2014-04-02 23:00:54 +04:00
parent 413dbb2134
commit d226629b45
12 changed files with 896 additions and 242 deletions

View File

@ -2,6 +2,7 @@ Ver.1.7.0:
+ added support of several tags in temperature label + added support of several tags in temperature label
+ added tags $cpuN, $cpuclN, $hddN, $tempN, $hddtempN, $up, $down + added tags $cpuN, $cpuclN, $hddN, $tempN, $hddtempN, $up, $down
+ added label with custom command + added label with custom command
+ added tooltips for CPU, CPU clock, memory, swap and network labels
- removed tags @@...@@, $temp, $ccpu, $ccpucl, $net - removed tags @@...@@, $temp, $ccpu, $ccpucl, $net
* changes in settings * changes in settings
* ptm now does not require net-tools * ptm now does not require net-tools

View File

@ -3,7 +3,7 @@
pkgname=kdeplasma-applets-pytextmonitor pkgname=kdeplasma-applets-pytextmonitor
_pkgname=pytextmonitor _pkgname=pytextmonitor
pkgver=1.6.1 pkgver=1.7.0
pkgrel=1 pkgrel=1
pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in awesome-wm" pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in awesome-wm"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
@ -19,7 +19,7 @@ optdepends=("hddtemp: for HDD temperature monitor"
makedepends=('automoc4' 'cmake') makedepends=('automoc4' 'cmake')
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz) source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install install=${pkgname}.install
md5sums=('aa6c5f00b33c073f3732bd921171a557') md5sums=('ecd235e70cef74ebfb3ba3589e4a05ab')
backup=('usr/share/config/extsysmon.conf') backup=('usr/share/config/extsysmon.conf')
build () { build () {

View File

@ -111,19 +111,14 @@ Select one of supported music playes for player label.
A command, which will be run for custom label. A command, which will be run for custom label.
Tooltip settings
----------------
Since version 1.7.0 CPU, CPU clock, memory, swap and network labels support graphical tooltip. To enable them just make the needed checkboxes a fully checked. The number of stored values can be set in the tab. Colors of graphs are configurable too.
DataEngine configuration DataEngine configuration
------------------------ ------------------------
You may edit DataEngine configuration. It is `/usr/share/config/extsysmon.conf` or `$HOME/share/config/extsysmon.conf` depending on the type of installation. Uncomment needed line and edit it. You may edit DataEngine configuration. It is `/usr/share/config/extsysmon.conf` or `$HOME/share/config/extsysmon.conf` depending on the type of installation. Uncomment needed line and edit it.
TODO (wish) list
----------------
Tooltip (graphical information):
* cpu, %
* cpuclock, mhz
* memory, %
* swap, %
* network, %
Instruction Instruction
=========== ===========

View File

@ -81,6 +81,12 @@ class ConfigDefinition:
self.parent.custom_command = str(self.configpage.ui.lineEdit_customCommand.text()) self.parent.custom_command = str(self.configpage.ui.lineEdit_customCommand.text())
settings.set('custom_command', self.parent.custom_command) settings.set('custom_command', self.parent.custom_command)
self.parent.tooltipNum = self.configpage.ui.spinBox_tooltipNum.value()
settings.set('tooltip_num', self.parent.tooltipNum)
for label in ['cpu', 'cpuclock', 'mem', 'swap', 'down', 'up']:
exec ('self.parent.tooltipColors["' + label + '"] = str(self.configpage.kcolorcombo_' + label + '.color().name())')
exec ('settings.set("' + label + '_color", self.parent.tooltipColors["' + label + '"])')
# disconnecting from source and clear layout # disconnecting from source and clear layout
if (self.parent.uptimeBool > 0): if (self.parent.uptimeBool > 0):
self.parent.systemmonitor.disconnectSource("system/uptime", self.parent) self.parent.systemmonitor.disconnectSource("system/uptime", self.parent)
@ -249,6 +255,14 @@ class ConfigDefinition:
self.configpage.ui.comboBox_playerSelect.setCurrentIndex(settings.get('player_name', 0).toInt()[0]) self.configpage.ui.comboBox_playerSelect.setCurrentIndex(settings.get('player_name', 0).toInt()[0])
self.configpage.ui.lineEdit_customCommand.setText(str(settings.get('custom_command', 'wget -qO- http://ifconfig.me/ip'))) self.configpage.ui.lineEdit_customCommand.setText(str(settings.get('custom_command', 'wget -qO- http://ifconfig.me/ip')))
self.configpage.ui.spinBox_tooltipNum.setValue(settings.get('tooltip_num', 100).toInt()[0])
self.configpage.ui.kcolorcombo_cpu.setColor(QColor(str(settings.get('cpu_color', '#ff0000'))))
self.configpage.ui.kcolorcombo_cpuclock.setColor(QColor(str(settings.get('cpuclock_color', '#00ff00'))))
self.configpage.ui.kcolorcombo_mem.setColor(QColor(str(settings.get('mem_color', '#0000ff'))))
self.configpage.ui.kcolorcombo_swap.setColor(QColor(str(settings.get('swap_color', '#ffff00'))))
self.configpage.ui.kcolorcombo_down.setColor(QColor(str(settings.get('down_color', '#00ffff'))))
self.configpage.ui.kcolorcombo_up.setColor(QColor(str(settings.get('up_color', '#ff00ff'))))
for label in self.parent.dict_orders.keys(): for label in self.parent.dict_orders.keys():
exec ('bool = self.parent.' + self.parent.dict_orders[label] + 'Bool') exec ('bool = self.parent.' + self.parent.dict_orders[label] + 'Bool')
self.configpage.checkboxes[self.parent.dict_orders[label]].setCheckState(bool) self.configpage.checkboxes[self.parent.dict_orders[label]].setCheckState(bool)

View File

@ -115,21 +115,29 @@ class DataEngine:
elif (sourceName == "cpu/system/TotalLoad"): elif (sourceName == "cpu/system/TotalLoad"):
value = str(round(float(data[QString(u'value')]), 1)) value = str(round(float(data[QString(u'value')]), 1))
self.parent.cpuCore[-1] = "%5s" % (value) self.parent.cpuCore[-1] = "%5s" % (value)
if (self.parent.cpuBool == 2):
self.parent.tooltipAgent.addValue('cpu', float(value), self.parent.tooltipNum)
elif ((str(sourceName)[:7] == "cpu/cpu") and (str(sourceName).split('/')[2] == "TotalLoad")): elif ((str(sourceName)[:7] == "cpu/cpu") and (str(sourceName).split('/')[2] == "TotalLoad")):
value = str(round(float(data[QString(u'value')]), 1)) value = str(round(float(data[QString(u'value')]), 1))
self.parent.cpuCore[int(str(sourceName)[7])] = "%5s" % (value) self.parent.cpuCore[int(str(sourceName)[7])] = "%5s" % (value)
elif (sourceName == "cpu/system/AverageClock"): elif (sourceName == "cpu/system/AverageClock"):
value = str(data[QString(u'value')]).split('.')[0] value = str(data[QString(u'value')]).split('.')[0]
self.parent.cpuClockCore[-1] = "%4s" % (value) self.parent.cpuClockCore[-1] = "%4s" % (value)
if (self.parent.cpuclockBool == 2):
self.parent.tooltipAgent.addValue('cpuclock', float(value), self.parent.tooltipNum)
elif ((str(sourceName)[:7] == "cpu/cpu") and (str(sourceName).split('/')[2] == "clock")): elif ((str(sourceName)[:7] == "cpu/cpu") and (str(sourceName).split('/')[2] == "clock")):
value = str(data[QString(u'value')]).split('.')[0] value = str(data[QString(u'value')]).split('.')[0]
self.parent.cpuClockCore[int(str(sourceName)[7])] = "%4s" % (value) self.parent.cpuClockCore[int(str(sourceName)[7])] = "%4s" % (value)
elif (sourceName == "network/interfaces/"+self.parent.netdev+"/transmitter/data"): elif (sourceName == "network/interfaces/"+self.parent.netdev+"/transmitter/data"):
value = str(data[QString(u'value')]).split('.')[0] value = str(data[QString(u'value')]).split('.')[0]
self.parent.netSpeed["up"] = "%4s" % (value) self.parent.netSpeed["up"] = "%4s" % (value)
if (self.parent.netBool == 2):
self.parent.tooltipAgent.addValue('up', float(value), self.parent.tooltipNum)
elif (sourceName == "network/interfaces/"+self.parent.netdev+"/receiver/data"): elif (sourceName == "network/interfaces/"+self.parent.netdev+"/receiver/data"):
value = str(data[QString(u'value')]).split('.')[0] value = str(data[QString(u'value')]).split('.')[0]
self.parent.netSpeed["down"] = "%4s" % (value) self.parent.netSpeed["down"] = "%4s" % (value)
if (self.parent.netBool == 2):
self.parent.tooltipAgent.addValue('down', float(value), self.parent.tooltipNum)
# update network device # update network device
self.parent.updateNetdev = self.parent.updateNetdev + 1 self.parent.updateNetdev = self.parent.updateNetdev + 1
if (self.parent.updateNetdev == 100): if (self.parent.updateNetdev == 100):
@ -166,6 +174,8 @@ class DataEngine:
self.parent.label_mem.setText(text) self.parent.label_mem.setText(text)
else: else:
self.parent.mem_used = float(data[QString(u'value')]) self.parent.mem_used = float(data[QString(u'value')])
if (self.parent.memBool == 2):
self.parent.tooltipAgent.addValue('mem', float(data[QString(u'value')]), self.parent.tooltipNum)
elif (sourceName == "mem/swap/free"): elif (sourceName == "mem/swap/free"):
self.parent.swap_free = float(data[QString(u'value')]) self.parent.swap_free = float(data[QString(u'value')])
elif (sourceName == "mem/swap/used"): elif (sourceName == "mem/swap/used"):
@ -180,6 +190,8 @@ class DataEngine:
self.parent.label_swap.setText(text) self.parent.label_swap.setText(text)
else: else:
self.parent.swap_used = float(data[QString(u'value')]) self.parent.swap_used = float(data[QString(u'value')])
if (self.parent.swapBool == 2):
self.parent.tooltipAgent.addValue('swap', float(data[QString(u'value')]), self.parent.tooltipNum)
elif (sourceName == "gpu"): elif (sourceName == "gpu"):
value = str(data[QString(u'GPU')]) value = str(data[QString(u'GPU')])
gpuText = "%4s" % (value) gpuText = "%4s" % (value)

View File

@ -30,6 +30,7 @@ import configdef
import configwindow import configwindow
import dataengine import dataengine
import reinit import reinit
import tooltip
from util import * from util import *
@ -43,16 +44,17 @@ class pyTextWidget(plasmascript.Applet):
def init(self): def init(self):
"""function to initializate widget""" """function to initializate widget"""
self._name = str(self.package().metadata().pluginName()) self._name = str(self.package().metadata().pluginName())
self.initTooltip()
self.layout = QGraphicsLinearLayout(Qt.Horizontal, self.applet) self.layout = QGraphicsLinearLayout(Qt.Horizontal, self.applet)
self.dataengine = dataengine.DataEngine(self) self.dataengine = dataengine.DataEngine(self)
self.reinit = reinit.Reinit(self) self.reinit = reinit.Reinit(self)
self.tooltipAgent = tooltip.Tooltip(self)
self.timer = QTimer() self.timer = QTimer()
QObject.connect(self.timer, SIGNAL("timeout()"), self.updateLabel) QObject.connect(self.timer, SIGNAL("timeout()"), self.updateLabel)
self.setupVar() self.setupVar()
self.initTooltip()
self.reinit.reinit(confAccept=False) self.reinit.reinit(confAccept=False)
self.setHasConfigurationInterface(True) self.setHasConfigurationInterface(True)
@ -84,8 +86,22 @@ class pyTextWidget(plasmascript.Applet):
self.tooltip.setMainText("PyTextMonitor") self.tooltip.setMainText("PyTextMonitor")
self.tooltip.setSubText('') self.tooltip.setSubText('')
Plasma.ToolTipManager.self().registerWidget(self.applet) Plasma.ToolTipManager.self().registerWidget(self.applet)
# graphical tooltip
self.tooltip_pixmap = QPixmap()
self.tooltip_scene = QGraphicsScene()
self.tooltip_view = QGraphicsView(self.tooltip_scene)
self.tooltip_view.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
self.tooltip_view.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
# show tooltip # show tooltip
#Plasma.ToolTipManager.self().setContent(self.applet, self.tooltip) Plasma.ToolTipManager.self().setContent(self.applet, self.tooltip)
def updateTooltip(self):
"""function to update tooltip"""
self.tooltip_view.resize(100.0*(len(self.tooltipReq)-self.tooltipReq.count('up')), 100.0)
self.tooltipAgent.createGraphic(self.tooltipReq, self.tooltipColors, self.tooltipValues, self.tooltip_scene)
self.tooltip.setImage(QPixmap.grabWidget(self.tooltip_view))
Plasma.ToolTipManager.self().setContent(self.applet, self.tooltip)
def mouseDoubleClickEvent(self, event): def mouseDoubleClickEvent(self, event):
@ -124,6 +140,11 @@ class pyTextWidget(plasmascript.Applet):
self.mount = {} self.mount = {}
self.hddNames = [] self.hddNames = []
self.hdd = {} self.hdd = {}
self.tooltipColors = {}
self.tooltipNum = 100
self.tooltipReq = []
self.tooltipValues = {'cpu':[0.0, 0.01], 'cpuclock':[0.0, 0.01], 'mem':[0.0, 0.01],
'swap':[0.0, 0.01], 'up':[0.0, 0.01], 'down':[0.0, 0.01]}
# create dictionaries # create dictionaries
self.dict_orders = {'6':'bat', '1':'cpu', '7':'cpuclock', 'f':'custom', '9':'gpu', self.dict_orders = {'6':'bat', '1':'cpu', '7':'cpuclock', 'f':'custom', '9':'gpu',
@ -176,6 +197,7 @@ class pyTextWidget(plasmascript.Applet):
self.swapText() self.swapText()
if (self.tempBool > 0): if (self.tempBool > 0):
self.tempText() self.tempText()
self.updateTooltip()
def batText(self): def batText(self):

View File

@ -85,6 +85,15 @@ class Reinit():
self.parent.player_name = settings.get('player_name', 0).toInt()[0] self.parent.player_name = settings.get('player_name', 0).toInt()[0]
self.parent.custom_command = str(settings.get('custom_command', 'wget -qO- http://ifconfig.me/ip')) self.parent.custom_command = str(settings.get('custom_command', 'wget -qO- http://ifconfig.me/ip'))
self.parent.tooltipNum = settings.get('tooltip_num', 100).toInt()[0]
self.parent.tooltipColors['cpu'] = str(settings.get('cpu_color', '#ff0000'))
self.parent.tooltipColors['cpuclock'] = str(settings.get('cpuclock_color', '#00ff00'))
self.parent.tooltipColors['mem'] = str(settings.get('mem_color', '#0000ff'))
self.parent.tooltipColors['swap'] = str(settings.get('swap_color', '#ffff00'))
self.parent.tooltipColors['down'] = str(settings.get('down_color', '#00ffff'))
self.parent.tooltipColors['up'] = str(settings.get('up_color', '#ff00ff'))
self.parent.tooltipReq = []
self.parent.label_order = str(settings.get('label_order', '1345')) self.parent.label_order = str(settings.get('label_order', '1345'))
for label in self.parent.dict_orders.values(): for label in self.parent.dict_orders.values():
if ((label == 'cpu') or (label == 'mem') or (label == 'swap') or (label == 'net')): if ((label == 'cpu') or (label == 'mem') or (label == 'swap') or (label == 'net')):
@ -102,6 +111,8 @@ class Reinit():
text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1] text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1]
self.parent.label_cpu.setText(text) self.parent.label_cpu.setText(text)
self.parent.layout.addItem(self.parent.label_cpu) self.parent.layout.addItem(self.parent.label_cpu)
if (self.parent.cpuBool == 2):
self.parent.tooltipReq.append('cpu')
elif (order == "2"): elif (order == "2"):
if (self.parent.tempBool > 0): if (self.parent.tempBool > 0):
self.parent.tempFormat = str(settings.get('tempFormat', '[temp: $temp0°C]')) self.parent.tempFormat = str(settings.get('tempFormat', '[temp: $temp0°C]'))
@ -125,6 +136,8 @@ class Reinit():
text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1] text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1]
self.parent.label_mem.setText(text) self.parent.label_mem.setText(text)
self.parent.layout.addItem(self.parent.label_mem) self.parent.layout.addItem(self.parent.label_mem)
if (self.parent.memBool == 2):
self.parent.tooltipReq.append('mem')
elif (order == "4"): elif (order == "4"):
if (self.parent.swapBool > 0): if (self.parent.swapBool > 0):
self.parent.swapFormat = str(settings.get('swapFormat', '[swap: $swap%]')) self.parent.swapFormat = str(settings.get('swapFormat', '[swap: $swap%]'))
@ -139,6 +152,8 @@ class Reinit():
text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1] text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1]
self.parent.label_swap.setText(text) self.parent.label_swap.setText(text)
self.parent.layout.addItem(self.parent.label_swap) self.parent.layout.addItem(self.parent.label_swap)
if (self.parent.swapBool == 2):
self.parent.tooltipReq.append('swap')
elif (order == "5"): elif (order == "5"):
if (self.parent.netBool > 0): if (self.parent.netBool > 0):
self.parent.netNonFormat = str(settings.get('netNonFormat', '[net: $down/$upKB/s]')) self.parent.netNonFormat = str(settings.get('netNonFormat', '[net: $down/$upKB/s]'))
@ -155,6 +170,9 @@ class Reinit():
text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1] text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1]
self.parent.label_net.setText(text) self.parent.label_net.setText(text)
self.parent.layout.addItem(self.parent.label_net) self.parent.layout.addItem(self.parent.label_net)
if (self.parent.netBool == 2):
self.parent.tooltipReq.append('down')
self.parent.tooltipReq.append('up')
elif (order == "6"): elif (order == "6"):
if (self.parent.batBool > 0): if (self.parent.batBool > 0):
self.parent.batFormat = str(settings.get('batFormat', '[bat: $bat%$ac]')) self.parent.batFormat = str(settings.get('batFormat', '[bat: $bat%$ac]'))
@ -171,6 +189,8 @@ class Reinit():
text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1] text = self.parent.formatLine.split('$LINE')[0] + line + self.parent.formatLine.split('$LINE')[1]
self.parent.label_cpuclock.setText(text) self.parent.label_cpuclock.setText(text)
self.parent.layout.addItem(self.parent.label_cpuclock) self.parent.layout.addItem(self.parent.label_cpuclock)
if (self.parent.cpuclockBool == 2):
self.parent.tooltipReq.append('cpuclock')
elif (order == "8"): elif (order == "8"):
if (self.parent.uptimeBool > 0): if (self.parent.uptimeBool > 0):
self.parent.uptimeFormat = str(settings.get('uptimeFormat', '[uptime: $uptime]')) self.parent.uptimeFormat = str(settings.get('uptimeFormat', '[uptime: $uptime]'))

View File

@ -0,0 +1,65 @@
# -*- coding: utf-8 -*-
############################################################################
# This file is part of pytextmonitor #
# #
# pytextmonitor is free software: you can redistribute it and/or #
# modify it under the terms of the GNU General Public License as #
# published by the Free Software Foundation, either version 3 of the #
# License, or (at your option) any later version. #
# #
# pytextmonitor is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with pytextmonitor. If not, see http://www.gnu.org/licenses/ #
############################################################################
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class Tooltip():
def __init__(self, parent):
"""class definition"""
self.parent = parent
def addValue(self, type, value=0.0, tooltipNum=100):
"""function to add value to list"""
if (len(self.parent.tooltipValues[type]) > tooltipNum):
self.parent.tooltipValues[type] = self.parent.tooltipValues[type][1:]
self.parent.tooltipValues[type].append(value)
def createGraphic(self, types, colors, values, widget):
"""function to create graph"""
widget.clear()
maxOne = [100.0, 100.0]
pen = QPen()
down = False
for type in types:
bound = [values[type][0], values[type][0]]
for value in values[type]:
if (value < bound[0]):
bound[0] = value
elif (value > bound[1]):
bound[1] = value
norm = [maxOne[0] / len(values[type]), maxOne[1] / (1.5*(bound[1] - bound[0]))]
pen.setColor(QColor(colors[type]))
if (down):
shift = (types.index(type) - 1) * maxOne[0]
else:
shift = types.index(type) * maxOne[0]
for i in range(len(values[type])-1):
x1 = i * norm[0] + shift
y1 = -(values[type][i] - bound[0]) * norm[1]
x2 = (i + 1) * norm[0] + shift
y2 = -(values[type][i+1] - bound[0]) * norm[1]
widget.addLine(x1, y1, x2, y2, pen)
if (type == 'down'):
down = True

View File

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>575</width> <width>575</width>
<height>538</height> <height>593</height>
</rect> </rect>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
@ -50,6 +50,9 @@
<property name="alignment"> <property name="alignment">
<set>Qt::AlignCenter</set> <set>Qt::AlignCenter</set>
</property> </property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -186,6 +189,9 @@ $custom - custom format</string>
<property name="checked"> <property name="checked">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="tristate">
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -247,6 +253,9 @@ $cpu7 - load CPU for core 7, %</string>
<property name="checked"> <property name="checked">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="tristate">
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -482,6 +491,9 @@ $cpucl7 - CPU clock for core 7, MHz</string>
<property name="checked"> <property name="checked">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="tristate">
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -541,6 +553,9 @@ $memmb - RAM usage, MB</string>
<property name="checked"> <property name="checked">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="tristate">
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -716,6 +731,9 @@ $swapmb - swap usage, MB</string>
<property name="checked"> <property name="checked">
<bool>true</bool> <bool>true</bool>
</property> </property>
<property name="tristate">
<bool>true</bool>
</property>
</widget> </widget>
</item> </item>
<item> <item>
@ -1380,7 +1398,7 @@ wget -qO- http://ifconfig.me/ip - get external IP</string>
</layout> </layout>
</item> </item>
<item> <item>
<spacer name="spacer_advenced"> <spacer name="spacer_advanced">
<property name="orientation"> <property name="orientation">
<enum>Qt::Vertical</enum> <enum>Qt::Vertical</enum>
</property> </property>
@ -1394,6 +1412,334 @@ wget -qO- http://ifconfig.me/ip - get external IP</string>
</item> </item>
</layout> </layout>
</widget> </widget>
<widget class="QWidget" name="tab">
<attribute name="title">
<string>Tooltip</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_4">
<item>
<widget class="QLabel" name="label_tooltip">
<property name="text">
<string>CPU, CPU clock, memory, swap and network labels support graphical tooltip. To enable them just make needed checkbox fully checked.</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="layout_tooltipNum">
<item>
<widget class="QLabel" name="label_tooltipNum">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Number of values for tooltips</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_tooltipNum">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>19</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QSpinBox" name="spinBox_tooltipNum">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="minimum">
<number>50</number>
</property>
<property name="maximum">
<number>1000</number>
</property>
<property name="singleStep">
<number>25</number>
</property>
<property name="value">
<number>100</number>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layout_cpuColor">
<item>
<widget class="QLabel" name="label_cpuColor">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>CPU color</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_cpuColor">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="KColorCombo" name="kcolorcombo_cpu">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layout_cpuclockColor">
<item>
<widget class="QLabel" name="label_cpuclockColor">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>CPU clock color</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_cpuclockColor">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="KColorCombo" name="kcolorcombo_cpuclock">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layout_memColor">
<item>
<widget class="QLabel" name="label_memColor">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Memory color</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_memColor">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="KColorCombo" name="kcolorcombo_mem">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layout_swapColor">
<item>
<widget class="QLabel" name="label_swapColor">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Swap color</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_swapColor">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="KColorCombo" name="kcolorcombo_swap">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layout_downColor">
<item>
<widget class="QLabel" name="label_downColor">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Download speed color</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_downColor">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="KColorCombo" name="kcolorcombo_down">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="layout_upColor">
<item>
<widget class="QLabel" name="label_upColor">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Upload speed color</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_upColor">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="KColorCombo" name="kcolorcombo_up">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
</widget>
</item>
</layout>
</item>
<item>
<spacer name="spacer_tooltip">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>289</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
<widget class="QWidget" name="appearance"> <widget class="QWidget" name="appearance">
<attribute name="title"> <attribute name="title">
<string>Appearance</string> <string>Appearance</string>
@ -1785,6 +2131,13 @@ wget -qO- http://ifconfig.me/ip - get external IP</string>
<tabstop>lineEdit_acdev</tabstop> <tabstop>lineEdit_acdev</tabstop>
<tabstop>comboBox_playerSelect</tabstop> <tabstop>comboBox_playerSelect</tabstop>
<tabstop>lineEdit_customCommand</tabstop> <tabstop>lineEdit_customCommand</tabstop>
<tabstop>spinBox_tooltipNum</tabstop>
<tabstop>kcolorcombo_cpu</tabstop>
<tabstop>kcolorcombo_cpuclock</tabstop>
<tabstop>kcolorcombo_mem</tabstop>
<tabstop>kcolorcombo_swap</tabstop>
<tabstop>kcolorcombo_down</tabstop>
<tabstop>kcolorcombo_up</tabstop>
<tabstop>spinBox_interval</tabstop> <tabstop>spinBox_interval</tabstop>
<tabstop>fontComboBox</tabstop> <tabstop>fontComboBox</tabstop>
<tabstop>spinBox_fontSize</tabstop> <tabstop>spinBox_fontSize</tabstop>

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n" "Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n"
"POT-Creation-Date: 2014-04-01 23:36+0400\n" "POT-Creation-Date: 2014-04-02 20:48+0400\n"
"PO-Revision-Date: 2014-04-01 23:39+0400\n" "PO-Revision-Date: 2014-04-02 20:49+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n" "Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n" "Language: ru\n"
@ -40,13 +40,13 @@ msgstr ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/" "Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"pytextmonitor/\">project homepage</a>" "pytextmonitor/\">project homepage</a>"
#. i18n: file: ui/configwindow.ui:66 #. i18n: file: ui/configwindow.ui:69
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
#: rc.cpp:12 #: rc.cpp:12
msgid "Time" msgid "Time"
msgstr "Time" msgstr "Time"
#. i18n: file: ui/configwindow.ui:80 #. i18n: file: ui/configwindow.ui:83
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
#: rc.cpp:15 #: rc.cpp:15
msgid "" msgid ""
@ -62,13 +62,13 @@ msgstr ""
"$longtime - time in log format\n" "$longtime - time in log format\n"
"$custom - custom time format" "$custom - custom time format"
#. i18n: file: ui/configwindow.ui:125 #. i18n: file: ui/configwindow.ui:128
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
#: rc.cpp:22 #: rc.cpp:22
msgid "Uptime" msgid "Uptime"
msgstr "Uptime" msgstr "Uptime"
#. i18n: file: ui/configwindow.ui:136 #. i18n: file: ui/configwindow.ui:139
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
#: rc.cpp:25 #: rc.cpp:25
msgid "" msgid ""
@ -78,13 +78,13 @@ msgstr ""
"$uptime - system uptime\n" "$uptime - system uptime\n"
"$custom - custom format" "$custom - custom format"
#. i18n: file: ui/configwindow.ui:184 #. i18n: file: ui/configwindow.ui:187
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
#: rc.cpp:29 #: rc.cpp:29
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#. i18n: file: ui/configwindow.ui:197 #. i18n: file: ui/configwindow.ui:203
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
#: rc.cpp:33 #: rc.cpp:33
#, no-c-format #, no-c-format
@ -99,13 +99,13 @@ msgstr ""
"...\n" "...\n"
"$cpu7 - load CPU for core 7, %" "$cpu7 - load CPU for core 7, %"
#. i18n: file: ui/configwindow.ui:245 #. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
#: rc.cpp:39 #: rc.cpp:39
msgid "CPU Clock" msgid "CPU Clock"
msgstr "CPU Clock" msgstr "CPU Clock"
#. i18n: file: ui/configwindow.ui:258 #. i18n: file: ui/configwindow.ui:267
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
#: rc.cpp:42 #: rc.cpp:42
msgid "" msgid ""
@ -119,50 +119,50 @@ msgstr ""
"...\n" "...\n"
"$cpucl7 - CPU clock for core 7, MHz" "$cpucl7 - CPU clock for core 7, MHz"
#. i18n: file: ui/configwindow.ui:306 #. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
#: rc.cpp:48 #: rc.cpp:48
msgid "Temperature" msgid "Temperature"
msgstr "Temperature" msgstr "Temperature"
#. i18n: file: ui/configwindow.ui:316 #. i18n: file: ui/configwindow.ui:325
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
#: rc.cpp:51 #: rc.cpp:51
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0" msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
msgstr "$tempN - physical temperature on device N (from 0). Example: $temp0" msgstr "$tempN - physical temperature on device N (from 0). Example: $temp0"
#. i18n: file: ui/configwindow.ui:364 #. i18n: file: ui/configwindow.ui:373
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
#: rc.cpp:54 #: rc.cpp:54
msgid "GPU" msgid "GPU"
msgstr "GPU" msgstr "GPU"
#. i18n: file: ui/configwindow.ui:374 #. i18n: file: ui/configwindow.ui:383
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
#: rc.cpp:58 #: rc.cpp:58
#, no-c-format #, no-c-format
msgid "$gpu - gpu usage, %" msgid "$gpu - gpu usage, %"
msgstr "$gpu - gpu usage, %" msgstr "$gpu - gpu usage, %"
#. i18n: file: ui/configwindow.ui:422 #. i18n: file: ui/configwindow.ui:431
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
#: rc.cpp:61 #: rc.cpp:61
msgid "GPU Temp" msgid "GPU Temp"
msgstr "GPU Temp" msgstr "GPU Temp"
#. i18n: file: ui/configwindow.ui:432 #. i18n: file: ui/configwindow.ui:441
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
#: rc.cpp:64 #: rc.cpp:64
msgid "$gputemp - physical temperature on GPU" msgid "$gputemp - physical temperature on GPU"
msgstr "$gputemp - physical temperature on GPU" msgstr "$gputemp - physical temperature on GPU"
#. i18n: file: ui/configwindow.ui:480 #. i18n: file: ui/configwindow.ui:489
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
#: rc.cpp:67 #: rc.cpp:67
msgid "Memory" msgid "Memory"
msgstr "Memory" msgstr "Memory"
#. i18n: file: ui/configwindow.ui:491 #. i18n: file: ui/configwindow.ui:503
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:71 #: rc.cpp:71
#, no-c-format #, no-c-format
@ -173,13 +173,13 @@ msgstr ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB"
#. i18n: file: ui/configwindow.ui:539 #. i18n: file: ui/configwindow.ui:551
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75 #: rc.cpp:75
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#. i18n: file: ui/configwindow.ui:550 #. i18n: file: ui/configwindow.ui:565
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79 #: rc.cpp:79
#, no-c-format #, no-c-format
@ -190,26 +190,26 @@ msgstr ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB"
#. i18n: file: ui/configwindow.ui:598 #. i18n: file: ui/configwindow.ui:613
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#: rc.cpp:83 #: rc.cpp:83
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:608 #. i18n: file: ui/configwindow.ui:623
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87 #: rc.cpp:87
#, no-c-format #, no-c-format
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0" msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
msgstr "$hddN - usage for mount point N (from 0), %. Example: $hdd0" msgstr "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
#. i18n: file: ui/configwindow.ui:656 #. i18n: file: ui/configwindow.ui:671
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90 #: rc.cpp:90
msgid "HDD Temp" msgid "HDD Temp"
msgstr "HDD Temp" msgstr "HDD Temp"
#. i18n: file: ui/configwindow.ui:666 #. i18n: file: ui/configwindow.ui:681
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93 #: rc.cpp:93
msgid "" msgid ""
@ -217,13 +217,13 @@ msgid ""
msgstr "" msgstr ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
#. i18n: file: ui/configwindow.ui:714 #. i18n: file: ui/configwindow.ui:729
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96 #: rc.cpp:96
msgid "Network" msgid "Network"
msgstr "Network" msgstr "Network"
#. i18n: file: ui/configwindow.ui:726 #. i18n: file: ui/configwindow.ui:744
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99 #: rc.cpp:99
msgid "" msgid ""
@ -235,13 +235,13 @@ msgstr ""
"$up - upload speed, KB/s\n" "$up - upload speed, KB/s\n"
"$netdev - current network device" "$netdev - current network device"
#. i18n: file: ui/configwindow.ui:774 #. i18n: file: ui/configwindow.ui:792
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104 #: rc.cpp:104
msgid "Battery" msgid "Battery"
msgstr "Battery" msgstr "Battery"
#. i18n: file: ui/configwindow.ui:785 #. i18n: file: ui/configwindow.ui:803
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108 #: rc.cpp:108
#, no-c-format #, no-c-format
@ -252,15 +252,15 @@ msgstr ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
"$ac - AC status" "$ac - AC status"
#. i18n: file: ui/configwindow.ui:833 #. i18n: file: ui/configwindow.ui:851
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1329 #. i18n: file: ui/configwindow.ui:1338
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:214 #: rc.cpp:112 rc.cpp:214
msgid "Music player" msgid "Music player"
msgstr "Music player" msgstr "Music player"
#. i18n: file: ui/configwindow.ui:847 #. i18n: file: ui/configwindow.ui:865
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115 #: rc.cpp:115
msgid "" msgid ""
@ -276,31 +276,31 @@ msgstr ""
"$time - song duration\n" "$time - song duration\n"
"$title - song title" "$title - song title"
#. i18n: file: ui/configwindow.ui:895 #. i18n: file: ui/configwindow.ui:913
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122 #: rc.cpp:122
msgid "Custom" msgid "Custom"
msgstr "Custom" msgstr "Custom"
#. i18n: file: ui/configwindow.ui:905 #. i18n: file: ui/configwindow.ui:923
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125 #: rc.cpp:125
msgid "$custom - get output from custom command" msgid "$custom - get output from custom command"
msgstr "$custom - get output from custom command" msgstr "$custom - get output from custom command"
#. i18n: file: ui/configwindow.ui:959 #. i18n: file: ui/configwindow.ui:977
#. i18n: ectx: attribute (title), widget (QWidget, advanced) #. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128 #: rc.cpp:128
msgid "Advanced" msgid "Advanced"
msgstr "Advanced" msgstr "Advanced"
#. i18n: file: ui/configwindow.ui:973 #. i18n: file: ui/configwindow.ui:991
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat) #. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131 #: rc.cpp:131
msgid "Custom time format" msgid "Custom time format"
msgstr "Custom time format" msgstr "Custom time format"
#. i18n: file: ui/configwindow.ui:995 #. i18n: file: ui/configwindow.ui:1013
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134 #: rc.cpp:134
msgid "" msgid ""
@ -338,13 +338,13 @@ msgstr ""
"$ss - seconds\n" "$ss - seconds\n"
"$s - seconds w\\o zero" "$s - seconds w\\o zero"
#. i18n: file: ui/configwindow.ui:1015 #. i18n: file: ui/configwindow.ui:1033
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat) #. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152 #: rc.cpp:152
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "Custom uptime format" msgstr "Custom uptime format"
#. i18n: file: ui/configwindow.ui:1024 #. i18n: file: ui/configwindow.ui:1042
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:155
msgid "" msgid ""
@ -356,27 +356,27 @@ msgstr ""
"$hs - uptime hours\n" "$hs - uptime hours\n"
"$ms - uptime minutes" "$ms - uptime minutes"
#. i18n: file: ui/configwindow.ui:1046 #. i18n: file: ui/configwindow.ui:1064
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:160 #: rc.cpp:160
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Temperature devices" msgstr "Temperature devices"
#. i18n: file: ui/configwindow.ui:1072 #. i18n: file: ui/configwindow.ui:1090
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1130 #. i18n: file: ui/configwindow.ui:1145
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1188 #. i18n: file: ui/configwindow.ui:1200
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:163 rc.cpp:173 rc.cpp:183 #: rc.cpp:163 rc.cpp:173 rc.cpp:183
msgid "Add" msgid "Add"
msgstr "Add" msgstr "Add"
#. i18n: file: ui/configwindow.ui:1082 #. i18n: file: ui/configwindow.ui:1100
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1140 #. i18n: file: ui/configwindow.ui:1155
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1198 #. i18n: file: ui/configwindow.ui:1210
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:166 rc.cpp:176 rc.cpp:186
msgid "" msgid ""
@ -386,91 +386,91 @@ msgstr ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
#. i18n: file: ui/configwindow.ui:1104 #. i18n: file: ui/configwindow.ui:1119
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:170 #: rc.cpp:170
msgid "Mount points" msgid "Mount points"
msgstr "Mount points" msgstr "Mount points"
#. i18n: file: ui/configwindow.ui:1162 #. i18n: file: ui/configwindow.ui:1174
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:180 #: rc.cpp:180
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD devices" msgstr "HDD devices"
#. i18n: file: ui/configwindow.ui:1218 #. i18n: file: ui/configwindow.ui:1227
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:190 #: rc.cpp:190
msgid "Network directory" msgid "Network directory"
msgstr "Network directory" msgstr "Network directory"
#. i18n: file: ui/configwindow.ui:1225 #. i18n: file: ui/configwindow.ui:1234
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:193 #: rc.cpp:193
msgid "\"/sys/class/net\" by default" msgid "\"/sys/class/net\" by default"
msgstr "\"/sys/class/net\" by default" msgstr "\"/sys/class/net\" by default"
#. i18n: file: ui/configwindow.ui:1245 #. i18n: file: ui/configwindow.ui:1254
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:196 #: rc.cpp:196
msgid "Disable auto select device and set specified device" msgid "Disable auto select device and set specified device"
msgstr "Disable auto select device and set specified device" msgstr "Disable auto select device and set specified device"
#. i18n: file: ui/configwindow.ui:1248 #. i18n: file: ui/configwindow.ui:1257
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:199
msgid "Set network device" msgid "Set network device"
msgstr "Set network device" msgstr "Set network device"
#. i18n: file: ui/configwindow.ui:1281 #. i18n: file: ui/configwindow.ui:1290
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:202 #: rc.cpp:202
msgid "Battery device" msgid "Battery device"
msgstr "Battery device" msgstr "Battery device"
#. i18n: file: ui/configwindow.ui:1288 #. i18n: file: ui/configwindow.ui:1297
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:205 #: rc.cpp:205
msgid "\"/sys/class/power_supply/BAT0/capacity\" by default" msgid "\"/sys/class/power_supply/BAT0/capacity\" by default"
msgstr "\"/sys/class/power_supply/BAT0/capacity\" by default" msgstr "\"/sys/class/power_supply/BAT0/capacity\" by default"
#. i18n: file: ui/configwindow.ui:1305 #. i18n: file: ui/configwindow.ui:1314
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:208 #: rc.cpp:208
msgid "AC device" msgid "AC device"
msgstr "AC device" msgstr "AC device"
#. i18n: file: ui/configwindow.ui:1312 #. i18n: file: ui/configwindow.ui:1321
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:211 #: rc.cpp:211
msgid "\"/sys/class/power_supply/AC/online\" by default" msgid "\"/sys/class/power_supply/AC/online\" by default"
msgstr "\"/sys/class/power_supply/AC/online\" by default" msgstr "\"/sys/class/power_supply/AC/online\" by default"
#. i18n: file: ui/configwindow.ui:1349 #. i18n: file: ui/configwindow.ui:1358
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:217 #: rc.cpp:217
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1354 #. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:220 #: rc.cpp:220
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1359 #. i18n: file: ui/configwindow.ui:1368
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223 #: rc.cpp:223
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1377 #. i18n: file: ui/configwindow.ui:1386
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:226 #: rc.cpp:226
msgid "Custom command" msgid "Custom command"
msgstr "Custom command" msgstr "Custom command"
#. i18n: file: ui/configwindow.ui:1385 #. i18n: file: ui/configwindow.ui:1394
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:229 #: rc.cpp:229
msgid "" msgid ""
@ -480,54 +480,112 @@ msgstr ""
"Command to run, example:\n" "Command to run, example:\n"
"wget -qO- http://ifconfig.me/ip - get external IP" "wget -qO- http://ifconfig.me/ip - get external IP"
#. i18n: file: ui/configwindow.ui:1408 #. i18n: file: ui/configwindow.ui:1417
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:233 #: rc.cpp:233
msgid "Tooltip"
msgstr "Tooltip"
#. i18n: file: ui/configwindow.ui:1423
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:236
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
msgstr ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
#. i18n: file: ui/configwindow.ui:1444
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:239
msgid "Number of values for tooltips"
msgstr "Number of values for tooltips"
#. i18n: file: ui/configwindow.ui:1499
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:242
msgid "CPU color"
msgstr "CPU color"
#. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:245
msgid "CPU clock color"
msgstr "CPU clock color"
#. i18n: file: ui/configwindow.ui:1579
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:248
msgid "Memory color"
msgstr "Memory color"
#. i18n: file: ui/configwindow.ui:1619
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:251
msgid "Swap color"
msgstr "Swap color"
#. i18n: file: ui/configwindow.ui:1659
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:254
msgid "Download speed color"
msgstr "Download speed color"
#. i18n: file: ui/configwindow.ui:1699
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:257
msgid "Upload speed color"
msgstr "Upload speed color"
#. i18n: file: ui/configwindow.ui:1745
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:260
msgid "Appearance" msgid "Appearance"
msgstr "Appearance" msgstr "Appearance"
#. i18n: file: ui/configwindow.ui:1422 #. i18n: file: ui/configwindow.ui:1759
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:236 #: rc.cpp:263
msgid "Time interval" msgid "Time interval"
msgstr "Time interval" msgstr "Time interval"
#. i18n: file: ui/configwindow.ui:1477 #. i18n: file: ui/configwindow.ui:1814
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:239 #: rc.cpp:266
msgid "Font" msgid "Font"
msgstr "Font" msgstr "Font"
#. i18n: file: ui/configwindow.ui:1517 #. i18n: file: ui/configwindow.ui:1854
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:242 #: rc.cpp:269
msgid "Font size" msgid "Font size"
msgstr "Font size" msgstr "Font size"
#. i18n: file: ui/configwindow.ui:1572 #. i18n: file: ui/configwindow.ui:1909
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:245 #: rc.cpp:272
msgid "Font color" msgid "Font color"
msgstr "Font color" msgstr "Font color"
#. i18n: file: ui/configwindow.ui:1612 #. i18n: file: ui/configwindow.ui:1949
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:248 #: rc.cpp:275
msgid "Font style" msgid "Font style"
msgstr "Font style" msgstr "Font style"
#. i18n: file: ui/configwindow.ui:1662 #. i18n: file: ui/configwindow.ui:1999
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:251 #: rc.cpp:278
msgid "Font weight" msgid "Font weight"
msgstr "Font weight" msgstr "Font weight"
#: rc.cpp:252 #: rc.cpp:279
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:253 #: rc.cpp:280
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n" "Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n"
"POT-Creation-Date: 2014-04-01 23:36+0400\n" "POT-Creation-Date: 2014-04-02 20:48+0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -37,13 +37,13 @@ msgid ""
"pytextmonitor/\">project homepage</a>" "pytextmonitor/\">project homepage</a>"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:66 #. i18n: file: ui/configwindow.ui:69
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
#: rc.cpp:12 #: rc.cpp:12
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:80 #. i18n: file: ui/configwindow.ui:83
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
#: rc.cpp:15 #: rc.cpp:15
msgid "" msgid ""
@ -54,13 +54,13 @@ msgid ""
"$custom - custom time format" "$custom - custom time format"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:125 #. i18n: file: ui/configwindow.ui:128
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
#: rc.cpp:22 #: rc.cpp:22
msgid "Uptime" msgid "Uptime"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:136 #. i18n: file: ui/configwindow.ui:139
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
#: rc.cpp:25 #: rc.cpp:25
msgid "" msgid ""
@ -68,13 +68,13 @@ msgid ""
"$custom - custom format" "$custom - custom format"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:184 #. i18n: file: ui/configwindow.ui:187
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
#: rc.cpp:29 #: rc.cpp:29
msgid "CPU" msgid "CPU"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:197 #. i18n: file: ui/configwindow.ui:203
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
#: rc.cpp:33 #: rc.cpp:33
#, no-c-format #, no-c-format
@ -85,13 +85,13 @@ msgid ""
"$cpu7 - load CPU for core 7, %" "$cpu7 - load CPU for core 7, %"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:245 #. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
#: rc.cpp:39 #: rc.cpp:39
msgid "CPU Clock" msgid "CPU Clock"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:258 #. i18n: file: ui/configwindow.ui:267
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
#: rc.cpp:42 #: rc.cpp:42
msgid "" msgid ""
@ -101,50 +101,50 @@ msgid ""
"$cpucl7 - CPU clock for core 7, MHz" "$cpucl7 - CPU clock for core 7, MHz"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:306 #. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
#: rc.cpp:48 #: rc.cpp:48
msgid "Temperature" msgid "Temperature"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:316 #. i18n: file: ui/configwindow.ui:325
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
#: rc.cpp:51 #: rc.cpp:51
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0" msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:364 #. i18n: file: ui/configwindow.ui:373
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
#: rc.cpp:54 #: rc.cpp:54
msgid "GPU" msgid "GPU"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:374 #. i18n: file: ui/configwindow.ui:383
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
#: rc.cpp:58 #: rc.cpp:58
#, no-c-format #, no-c-format
msgid "$gpu - gpu usage, %" msgid "$gpu - gpu usage, %"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:422 #. i18n: file: ui/configwindow.ui:431
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
#: rc.cpp:61 #: rc.cpp:61
msgid "GPU Temp" msgid "GPU Temp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:432 #. i18n: file: ui/configwindow.ui:441
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
#: rc.cpp:64 #: rc.cpp:64
msgid "$gputemp - physical temperature on GPU" msgid "$gputemp - physical temperature on GPU"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:480 #. i18n: file: ui/configwindow.ui:489
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
#: rc.cpp:67 #: rc.cpp:67
msgid "Memory" msgid "Memory"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:491 #. i18n: file: ui/configwindow.ui:503
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:71 #: rc.cpp:71
#, no-c-format #, no-c-format
@ -153,13 +153,13 @@ msgid ""
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:539 #. i18n: file: ui/configwindow.ui:551
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75 #: rc.cpp:75
msgid "Swap" msgid "Swap"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:550 #. i18n: file: ui/configwindow.ui:565
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79 #: rc.cpp:79
#, no-c-format #, no-c-format
@ -168,39 +168,39 @@ msgid ""
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:598 #. i18n: file: ui/configwindow.ui:613
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#: rc.cpp:83 #: rc.cpp:83
msgid "HDD" msgid "HDD"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:608 #. i18n: file: ui/configwindow.ui:623
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87 #: rc.cpp:87
#, no-c-format #, no-c-format
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0" msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:656 #. i18n: file: ui/configwindow.ui:671
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90 #: rc.cpp:90
msgid "HDD Temp" msgid "HDD Temp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:666 #. i18n: file: ui/configwindow.ui:681
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93 #: rc.cpp:93
msgid "" msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:714 #. i18n: file: ui/configwindow.ui:729
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96 #: rc.cpp:96
msgid "Network" msgid "Network"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:726 #. i18n: file: ui/configwindow.ui:744
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99 #: rc.cpp:99
msgid "" msgid ""
@ -209,13 +209,13 @@ msgid ""
"$netdev - current network device" "$netdev - current network device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:774 #. i18n: file: ui/configwindow.ui:792
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104 #: rc.cpp:104
msgid "Battery" msgid "Battery"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:785 #. i18n: file: ui/configwindow.ui:803
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108 #: rc.cpp:108
#, no-c-format #, no-c-format
@ -224,15 +224,15 @@ msgid ""
"$ac - AC status" "$ac - AC status"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:833 #. i18n: file: ui/configwindow.ui:851
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1329 #. i18n: file: ui/configwindow.ui:1338
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:214 #: rc.cpp:112 rc.cpp:214
msgid "Music player" msgid "Music player"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:847 #. i18n: file: ui/configwindow.ui:865
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115 #: rc.cpp:115
msgid "" msgid ""
@ -243,31 +243,31 @@ msgid ""
"$title - song title" "$title - song title"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:895 #. i18n: file: ui/configwindow.ui:913
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122 #: rc.cpp:122
msgid "Custom" msgid "Custom"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:905 #. i18n: file: ui/configwindow.ui:923
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125 #: rc.cpp:125
msgid "$custom - get output from custom command" msgid "$custom - get output from custom command"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:959 #. i18n: file: ui/configwindow.ui:977
#. i18n: ectx: attribute (title), widget (QWidget, advanced) #. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128 #: rc.cpp:128
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:973 #. i18n: file: ui/configwindow.ui:991
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat) #. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131 #: rc.cpp:131
msgid "Custom time format" msgid "Custom time format"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:995 #. i18n: file: ui/configwindow.ui:1013
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134 #: rc.cpp:134
msgid "" msgid ""
@ -289,13 +289,13 @@ msgid ""
"$s - seconds w\\o zero" "$s - seconds w\\o zero"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1015 #. i18n: file: ui/configwindow.ui:1033
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat) #. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152 #: rc.cpp:152
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1024 #. i18n: file: ui/configwindow.ui:1042
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:155
msgid "" msgid ""
@ -304,27 +304,27 @@ msgid ""
"$ms - uptime minutes" "$ms - uptime minutes"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1046 #. i18n: file: ui/configwindow.ui:1064
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:160 #: rc.cpp:160
msgid "Temperature devices" msgid "Temperature devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1072 #. i18n: file: ui/configwindow.ui:1090
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1130 #. i18n: file: ui/configwindow.ui:1145
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1188 #. i18n: file: ui/configwindow.ui:1200
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:163 rc.cpp:173 rc.cpp:183 #: rc.cpp:163 rc.cpp:173 rc.cpp:183
msgid "Add" msgid "Add"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1082 #. i18n: file: ui/configwindow.ui:1100
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1140 #. i18n: file: ui/configwindow.ui:1155
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1198 #. i18n: file: ui/configwindow.ui:1210
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:166 rc.cpp:176 rc.cpp:186
msgid "" msgid ""
@ -332,91 +332,91 @@ msgid ""
"del - remove item" "del - remove item"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1104 #. i18n: file: ui/configwindow.ui:1119
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:170 #: rc.cpp:170
msgid "Mount points" msgid "Mount points"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1162 #. i18n: file: ui/configwindow.ui:1174
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:180 #: rc.cpp:180
msgid "HDD devices" msgid "HDD devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1218 #. i18n: file: ui/configwindow.ui:1227
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:190 #: rc.cpp:190
msgid "Network directory" msgid "Network directory"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1225 #. i18n: file: ui/configwindow.ui:1234
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:193 #: rc.cpp:193
msgid "\"/sys/class/net\" by default" msgid "\"/sys/class/net\" by default"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1245 #. i18n: file: ui/configwindow.ui:1254
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:196 #: rc.cpp:196
msgid "Disable auto select device and set specified device" msgid "Disable auto select device and set specified device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1248 #. i18n: file: ui/configwindow.ui:1257
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:199
msgid "Set network device" msgid "Set network device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1281 #. i18n: file: ui/configwindow.ui:1290
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:202 #: rc.cpp:202
msgid "Battery device" msgid "Battery device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1288 #. i18n: file: ui/configwindow.ui:1297
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:205 #: rc.cpp:205
msgid "\"/sys/class/power_supply/BAT0/capacity\" by default" msgid "\"/sys/class/power_supply/BAT0/capacity\" by default"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1305 #. i18n: file: ui/configwindow.ui:1314
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:208 #: rc.cpp:208
msgid "AC device" msgid "AC device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1312 #. i18n: file: ui/configwindow.ui:1321
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:211 #: rc.cpp:211
msgid "\"/sys/class/power_supply/AC/online\" by default" msgid "\"/sys/class/power_supply/AC/online\" by default"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1349 #. i18n: file: ui/configwindow.ui:1358
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:217 #: rc.cpp:217
msgid "amarok" msgid "amarok"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1354 #. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:220 #: rc.cpp:220
msgid "mpd" msgid "mpd"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1359 #. i18n: file: ui/configwindow.ui:1368
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223 #: rc.cpp:223
msgid "qmmp" msgid "qmmp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1377 #. i18n: file: ui/configwindow.ui:1386
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:226 #: rc.cpp:226
msgid "Custom command" msgid "Custom command"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1385 #. i18n: file: ui/configwindow.ui:1394
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:229 #: rc.cpp:229
msgid "" msgid ""
@ -424,54 +424,110 @@ msgid ""
"wget -qO- http://ifconfig.me/ip - get external IP" "wget -qO- http://ifconfig.me/ip - get external IP"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1408 #. i18n: file: ui/configwindow.ui:1417
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:233 #: rc.cpp:233
msgid "Tooltip"
msgstr ""
#. i18n: file: ui/configwindow.ui:1423
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:236
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
msgstr ""
#. i18n: file: ui/configwindow.ui:1444
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:239
msgid "Number of values for tooltips"
msgstr ""
#. i18n: file: ui/configwindow.ui:1499
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:242
msgid "CPU color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:245
msgid "CPU clock color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1579
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:248
msgid "Memory color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1619
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:251
msgid "Swap color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1659
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:254
msgid "Download speed color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1699
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:257
msgid "Upload speed color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1745
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:260
msgid "Appearance" msgid "Appearance"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1422 #. i18n: file: ui/configwindow.ui:1759
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:236 #: rc.cpp:263
msgid "Time interval" msgid "Time interval"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1477 #. i18n: file: ui/configwindow.ui:1814
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:239 #: rc.cpp:266
msgid "Font" msgid "Font"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1517 #. i18n: file: ui/configwindow.ui:1854
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:242 #: rc.cpp:269
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1572 #. i18n: file: ui/configwindow.ui:1909
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:245 #: rc.cpp:272
msgid "Font color" msgid "Font color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1612 #. i18n: file: ui/configwindow.ui:1949
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:248 #: rc.cpp:275
msgid "Font style" msgid "Font style"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1662 #. i18n: file: ui/configwindow.ui:1999
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:251 #: rc.cpp:278
msgid "Font weight" msgid "Font weight"
msgstr "" msgstr ""
#: rc.cpp:252 #: rc.cpp:279
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "" msgstr ""
#: rc.cpp:253 #: rc.cpp:280
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "" msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n" "Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n"
"POT-Creation-Date: 2014-04-01 23:36+0400\n" "POT-Creation-Date: 2014-04-02 20:48+0400\n"
"PO-Revision-Date: 2014-04-01 23:48+0400\n" "PO-Revision-Date: 2014-04-02 20:52+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n" "Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n" "Language: ru\n"
@ -40,13 +40,13 @@ msgstr ""
"Подробная информация может быть найдена на <a href=\"http://arcanis.name/ru/" "Подробная информация может быть найдена на <a href=\"http://arcanis.name/ru/"
"projects/pytextmonitor/\">домашней странице проекта</a>" "projects/pytextmonitor/\">домашней странице проекта</a>"
#. i18n: file: ui/configwindow.ui:66 #. i18n: file: ui/configwindow.ui:69
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
#: rc.cpp:12 #: rc.cpp:12
msgid "Time" msgid "Time"
msgstr "Время" msgstr "Время"
#. i18n: file: ui/configwindow.ui:80 #. i18n: file: ui/configwindow.ui:83
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
#: rc.cpp:15 #: rc.cpp:15
msgid "" msgid ""
@ -62,13 +62,13 @@ msgstr ""
"$longtime - время в длинном формате\n" "$longtime - время в длинном формате\n"
"$custom - свой формат времени" "$custom - свой формат времени"
#. i18n: file: ui/configwindow.ui:125 #. i18n: file: ui/configwindow.ui:128
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
#: rc.cpp:22 #: rc.cpp:22
msgid "Uptime" msgid "Uptime"
msgstr "Время работы" msgstr "Время работы"
#. i18n: file: ui/configwindow.ui:136 #. i18n: file: ui/configwindow.ui:139
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
#: rc.cpp:25 #: rc.cpp:25
msgid "" msgid ""
@ -78,13 +78,13 @@ msgstr ""
"$uptime - время работы\n" "$uptime - время работы\n"
"$custom - свой формат" "$custom - свой формат"
#. i18n: file: ui/configwindow.ui:184 #. i18n: file: ui/configwindow.ui:187
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
#: rc.cpp:29 #: rc.cpp:29
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#. i18n: file: ui/configwindow.ui:197 #. i18n: file: ui/configwindow.ui:203
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
#: rc.cpp:33 #: rc.cpp:33
#, no-c-format #, no-c-format
@ -99,13 +99,13 @@ msgstr ""
"...\n" "...\n"
"$cpu7 - загрузка CPU для ядра 7, %" "$cpu7 - загрузка CPU для ядра 7, %"
#. i18n: file: ui/configwindow.ui:245 #. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
#: rc.cpp:39 #: rc.cpp:39
msgid "CPU Clock" msgid "CPU Clock"
msgstr "Частота CPU" msgstr "Частота CPU"
#. i18n: file: ui/configwindow.ui:258 #. i18n: file: ui/configwindow.ui:267
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
#: rc.cpp:42 #: rc.cpp:42
msgid "" msgid ""
@ -119,50 +119,50 @@ msgstr ""
"...\n" "...\n"
"$cpucl7 - частота CPU для ядра 7, MHz" "$cpucl7 - частота CPU для ядра 7, MHz"
#. i18n: file: ui/configwindow.ui:306 #. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
#: rc.cpp:48 #: rc.cpp:48
msgid "Temperature" msgid "Temperature"
msgstr "Температура" msgstr "Температура"
#. i18n: file: ui/configwindow.ui:316 #. i18n: file: ui/configwindow.ui:325
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
#: rc.cpp:51 #: rc.cpp:51
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0" msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
msgstr "$tempN - физическая температура на устройстве N (от 0). Пример: $temp0" msgstr "$tempN - физическая температура на устройстве N (от 0). Пример: $temp0"
#. i18n: file: ui/configwindow.ui:364 #. i18n: file: ui/configwindow.ui:373
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
#: rc.cpp:54 #: rc.cpp:54
msgid "GPU" msgid "GPU"
msgstr "GPU" msgstr "GPU"
#. i18n: file: ui/configwindow.ui:374 #. i18n: file: ui/configwindow.ui:383
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
#: rc.cpp:58 #: rc.cpp:58
#, no-c-format #, no-c-format
msgid "$gpu - gpu usage, %" msgid "$gpu - gpu usage, %"
msgstr "$gpu - использование GPU, %" msgstr "$gpu - использование GPU, %"
#. i18n: file: ui/configwindow.ui:422 #. i18n: file: ui/configwindow.ui:431
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
#: rc.cpp:61 #: rc.cpp:61
msgid "GPU Temp" msgid "GPU Temp"
msgstr "Температура GPU" msgstr "Температура GPU"
#. i18n: file: ui/configwindow.ui:432 #. i18n: file: ui/configwindow.ui:441
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
#: rc.cpp:64 #: rc.cpp:64
msgid "$gputemp - physical temperature on GPU" msgid "$gputemp - physical temperature on GPU"
msgstr "$gputemp - физическая температура на GPU" msgstr "$gputemp - физическая температура на GPU"
#. i18n: file: ui/configwindow.ui:480 #. i18n: file: ui/configwindow.ui:489
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
#: rc.cpp:67 #: rc.cpp:67
msgid "Memory" msgid "Memory"
msgstr "Память" msgstr "Память"
#. i18n: file: ui/configwindow.ui:491 #. i18n: file: ui/configwindow.ui:503
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:71 #: rc.cpp:71
#, no-c-format #, no-c-format
@ -173,13 +173,13 @@ msgstr ""
"$mem - использование RAM, %\n" "$mem - использование RAM, %\n"
"$memmb - использование RAM, MB" "$memmb - использование RAM, MB"
#. i18n: file: ui/configwindow.ui:539 #. i18n: file: ui/configwindow.ui:551
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75 #: rc.cpp:75
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#. i18n: file: ui/configwindow.ui:550 #. i18n: file: ui/configwindow.ui:565
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79 #: rc.cpp:79
#, no-c-format #, no-c-format
@ -190,26 +190,26 @@ msgstr ""
"$swap - использование swap, %\n" "$swap - использование swap, %\n"
"$swapmb - использование swap, MB" "$swapmb - использование swap, MB"
#. i18n: file: ui/configwindow.ui:598 #. i18n: file: ui/configwindow.ui:613
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#: rc.cpp:83 #: rc.cpp:83
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:608 #. i18n: file: ui/configwindow.ui:623
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87 #: rc.cpp:87
#, no-c-format #, no-c-format
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0" msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
msgstr "$hddN - использование точки монтирования N (от 0), %. Пример: $hdd0" msgstr "$hddN - использование точки монтирования N (от 0), %. Пример: $hdd0"
#. i18n: file: ui/configwindow.ui:656 #. i18n: file: ui/configwindow.ui:671
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90 #: rc.cpp:90
msgid "HDD Temp" msgid "HDD Temp"
msgstr "Температура HDD" msgstr "Температура HDD"
#. i18n: file: ui/configwindow.ui:666 #. i18n: file: ui/configwindow.ui:681
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93 #: rc.cpp:93
msgid "" msgid ""
@ -218,13 +218,13 @@ msgstr ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0 " "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0 "
"$hddtempN - температура на устройстве N (от 0). Пример: $hddtemp0" "$hddtempN - температура на устройстве N (от 0). Пример: $hddtemp0"
#. i18n: file: ui/configwindow.ui:714 #. i18n: file: ui/configwindow.ui:729
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96 #: rc.cpp:96
msgid "Network" msgid "Network"
msgstr "Сеть" msgstr "Сеть"
#. i18n: file: ui/configwindow.ui:726 #. i18n: file: ui/configwindow.ui:744
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99 #: rc.cpp:99
msgid "" msgid ""
@ -236,13 +236,13 @@ msgstr ""
"$up - скорость загрузки, KB/s\n" "$up - скорость загрузки, KB/s\n"
"$netdev - текущее устройство" "$netdev - текущее устройство"
#. i18n: file: ui/configwindow.ui:774 #. i18n: file: ui/configwindow.ui:792
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104 #: rc.cpp:104
msgid "Battery" msgid "Battery"
msgstr "Батарея" msgstr "Батарея"
#. i18n: file: ui/configwindow.ui:785 #. i18n: file: ui/configwindow.ui:803
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108 #: rc.cpp:108
#, no-c-format #, no-c-format
@ -253,15 +253,15 @@ msgstr ""
"$bat - заряд батареи, %\n" "$bat - заряд батареи, %\n"
"$ac - статус адаптора питания" "$ac - статус адаптора питания"
#. i18n: file: ui/configwindow.ui:833 #. i18n: file: ui/configwindow.ui:851
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1329 #. i18n: file: ui/configwindow.ui:1338
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:214 #: rc.cpp:112 rc.cpp:214
msgid "Music player" msgid "Music player"
msgstr "Музыкальный плеер" msgstr "Музыкальный плеер"
#. i18n: file: ui/configwindow.ui:847 #. i18n: file: ui/configwindow.ui:865
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115 #: rc.cpp:115
msgid "" msgid ""
@ -277,31 +277,31 @@ msgstr ""
"$time - продолжительность\n" "$time - продолжительность\n"
"$title - название" "$title - название"
#. i18n: file: ui/configwindow.ui:895 #. i18n: file: ui/configwindow.ui:913
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122 #: rc.cpp:122
msgid "Custom" msgid "Custom"
msgstr "Своя команда" msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:905 #. i18n: file: ui/configwindow.ui:923
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125 #: rc.cpp:125
msgid "$custom - get output from custom command" msgid "$custom - get output from custom command"
msgstr "$custom - получить информацию из своей команды" msgstr "$custom - получить информацию из своей команды"
#. i18n: file: ui/configwindow.ui:959 #. i18n: file: ui/configwindow.ui:977
#. i18n: ectx: attribute (title), widget (QWidget, advanced) #. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128 #: rc.cpp:128
msgid "Advanced" msgid "Advanced"
msgstr "Расширенные" msgstr "Расширенные"
#. i18n: file: ui/configwindow.ui:973 #. i18n: file: ui/configwindow.ui:991
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat) #. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131 #: rc.cpp:131
msgid "Custom time format" msgid "Custom time format"
msgstr "Свой формат времени" msgstr "Свой формат времени"
#. i18n: file: ui/configwindow.ui:995 #. i18n: file: ui/configwindow.ui:1013
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134 #: rc.cpp:134
msgid "" msgid ""
@ -339,13 +339,13 @@ msgstr ""
"$ss - секунды\n" "$ss - секунды\n"
"$s - секунды без 0" "$s - секунды без 0"
#. i18n: file: ui/configwindow.ui:1015 #. i18n: file: ui/configwindow.ui:1033
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat) #. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152 #: rc.cpp:152
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "Свой формат аптайма" msgstr "Свой формат аптайма"
#. i18n: file: ui/configwindow.ui:1024 #. i18n: file: ui/configwindow.ui:1042
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:155
msgid "" msgid ""
@ -357,27 +357,27 @@ msgstr ""
"$hs - часы\n" "$hs - часы\n"
"$ms - минуты" "$ms - минуты"
#. i18n: file: ui/configwindow.ui:1046 #. i18n: file: ui/configwindow.ui:1064
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:160 #: rc.cpp:160
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Температурные устройства" msgstr "Температурные устройства"
#. i18n: file: ui/configwindow.ui:1072 #. i18n: file: ui/configwindow.ui:1090
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1130 #. i18n: file: ui/configwindow.ui:1145
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1188 #. i18n: file: ui/configwindow.ui:1200
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:163 rc.cpp:173 rc.cpp:183 #: rc.cpp:163 rc.cpp:173 rc.cpp:183
msgid "Add" msgid "Add"
msgstr "Добавить" msgstr "Добавить"
#. i18n: file: ui/configwindow.ui:1082 #. i18n: file: ui/configwindow.ui:1100
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1140 #. i18n: file: ui/configwindow.ui:1155
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1198 #. i18n: file: ui/configwindow.ui:1210
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:166 rc.cpp:176 rc.cpp:186
msgid "" msgid ""
@ -387,91 +387,91 @@ msgstr ""
"Редактируемо\n" "Редактируемо\n"
"del - удалить строку" "del - удалить строку"
#. i18n: file: ui/configwindow.ui:1104 #. i18n: file: ui/configwindow.ui:1119
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:170 #: rc.cpp:170
msgid "Mount points" msgid "Mount points"
msgstr "Точки монтирования" msgstr "Точки монтирования"
#. i18n: file: ui/configwindow.ui:1162 #. i18n: file: ui/configwindow.ui:1174
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:180 #: rc.cpp:180
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:1218 #. i18n: file: ui/configwindow.ui:1227
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:190 #: rc.cpp:190
msgid "Network directory" msgid "Network directory"
msgstr "Путь к интерфейсам" msgstr "Путь к интерфейсам"
#. i18n: file: ui/configwindow.ui:1225 #. i18n: file: ui/configwindow.ui:1234
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:193 #: rc.cpp:193
msgid "\"/sys/class/net\" by default" msgid "\"/sys/class/net\" by default"
msgstr "\"/sys/class/net\" по умолчанию" msgstr "\"/sys/class/net\" по умолчанию"
#. i18n: file: ui/configwindow.ui:1245 #. i18n: file: ui/configwindow.ui:1254
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:196 #: rc.cpp:196
msgid "Disable auto select device and set specified device" msgid "Disable auto select device and set specified device"
msgstr "Отключить авто выбор устройства и использовать указанное" msgstr "Отключить авто выбор устройства и использовать указанное"
#. i18n: file: ui/configwindow.ui:1248 #. i18n: file: ui/configwindow.ui:1257
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:199
msgid "Set network device" msgid "Set network device"
msgstr "Выберете сетевое устройство" msgstr "Выберете сетевое устройство"
#. i18n: file: ui/configwindow.ui:1281 #. i18n: file: ui/configwindow.ui:1290
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:202 #: rc.cpp:202
msgid "Battery device" msgid "Battery device"
msgstr "Устройство батареи" msgstr "Устройство батареи"
#. i18n: file: ui/configwindow.ui:1288 #. i18n: file: ui/configwindow.ui:1297
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:205 #: rc.cpp:205
msgid "\"/sys/class/power_supply/BAT0/capacity\" by default" msgid "\"/sys/class/power_supply/BAT0/capacity\" by default"
msgstr "\"/sys/class/power_supply/BAT0/capacity\" по умолчанию" msgstr "\"/sys/class/power_supply/BAT0/capacity\" по умолчанию"
#. i18n: file: ui/configwindow.ui:1305 #. i18n: file: ui/configwindow.ui:1314
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:208 #: rc.cpp:208
msgid "AC device" msgid "AC device"
msgstr "Устройство AC" msgstr "Устройство AC"
#. i18n: file: ui/configwindow.ui:1312 #. i18n: file: ui/configwindow.ui:1321
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:211 #: rc.cpp:211
msgid "\"/sys/class/power_supply/AC/online\" by default" msgid "\"/sys/class/power_supply/AC/online\" by default"
msgstr "\"/sys/class/power_supply/AC/online\" по умолчанию" msgstr "\"/sys/class/power_supply/AC/online\" по умолчанию"
#. i18n: file: ui/configwindow.ui:1349 #. i18n: file: ui/configwindow.ui:1358
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:217 #: rc.cpp:217
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1354 #. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:220 #: rc.cpp:220
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1359 #. i18n: file: ui/configwindow.ui:1368
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223 #: rc.cpp:223
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1377 #. i18n: file: ui/configwindow.ui:1386
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:226 #: rc.cpp:226
msgid "Custom command" msgid "Custom command"
msgstr "Своя команда" msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:1385 #. i18n: file: ui/configwindow.ui:1394
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:229 #: rc.cpp:229
msgid "" msgid ""
@ -481,54 +481,112 @@ msgstr ""
"Команда для запуска, например:\n" "Команда для запуска, например:\n"
"wget -qO- http://ifconfig.me/ip - получить внешний IP" "wget -qO- http://ifconfig.me/ip - получить внешний IP"
#. i18n: file: ui/configwindow.ui:1408 #. i18n: file: ui/configwindow.ui:1417
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, tab)
#: rc.cpp:233 #: rc.cpp:233
msgid "Tooltip"
msgstr "Тултип"
#. i18n: file: ui/configwindow.ui:1423
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:236
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
msgstr ""
"Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. "
"Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми."
#. i18n: file: ui/configwindow.ui:1444
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:239
msgid "Number of values for tooltips"
msgstr "Число хранящихся значений"
#. i18n: file: ui/configwindow.ui:1499
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:242
msgid "CPU color"
msgstr "Цвет CPU"
#. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:245
msgid "CPU clock color"
msgstr "Цвет частоты CPU"
#. i18n: file: ui/configwindow.ui:1579
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:248
msgid "Memory color"
msgstr "Цвет памяти"
#. i18n: file: ui/configwindow.ui:1619
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:251
msgid "Swap color"
msgstr "Цвет swap"
#. i18n: file: ui/configwindow.ui:1659
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:254
msgid "Download speed color"
msgstr "Цвет скорости загрузки"
#. i18n: file: ui/configwindow.ui:1699
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:257
msgid "Upload speed color"
msgstr "Цвет скорости отдачи"
#. i18n: file: ui/configwindow.ui:1745
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:260
msgid "Appearance" msgid "Appearance"
msgstr "Внешний вид" msgstr "Внешний вид"
#. i18n: file: ui/configwindow.ui:1422 #. i18n: file: ui/configwindow.ui:1759
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:236 #: rc.cpp:263
msgid "Time interval" msgid "Time interval"
msgstr "Интервал обновления" msgstr "Интервал обновления"
#. i18n: file: ui/configwindow.ui:1477 #. i18n: file: ui/configwindow.ui:1814
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:239 #: rc.cpp:266
msgid "Font" msgid "Font"
msgstr "Шрифт" msgstr "Шрифт"
#. i18n: file: ui/configwindow.ui:1517 #. i18n: file: ui/configwindow.ui:1854
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:242 #: rc.cpp:269
msgid "Font size" msgid "Font size"
msgstr "Размер шрифта" msgstr "Размер шрифта"
#. i18n: file: ui/configwindow.ui:1572 #. i18n: file: ui/configwindow.ui:1909
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:245 #: rc.cpp:272
msgid "Font color" msgid "Font color"
msgstr "Цвет шрифта" msgstr "Цвет шрифта"
#. i18n: file: ui/configwindow.ui:1612 #. i18n: file: ui/configwindow.ui:1949
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:248 #: rc.cpp:275
msgid "Font style" msgid "Font style"
msgstr "Стиль шрифта" msgstr "Стиль шрифта"
#. i18n: file: ui/configwindow.ui:1662 #. i18n: file: ui/configwindow.ui:1999
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:251 #: rc.cpp:278
msgid "Font weight" msgid "Font weight"
msgstr "Ширина шрифта" msgstr "Ширина шрифта"
#: rc.cpp:252 #: rc.cpp:279
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:253 #: rc.cpp:280
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"