commit before merging

This commit is contained in:
arcan1s 2014-04-05 19:17:56 +04:00
parent f21fea1393
commit 2295e80b67
10 changed files with 649 additions and 612 deletions

View File

@ -1,9 +1,13 @@
Ver.1.7.3: Ver.1.7.3:
+ added tags $memgb, $swapgb
+ added readme directory + added readme directory
+ added french translation (@Mermouy) + added french translation (@Mermouy)
- fix tooltip for custom uptime format - fix tooltip for custom uptime format
- fix #12 - fix #12
* more refactoring to the god of refactoring * more refactoring to the god of refactoring
* network device update interval now is 30*interval
* $swap, $swapmb and $swapgb tags now work simultaneously ($mem* tags too)
* player_name now has str type
Ver.1.7.2: Ver.1.7.2:
+ added tags $dd, $d, $hh, $h, $mm, $m to custom uptime format + added tags $dd, $d, $hh, $h, $mm, $m to custom uptime format

View File

@ -1,9 +1,13 @@
Вер.1.7.3: Вер.1.7.3:
+ добавлены тэги $memgb, $swapgb
+ добавлена директория readme + добавлена директория readme
+ добавлен французский перевод (@Mermouy) + добавлен французский перевод (@Mermouy)
- фикс подсказки для кастомного формата аптайма - фикс подсказки для кастомного формата аптайма
- фикс #12 - фикс #12
* больше рефакторинга богу рефакторинга * больше рефакторинга богу рефакторинга
* интервал обновления сетевого интерфейса теперь 30*interval
* тэги $swap, $swapmb и $swapgb теперь работают одновременно (тэги $mem* тоже)
* player_name теперь имеет тип str
Вер.1.7.2: Вер.1.7.2:
+ добавлены тэги $dd, $d, $hh, $h, $mm, $m в кастомный формат аптайма + добавлены тэги $dd, $d, $hh, $h, $mm, $m в кастомный формат аптайма

View File

@ -26,8 +26,10 @@ For edited output you must open Settings window and setup output format in lines
* tag `$gputemp` - GPU temperature. `aticonfig` or `nvidia-smi` must be installed * tag `$gputemp` - GPU temperature. `aticonfig` or `nvidia-smi` must be installed
* tag `$mem` - usage memory, *%* * tag `$mem` - usage memory, *%*
* tag `$memmb` - usage memory, *MB* * tag `$memmb` - usage memory, *MB*
* tag `$memgb` - usage memory, *GB*
* tag `$swap` - swap, *%* * tag `$swap` - swap, *%*
* tag `$swapmb` - swap, *MB* * tag `$swapmb` - swap, *MB*
* tag `$swapgb` - swap, *GB*
* tag `$hddN` - usage for mount point N, *%*. For example, `$hdd0` * tag `$hddN` - usage for mount point N, *%*. For example, `$hdd0`
* tag `$hddtempN` - temperature for HDD N. For example, `$hddtemp0` * tag `$hddtempN` - temperature for HDD N. For example, `$hddtemp0`
* tag `$down` - download speed, *KB/s* * tag `$down` - download speed, *KB/s*

View File

@ -24,8 +24,10 @@ PyTextMonitor - минималистичный плазмоид, написан
* тэг `$gputemp` - температура GPU. `aticonfig` или `nvidia-smi` должны быть установлены * тэг `$gputemp` - температура GPU. `aticonfig` или `nvidia-smi` должны быть установлены
* тэг `$mem` - использование RAM, *%* * тэг `$mem` - использование RAM, *%*
* тэг `$memmb` - использование RAM, *MB* * тэг `$memmb` - использование RAM, *MB*
* тэг `$memgb` - использование RAM, *GB*
* тэг `$swap` - swap, *%* * тэг `$swap` - swap, *%*
* тэг `$swapmb` - swap, *MB* * тэг `$swapmb` - swap, *MB*
* тэг `$swapgb` - swap, *GB*
* тэг `$hddN` - использование точки монтирования N, *%*. Например, `$hdd0` * тэг `$hddN` - использование точки монтирования N, *%*. Например, `$hdd0`
* тэг `$hddtempN` - температура HDD N. Например, `$hddtemp0` * тэг `$hddtempN` - температура HDD N. Например, `$hddtemp0`
* тэг `$down` - скорость загрузки, *KB/s* * тэг `$down` - скорость загрузки, *KB/s*

View File

@ -58,6 +58,7 @@ class pyTextWidget(plasmascript.Applet):
plasmascript.Applet.__init__(self, parent) plasmascript.Applet.__init__(self, parent)
# initialization
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())
@ -85,6 +86,7 @@ class pyTextWidget(plasmascript.Applet):
self.createNotifyrc(kdehome) self.createNotifyrc(kdehome)
# internal functions
def createConfigurationInterface(self, parent): def createConfigurationInterface(self, parent):
"""function to setup configuration window""" """function to setup configuration window"""
self.configpage = configwindow.ConfigWindow(self) self.configpage = configwindow.ConfigWindow(self)
@ -115,14 +117,6 @@ class pyTextWidget(plasmascript.Applet):
Plasma.ToolTipManager.self().setContent(self.applet, self.tooltip) Plasma.ToolTipManager.self().setContent(self.applet, self.tooltip)
def updateTooltip(self):
"""function to update tooltip"""
self.tooltipView.resize(100.0*(len(self.ptm['vars']['tooltip']['required']) - self.ptm['vars']['tooltip']['required'].count('up')), 100.0)
self.tooltipAgent.createGraphic(self.ptm['vars']['tooltip'], self.ptm['tooltip'], self.tooltipScene)
self.tooltip.setImage(QPixmap.grabWidget(self.tooltipView))
Plasma.ToolTipManager.self().setContent(self.applet, self.tooltip)
def mouseDoubleClickEvent(self, event): def mouseDoubleClickEvent(self, event):
"""function to doubleclick event""" """function to doubleclick event"""
os.system("ksysguard &") os.system("ksysguard &")
@ -239,6 +233,54 @@ class pyTextWidget(plasmascript.Applet):
self.updateTooltip() self.updateTooltip()
def updateTooltip(self):
"""function to update tooltip"""
self.tooltipView.resize(100.0*(len(self.ptm['vars']['tooltip']['required']) - self.ptm['vars']['tooltip']['required'].count('up')), 100.0)
self.tooltipAgent.createGraphic(self.ptm['vars']['tooltip'], self.ptm['tooltip'], self.tooltipScene)
self.tooltip.setImage(QPixmap.grabWidget(self.tooltipView))
Plasma.ToolTipManager.self().setContent(self.applet, self.tooltip)
# update functions
# update dataengines
@pyqtSignature("dataUpdated(const QString &, const Plasma::DataEngine::Data &)")
def dataUpdated(self, sourceName, data):
"""function to update label"""
updatedData = self.dataengine.dataUpdated(str(sourceName), data, self.ptm)
if (updatedData['value'] == None):
return
# update falues where is needed
if (updatedData['type'] != None):
self.ptm['values'][updatedData['name']][updatedData['type']] = updatedData['value']
else:
self.ptm['values'][updatedData['name']] = updatedData['value']
# update labels where is needed
if (updatedData['name'] in ['custom', 'gpu', 'gputemp', 'player', 'time', 'uptime']):
text = self.textPrepare(updatedData['name'], updatedData['value'])
self.setText(updatedData['name'], text)
# update tooltips
if ((updatedData['name'] in ['cpu', 'cpuclock', 'mem', 'swap', 'net']) and (self.ptm['vars']['bools'][updatedData['name']] == 2)):
if (updatedData['name'] == "net"):
if (len(self.ptm['tooltip']['values'][updatedData['type']]) > self.ptm['vars']['tooltip']['num']):
self.ptm['tooltip']['values'][updatedData['type']] = self.ptm['tooltip']['values'][updatedData['type']][1:]
else:
if (len(self.ptm['tooltip']['values'][updatedData['name']]) > self.ptm['vars']['tooltip']['num']):
self.ptm['tooltip']['values'][updatedData['name']] = self.ptm['tooltip']['values'][updatedData['name']][1:]
if ((updatedData['name'] in ['cpu', 'cpuclock']) and (updatedData['type'] == -1)):
self.ptm['tooltip']['values'][updatedData['name']].append(updatedData['value'])
elif ((updatedData['name'] == "mem") and (updatedData['type'] == "app")):
self.ptm['tooltip']['values'][updatedData['name']].append(updatedData['value'])
elif ((updatedData['name'] == "mem") and (updatedData['type'] == "used")):
self.ptm['tooltip']['bounds']['mem'] = self.ptm['values']['mem']['free'] + self.ptm['values']['mem']['used']
elif ((updatedData['name'] == "swap") and (updatedData['type'] == "used")):
self.ptm['tooltip']['values'][updatedData['name']].append(updatedData['value'])
self.ptm['tooltip']['bounds']['swap'] = self.ptm['values']['swap']['free'] + self.ptm['values']['swap']['used']
elif (updatedData['name'] == "net"):
self.ptm['tooltip']['values'][updatedData['type']].append(updatedData['value'])
self.update()
# update labels
def batText(self): def batText(self):
"""function to set battery text""" """function to set battery text"""
line = self.ptm['vars']['formats']['bat'] line = self.ptm['vars']['formats']['bat']
@ -316,8 +358,11 @@ class pyTextWidget(plasmascript.Applet):
def memText(self): def memText(self):
"""function to set mem text""" """function to set mem text"""
line = self.ptm['vars']['formats']['mem'] line = self.ptm['vars']['formats']['mem']
if (line.split('$memgb')[0] != line):
mem = "%4.1f" % (self.ptm['values']['mem']['app'] / (1024.0 * 1024.0))
line = line.split('$memgb')[0] + mem + line.split('$memgb')[1]
if (line.split('$memmb')[0] != line): if (line.split('$memmb')[0] != line):
mem = "%i" % (self.ptm['values']['mem']['app']) mem = "%i" % (self.ptm['values']['mem']['app'] / 1024.0)
line = line.split('$memmb')[0] + mem + line.split('$memmb')[1] line = line.split('$memmb')[0] + mem + line.split('$memmb')[1]
if (line.split('$mem')[0] != line): if (line.split('$mem')[0] != line):
try: try:
@ -348,8 +393,11 @@ class pyTextWidget(plasmascript.Applet):
def swapText(self): def swapText(self):
"""function to set swap text""" """function to set swap text"""
line = self.ptm['vars']['formats']['swap'] line = self.ptm['vars']['formats']['swap']
if (line.split('$swapgb')[0] != line):
mem = "%4.1f" % (self.ptm['values']['swap']['used'] / (1024.0 * 1024.0))
line = line.split('$swapgb')[0] + mem + line.split('$swapgb')[1]
if (line.split('$swapmb')[0] != line): if (line.split('$swapmb')[0] != line):
mem = "%i" % (self.ptm['values']['swap']['used']) mem = "%i" % (self.ptm['values']['swap']['used'] / 1024.0)
line = line.split('$swapmb')[0] + mem + line.split('$swapmb')[1] line = line.split('$swapmb')[0] + mem + line.split('$swapmb')[1]
if (line.split('$swap')[0] != line): if (line.split('$swap')[0] != line):
try: try:
@ -372,7 +420,7 @@ class pyTextWidget(plasmascript.Applet):
self.setText("temp", text) self.setText("temp", text)
# api's functions # external functions
def addLabel(self, name=None, text=None, add=True): def addLabel(self, name=None, text=None, add=True):
"""function to add new label""" """function to add new label"""
if (add): if (add):
@ -493,44 +541,6 @@ class pyTextWidget(plasmascript.Applet):
return output return output
@pyqtSignature("dataUpdated(const QString &, const Plasma::DataEngine::Data &)")
def dataUpdated(self, sourceName, data):
"""function to update label"""
updatedData = self.dataengine.dataUpdated(str(sourceName), data, self.ptm)
if (updatedData['value'] == None):
return
# update falues where is needed
if (updatedData['type'] != None):
self.ptm['values'][updatedData['name']][updatedData['type']] = updatedData['value']
else:
self.ptm['values'][updatedData['name']] = updatedData['value']
# update labels where is needed
if (updatedData['name'] in ['custom', 'gpu', 'gputemp', 'player', 'time', 'uptime']):
text = self.textPrepare(updatedData['name'], updatedData['value'])
self.setText(updatedData['name'], text)
# update tooltips
if ((updatedData['name'] in ['cpu', 'cpuclock', 'mem', 'swap', 'net']) and (self.ptm['vars']['bools'][updatedData['name']] == 2)):
if (updatedData['name'] == "net"):
if (len(self.ptm['tooltip']['values'][updatedData['type']]) > self.ptm['vars']['tooltip']['num']):
self.ptm['tooltip']['values'][updatedData['type']] = self.ptm['tooltip']['values'][updatedData['type']][1:]
else:
if (len(self.ptm['tooltip']['values'][updatedData['name']]) > self.ptm['vars']['tooltip']['num']):
self.ptm['tooltip']['values'][updatedData['name']] = self.ptm['tooltip']['values'][updatedData['name']][1:]
if ((updatedData['name'] in ['cpu', 'cpuclock']) and (updatedData['type'] == -1)):
print (updatedData['value'])
self.ptm['tooltip']['values'][updatedData['name']].append(updatedData['value'])
elif ((updatedData['name'] == "mem") and (updatedData['type'] == "app")):
self.ptm['tooltip']['values'][updatedData['name']].append(updatedData['value'])
elif ((updatedData['name'] == "mem") and (updatedData['type'] == "used")):
self.ptm['tooltip']['bounds']['mem'] = self.ptm['values']['mem']['free'] + self.ptm['values']['mem']['used']
elif ((updatedData['name'] == "swap") and (updatedData['type'] == "used")):
self.ptm['tooltip']['values'][updatedData['name']].append(updatedData['value'])
self.ptm['tooltip']['bounds']['swap'] = self.ptm['values']['swap']['free'] + self.ptm['values']['swap']['used']
elif (updatedData['name'] == "net"):
self.ptm['tooltip']['values'][updatedData['type']].append(updatedData['value'])
self.update()
def CreateApplet(parent): def CreateApplet(parent):
return pyTextWidget(parent) return pyTextWidget(parent)

View File

@ -200,7 +200,7 @@ $custom - custom format</string>
<string>$cpu - total load CPU, % <string>$cpu - total load CPU, %
$cpu0 - load CPU for core 0, % $cpu0 - load CPU for core 0, %
... ...
$cpu7 - load CPU for core 7, %</string> $cpu9 - load CPU for core 9, %</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
@ -264,7 +264,7 @@ $cpu7 - load CPU for core 7, %</string>
<string>$cpucl - average CPU clock, MHz <string>$cpucl - average CPU clock, MHz
$cpucl0 - CPU clock for core 0, MHz $cpucl0 - CPU clock for core 0, MHz
... ...
$cpucl7 - CPU clock for core 7, MHz</string> $cpucl9 - CPU clock for core 9, MHz</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
@ -500,7 +500,8 @@ $cpucl7 - CPU clock for core 7, MHz</string>
<widget class="QLineEdit" name="lineEdit_mem"> <widget class="QLineEdit" name="lineEdit_mem">
<property name="toolTip"> <property name="toolTip">
<string>$mem - RAM usage, % <string>$mem - RAM usage, %
$memmb - RAM usage, MB</string> $memmb - RAM usage, MB
$memgb - RAM usage, GB</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
@ -562,7 +563,8 @@ $memmb - RAM usage, MB</string>
<widget class="QLineEdit" name="lineEdit_swap"> <widget class="QLineEdit" name="lineEdit_swap">
<property name="toolTip"> <property name="toolTip">
<string>$swap - swap usage, % <string>$swap - swap usage, %
$swapmb - swap usage, MB</string> $swapmb - swap usage, MB
$swapgb - swap usage, GB</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>

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-03 13:15+0400\n" "POT-Creation-Date: 2014-04-05 19:13+0400\n"
"PO-Revision-Date: 2014-04-03 13:15+0400\n" "PO-Revision-Date: 2014-04-05 19:13+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"
@ -92,12 +92,12 @@ msgid ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n" "$cpu0 - load CPU for core 0, %\n"
"...\n" "...\n"
"$cpu7 - load CPU for core 7, %" "$cpu9 - load CPU for core 9, %"
msgstr "" msgstr ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n" "$cpu0 - load CPU for core 0, %\n"
"...\n" "...\n"
"$cpu7 - load CPU for core 7, %" "$cpu9 - load CPU for core 9, %"
#. i18n: file: ui/configwindow.ui:251 #. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
@ -112,12 +112,12 @@ msgid ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n" "$cpucl0 - CPU clock for core 0, MHz\n"
"...\n" "...\n"
"$cpucl7 - CPU clock for core 7, MHz" "$cpucl9 - CPU clock for core 9, MHz"
msgstr "" msgstr ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n" "$cpucl0 - CPU clock for core 0, MHz\n"
"...\n" "...\n"
"$cpucl7 - CPU clock for core 7, MHz" "$cpucl9 - CPU clock for core 9, MHz"
#. i18n: file: ui/configwindow.ui:315 #. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
@ -162,72 +162,76 @@ msgstr "$gputemp - physical temperature on GPU"
msgid "Memory" msgid "Memory"
msgstr "Memory" msgstr "Memory"
#. i18n: file: ui/configwindow.ui:503 #. i18n: file: ui/configwindow.ui:504
#. 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
msgid "" msgid ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr "" msgstr ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
#. i18n: file: ui/configwindow.ui:551 #. i18n: file: ui/configwindow.ui:552
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75 #: rc.cpp:76
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#. i18n: file: ui/configwindow.ui:565 #. i18n: file: ui/configwindow.ui:567
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79 #: rc.cpp:80
#, no-c-format #, no-c-format
msgid "" msgid ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr "" msgstr ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
#. i18n: file: ui/configwindow.ui:613 #. i18n: file: ui/configwindow.ui:615
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2100 #. i18n: file: ui/configwindow.ui:2102
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:292 #: rc.cpp:85 rc.cpp:294
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:623 #. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87 #: rc.cpp:89
#, 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:671 #. i18n: file: ui/configwindow.ui:673
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90 #: rc.cpp:92
msgid "HDD Temp" msgid "HDD Temp"
msgstr "HDD Temp" msgstr "HDD Temp"
#. i18n: file: ui/configwindow.ui:681 #. i18n: file: ui/configwindow.ui:683
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93 #: rc.cpp:95
msgid "" msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
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:729 #. i18n: file: ui/configwindow.ui:731
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96 #: rc.cpp:98
msgid "Network" msgid "Network"
msgstr "Network" msgstr "Network"
#. i18n: file: ui/configwindow.ui:744 #. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99 #: rc.cpp:101
msgid "" msgid ""
"$down - download speed, KB/s\n" "$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n" "$up - upload speed, KB/s\n"
@ -237,15 +241,15 @@ 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:792 #. i18n: file: ui/configwindow.ui:794
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104 #: rc.cpp:106
msgid "Battery" msgid "Battery"
msgstr "Battery" msgstr "Battery"
#. i18n: file: ui/configwindow.ui:803 #. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108 #: rc.cpp:110
#, no-c-format #, no-c-format
msgid "" msgid ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
@ -254,17 +258,17 @@ msgstr ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
"$ac - AC status" "$ac - AC status"
#. i18n: file: ui/configwindow.ui:851 #. i18n: file: ui/configwindow.ui:853
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1341 #. i18n: file: ui/configwindow.ui:1343
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:217 #: rc.cpp:114 rc.cpp:219
msgid "Music player" msgid "Music player"
msgstr "Music player" msgstr "Music player"
#. i18n: file: ui/configwindow.ui:865 #. i18n: file: ui/configwindow.ui:867
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115 #: rc.cpp:117
msgid "" msgid ""
"$album - song album\n" "$album - song album\n"
"$artist - song artist\n" "$artist - song artist\n"
@ -278,33 +282,33 @@ msgstr ""
"$time - song duration\n" "$time - song duration\n"
"$title - song title" "$title - song title"
#. i18n: file: ui/configwindow.ui:913 #. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122 #: rc.cpp:124
msgid "Custom" msgid "Custom"
msgstr "Custom" msgstr "Custom"
#. i18n: file: ui/configwindow.ui:923 #. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125 #: rc.cpp:127
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:977 #. i18n: file: ui/configwindow.ui:979
#. i18n: ectx: attribute (title), widget (QWidget, advanced) #. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128 #: rc.cpp:130
msgid "Advanced" msgid "Advanced"
msgstr "Advanced" msgstr "Advanced"
#. i18n: file: ui/configwindow.ui:991 #. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat) #. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131 #: rc.cpp:133
msgid "Custom time format" msgid "Custom time format"
msgstr "Custom time format" msgstr "Custom time format"
#. i18n: file: ui/configwindow.ui:1013 #. i18n: file: ui/configwindow.ui:1015
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134 #: rc.cpp:136
msgid "" msgid ""
"$dddd - long weekday\n" "$dddd - long weekday\n"
"$ddd - short weekday\n" "$ddd - short weekday\n"
@ -340,15 +344,15 @@ msgstr ""
"$ss - seconds\n" "$ss - seconds\n"
"$s - seconds w\\o zero" "$s - seconds w\\o zero"
#. i18n: file: ui/configwindow.ui:1033 #. i18n: file: ui/configwindow.ui:1035
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat) #. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152 #: rc.cpp:154
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "Custom uptime format" msgstr "Custom uptime format"
#. i18n: file: ui/configwindow.ui:1045 #. i18n: file: ui/configwindow.ui:1047
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:157
msgid "" msgid ""
"$dd - uptime days\n" "$dd - uptime days\n"
"$d - uptime days without zero\n" "$d - uptime days without zero\n"
@ -364,29 +368,29 @@ msgstr ""
"$mm - uptime minutes\n" "$mm - uptime minutes\n"
"$m - uptime minutes without zero" "$m - uptime minutes without zero"
#. i18n: file: ui/configwindow.ui:1067 #. i18n: file: ui/configwindow.ui:1069
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:163 #: rc.cpp:165
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Temperature devices" msgstr "Temperature devices"
#. i18n: file: ui/configwindow.ui:1093 #. i18n: file: ui/configwindow.ui:1095
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1148 #. i18n: file: ui/configwindow.ui:1150
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1203 #. i18n: file: ui/configwindow.ui:1205
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:168 rc.cpp:178 rc.cpp:188
msgid "Add" msgid "Add"
msgstr "Add" msgstr "Add"
#. i18n: file: ui/configwindow.ui:1103 #. i18n: file: ui/configwindow.ui:1105
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1158 #. i18n: file: ui/configwindow.ui:1160
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1213 #. i18n: file: ui/configwindow.ui:1215
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:169 rc.cpp:179 rc.cpp:189 #: rc.cpp:171 rc.cpp:181 rc.cpp:191
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -394,93 +398,93 @@ msgstr ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
#. i18n: file: ui/configwindow.ui:1122 #. i18n: file: ui/configwindow.ui:1124
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:173 #: rc.cpp:175
msgid "Mount points" msgid "Mount points"
msgstr "Mount points" msgstr "Mount points"
#. i18n: file: ui/configwindow.ui:1177 #. i18n: file: ui/configwindow.ui:1179
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:183 #: rc.cpp:185
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD devices" msgstr "HDD devices"
#. i18n: file: ui/configwindow.ui:1230 #. i18n: file: ui/configwindow.ui:1232
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:193 #: rc.cpp:195
msgid "Network directory" msgid "Network directory"
msgstr "Network directory" msgstr "Network directory"
#. i18n: file: ui/configwindow.ui:1237 #. i18n: file: ui/configwindow.ui:1239
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:196 #: rc.cpp:198
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:1257 #. i18n: file: ui/configwindow.ui:1259
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:201
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:1260 #. i18n: file: ui/configwindow.ui:1262
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:202 #: rc.cpp:204
msgid "Set network device" msgid "Set network device"
msgstr "Set network device" msgstr "Set network device"
#. i18n: file: ui/configwindow.ui:1293 #. i18n: file: ui/configwindow.ui:1295
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:205 #: rc.cpp:207
msgid "Battery device" msgid "Battery device"
msgstr "Battery device" msgstr "Battery device"
#. i18n: file: ui/configwindow.ui:1300 #. i18n: file: ui/configwindow.ui:1302
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:208 #: rc.cpp:210
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:1317 #. i18n: file: ui/configwindow.ui:1319
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:211 #: rc.cpp:213
msgid "AC device" msgid "AC device"
msgstr "AC device" msgstr "AC device"
#. i18n: file: ui/configwindow.ui:1324 #. i18n: file: ui/configwindow.ui:1326
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:214 #: rc.cpp:216
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:1361 #. 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:222
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1366 #. 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:225
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1371 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226 #: rc.cpp:228
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1395 #. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229 #: rc.cpp:231
msgid "Tooltip" msgid "Tooltip"
msgstr "Tooltip" msgstr "Tooltip"
#. i18n: file: ui/configwindow.ui:1401 #. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232 #: rc.cpp:234
msgid "" msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. " "CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked." "To enable them just make needed checkbox fully checked."
@ -488,150 +492,150 @@ msgstr ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. " "CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked." "To enable them just make needed checkbox fully checked."
#. i18n: file: ui/configwindow.ui:1422 #. i18n: file: ui/configwindow.ui:1424
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:235 #: rc.cpp:237
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "Number of values for tooltips" msgstr "Number of values for tooltips"
#. i18n: file: ui/configwindow.ui:1477 #. i18n: file: ui/configwindow.ui:1479
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:238 #: rc.cpp:240
msgid "CPU color" msgid "CPU color"
msgstr "CPU color" msgstr "CPU color"
#. i18n: file: ui/configwindow.ui:1517 #. i18n: file: ui/configwindow.ui:1519
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:241 #: rc.cpp:243
msgid "CPU clock color" msgid "CPU clock color"
msgstr "CPU clock color" msgstr "CPU clock color"
#. i18n: file: ui/configwindow.ui:1557 #. i18n: file: ui/configwindow.ui:1559
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:244 #: rc.cpp:246
msgid "Memory color" msgid "Memory color"
msgstr "Memory color" msgstr "Memory color"
#. i18n: file: ui/configwindow.ui:1597 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:247 #: rc.cpp:249
msgid "Swap color" msgid "Swap color"
msgstr "Swap color" msgstr "Swap color"
#. i18n: file: ui/configwindow.ui:1637 #. i18n: file: ui/configwindow.ui:1639
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:250 #: rc.cpp:252
msgid "Download speed color" msgid "Download speed color"
msgstr "Download speed color" msgstr "Download speed color"
#. i18n: file: ui/configwindow.ui:1677 #. i18n: file: ui/configwindow.ui:1679
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:253 #: rc.cpp:255
msgid "Upload speed color" msgid "Upload speed color"
msgstr "Upload speed color" msgstr "Upload speed color"
#. i18n: file: ui/configwindow.ui:1723 #. i18n: file: ui/configwindow.ui:1725
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:256 #: rc.cpp:258
msgid "Appearance" msgid "Appearance"
msgstr "Appearance" msgstr "Appearance"
#. i18n: file: ui/configwindow.ui:1737 #. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259 #: rc.cpp:261
msgid "Time interval" msgid "Time interval"
msgstr "Time interval" msgstr "Time interval"
#. i18n: file: ui/configwindow.ui:1792 #. i18n: file: ui/configwindow.ui:1794
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:262 #: rc.cpp:264
msgid "Font" msgid "Font"
msgstr "Font" msgstr "Font"
#. i18n: file: ui/configwindow.ui:1832 #. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265 #: rc.cpp:267
msgid "Font size" msgid "Font size"
msgstr "Font size" msgstr "Font size"
#. i18n: file: ui/configwindow.ui:1887 #. i18n: file: ui/configwindow.ui:1889
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:268 #: rc.cpp:270
msgid "Font color" msgid "Font color"
msgstr "Font color" msgstr "Font color"
#. i18n: file: ui/configwindow.ui:1927 #. i18n: file: ui/configwindow.ui:1929
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:271 #: rc.cpp:273
msgid "Font style" msgid "Font style"
msgstr "Font style" msgstr "Font style"
#. i18n: file: ui/configwindow.ui:1977 #. i18n: file: ui/configwindow.ui:1979
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:274 #: rc.cpp:276
msgid "Font weight" msgid "Font weight"
msgstr "Font weight" msgstr "Font weight"
#. i18n: file: ui/configwindow.ui:2038 #. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277 #: rc.cpp:279
msgid "DataEngine" msgid "DataEngine"
msgstr "DataEngine" msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2052 #. i18n: file: ui/configwindow.ui:2054
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:280 #: rc.cpp:282
msgid "GPU device" msgid "GPU device"
msgstr "GPU device" msgstr "GPU device"
#. i18n: file: ui/configwindow.ui:2072 #. i18n: file: ui/configwindow.ui:2074
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283 #: rc.cpp:285
msgid "auto" msgid "auto"
msgstr "auto" msgstr "auto"
#. i18n: file: ui/configwindow.ui:2077 #. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286 #: rc.cpp:288
msgid "nvidia" msgid "nvidia"
msgstr "nvidia" msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2082 #. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289 #: rc.cpp:291
msgid "ati" msgid "ati"
msgstr "ati" msgstr "ati"
#. i18n: file: ui/configwindow.ui:2133 #. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295 #: rc.cpp:297
msgid "MPD address" msgid "MPD address"
msgstr "MPD address" msgstr "MPD address"
#. i18n: file: ui/configwindow.ui:2157 #. i18n: file: ui/configwindow.ui:2159
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:298 #: rc.cpp:300
msgid "MPD port" msgid "MPD port"
msgstr "MPD port" msgstr "MPD port"
#. i18n: file: ui/configwindow.ui:2212 #. i18n: file: ui/configwindow.ui:2214
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:301 #: rc.cpp:303
msgid "Custom command" msgid "Custom command"
msgstr "Custom command" msgstr "Custom command"
#. i18n: file: ui/configwindow.ui:2219 #. i18n: file: ui/configwindow.ui:2221
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:304 #: rc.cpp:306
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Custom command to run" msgstr "Custom command to run"
#: rc.cpp:305 #: rc.cpp:307
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:306 #: rc.cpp:308
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"

View File

@ -7,10 +7,10 @@ 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-03 13:15+0400\n" "POT-Creation-Date: 2014-04-05 19:13+0400\n"
"PO-Revision-Date: 2014-04-05 02:27+0200\n" "PO-Revision-Date: 2014-04-05 19:13+0400\n"
"Last-Translator: Mermouy <mermouy@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Boardgametrans <boardgametrans@gmail.com>\n" "Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -38,9 +38,8 @@ msgid ""
"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>"
msgstr "" msgstr ""
"D'avantage d'informations se trouvent sur <a " "D'avantage d'informations se trouvent sur <a href=\"http://arcanis.name/"
"href=\"http://arcanis.name/projects/" "projects/pytextmonitor/\">la page du projet</a>"
"pytextmonitor/\">la page du projet</a>"
#. i18n: file: ui/configwindow.ui:69 #. i18n: file: ui/configwindow.ui:69
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
@ -94,12 +93,12 @@ msgid ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n" "$cpu0 - load CPU for core 0, %\n"
"...\n" "...\n"
"$cpu7 - load CPU for core 7, %" "$cpu9 - load CPU for core 9, %"
msgstr "" msgstr ""
"$cpu - charge totale du processeur, %\n" "$cpu - charge totale du processeur, %\n"
"$cpu0 - charge du processeur pour le coeur 0, %\n" "$cpu0 - charge du processeur pour le coeur 0, %\n"
"...\n" "...\n"
"$cpu7 - charge processeur pour le coeur 7, %" "$cpu9 - charge processeur pour le coeur 9, %"
#. i18n: file: ui/configwindow.ui:251 #. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
@ -114,12 +113,12 @@ msgid ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n" "$cpucl0 - CPU clock for core 0, MHz\n"
"...\n" "...\n"
"$cpucl7 - CPU clock for core 7, MHz" "$cpucl9 - CPU clock for core 9, MHz"
msgstr "" msgstr ""
"$cpucl - Moyenne de l'horloge du processeur, MHz\n" "$cpucl - Moyenne de l'horloge du processeur, MHz\n"
"$cpucl0 - Horloge du coeur 0, MHz\n" "$cpucl0 - Horloge du coeur 0, MHz\n"
"...\n" "...\n"
"$cpucl7 - Horloge du coeur 7, MHz" "$cpucl9 - Horloge du coeur 9, MHz"
#. i18n: file: ui/configwindow.ui:315 #. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
@ -166,75 +165,79 @@ msgstr "$gputemp - Température physique du processeur graphique"
msgid "Memory" msgid "Memory"
msgstr "Mémoire" msgstr "Mémoire"
#. i18n: file: ui/configwindow.ui:503 #. i18n: file: ui/configwindow.ui:504
#. 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
msgid "" msgid ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr "" msgstr ""
"$mem - utilisation de la RAM, %\n" "$mem - utilisation de la RAM, %\n"
"$memmb - utilisation de la RAM, MB" "$memmb - utilisation de la RAM, MB\n"
"$memgb - utilisation de la RAM, GB"
#. i18n: file: ui/configwindow.ui:551 #. i18n: file: ui/configwindow.ui:552
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75 #: rc.cpp:76
msgid "Swap" msgid "Swap"
msgstr "mémoire d'échange (swap)" msgstr "mémoire d'échange (swap)"
#. i18n: file: ui/configwindow.ui:565 #. i18n: file: ui/configwindow.ui:567
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79 #: rc.cpp:80
#, no-c-format #, no-c-format
msgid "" msgid ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr "" msgstr ""
"$swap - utilisation swap, %\n" "$swap - utilisation swap, %\n"
"$swapmb - utilisation swap, MB" "$swapmb - utilisation swap, MB\n"
"$swapgb - utilisation swap, GB"
#. i18n: file: ui/configwindow.ui:613 #. i18n: file: ui/configwindow.ui:615
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2100 #. i18n: file: ui/configwindow.ui:2102
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:292 #: rc.cpp:85 rc.cpp:294
msgid "HDD" msgid "HDD"
msgstr "Disque dur" msgstr "Disque dur"
#. i18n: file: ui/configwindow.ui:623 #. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87 #: rc.cpp:89
#, 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 ""
"$hddN - espace occupé sur le point de montage N (à partir de 0), %. Exemple: " "$hddN - espace occupé sur le point de montage N (à partir de 0), %. Exemple: "
"$hdd0" "$hdd0"
#. i18n: file: ui/configwindow.ui:671 #. i18n: file: ui/configwindow.ui:673
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90 #: rc.cpp:92
msgid "HDD Temp" msgid "HDD Temp"
msgstr "Température disque dur" msgstr "Température disque dur"
#. i18n: file: ui/configwindow.ui:681 #. i18n: file: ui/configwindow.ui:683
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93 #: rc.cpp:95
msgid "" msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr "" msgstr ""
"$hddtempN - température physique du périphérique N (à partir de 0). Exemple: " "$hddtempN - température physique du périphérique N (à partir de 0). Exemple: "
"$hddtemp0" "$hddtemp0"
#. i18n: file: ui/configwindow.ui:729 #. i18n: file: ui/configwindow.ui:731
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96 #: rc.cpp:98
msgid "Network" msgid "Network"
msgstr "Réseau" msgstr "Réseau"
#. i18n: file: ui/configwindow.ui:744 #. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99 #: rc.cpp:101
msgid "" msgid ""
"$down - download speed, KB/s\n" "$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n" "$up - upload speed, KB/s\n"
@ -244,15 +247,15 @@ msgstr ""
"$up - vitesse ascendante, KB/s\n" "$up - vitesse ascendante, KB/s\n"
"$netdev - périphérique réseau actuel" "$netdev - périphérique réseau actuel"
#. i18n: file: ui/configwindow.ui:792 #. i18n: file: ui/configwindow.ui:794
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104 #: rc.cpp:106
msgid "Battery" msgid "Battery"
msgstr "Batterie" msgstr "Batterie"
#. i18n: file: ui/configwindow.ui:803 #. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108 #: rc.cpp:110
#, no-c-format #, no-c-format
msgid "" msgid ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
@ -261,17 +264,17 @@ msgstr ""
"$bat - charge de la batterie, %\n" "$bat - charge de la batterie, %\n"
"$ac - état de l'alimentation" "$ac - état de l'alimentation"
#. i18n: file: ui/configwindow.ui:851 #. i18n: file: ui/configwindow.ui:853
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1341 #. i18n: file: ui/configwindow.ui:1343
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:217 #: rc.cpp:114 rc.cpp:219
msgid "Music player" msgid "Music player"
msgstr "Lecteur audio" msgstr "Lecteur audio"
#. i18n: file: ui/configwindow.ui:865 #. i18n: file: ui/configwindow.ui:867
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115 #: rc.cpp:117
msgid "" msgid ""
"$album - song album\n" "$album - song album\n"
"$artist - song artist\n" "$artist - song artist\n"
@ -285,33 +288,33 @@ msgstr ""
"$time - durée du morceau\n" "$time - durée du morceau\n"
"$title - titre du morceau" "$title - titre du morceau"
#. i18n: file: ui/configwindow.ui:913 #. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122 #: rc.cpp:124
msgid "Custom" msgid "Custom"
msgstr "Personnalisé" msgstr "Personnalisé"
#. i18n: file: ui/configwindow.ui:923 #. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125 #: rc.cpp:127
msgid "$custom - get output from custom command" msgid "$custom - get output from custom command"
msgstr "$custom - sortie d'une commande personnelle" msgstr "$custom - sortie d'une commande personnelle"
#. i18n: file: ui/configwindow.ui:977 #. i18n: file: ui/configwindow.ui:979
#. i18n: ectx: attribute (title), widget (QWidget, advanced) #. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128 #: rc.cpp:130
msgid "Advanced" msgid "Advanced"
msgstr "Avancé" msgstr "Avancé"
#. i18n: file: ui/configwindow.ui:991 #. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat) #. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131 #: rc.cpp:133
msgid "Custom time format" msgid "Custom time format"
msgstr "Format de l'heure personnalisé" msgstr "Format de l'heure personnalisé"
#. i18n: file: ui/configwindow.ui:1013 #. i18n: file: ui/configwindow.ui:1015
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134 #: rc.cpp:136
msgid "" msgid ""
"$dddd - long weekday\n" "$dddd - long weekday\n"
"$ddd - short weekday\n" "$ddd - short weekday\n"
@ -347,15 +350,15 @@ msgstr ""
"$ss - secondes\n" "$ss - secondes\n"
"$s - secondes sans zéro" "$s - secondes sans zéro"
#. i18n: file: ui/configwindow.ui:1033 #. i18n: file: ui/configwindow.ui:1035
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat) #. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152 #: rc.cpp:154
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "Temps de fonctionnement personalisé" msgstr "Temps de fonctionnement personalisé"
#. i18n: file: ui/configwindow.ui:1045 #. i18n: file: ui/configwindow.ui:1047
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:157
msgid "" msgid ""
"$dd - uptime days\n" "$dd - uptime days\n"
"$d - uptime days without zero\n" "$d - uptime days without zero\n"
@ -371,29 +374,29 @@ msgstr ""
"$mm - temps de fonctionnement en minutes\n" "$mm - temps de fonctionnement en minutes\n"
"$m - temps de fonctionnement en minutes sans zéro" "$m - temps de fonctionnement en minutes sans zéro"
#. i18n: file: ui/configwindow.ui:1067 #. i18n: file: ui/configwindow.ui:1069
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:163 #: rc.cpp:165
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Temperature des périphériques" msgstr "Temperature des périphériques"
#. i18n: file: ui/configwindow.ui:1093 #. i18n: file: ui/configwindow.ui:1095
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1148 #. i18n: file: ui/configwindow.ui:1150
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1203 #. i18n: file: ui/configwindow.ui:1205
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:168 rc.cpp:178 rc.cpp:188
msgid "Add" msgid "Add"
msgstr "Ajouter" msgstr "Ajouter"
#. i18n: file: ui/configwindow.ui:1103 #. i18n: file: ui/configwindow.ui:1105
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1158 #. i18n: file: ui/configwindow.ui:1160
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1213 #. i18n: file: ui/configwindow.ui:1215
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:169 rc.cpp:179 rc.cpp:189 #: rc.cpp:171 rc.cpp:181 rc.cpp:191
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -401,247 +404,247 @@ msgstr ""
"Modifiable\n" "Modifiable\n"
"del - supprimer un élément" "del - supprimer un élément"
#. i18n: file: ui/configwindow.ui:1122 #. i18n: file: ui/configwindow.ui:1124
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:173 #: rc.cpp:175
msgid "Mount points" msgid "Mount points"
msgstr "Points de montage" msgstr "Points de montage"
#. i18n: file: ui/configwindow.ui:1177 #. i18n: file: ui/configwindow.ui:1179
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:183 #: rc.cpp:185
msgid "HDD devices" msgid "HDD devices"
msgstr "Périphériques HDD" msgstr "Périphériques HDD"
#. i18n: file: ui/configwindow.ui:1230 #. i18n: file: ui/configwindow.ui:1232
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:193 #: rc.cpp:195
msgid "Network directory" msgid "Network directory"
msgstr "Voisinage réseau" msgstr "Voisinage réseau"
#. i18n: file: ui/configwindow.ui:1237 #. i18n: file: ui/configwindow.ui:1239
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:196 #: rc.cpp:198
msgid "\"/sys/class/net\" by default" msgid "\"/sys/class/net\" by default"
msgstr "\"/sys/class/net\" par défaut" msgstr "\"/sys/class/net\" par défaut"
#. i18n: file: ui/configwindow.ui:1257 #. i18n: file: ui/configwindow.ui:1259
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:201
msgid "Disable auto select device and set specified device" msgid "Disable auto select device and set specified device"
msgstr "" msgstr ""
"Désactiver la sélection automatique de périphériques et le sélectionner " "Désactiver la sélection automatique de périphériques et le sélectionner "
"manuellement" "manuellement"
#. i18n: file: ui/configwindow.ui:1260 #. i18n: file: ui/configwindow.ui:1262
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:202 #: rc.cpp:204
msgid "Set network device" msgid "Set network device"
msgstr "Sélectionner le périphérique réseau" msgstr "Sélectionner le périphérique réseau"
#. i18n: file: ui/configwindow.ui:1293 #. i18n: file: ui/configwindow.ui:1295
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:205 #: rc.cpp:207
msgid "Battery device" msgid "Battery device"
msgstr "Batterie" msgstr "Batterie"
#. i18n: file: ui/configwindow.ui:1300 #. i18n: file: ui/configwindow.ui:1302
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:208 #: rc.cpp:210
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\" par défaut" msgstr "\"/sys/class/power_supply/BAT0/capacity\" par défaut"
#. i18n: file: ui/configwindow.ui:1317 #. i18n: file: ui/configwindow.ui:1319
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:211 #: rc.cpp:213
msgid "AC device" msgid "AC device"
msgstr "Périphérique d'alimentation" msgstr "Périphérique d'alimentation"
#. i18n: file: ui/configwindow.ui:1324 #. i18n: file: ui/configwindow.ui:1326
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:214 #: rc.cpp:216
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\" par défaut" msgstr "\"/sys/class/power_supply/AC/online\" par défaut"
#. i18n: file: ui/configwindow.ui:1361 #. 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:222
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1366 #. 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:225
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1371 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226 #: rc.cpp:228
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1395 #. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229 #: rc.cpp:231
msgid "Tooltip" msgid "Tooltip"
msgstr "Conseil" msgstr "Conseil"
#. i18n: file: ui/configwindow.ui:1401 #. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232 #: rc.cpp:234
msgid "" msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. " "CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked." "To enable them just make needed checkbox fully checked."
msgstr "" msgstr ""
"CPU, horloge du CPU, mémoire vive, mémoire swap et noms réseau supportent les " "CPU, horloge du CPU, mémoire vive, mémoire swap et noms réseau supportent "
"conseils visuels. " "les conseils visuels. Pour les activer cochez simplement les cases "
"Pour les activer cochez simplement les cases correspondantes." "correspondantes."
#. i18n: file: ui/configwindow.ui:1422 #. i18n: file: ui/configwindow.ui:1424
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:235 #: rc.cpp:237
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "Nombre d'éléments pour les conseils" msgstr "Nombre d'éléments pour les conseils"
#. i18n: file: ui/configwindow.ui:1477 #. i18n: file: ui/configwindow.ui:1479
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:238 #: rc.cpp:240
msgid "CPU color" msgid "CPU color"
msgstr "Couleur processeur" msgstr "Couleur processeur"
#. i18n: file: ui/configwindow.ui:1517 #. i18n: file: ui/configwindow.ui:1519
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:241 #: rc.cpp:243
msgid "CPU clock color" msgid "CPU clock color"
msgstr "Couleur de l'horloge processeur" msgstr "Couleur de l'horloge processeur"
#. i18n: file: ui/configwindow.ui:1557 #. i18n: file: ui/configwindow.ui:1559
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:244 #: rc.cpp:246
msgid "Memory color" msgid "Memory color"
msgstr "Couleur de la mémoire" msgstr "Couleur de la mémoire"
#. i18n: file: ui/configwindow.ui:1597 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:247 #: rc.cpp:249
msgid "Swap color" msgid "Swap color"
msgstr "Couleur de la mémoire d'échange" msgstr "Couleur de la mémoire d'échange"
#. i18n: file: ui/configwindow.ui:1637 #. i18n: file: ui/configwindow.ui:1639
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:250 #: rc.cpp:252
msgid "Download speed color" msgid "Download speed color"
msgstr "Couleur de la vitesse de téléchargement" msgstr "Couleur de la vitesse de téléchargement"
#. i18n: file: ui/configwindow.ui:1677 #. i18n: file: ui/configwindow.ui:1679
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:253 #: rc.cpp:255
msgid "Upload speed color" msgid "Upload speed color"
msgstr "Couleur du téléversement" msgstr "Couleur du téléversement"
#. i18n: file: ui/configwindow.ui:1723 #. i18n: file: ui/configwindow.ui:1725
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:256 #: rc.cpp:258
msgid "Appearance" msgid "Appearance"
msgstr "Apparence" msgstr "Apparence"
#. i18n: file: ui/configwindow.ui:1737 #. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259 #: rc.cpp:261
msgid "Time interval" msgid "Time interval"
msgstr "Intervalle" msgstr "Intervalle"
#. i18n: file: ui/configwindow.ui:1792 #. i18n: file: ui/configwindow.ui:1794
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:262 #: rc.cpp:264
msgid "Font" msgid "Font"
msgstr "Police" msgstr "Police"
#. i18n: file: ui/configwindow.ui:1832 #. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265 #: rc.cpp:267
msgid "Font size" msgid "Font size"
msgstr "Taille de la police" msgstr "Taille de la police"
#. i18n: file: ui/configwindow.ui:1887 #. i18n: file: ui/configwindow.ui:1889
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:268 #: rc.cpp:270
msgid "Font color" msgid "Font color"
msgstr "Couleur de la police" msgstr "Couleur de la police"
#. i18n: file: ui/configwindow.ui:1927 #. i18n: file: ui/configwindow.ui:1929
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:271 #: rc.cpp:273
msgid "Font style" msgid "Font style"
msgstr "Style de la police" msgstr "Style de la police"
#. i18n: file: ui/configwindow.ui:1977 #. i18n: file: ui/configwindow.ui:1979
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:274 #: rc.cpp:276
msgid "Font weight" msgid "Font weight"
msgstr "Épaisseur de la police" msgstr "Épaisseur de la police"
#. i18n: file: ui/configwindow.ui:2038 #. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277 #: rc.cpp:279
msgid "DataEngine" msgid "DataEngine"
msgstr "Moteur de données" msgstr "Moteur de données"
#. i18n: file: ui/configwindow.ui:2052 #. i18n: file: ui/configwindow.ui:2054
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:280 #: rc.cpp:282
msgid "GPU device" msgid "GPU device"
msgstr "Périphérique graphique" msgstr "Périphérique graphique"
#. i18n: file: ui/configwindow.ui:2072 #. i18n: file: ui/configwindow.ui:2074
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283 #: rc.cpp:285
msgid "auto" msgid "auto"
msgstr "auto" msgstr "auto"
#. i18n: file: ui/configwindow.ui:2077 #. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286 #: rc.cpp:288
msgid "nvidia" msgid "nvidia"
msgstr "nvidia" msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2082 #. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289 #: rc.cpp:291
msgid "ati" msgid "ati"
msgstr "ati" msgstr "ati"
#. i18n: file: ui/configwindow.ui:2133 #. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295 #: rc.cpp:297
msgid "MPD address" msgid "MPD address"
msgstr "Adresse MPD" msgstr "Adresse MPD"
#. i18n: file: ui/configwindow.ui:2157 #. i18n: file: ui/configwindow.ui:2159
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:298 #: rc.cpp:300
msgid "MPD port" msgid "MPD port"
msgstr "Port MPD" msgstr "Port MPD"
#. i18n: file: ui/configwindow.ui:2212 #. i18n: file: ui/configwindow.ui:2214
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:301 #: rc.cpp:303
msgid "Custom command" msgid "Custom command"
msgstr "Commande personnalisée" msgstr "Commande personnalisée"
#. i18n: file: ui/configwindow.ui:2219 #. i18n: file: ui/configwindow.ui:2221
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:304 #: rc.cpp:306
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Commande personnalisée à exécuter" msgstr "Commande personnalisée à exécuter"
#: rc.cpp:305 #: rc.cpp:307
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:306 #: rc.cpp:308
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-03 13:15+0400\n" "POT-Creation-Date: 2014-04-05 19:13+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"
@ -82,7 +82,7 @@ msgid ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n" "$cpu0 - load CPU for core 0, %\n"
"...\n" "...\n"
"$cpu7 - load CPU for core 7, %" "$cpu9 - load CPU for core 9, %"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:251 #. i18n: file: ui/configwindow.ui:251
@ -98,7 +98,7 @@ msgid ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n" "$cpucl0 - CPU clock for core 0, MHz\n"
"...\n" "...\n"
"$cpucl7 - CPU clock for core 7, MHz" "$cpucl9 - CPU clock for core 9, MHz"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:315 #. i18n: file: ui/configwindow.ui:315
@ -144,99 +144,101 @@ msgstr ""
msgid "Memory" msgid "Memory"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:503 #. i18n: file: ui/configwindow.ui:504
#. 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
msgid "" msgid ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:551 #. i18n: file: ui/configwindow.ui:552
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75 #: rc.cpp:76
msgid "Swap" msgid "Swap"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:565 #. i18n: file: ui/configwindow.ui:567
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79 #: rc.cpp:80
#, no-c-format #, no-c-format
msgid "" msgid ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:613 #. i18n: file: ui/configwindow.ui:615
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2100 #. i18n: file: ui/configwindow.ui:2102
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:292 #: rc.cpp:85 rc.cpp:294
msgid "HDD" msgid "HDD"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:623 #. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87 #: rc.cpp:89
#, 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:671 #. i18n: file: ui/configwindow.ui:673
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90 #: rc.cpp:92
msgid "HDD Temp" msgid "HDD Temp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:681 #. i18n: file: ui/configwindow.ui:683
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93 #: rc.cpp:95
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:729 #. i18n: file: ui/configwindow.ui:731
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96 #: rc.cpp:98
msgid "Network" msgid "Network"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:744 #. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99 #: rc.cpp:101
msgid "" msgid ""
"$down - download speed, KB/s\n" "$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n" "$up - upload speed, KB/s\n"
"$netdev - current network device" "$netdev - current network device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:792 #. i18n: file: ui/configwindow.ui:794
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104 #: rc.cpp:106
msgid "Battery" msgid "Battery"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:803 #. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108 #: rc.cpp:110
#, no-c-format #, no-c-format
msgid "" msgid ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
"$ac - AC status" "$ac - AC status"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:851 #. i18n: file: ui/configwindow.ui:853
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1341 #. i18n: file: ui/configwindow.ui:1343
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:217 #: rc.cpp:114 rc.cpp:219
msgid "Music player" msgid "Music player"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:865 #. i18n: file: ui/configwindow.ui:867
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115 #: rc.cpp:117
msgid "" msgid ""
"$album - song album\n" "$album - song album\n"
"$artist - song artist\n" "$artist - song artist\n"
@ -245,33 +247,33 @@ msgid ""
"$title - song title" "$title - song title"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:913 #. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122 #: rc.cpp:124
msgid "Custom" msgid "Custom"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:923 #. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125 #: rc.cpp:127
msgid "$custom - get output from custom command" msgid "$custom - get output from custom command"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:977 #. i18n: file: ui/configwindow.ui:979
#. i18n: ectx: attribute (title), widget (QWidget, advanced) #. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128 #: rc.cpp:130
msgid "Advanced" msgid "Advanced"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:991 #. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat) #. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131 #: rc.cpp:133
msgid "Custom time format" msgid "Custom time format"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1013 #. i18n: file: ui/configwindow.ui:1015
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134 #: rc.cpp:136
msgid "" msgid ""
"$dddd - long weekday\n" "$dddd - long weekday\n"
"$ddd - short weekday\n" "$ddd - short weekday\n"
@ -291,15 +293,15 @@ msgid ""
"$s - seconds w\\o zero" "$s - seconds w\\o zero"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1033 #. i18n: file: ui/configwindow.ui:1035
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat) #. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152 #: rc.cpp:154
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1045 #. i18n: file: ui/configwindow.ui:1047
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:157
msgid "" msgid ""
"$dd - uptime days\n" "$dd - uptime days\n"
"$d - uptime days without zero\n" "$d - uptime days without zero\n"
@ -309,270 +311,270 @@ msgid ""
"$m - uptime minutes without zero" "$m - uptime minutes without zero"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1067 #. i18n: file: ui/configwindow.ui:1069
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:163 #: rc.cpp:165
msgid "Temperature devices" msgid "Temperature devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1093 #. i18n: file: ui/configwindow.ui:1095
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1148 #. i18n: file: ui/configwindow.ui:1150
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1203 #. i18n: file: ui/configwindow.ui:1205
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:168 rc.cpp:178 rc.cpp:188
msgid "Add" msgid "Add"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1103 #. i18n: file: ui/configwindow.ui:1105
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1158 #. i18n: file: ui/configwindow.ui:1160
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1213 #. i18n: file: ui/configwindow.ui:1215
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:169 rc.cpp:179 rc.cpp:189 #: rc.cpp:171 rc.cpp:181 rc.cpp:191
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1122 #. i18n: file: ui/configwindow.ui:1124
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:173 #: rc.cpp:175
msgid "Mount points" msgid "Mount points"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1177 #. i18n: file: ui/configwindow.ui:1179
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:183 #: rc.cpp:185
msgid "HDD devices" msgid "HDD devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1230 #. i18n: file: ui/configwindow.ui:1232
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:193 #: rc.cpp:195
msgid "Network directory" msgid "Network directory"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1237 #. i18n: file: ui/configwindow.ui:1239
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:196 #: rc.cpp:198
msgid "\"/sys/class/net\" by default" msgid "\"/sys/class/net\" by default"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1257 #. i18n: file: ui/configwindow.ui:1259
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:201
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:1260 #. i18n: file: ui/configwindow.ui:1262
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:202 #: rc.cpp:204
msgid "Set network device" msgid "Set network device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1293 #. i18n: file: ui/configwindow.ui:1295
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:205 #: rc.cpp:207
msgid "Battery device" msgid "Battery device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1300 #. i18n: file: ui/configwindow.ui:1302
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:208 #: rc.cpp:210
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:1317 #. i18n: file: ui/configwindow.ui:1319
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:211 #: rc.cpp:213
msgid "AC device" msgid "AC device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1324 #. i18n: file: ui/configwindow.ui:1326
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:214 #: rc.cpp:216
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:1361 #. 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:222
msgid "amarok" msgid "amarok"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1366 #. 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:225
msgid "mpd" msgid "mpd"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1371 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226 #: rc.cpp:228
msgid "qmmp" msgid "qmmp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1395 #. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229 #: rc.cpp:231
msgid "Tooltip" msgid "Tooltip"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1401 #. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232 #: rc.cpp:234
msgid "" msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. " "CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked." "To enable them just make needed checkbox fully checked."
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1422 #. i18n: file: ui/configwindow.ui:1424
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:235 #: rc.cpp:237
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1477 #. i18n: file: ui/configwindow.ui:1479
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:238 #: rc.cpp:240
msgid "CPU color" msgid "CPU color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1517 #. i18n: file: ui/configwindow.ui:1519
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:241 #: rc.cpp:243
msgid "CPU clock color" msgid "CPU clock color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1557 #. i18n: file: ui/configwindow.ui:1559
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:244 #: rc.cpp:246
msgid "Memory color" msgid "Memory color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1597 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:247 #: rc.cpp:249
msgid "Swap color" msgid "Swap color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1637 #. i18n: file: ui/configwindow.ui:1639
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:250 #: rc.cpp:252
msgid "Download speed color" msgid "Download speed color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1677 #. i18n: file: ui/configwindow.ui:1679
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:253 #: rc.cpp:255
msgid "Upload speed color" msgid "Upload speed color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1723 #. i18n: file: ui/configwindow.ui:1725
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:256 #: rc.cpp:258
msgid "Appearance" msgid "Appearance"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1737 #. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259 #: rc.cpp:261
msgid "Time interval" msgid "Time interval"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1792 #. i18n: file: ui/configwindow.ui:1794
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:262 #: rc.cpp:264
msgid "Font" msgid "Font"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1832 #. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265 #: rc.cpp:267
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1887 #. i18n: file: ui/configwindow.ui:1889
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:268 #: rc.cpp:270
msgid "Font color" msgid "Font color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1927 #. i18n: file: ui/configwindow.ui:1929
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:271 #: rc.cpp:273
msgid "Font style" msgid "Font style"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1977 #. i18n: file: ui/configwindow.ui:1979
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:274 #: rc.cpp:276
msgid "Font weight" msgid "Font weight"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2038 #. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277 #: rc.cpp:279
msgid "DataEngine" msgid "DataEngine"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2052 #. i18n: file: ui/configwindow.ui:2054
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:280 #: rc.cpp:282
msgid "GPU device" msgid "GPU device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2072 #. i18n: file: ui/configwindow.ui:2074
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283 #: rc.cpp:285
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2077 #. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286 #: rc.cpp:288
msgid "nvidia" msgid "nvidia"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2082 #. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289 #: rc.cpp:291
msgid "ati" msgid "ati"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2133 #. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295 #: rc.cpp:297
msgid "MPD address" msgid "MPD address"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2157 #. i18n: file: ui/configwindow.ui:2159
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:298 #: rc.cpp:300
msgid "MPD port" msgid "MPD port"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2212 #. i18n: file: ui/configwindow.ui:2214
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:301 #: rc.cpp:303
msgid "Custom command" msgid "Custom command"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2219 #. i18n: file: ui/configwindow.ui:2221
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:304 #: rc.cpp:306
msgid "Custom command to run" msgid "Custom command to run"
msgstr "" msgstr ""
#: rc.cpp:305 #: rc.cpp:307
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "" msgstr ""
#: rc.cpp:306 #: rc.cpp:308
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-03 13:15+0400\n" "POT-Creation-Date: 2014-04-05 19:13+0400\n"
"PO-Revision-Date: 2014-04-03 13:16+0400\n" "PO-Revision-Date: 2014-04-05 19:14+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"
@ -92,12 +92,12 @@ msgid ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n" "$cpu0 - load CPU for core 0, %\n"
"...\n" "...\n"
"$cpu7 - load CPU for core 7, %" "$cpu9 - load CPU for core 9, %"
msgstr "" msgstr ""
"$cpu - общая загрузка CPU, %\n" "$cpu - общая загрузка CPU, %\n"
"$cpu0 - загрузка CPU для ядра 0, %\n" "$cpu0 - загрузка CPU для ядра 0, %\n"
"...\n" "...\n"
"$cpu7 - загрузка CPU для ядра 7, %" "$cpu9 - загрузка CPU для ядра 9, %"
#. i18n: file: ui/configwindow.ui:251 #. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
@ -112,12 +112,12 @@ msgid ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n" "$cpucl0 - CPU clock for core 0, MHz\n"
"...\n" "...\n"
"$cpucl7 - CPU clock for core 7, MHz" "$cpucl9 - CPU clock for core 9, MHz"
msgstr "" msgstr ""
"$cpucl - средняя частота CPU, MHz\n" "$cpucl - средняя частота CPU, MHz\n"
"$cpucl0 - частота CPU для ядра 0, MHz\n" "$cpucl0 - частота CPU для ядра 0, MHz\n"
"...\n" "...\n"
"$cpucl7 - частота CPU для ядра 7, MHz" "$cpucl9 - частота CPU для ядра 9, MHz"
#. i18n: file: ui/configwindow.ui:315 #. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
@ -162,73 +162,77 @@ msgstr "$gputemp - физическая температура на GPU"
msgid "Memory" msgid "Memory"
msgstr "Память" msgstr "Память"
#. i18n: file: ui/configwindow.ui:503 #. i18n: file: ui/configwindow.ui:504
#. 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
msgid "" msgid ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr "" msgstr ""
"$mem - использование RAM, %\n" "$mem - использование RAM, %\n"
"$memmb - использование RAM, MB" "$memmb - использование RAM, MB\n"
"$memgb - использование RAM, GB"
#. i18n: file: ui/configwindow.ui:551 #. i18n: file: ui/configwindow.ui:552
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75 #: rc.cpp:76
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#. i18n: file: ui/configwindow.ui:565 #. i18n: file: ui/configwindow.ui:567
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79 #: rc.cpp:80
#, no-c-format #, no-c-format
msgid "" msgid ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr "" msgstr ""
"$swap - использование swap, %\n" "$swap - использование swap, %\n"
"$swapmb - использование swap, MB" "$swapmb - использование swap, MB\n"
"$swapgb - использование swap, GB"
#. i18n: file: ui/configwindow.ui:613 #. i18n: file: ui/configwindow.ui:615
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2100 #. i18n: file: ui/configwindow.ui:2102
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:292 #: rc.cpp:85 rc.cpp:294
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:623 #. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87 #: rc.cpp:89
#, 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:671 #. i18n: file: ui/configwindow.ui:673
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90 #: rc.cpp:92
msgid "HDD Temp" msgid "HDD Temp"
msgstr "Температура HDD" msgstr "Температура HDD"
#. i18n: file: ui/configwindow.ui:681 #. i18n: file: ui/configwindow.ui:683
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93 #: rc.cpp:95
msgid "" msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr "" 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:729 #. i18n: file: ui/configwindow.ui:731
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96 #: rc.cpp:98
msgid "Network" msgid "Network"
msgstr "Сеть" msgstr "Сеть"
#. i18n: file: ui/configwindow.ui:744 #. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99 #: rc.cpp:101
msgid "" msgid ""
"$down - download speed, KB/s\n" "$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n" "$up - upload speed, KB/s\n"
@ -238,15 +242,15 @@ msgstr ""
"$up - скорость загрузки, KB/s\n" "$up - скорость загрузки, KB/s\n"
"$netdev - текущее устройство" "$netdev - текущее устройство"
#. i18n: file: ui/configwindow.ui:792 #. i18n: file: ui/configwindow.ui:794
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104 #: rc.cpp:106
msgid "Battery" msgid "Battery"
msgstr "Батарея" msgstr "Батарея"
#. i18n: file: ui/configwindow.ui:803 #. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108 #: rc.cpp:110
#, no-c-format #, no-c-format
msgid "" msgid ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
@ -255,17 +259,17 @@ msgstr ""
"$bat - заряд батареи, %\n" "$bat - заряд батареи, %\n"
"$ac - статус адаптора питания" "$ac - статус адаптора питания"
#. i18n: file: ui/configwindow.ui:851 #. i18n: file: ui/configwindow.ui:853
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1341 #. i18n: file: ui/configwindow.ui:1343
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:217 #: rc.cpp:114 rc.cpp:219
msgid "Music player" msgid "Music player"
msgstr "Музыкальный плеер" msgstr "Музыкальный плеер"
#. i18n: file: ui/configwindow.ui:865 #. i18n: file: ui/configwindow.ui:867
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115 #: rc.cpp:117
msgid "" msgid ""
"$album - song album\n" "$album - song album\n"
"$artist - song artist\n" "$artist - song artist\n"
@ -279,33 +283,33 @@ msgstr ""
"$time - продолжительность\n" "$time - продолжительность\n"
"$title - название" "$title - название"
#. i18n: file: ui/configwindow.ui:913 #. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122 #: rc.cpp:124
msgid "Custom" msgid "Custom"
msgstr "Своя команда" msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:923 #. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125 #: rc.cpp:127
msgid "$custom - get output from custom command" msgid "$custom - get output from custom command"
msgstr "$custom - получить информацию из своей команды" msgstr "$custom - получить информацию из своей команды"
#. i18n: file: ui/configwindow.ui:977 #. i18n: file: ui/configwindow.ui:979
#. i18n: ectx: attribute (title), widget (QWidget, advanced) #. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128 #: rc.cpp:130
msgid "Advanced" msgid "Advanced"
msgstr "Расширенные" msgstr "Расширенные"
#. i18n: file: ui/configwindow.ui:991 #. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat) #. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131 #: rc.cpp:133
msgid "Custom time format" msgid "Custom time format"
msgstr "Свой формат времени" msgstr "Свой формат времени"
#. i18n: file: ui/configwindow.ui:1013 #. i18n: file: ui/configwindow.ui:1015
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134 #: rc.cpp:136
msgid "" msgid ""
"$dddd - long weekday\n" "$dddd - long weekday\n"
"$ddd - short weekday\n" "$ddd - short weekday\n"
@ -341,15 +345,15 @@ msgstr ""
"$ss - секунды\n" "$ss - секунды\n"
"$s - секунды без 0" "$s - секунды без 0"
#. i18n: file: ui/configwindow.ui:1033 #. i18n: file: ui/configwindow.ui:1035
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat) #. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152 #: rc.cpp:154
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "Свой формат аптайма" msgstr "Свой формат аптайма"
#. i18n: file: ui/configwindow.ui:1045 #. i18n: file: ui/configwindow.ui:1047
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:157
msgid "" msgid ""
"$dd - uptime days\n" "$dd - uptime days\n"
"$d - uptime days without zero\n" "$d - uptime days without zero\n"
@ -365,29 +369,29 @@ msgstr ""
"$mm - минуты аптайма\n" "$mm - минуты аптайма\n"
"$m - минуты аптайма без нулей" "$m - минуты аптайма без нулей"
#. i18n: file: ui/configwindow.ui:1067 #. i18n: file: ui/configwindow.ui:1069
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:163 #: rc.cpp:165
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Температурные устройства" msgstr "Температурные устройства"
#. i18n: file: ui/configwindow.ui:1093 #. i18n: file: ui/configwindow.ui:1095
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1148 #. i18n: file: ui/configwindow.ui:1150
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1203 #. i18n: file: ui/configwindow.ui:1205
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:168 rc.cpp:178 rc.cpp:188
msgid "Add" msgid "Add"
msgstr "Добавить" msgstr "Добавить"
#. i18n: file: ui/configwindow.ui:1103 #. i18n: file: ui/configwindow.ui:1105
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1158 #. i18n: file: ui/configwindow.ui:1160
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1213 #. i18n: file: ui/configwindow.ui:1215
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:169 rc.cpp:179 rc.cpp:189 #: rc.cpp:171 rc.cpp:181 rc.cpp:191
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -395,93 +399,93 @@ msgstr ""
"Редактируемо\n" "Редактируемо\n"
"del - удалить строку" "del - удалить строку"
#. i18n: file: ui/configwindow.ui:1122 #. i18n: file: ui/configwindow.ui:1124
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:173 #: rc.cpp:175
msgid "Mount points" msgid "Mount points"
msgstr "Точки монтирования" msgstr "Точки монтирования"
#. i18n: file: ui/configwindow.ui:1177 #. i18n: file: ui/configwindow.ui:1179
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:183 #: rc.cpp:185
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:1230 #. i18n: file: ui/configwindow.ui:1232
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:193 #: rc.cpp:195
msgid "Network directory" msgid "Network directory"
msgstr "Путь к интерфейсам" msgstr "Путь к интерфейсам"
#. i18n: file: ui/configwindow.ui:1237 #. i18n: file: ui/configwindow.ui:1239
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:196 #: rc.cpp:198
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:1257 #. i18n: file: ui/configwindow.ui:1259
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:201
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:1260 #. i18n: file: ui/configwindow.ui:1262
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:202 #: rc.cpp:204
msgid "Set network device" msgid "Set network device"
msgstr "Выберете сетевое устройство" msgstr "Выберете сетевое устройство"
#. i18n: file: ui/configwindow.ui:1293 #. i18n: file: ui/configwindow.ui:1295
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:205 #: rc.cpp:207
msgid "Battery device" msgid "Battery device"
msgstr "Устройство батареи" msgstr "Устройство батареи"
#. i18n: file: ui/configwindow.ui:1300 #. i18n: file: ui/configwindow.ui:1302
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:208 #: rc.cpp:210
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:1317 #. i18n: file: ui/configwindow.ui:1319
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:211 #: rc.cpp:213
msgid "AC device" msgid "AC device"
msgstr "Устройство AC" msgstr "Устройство AC"
#. i18n: file: ui/configwindow.ui:1324 #. i18n: file: ui/configwindow.ui:1326
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:214 #: rc.cpp:216
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:1361 #. 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:222
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1366 #. 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:225
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1371 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226 #: rc.cpp:228
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1395 #. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229 #: rc.cpp:231
msgid "Tooltip" msgid "Tooltip"
msgstr "Тултип" msgstr "Тултип"
#. i18n: file: ui/configwindow.ui:1401 #. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232 #: rc.cpp:234
msgid "" msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. " "CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked." "To enable them just make needed checkbox fully checked."
@ -489,150 +493,150 @@ msgstr ""
"Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. " "Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. "
"Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми." "Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми."
#. i18n: file: ui/configwindow.ui:1422 #. i18n: file: ui/configwindow.ui:1424
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:235 #: rc.cpp:237
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "Число хранящихся значений" msgstr "Число хранящихся значений"
#. i18n: file: ui/configwindow.ui:1477 #. i18n: file: ui/configwindow.ui:1479
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:238 #: rc.cpp:240
msgid "CPU color" msgid "CPU color"
msgstr "Цвет CPU" msgstr "Цвет CPU"
#. i18n: file: ui/configwindow.ui:1517 #. i18n: file: ui/configwindow.ui:1519
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:241 #: rc.cpp:243
msgid "CPU clock color" msgid "CPU clock color"
msgstr "Цвет частоты CPU" msgstr "Цвет частоты CPU"
#. i18n: file: ui/configwindow.ui:1557 #. i18n: file: ui/configwindow.ui:1559
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:244 #: rc.cpp:246
msgid "Memory color" msgid "Memory color"
msgstr "Цвет памяти" msgstr "Цвет памяти"
#. i18n: file: ui/configwindow.ui:1597 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:247 #: rc.cpp:249
msgid "Swap color" msgid "Swap color"
msgstr "Цвет swap" msgstr "Цвет swap"
#. i18n: file: ui/configwindow.ui:1637 #. i18n: file: ui/configwindow.ui:1639
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:250 #: rc.cpp:252
msgid "Download speed color" msgid "Download speed color"
msgstr "Цвет скорости загрузки" msgstr "Цвет скорости загрузки"
#. i18n: file: ui/configwindow.ui:1677 #. i18n: file: ui/configwindow.ui:1679
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:253 #: rc.cpp:255
msgid "Upload speed color" msgid "Upload speed color"
msgstr "Цвет скорости отдачи" msgstr "Цвет скорости отдачи"
#. i18n: file: ui/configwindow.ui:1723 #. i18n: file: ui/configwindow.ui:1725
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:256 #: rc.cpp:258
msgid "Appearance" msgid "Appearance"
msgstr "Внешний вид" msgstr "Внешний вид"
#. i18n: file: ui/configwindow.ui:1737 #. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259 #: rc.cpp:261
msgid "Time interval" msgid "Time interval"
msgstr "Интервал обновления" msgstr "Интервал обновления"
#. i18n: file: ui/configwindow.ui:1792 #. i18n: file: ui/configwindow.ui:1794
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:262 #: rc.cpp:264
msgid "Font" msgid "Font"
msgstr "Шрифт" msgstr "Шрифт"
#. i18n: file: ui/configwindow.ui:1832 #. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265 #: rc.cpp:267
msgid "Font size" msgid "Font size"
msgstr "Размер шрифта" msgstr "Размер шрифта"
#. i18n: file: ui/configwindow.ui:1887 #. i18n: file: ui/configwindow.ui:1889
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:268 #: rc.cpp:270
msgid "Font color" msgid "Font color"
msgstr "Цвет шрифта" msgstr "Цвет шрифта"
#. i18n: file: ui/configwindow.ui:1927 #. i18n: file: ui/configwindow.ui:1929
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:271 #: rc.cpp:273
msgid "Font style" msgid "Font style"
msgstr "Стиль шрифта" msgstr "Стиль шрифта"
#. i18n: file: ui/configwindow.ui:1977 #. i18n: file: ui/configwindow.ui:1979
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:274 #: rc.cpp:276
msgid "Font weight" msgid "Font weight"
msgstr "Ширина шрифта" msgstr "Ширина шрифта"
#. i18n: file: ui/configwindow.ui:2038 #. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277 #: rc.cpp:279
msgid "DataEngine" msgid "DataEngine"
msgstr "DataEngine" msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2052 #. i18n: file: ui/configwindow.ui:2054
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:280 #: rc.cpp:282
msgid "GPU device" msgid "GPU device"
msgstr "Устройство GPU" msgstr "Устройство GPU"
#. i18n: file: ui/configwindow.ui:2072 #. i18n: file: ui/configwindow.ui:2074
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283 #: rc.cpp:285
msgid "auto" msgid "auto"
msgstr "auto" msgstr "auto"
#. i18n: file: ui/configwindow.ui:2077 #. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286 #: rc.cpp:288
msgid "nvidia" msgid "nvidia"
msgstr "nvidia" msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2082 #. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289 #: rc.cpp:291
msgid "ati" msgid "ati"
msgstr "ati" msgstr "ati"
#. i18n: file: ui/configwindow.ui:2133 #. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295 #: rc.cpp:297
msgid "MPD address" msgid "MPD address"
msgstr "Адрес сервера MPD" msgstr "Адрес сервера MPD"
#. i18n: file: ui/configwindow.ui:2157 #. i18n: file: ui/configwindow.ui:2159
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:298 #: rc.cpp:300
msgid "MPD port" msgid "MPD port"
msgstr "Порт сервера MPD" msgstr "Порт сервера MPD"
#. i18n: file: ui/configwindow.ui:2212 #. i18n: file: ui/configwindow.ui:2214
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:301 #: rc.cpp:303
msgid "Custom command" msgid "Custom command"
msgstr "Своя команда" msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:2219 #. i18n: file: ui/configwindow.ui:2221
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:304 #: rc.cpp:306
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Своя команда для запуска" msgstr "Своя команда для запуска"
#: rc.cpp:305 #: rc.cpp:307
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:306 #: rc.cpp:308
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"