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:
+ added tags $memgb, $swapgb
+ added readme directory
+ added french translation (@Mermouy)
- fix tooltip for custom uptime format
- fix #12
* 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:
+ added tags $dd, $d, $hh, $h, $mm, $m to custom uptime format

View File

@ -1,9 +1,13 @@
Вер.1.7.3:
+ добавлены тэги $memgb, $swapgb
+ добавлена директория readme
+ добавлен французский перевод (@Mermouy)
- фикс подсказки для кастомного формата аптайма
- фикс #12
* больше рефакторинга богу рефакторинга
* интервал обновления сетевого интерфейса теперь 30*interval
* тэги $swap, $swapmb и $swapgb теперь работают одновременно (тэги $mem* тоже)
* player_name теперь имеет тип str
Вер.1.7.2:
+ добавлены тэги $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 `$mem` - usage memory, *%*
* tag `$memmb` - usage memory, *MB*
* tag `$memgb` - usage memory, *GB*
* tag `$swap` - swap, *%*
* tag `$swapmb` - swap, *MB*
* tag `$swapgb` - swap, *GB*
* tag `$hddN` - usage for mount point N, *%*. For example, `$hdd0`
* tag `$hddtempN` - temperature for HDD N. For example, `$hddtemp0`
* tag `$down` - download speed, *KB/s*

View File

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

View File

@ -58,6 +58,7 @@ class pyTextWidget(plasmascript.Applet):
plasmascript.Applet.__init__(self, parent)
# initialization
def init(self):
"""function to initializate widget"""
self._name = str(self.package().metadata().pluginName())
@ -85,6 +86,7 @@ class pyTextWidget(plasmascript.Applet):
self.createNotifyrc(kdehome)
# internal functions
def createConfigurationInterface(self, parent):
"""function to setup configuration window"""
self.configpage = configwindow.ConfigWindow(self)
@ -115,14 +117,6 @@ class pyTextWidget(plasmascript.Applet):
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):
"""function to doubleclick event"""
os.system("ksysguard &")
@ -239,6 +233,54 @@ class pyTextWidget(plasmascript.Applet):
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):
"""function to set battery text"""
line = self.ptm['vars']['formats']['bat']
@ -316,8 +358,11 @@ class pyTextWidget(plasmascript.Applet):
def memText(self):
"""function to set mem text"""
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):
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]
if (line.split('$mem')[0] != line):
try:
@ -348,8 +393,11 @@ class pyTextWidget(plasmascript.Applet):
def swapText(self):
"""function to set swap text"""
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):
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]
if (line.split('$swap')[0] != line):
try:
@ -372,7 +420,7 @@ class pyTextWidget(plasmascript.Applet):
self.setText("temp", text)
# api's functions
# external functions
def addLabel(self, name=None, text=None, add=True):
"""function to add new label"""
if (add):
@ -493,44 +541,6 @@ class pyTextWidget(plasmascript.Applet):
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):
return pyTextWidget(parent)

View File

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

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \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"
"PO-Revision-Date: 2014-04-03 13:15+0400\n"
"POT-Creation-Date: 2014-04-05 19:13+0400\n"
"PO-Revision-Date: 2014-04-05 19:13+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n"
@ -92,12 +92,12 @@ msgid ""
"$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n"
"...\n"
"$cpu7 - load CPU for core 7, %"
"$cpu9 - load CPU for core 9, %"
msgstr ""
"$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n"
"...\n"
"$cpu7 - load CPU for core 7, %"
"$cpu9 - load CPU for core 9, %"
#. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
@ -112,12 +112,12 @@ msgid ""
"$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n"
"...\n"
"$cpucl7 - CPU clock for core 7, MHz"
"$cpucl9 - CPU clock for core 9, MHz"
msgstr ""
"$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n"
"...\n"
"$cpucl7 - CPU clock for core 7, MHz"
"$cpucl9 - CPU clock for core 9, MHz"
#. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
@ -162,72 +162,76 @@ msgstr "$gputemp - physical temperature on GPU"
msgid "Memory"
msgstr "Memory"
#. i18n: file: ui/configwindow.ui:503
#. i18n: file: ui/configwindow.ui:504
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:71
#, no-c-format
msgid ""
"$mem - RAM usage, %\n"
"$memmb - RAM usage, MB"
"$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr ""
"$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)
#: rc.cpp:75
#: rc.cpp:76
msgid "Swap"
msgstr "Swap"
#. i18n: file: ui/configwindow.ui:565
#. i18n: file: ui/configwindow.ui:567
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79
#: rc.cpp:80
#, no-c-format
msgid ""
"$swap - swap usage, %\n"
"$swapmb - swap usage, MB"
"$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr ""
"$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: file: ui/configwindow.ui:2100
#. i18n: file: ui/configwindow.ui:2102
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:292
#: rc.cpp:85 rc.cpp:294
msgid "HDD"
msgstr "HDD"
#. i18n: file: ui/configwindow.ui:623
#. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87
#: rc.cpp:89
#, no-c-format
msgid "$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)
#: rc.cpp:90
#: rc.cpp:92
msgid "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)
#: rc.cpp:93
#: rc.cpp:95
msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr ""
"$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)
#: rc.cpp:96
#: rc.cpp:98
msgid "Network"
msgstr "Network"
#. i18n: file: ui/configwindow.ui:744
#. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99
#: rc.cpp:101
msgid ""
"$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n"
@ -237,15 +241,15 @@ msgstr ""
"$up - upload speed, KB/s\n"
"$netdev - current network device"
#. i18n: file: ui/configwindow.ui:792
#. i18n: file: ui/configwindow.ui:794
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104
#: rc.cpp:106
msgid "Battery"
msgstr "Battery"
#. i18n: file: ui/configwindow.ui:803
#. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108
#: rc.cpp:110
#, no-c-format
msgid ""
"$bat - battery charge, %\n"
@ -254,17 +258,17 @@ msgstr ""
"$bat - battery charge, %\n"
"$ac - AC status"
#. i18n: file: ui/configwindow.ui:851
#. i18n: file: ui/configwindow.ui:853
#. 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)
#: rc.cpp:112 rc.cpp:217
#: rc.cpp:114 rc.cpp:219
msgid "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)
#: rc.cpp:115
#: rc.cpp:117
msgid ""
"$album - song album\n"
"$artist - song artist\n"
@ -278,33 +282,33 @@ msgstr ""
"$time - song duration\n"
"$title - song title"
#. i18n: file: ui/configwindow.ui:913
#. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122
#: rc.cpp:124
msgid "Custom"
msgstr "Custom"
#. i18n: file: ui/configwindow.ui:923
#. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125
#: rc.cpp:127
msgid "$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)
#: rc.cpp:128
#: rc.cpp:130
msgid "Advanced"
msgstr "Advanced"
#. i18n: file: ui/configwindow.ui:991
#. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131
#: rc.cpp:133
msgid "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)
#: rc.cpp:134
#: rc.cpp:136
msgid ""
"$dddd - long weekday\n"
"$ddd - short weekday\n"
@ -340,15 +344,15 @@ msgstr ""
"$ss - seconds\n"
"$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)
#: rc.cpp:152
#: rc.cpp:154
msgid "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)
#: rc.cpp:155
#: rc.cpp:157
msgid ""
"$dd - uptime days\n"
"$d - uptime days without zero\n"
@ -364,29 +368,29 @@ msgstr ""
"$mm - uptime minutes\n"
"$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)
#: rc.cpp:163
#: rc.cpp:165
msgid "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: file: ui/configwindow.ui:1148
#. i18n: file: ui/configwindow.ui:1150
#. 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)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186
#: rc.cpp:168 rc.cpp:178 rc.cpp:188
msgid "Add"
msgstr "Add"
#. i18n: file: ui/configwindow.ui:1103
#. i18n: file: ui/configwindow.ui:1105
#. 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: file: ui/configwindow.ui:1213
#. i18n: file: ui/configwindow.ui:1215
#. 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 ""
"Editable\n"
"del - remove item"
@ -394,93 +398,93 @@ msgstr ""
"Editable\n"
"del - remove item"
#. i18n: file: ui/configwindow.ui:1122
#. i18n: file: ui/configwindow.ui:1124
#. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:173
#: rc.cpp:175
msgid "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)
#: rc.cpp:183
#: rc.cpp:185
msgid "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)
#: rc.cpp:193
#: rc.cpp:195
msgid "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)
#: rc.cpp:196
#: rc.cpp:198
msgid "\"/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)
#: rc.cpp:199
#: rc.cpp:201
msgid "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)
#: rc.cpp:202
#: rc.cpp:204
msgid "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)
#: rc.cpp:205
#: rc.cpp:207
msgid "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)
#: rc.cpp:208
#: rc.cpp:210
msgid "\"/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)
#: rc.cpp:211
#: rc.cpp:213
msgid "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)
#: rc.cpp:214
#: rc.cpp:216
msgid "\"/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)
#: rc.cpp:220
#: rc.cpp:222
msgid "amarok"
msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1366
#. i18n: file: ui/configwindow.ui:1368
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223
#: rc.cpp:225
msgid "mpd"
msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1371
#. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226
#: rc.cpp:228
msgid "qmmp"
msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1395
#. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229
#: rc.cpp:231
msgid "Tooltip"
msgstr "Tooltip"
#. i18n: file: ui/configwindow.ui:1401
#. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232
#: rc.cpp:234
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"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. "
"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)
#: rc.cpp:235
#: rc.cpp:237
msgid "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)
#: rc.cpp:238
#: rc.cpp:240
msgid "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)
#: rc.cpp:241
#: rc.cpp:243
msgid "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)
#: rc.cpp:244
#: rc.cpp:246
msgid "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)
#: rc.cpp:247
#: rc.cpp:249
msgid "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)
#: rc.cpp:250
#: rc.cpp:252
msgid "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)
#: rc.cpp:253
#: rc.cpp:255
msgid "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)
#: rc.cpp:256
#: rc.cpp:258
msgid "Appearance"
msgstr "Appearance"
#. i18n: file: ui/configwindow.ui:1737
#. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259
#: rc.cpp:261
msgid "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)
#: rc.cpp:262
#: rc.cpp:264
msgid "Font"
msgstr "Font"
#. i18n: file: ui/configwindow.ui:1832
#. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265
#: rc.cpp:267
msgid "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)
#: rc.cpp:268
#: rc.cpp:270
msgid "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)
#: rc.cpp:271
#: rc.cpp:273
msgid "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)
#: rc.cpp:274
#: rc.cpp:276
msgid "Font weight"
msgstr "Font weight"
#. i18n: file: ui/configwindow.ui:2038
#. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277
#: rc.cpp:279
msgid "DataEngine"
msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2052
#. i18n: file: ui/configwindow.ui:2054
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:280
#: rc.cpp:282
msgid "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)
#: rc.cpp:283
#: rc.cpp:285
msgid "auto"
msgstr "auto"
#. i18n: file: ui/configwindow.ui:2077
#. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286
#: rc.cpp:288
msgid "nvidia"
msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2082
#. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289
#: rc.cpp:291
msgid "ati"
msgstr "ati"
#. i18n: file: ui/configwindow.ui:2133
#. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295
#: rc.cpp:297
msgid "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)
#: rc.cpp:298
#: rc.cpp:300
msgid "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)
#: rc.cpp:301
#: rc.cpp:303
msgid "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)
#: rc.cpp:304
#: rc.cpp:306
msgid "Custom command to run"
msgstr "Custom command to run"
#: rc.cpp:305
#: rc.cpp:307
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Evgeniy Alekseev"
#: rc.cpp:306
#: rc.cpp:308
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "esalexeev@gmail.com"

View File

@ -7,10 +7,10 @@ msgid ""
msgstr ""
"Project-Id-Version: \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"
"PO-Revision-Date: 2014-04-05 02:27+0200\n"
"Last-Translator: Mermouy <mermouy@gmail.com>\n"
"Language-Team: Boardgametrans <boardgametrans@gmail.com>\n"
"POT-Creation-Date: 2014-04-05 19:13+0400\n"
"PO-Revision-Date: 2014-04-05 19:13+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: fr\n"
"MIME-Version: 1.0\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/"
"pytextmonitor/\">project homepage</a>"
msgstr ""
"D'avantage d'informations se trouvent sur <a "
"href=\"http://arcanis.name/projects/"
"pytextmonitor/\">la page du projet</a>"
"D'avantage d'informations se trouvent sur <a href=\"http://arcanis.name/"
"projects/pytextmonitor/\">la page du projet</a>"
#. i18n: file: ui/configwindow.ui:69
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
@ -94,12 +93,12 @@ msgid ""
"$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n"
"...\n"
"$cpu7 - load CPU for core 7, %"
"$cpu9 - load CPU for core 9, %"
msgstr ""
"$cpu - charge totale du processeur, %\n"
"$cpu0 - charge du processeur pour le coeur 0, %\n"
"...\n"
"$cpu7 - charge processeur pour le coeur 7, %"
"$cpu9 - charge processeur pour le coeur 9, %"
#. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
@ -114,12 +113,12 @@ msgid ""
"$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n"
"...\n"
"$cpucl7 - CPU clock for core 7, MHz"
"$cpucl9 - CPU clock for core 9, MHz"
msgstr ""
"$cpucl - Moyenne de l'horloge du processeur, MHz\n"
"$cpucl0 - Horloge du coeur 0, MHz\n"
"...\n"
"$cpucl7 - Horloge du coeur 7, MHz"
"$cpucl9 - Horloge du coeur 9, MHz"
#. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
@ -166,75 +165,79 @@ msgstr "$gputemp - Température physique du processeur graphique"
msgid "Memory"
msgstr "Mémoire"
#. i18n: file: ui/configwindow.ui:503
#. i18n: file: ui/configwindow.ui:504
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:71
#, no-c-format
msgid ""
"$mem - RAM usage, %\n"
"$memmb - RAM usage, MB"
"$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr ""
"$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)
#: rc.cpp:75
#: rc.cpp:76
msgid "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)
#: rc.cpp:79
#: rc.cpp:80
#, no-c-format
msgid ""
"$swap - swap usage, %\n"
"$swapmb - swap usage, MB"
"$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr ""
"$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: file: ui/configwindow.ui:2100
#. i18n: file: ui/configwindow.ui:2102
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:292
#: rc.cpp:85 rc.cpp:294
msgid "HDD"
msgstr "Disque dur"
#. i18n: file: ui/configwindow.ui:623
#. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87
#: rc.cpp:89
#, no-c-format
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
msgstr ""
"$hddN - espace occupé sur le point de montage N (à partir de 0), %. Exemple: "
"$hdd0"
#. i18n: file: ui/configwindow.ui:671
#. i18n: file: ui/configwindow.ui:673
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90
#: rc.cpp:92
msgid "HDD Temp"
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)
#: rc.cpp:93
#: rc.cpp:95
msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr ""
"$hddtempN - température physique du périphérique N (à partir de 0). Exemple: "
"$hddtemp0"
#. i18n: file: ui/configwindow.ui:729
#. i18n: file: ui/configwindow.ui:731
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96
#: rc.cpp:98
msgid "Network"
msgstr "Réseau"
#. i18n: file: ui/configwindow.ui:744
#. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99
#: rc.cpp:101
msgid ""
"$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n"
@ -244,15 +247,15 @@ msgstr ""
"$up - vitesse ascendante, KB/s\n"
"$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)
#: rc.cpp:104
#: rc.cpp:106
msgid "Battery"
msgstr "Batterie"
#. i18n: file: ui/configwindow.ui:803
#. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108
#: rc.cpp:110
#, no-c-format
msgid ""
"$bat - battery charge, %\n"
@ -261,17 +264,17 @@ msgstr ""
"$bat - charge de la batterie, %\n"
"$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: file: ui/configwindow.ui:1341
#. i18n: file: ui/configwindow.ui:1343
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:217
#: rc.cpp:114 rc.cpp:219
msgid "Music player"
msgstr "Lecteur audio"
#. i18n: file: ui/configwindow.ui:865
#. i18n: file: ui/configwindow.ui:867
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115
#: rc.cpp:117
msgid ""
"$album - song album\n"
"$artist - song artist\n"
@ -285,33 +288,33 @@ msgstr ""
"$time - durée du morceau\n"
"$title - titre du morceau"
#. i18n: file: ui/configwindow.ui:913
#. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122
#: rc.cpp:124
msgid "Custom"
msgstr "Personnalisé"
#. i18n: file: ui/configwindow.ui:923
#. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125
#: rc.cpp:127
msgid "$custom - get output from custom command"
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)
#: rc.cpp:128
#: rc.cpp:130
msgid "Advanced"
msgstr "Avancé"
#. i18n: file: ui/configwindow.ui:991
#. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131
#: rc.cpp:133
msgid "Custom time format"
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)
#: rc.cpp:134
#: rc.cpp:136
msgid ""
"$dddd - long weekday\n"
"$ddd - short weekday\n"
@ -347,15 +350,15 @@ msgstr ""
"$ss - secondes\n"
"$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)
#: rc.cpp:152
#: rc.cpp:154
msgid "Custom uptime format"
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)
#: rc.cpp:155
#: rc.cpp:157
msgid ""
"$dd - uptime days\n"
"$d - uptime days without zero\n"
@ -371,29 +374,29 @@ msgstr ""
"$mm - temps de fonctionnement en minutes\n"
"$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)
#: rc.cpp:163
#: rc.cpp:165
msgid "Temperature devices"
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: file: ui/configwindow.ui:1148
#. i18n: file: ui/configwindow.ui:1150
#. 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)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186
#: rc.cpp:168 rc.cpp:178 rc.cpp:188
msgid "Add"
msgstr "Ajouter"
#. i18n: file: ui/configwindow.ui:1103
#. i18n: file: ui/configwindow.ui:1105
#. 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: file: ui/configwindow.ui:1213
#. i18n: file: ui/configwindow.ui:1215
#. 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 ""
"Editable\n"
"del - remove item"
@ -401,247 +404,247 @@ msgstr ""
"Modifiable\n"
"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)
#: rc.cpp:173
#: rc.cpp:175
msgid "Mount points"
msgstr "Points de montage"
#. i18n: file: ui/configwindow.ui:1177
#. i18n: file: ui/configwindow.ui:1179
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:183
#: rc.cpp:185
msgid "HDD devices"
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)
#: rc.cpp:193
#: rc.cpp:195
msgid "Network directory"
msgstr "Voisinage réseau"
#. i18n: file: ui/configwindow.ui:1237
#. i18n: file: ui/configwindow.ui:1239
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:196
#: rc.cpp:198
msgid "\"/sys/class/net\" by default"
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)
#: rc.cpp:199
#: rc.cpp:201
msgid "Disable auto select device and set specified device"
msgstr ""
"Désactiver la sélection automatique de périphériques et le sélectionner "
"manuellement"
#. i18n: file: ui/configwindow.ui:1260
#. i18n: file: ui/configwindow.ui:1262
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:202
#: rc.cpp:204
msgid "Set network device"
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)
#: rc.cpp:205
#: rc.cpp:207
msgid "Battery device"
msgstr "Batterie"
#. i18n: file: ui/configwindow.ui:1300
#. i18n: file: ui/configwindow.ui:1302
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:208
#: rc.cpp:210
msgid "\"/sys/class/power_supply/BAT0/capacity\" by default"
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)
#: rc.cpp:211
#: rc.cpp:213
msgid "AC device"
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)
#: rc.cpp:214
#: rc.cpp:216
msgid "\"/sys/class/power_supply/AC/online\" by default"
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)
#: rc.cpp:220
#: rc.cpp:222
msgid "amarok"
msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1366
#. i18n: file: ui/configwindow.ui:1368
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223
#: rc.cpp:225
msgid "mpd"
msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1371
#. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226
#: rc.cpp:228
msgid "qmmp"
msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1395
#. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229
#: rc.cpp:231
msgid "Tooltip"
msgstr "Conseil"
#. i18n: file: ui/configwindow.ui:1401
#. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232
#: rc.cpp:234
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
msgstr ""
"CPU, horloge du CPU, mémoire vive, mémoire swap et noms réseau supportent les "
"conseils visuels. "
"Pour les activer cochez simplement les cases correspondantes."
"CPU, horloge du CPU, mémoire vive, mémoire swap et noms réseau supportent "
"les conseils visuels. Pour les activer cochez simplement les cases "
"correspondantes."
#. i18n: file: ui/configwindow.ui:1422
#. i18n: file: ui/configwindow.ui:1424
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:235
#: rc.cpp:237
msgid "Number of values for tooltips"
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)
#: rc.cpp:238
#: rc.cpp:240
msgid "CPU color"
msgstr "Couleur processeur"
#. i18n: file: ui/configwindow.ui:1517
#. i18n: file: ui/configwindow.ui:1519
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:241
#: rc.cpp:243
msgid "CPU clock color"
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)
#: rc.cpp:244
#: rc.cpp:246
msgid "Memory color"
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)
#: rc.cpp:247
#: rc.cpp:249
msgid "Swap color"
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)
#: rc.cpp:250
#: rc.cpp:252
msgid "Download speed color"
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)
#: rc.cpp:253
#: rc.cpp:255
msgid "Upload speed color"
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)
#: rc.cpp:256
#: rc.cpp:258
msgid "Appearance"
msgstr "Apparence"
#. i18n: file: ui/configwindow.ui:1737
#. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259
#: rc.cpp:261
msgid "Time interval"
msgstr "Intervalle"
#. i18n: file: ui/configwindow.ui:1792
#. i18n: file: ui/configwindow.ui:1794
#. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:262
#: rc.cpp:264
msgid "Font"
msgstr "Police"
#. i18n: file: ui/configwindow.ui:1832
#. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265
#: rc.cpp:267
msgid "Font size"
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)
#: rc.cpp:268
#: rc.cpp:270
msgid "Font color"
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)
#: rc.cpp:271
#: rc.cpp:273
msgid "Font style"
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)
#: rc.cpp:274
#: rc.cpp:276
msgid "Font weight"
msgstr "Épaisseur de la police"
#. i18n: file: ui/configwindow.ui:2038
#. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277
#: rc.cpp:279
msgid "DataEngine"
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)
#: rc.cpp:280
#: rc.cpp:282
msgid "GPU device"
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)
#: rc.cpp:283
#: rc.cpp:285
msgid "auto"
msgstr "auto"
#. i18n: file: ui/configwindow.ui:2077
#. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286
#: rc.cpp:288
msgid "nvidia"
msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2082
#. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289
#: rc.cpp:291
msgid "ati"
msgstr "ati"
#. i18n: file: ui/configwindow.ui:2133
#. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295
#: rc.cpp:297
msgid "MPD address"
msgstr "Adresse MPD"
#. i18n: file: ui/configwindow.ui:2157
#. i18n: file: ui/configwindow.ui:2159
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:298
#: rc.cpp:300
msgid "MPD port"
msgstr "Port MPD"
#. i18n: file: ui/configwindow.ui:2212
#. i18n: file: ui/configwindow.ui:2214
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:301
#: rc.cpp:303
msgid "Custom command"
msgstr "Commande personnalisée"
#. i18n: file: ui/configwindow.ui:2219
#. i18n: file: ui/configwindow.ui:2221
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:304
#: rc.cpp:306
msgid "Custom command to run"
msgstr "Commande personnalisée à exécuter"
#: rc.cpp:305
#: rc.cpp:307
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Evgeniy Alekseev"
#: rc.cpp:306
#: rc.cpp:308
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "esalexeev@gmail.com"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\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"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -82,7 +82,7 @@ msgid ""
"$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n"
"...\n"
"$cpu7 - load CPU for core 7, %"
"$cpu9 - load CPU for core 9, %"
msgstr ""
#. i18n: file: ui/configwindow.ui:251
@ -98,7 +98,7 @@ msgid ""
"$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n"
"...\n"
"$cpucl7 - CPU clock for core 7, MHz"
"$cpucl9 - CPU clock for core 9, MHz"
msgstr ""
#. i18n: file: ui/configwindow.ui:315
@ -144,99 +144,101 @@ msgstr ""
msgid "Memory"
msgstr ""
#. i18n: file: ui/configwindow.ui:503
#. i18n: file: ui/configwindow.ui:504
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:71
#, no-c-format
msgid ""
"$mem - RAM usage, %\n"
"$memmb - RAM usage, MB"
"$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr ""
#. i18n: file: ui/configwindow.ui:551
#. i18n: file: ui/configwindow.ui:552
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:75
#: rc.cpp:76
msgid "Swap"
msgstr ""
#. i18n: file: ui/configwindow.ui:565
#. i18n: file: ui/configwindow.ui:567
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79
#: rc.cpp:80
#, no-c-format
msgid ""
"$swap - swap usage, %\n"
"$swapmb - swap usage, MB"
"$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr ""
#. i18n: file: ui/configwindow.ui:613
#. i18n: file: ui/configwindow.ui:615
#. 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)
#: rc.cpp:83 rc.cpp:292
#: rc.cpp:85 rc.cpp:294
msgid "HDD"
msgstr ""
#. i18n: file: ui/configwindow.ui:623
#. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87
#: rc.cpp:89
#, no-c-format
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
msgstr ""
#. i18n: file: ui/configwindow.ui:671
#. i18n: file: ui/configwindow.ui:673
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:90
#: rc.cpp:92
msgid "HDD Temp"
msgstr ""
#. i18n: file: ui/configwindow.ui:681
#. i18n: file: ui/configwindow.ui:683
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93
#: rc.cpp:95
msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr ""
#. i18n: file: ui/configwindow.ui:729
#. i18n: file: ui/configwindow.ui:731
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:96
#: rc.cpp:98
msgid "Network"
msgstr ""
#. i18n: file: ui/configwindow.ui:744
#. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99
#: rc.cpp:101
msgid ""
"$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n"
"$netdev - current network device"
msgstr ""
#. i18n: file: ui/configwindow.ui:792
#. i18n: file: ui/configwindow.ui:794
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104
#: rc.cpp:106
msgid "Battery"
msgstr ""
#. i18n: file: ui/configwindow.ui:803
#. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108
#: rc.cpp:110
#, no-c-format
msgid ""
"$bat - battery charge, %\n"
"$ac - AC status"
msgstr ""
#. i18n: file: ui/configwindow.ui:851
#. i18n: file: ui/configwindow.ui:853
#. 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)
#: rc.cpp:112 rc.cpp:217
#: rc.cpp:114 rc.cpp:219
msgid "Music player"
msgstr ""
#. i18n: file: ui/configwindow.ui:865
#. i18n: file: ui/configwindow.ui:867
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115
#: rc.cpp:117
msgid ""
"$album - song album\n"
"$artist - song artist\n"
@ -245,33 +247,33 @@ msgid ""
"$title - song title"
msgstr ""
#. i18n: file: ui/configwindow.ui:913
#. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122
#: rc.cpp:124
msgid "Custom"
msgstr ""
#. i18n: file: ui/configwindow.ui:923
#. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125
#: rc.cpp:127
msgid "$custom - get output from custom command"
msgstr ""
#. i18n: file: ui/configwindow.ui:977
#. i18n: file: ui/configwindow.ui:979
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128
#: rc.cpp:130
msgid "Advanced"
msgstr ""
#. i18n: file: ui/configwindow.ui:991
#. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131
#: rc.cpp:133
msgid "Custom time format"
msgstr ""
#. i18n: file: ui/configwindow.ui:1013
#. i18n: file: ui/configwindow.ui:1015
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134
#: rc.cpp:136
msgid ""
"$dddd - long weekday\n"
"$ddd - short weekday\n"
@ -291,15 +293,15 @@ msgid ""
"$s - seconds w\\o zero"
msgstr ""
#. i18n: file: ui/configwindow.ui:1033
#. i18n: file: ui/configwindow.ui:1035
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152
#: rc.cpp:154
msgid "Custom uptime format"
msgstr ""
#. i18n: file: ui/configwindow.ui:1045
#. i18n: file: ui/configwindow.ui:1047
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155
#: rc.cpp:157
msgid ""
"$dd - uptime days\n"
"$d - uptime days without zero\n"
@ -309,270 +311,270 @@ msgid ""
"$m - uptime minutes without zero"
msgstr ""
#. i18n: file: ui/configwindow.ui:1067
#. i18n: file: ui/configwindow.ui:1069
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:163
#: rc.cpp:165
msgid "Temperature devices"
msgstr ""
#. i18n: file: ui/configwindow.ui:1093
#. i18n: file: ui/configwindow.ui:1095
#. 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: file: ui/configwindow.ui:1203
#. i18n: file: ui/configwindow.ui:1205
#. 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"
msgstr ""
#. i18n: file: ui/configwindow.ui:1103
#. i18n: file: ui/configwindow.ui:1105
#. 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: file: ui/configwindow.ui:1213
#. i18n: file: ui/configwindow.ui:1215
#. 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 ""
"Editable\n"
"del - remove item"
msgstr ""
#. i18n: file: ui/configwindow.ui:1122
#. i18n: file: ui/configwindow.ui:1124
#. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:173
#: rc.cpp:175
msgid "Mount points"
msgstr ""
#. i18n: file: ui/configwindow.ui:1177
#. i18n: file: ui/configwindow.ui:1179
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:183
#: rc.cpp:185
msgid "HDD devices"
msgstr ""
#. i18n: file: ui/configwindow.ui:1230
#. i18n: file: ui/configwindow.ui:1232
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:193
#: rc.cpp:195
msgid "Network directory"
msgstr ""
#. i18n: file: ui/configwindow.ui:1237
#. i18n: file: ui/configwindow.ui:1239
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:196
#: rc.cpp:198
msgid "\"/sys/class/net\" by default"
msgstr ""
#. i18n: file: ui/configwindow.ui:1257
#. i18n: file: ui/configwindow.ui:1259
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199
#: rc.cpp:201
msgid "Disable auto select device and set specified device"
msgstr ""
#. i18n: file: ui/configwindow.ui:1260
#. i18n: file: ui/configwindow.ui:1262
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:202
#: rc.cpp:204
msgid "Set network device"
msgstr ""
#. i18n: file: ui/configwindow.ui:1293
#. i18n: file: ui/configwindow.ui:1295
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:205
#: rc.cpp:207
msgid "Battery device"
msgstr ""
#. i18n: file: ui/configwindow.ui:1300
#. i18n: file: ui/configwindow.ui:1302
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:208
#: rc.cpp:210
msgid "\"/sys/class/power_supply/BAT0/capacity\" by default"
msgstr ""
#. i18n: file: ui/configwindow.ui:1317
#. i18n: file: ui/configwindow.ui:1319
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:211
#: rc.cpp:213
msgid "AC device"
msgstr ""
#. i18n: file: ui/configwindow.ui:1324
#. i18n: file: ui/configwindow.ui:1326
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:214
#: rc.cpp:216
msgid "\"/sys/class/power_supply/AC/online\" by default"
msgstr ""
#. i18n: file: ui/configwindow.ui:1361
#. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:220
#: rc.cpp:222
msgid "amarok"
msgstr ""
#. i18n: file: ui/configwindow.ui:1366
#. i18n: file: ui/configwindow.ui:1368
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223
#: rc.cpp:225
msgid "mpd"
msgstr ""
#. i18n: file: ui/configwindow.ui:1371
#. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226
#: rc.cpp:228
msgid "qmmp"
msgstr ""
#. i18n: file: ui/configwindow.ui:1395
#. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229
#: rc.cpp:231
msgid "Tooltip"
msgstr ""
#. i18n: file: ui/configwindow.ui:1401
#. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232
#: rc.cpp:234
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
msgstr ""
#. i18n: file: ui/configwindow.ui:1422
#. i18n: file: ui/configwindow.ui:1424
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:235
#: rc.cpp:237
msgid "Number of values for tooltips"
msgstr ""
#. i18n: file: ui/configwindow.ui:1477
#. i18n: file: ui/configwindow.ui:1479
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:238
#: rc.cpp:240
msgid "CPU color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1517
#. i18n: file: ui/configwindow.ui:1519
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:241
#: rc.cpp:243
msgid "CPU clock color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1557
#. i18n: file: ui/configwindow.ui:1559
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:244
#: rc.cpp:246
msgid "Memory color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1597
#. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:247
#: rc.cpp:249
msgid "Swap color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1637
#. i18n: file: ui/configwindow.ui:1639
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:250
#: rc.cpp:252
msgid "Download speed color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1677
#. i18n: file: ui/configwindow.ui:1679
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:253
#: rc.cpp:255
msgid "Upload speed color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1723
#. i18n: file: ui/configwindow.ui:1725
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:256
#: rc.cpp:258
msgid "Appearance"
msgstr ""
#. i18n: file: ui/configwindow.ui:1737
#. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259
#: rc.cpp:261
msgid "Time interval"
msgstr ""
#. i18n: file: ui/configwindow.ui:1792
#. i18n: file: ui/configwindow.ui:1794
#. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:262
#: rc.cpp:264
msgid "Font"
msgstr ""
#. i18n: file: ui/configwindow.ui:1832
#. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265
#: rc.cpp:267
msgid "Font size"
msgstr ""
#. i18n: file: ui/configwindow.ui:1887
#. i18n: file: ui/configwindow.ui:1889
#. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:268
#: rc.cpp:270
msgid "Font color"
msgstr ""
#. i18n: file: ui/configwindow.ui:1927
#. i18n: file: ui/configwindow.ui:1929
#. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:271
#: rc.cpp:273
msgid "Font style"
msgstr ""
#. i18n: file: ui/configwindow.ui:1977
#. i18n: file: ui/configwindow.ui:1979
#. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:274
#: rc.cpp:276
msgid "Font weight"
msgstr ""
#. i18n: file: ui/configwindow.ui:2038
#. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277
#: rc.cpp:279
msgid "DataEngine"
msgstr ""
#. i18n: file: ui/configwindow.ui:2052
#. i18n: file: ui/configwindow.ui:2054
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:280
#: rc.cpp:282
msgid "GPU device"
msgstr ""
#. i18n: file: ui/configwindow.ui:2072
#. i18n: file: ui/configwindow.ui:2074
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283
#: rc.cpp:285
msgid "auto"
msgstr ""
#. i18n: file: ui/configwindow.ui:2077
#. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286
#: rc.cpp:288
msgid "nvidia"
msgstr ""
#. i18n: file: ui/configwindow.ui:2082
#. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289
#: rc.cpp:291
msgid "ati"
msgstr ""
#. i18n: file: ui/configwindow.ui:2133
#. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295
#: rc.cpp:297
msgid "MPD address"
msgstr ""
#. i18n: file: ui/configwindow.ui:2157
#. i18n: file: ui/configwindow.ui:2159
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:298
#: rc.cpp:300
msgid "MPD port"
msgstr ""
#. i18n: file: ui/configwindow.ui:2212
#. i18n: file: ui/configwindow.ui:2214
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:301
#: rc.cpp:303
msgid "Custom command"
msgstr ""
#. i18n: file: ui/configwindow.ui:2219
#. i18n: file: ui/configwindow.ui:2221
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:304
#: rc.cpp:306
msgid "Custom command to run"
msgstr ""
#: rc.cpp:305
#: rc.cpp:307
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr ""
#: rc.cpp:306
#: rc.cpp:308
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \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"
"PO-Revision-Date: 2014-04-03 13:16+0400\n"
"POT-Creation-Date: 2014-04-05 19:13+0400\n"
"PO-Revision-Date: 2014-04-05 19:14+0400\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
"Language: ru\n"
@ -92,12 +92,12 @@ msgid ""
"$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n"
"...\n"
"$cpu7 - load CPU for core 7, %"
"$cpu9 - load CPU for core 9, %"
msgstr ""
"$cpu - общая загрузка CPU, %\n"
"$cpu0 - загрузка CPU для ядра 0, %\n"
"...\n"
"$cpu7 - загрузка CPU для ядра 7, %"
"$cpu9 - загрузка CPU для ядра 9, %"
#. i18n: file: ui/configwindow.ui:251
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
@ -112,12 +112,12 @@ msgid ""
"$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n"
"...\n"
"$cpucl7 - CPU clock for core 7, MHz"
"$cpucl9 - CPU clock for core 9, MHz"
msgstr ""
"$cpucl - средняя частота CPU, MHz\n"
"$cpucl0 - частота CPU для ядра 0, MHz\n"
"...\n"
"$cpucl7 - частота CPU для ядра 7, MHz"
"$cpucl9 - частота CPU для ядра 9, MHz"
#. i18n: file: ui/configwindow.ui:315
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
@ -162,73 +162,77 @@ msgstr "$gputemp - физическая температура на GPU"
msgid "Memory"
msgstr "Память"
#. i18n: file: ui/configwindow.ui:503
#. i18n: file: ui/configwindow.ui:504
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:71
#, no-c-format
msgid ""
"$mem - RAM usage, %\n"
"$memmb - RAM usage, MB"
"$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr ""
"$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)
#: rc.cpp:75
#: rc.cpp:76
msgid "Swap"
msgstr "Swap"
#. i18n: file: ui/configwindow.ui:565
#. i18n: file: ui/configwindow.ui:567
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:79
#: rc.cpp:80
#, no-c-format
msgid ""
"$swap - swap usage, %\n"
"$swapmb - swap usage, MB"
"$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr ""
"$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: file: ui/configwindow.ui:2100
#. i18n: file: ui/configwindow.ui:2102
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:292
#: rc.cpp:85 rc.cpp:294
msgid "HDD"
msgstr "HDD"
#. i18n: file: ui/configwindow.ui:623
#. i18n: file: ui/configwindow.ui:625
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:87
#: rc.cpp:89
#, no-c-format
msgid "$hddN - usage for mount point N (from 0), %. Example: $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)
#: rc.cpp:90
#: rc.cpp:92
msgid "HDD Temp"
msgstr "Температура HDD"
#. i18n: file: ui/configwindow.ui:681
#. i18n: file: ui/configwindow.ui:683
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:93
#: rc.cpp:95
msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr ""
"$hddtempN - physical temperature on device N (from 0). Example: $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)
#: rc.cpp:96
#: rc.cpp:98
msgid "Network"
msgstr "Сеть"
#. i18n: file: ui/configwindow.ui:744
#. i18n: file: ui/configwindow.ui:746
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:99
#: rc.cpp:101
msgid ""
"$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n"
@ -238,15 +242,15 @@ msgstr ""
"$up - скорость загрузки, KB/s\n"
"$netdev - текущее устройство"
#. i18n: file: ui/configwindow.ui:792
#. i18n: file: ui/configwindow.ui:794
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:104
#: rc.cpp:106
msgid "Battery"
msgstr "Батарея"
#. i18n: file: ui/configwindow.ui:803
#. i18n: file: ui/configwindow.ui:805
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:108
#: rc.cpp:110
#, no-c-format
msgid ""
"$bat - battery charge, %\n"
@ -255,17 +259,17 @@ msgstr ""
"$bat - заряд батареи, %\n"
"$ac - статус адаптора питания"
#. i18n: file: ui/configwindow.ui:851
#. i18n: file: ui/configwindow.ui:853
#. 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)
#: rc.cpp:112 rc.cpp:217
#: rc.cpp:114 rc.cpp:219
msgid "Music player"
msgstr "Музыкальный плеер"
#. i18n: file: ui/configwindow.ui:865
#. i18n: file: ui/configwindow.ui:867
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:115
#: rc.cpp:117
msgid ""
"$album - song album\n"
"$artist - song artist\n"
@ -279,33 +283,33 @@ msgstr ""
"$time - продолжительность\n"
"$title - название"
#. i18n: file: ui/configwindow.ui:913
#. i18n: file: ui/configwindow.ui:915
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:122
#: rc.cpp:124
msgid "Custom"
msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:923
#. i18n: file: ui/configwindow.ui:925
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:125
#: rc.cpp:127
msgid "$custom - get output from custom command"
msgstr "$custom - получить информацию из своей команды"
#. i18n: file: ui/configwindow.ui:977
#. i18n: file: ui/configwindow.ui:979
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:128
#: rc.cpp:130
msgid "Advanced"
msgstr "Расширенные"
#. i18n: file: ui/configwindow.ui:991
#. i18n: file: ui/configwindow.ui:993
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:131
#: rc.cpp:133
msgid "Custom time format"
msgstr "Свой формат времени"
#. i18n: file: ui/configwindow.ui:1013
#. i18n: file: ui/configwindow.ui:1015
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:134
#: rc.cpp:136
msgid ""
"$dddd - long weekday\n"
"$ddd - short weekday\n"
@ -341,15 +345,15 @@ msgstr ""
"$ss - секунды\n"
"$s - секунды без 0"
#. i18n: file: ui/configwindow.ui:1033
#. i18n: file: ui/configwindow.ui:1035
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:152
#: rc.cpp:154
msgid "Custom uptime format"
msgstr "Свой формат аптайма"
#. i18n: file: ui/configwindow.ui:1045
#. i18n: file: ui/configwindow.ui:1047
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155
#: rc.cpp:157
msgid ""
"$dd - uptime days\n"
"$d - uptime days without zero\n"
@ -365,29 +369,29 @@ msgstr ""
"$mm - минуты аптайма\n"
"$m - минуты аптайма без нулей"
#. i18n: file: ui/configwindow.ui:1067
#. i18n: file: ui/configwindow.ui:1069
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:163
#: rc.cpp:165
msgid "Temperature devices"
msgstr "Температурные устройства"
#. i18n: file: ui/configwindow.ui:1093
#. i18n: file: ui/configwindow.ui:1095
#. 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: file: ui/configwindow.ui:1203
#. i18n: file: ui/configwindow.ui:1205
#. 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"
msgstr "Добавить"
#. i18n: file: ui/configwindow.ui:1103
#. i18n: file: ui/configwindow.ui:1105
#. 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: file: ui/configwindow.ui:1213
#. i18n: file: ui/configwindow.ui:1215
#. 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 ""
"Editable\n"
"del - remove item"
@ -395,93 +399,93 @@ msgstr ""
"Редактируемо\n"
"del - удалить строку"
#. i18n: file: ui/configwindow.ui:1122
#. i18n: file: ui/configwindow.ui:1124
#. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:173
#: rc.cpp:175
msgid "Mount points"
msgstr "Точки монтирования"
#. i18n: file: ui/configwindow.ui:1177
#. i18n: file: ui/configwindow.ui:1179
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:183
#: rc.cpp:185
msgid "HDD devices"
msgstr "HDD"
#. i18n: file: ui/configwindow.ui:1230
#. i18n: file: ui/configwindow.ui:1232
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:193
#: rc.cpp:195
msgid "Network directory"
msgstr "Путь к интерфейсам"
#. i18n: file: ui/configwindow.ui:1237
#. i18n: file: ui/configwindow.ui:1239
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:196
#: rc.cpp:198
msgid "\"/sys/class/net\" by default"
msgstr "\"/sys/class/net\" по умолчанию"
#. i18n: file: ui/configwindow.ui:1257
#. i18n: file: ui/configwindow.ui:1259
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199
#: rc.cpp:201
msgid "Disable auto select device and set specified device"
msgstr "Отключить авто выбор устройства и использовать указанное"
#. i18n: file: ui/configwindow.ui:1260
#. i18n: file: ui/configwindow.ui:1262
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:202
#: rc.cpp:204
msgid "Set network device"
msgstr "Выберете сетевое устройство"
#. i18n: file: ui/configwindow.ui:1293
#. i18n: file: ui/configwindow.ui:1295
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:205
#: rc.cpp:207
msgid "Battery device"
msgstr "Устройство батареи"
#. i18n: file: ui/configwindow.ui:1300
#. i18n: file: ui/configwindow.ui:1302
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:208
#: rc.cpp:210
msgid "\"/sys/class/power_supply/BAT0/capacity\" by default"
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)
#: rc.cpp:211
#: rc.cpp:213
msgid "AC device"
msgstr "Устройство AC"
#. i18n: file: ui/configwindow.ui:1324
#. i18n: file: ui/configwindow.ui:1326
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:214
#: rc.cpp:216
msgid "\"/sys/class/power_supply/AC/online\" by default"
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)
#: rc.cpp:220
#: rc.cpp:222
msgid "amarok"
msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1366
#. i18n: file: ui/configwindow.ui:1368
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223
#: rc.cpp:225
msgid "mpd"
msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1371
#. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:226
#: rc.cpp:228
msgid "qmmp"
msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1395
#. i18n: file: ui/configwindow.ui:1397
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:229
#: rc.cpp:231
msgid "Tooltip"
msgstr "Тултип"
#. i18n: file: ui/configwindow.ui:1401
#. i18n: file: ui/configwindow.ui:1403
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:232
#: rc.cpp:234
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
@ -489,150 +493,150 @@ msgstr ""
"Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. "
"Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми."
#. i18n: file: ui/configwindow.ui:1422
#. i18n: file: ui/configwindow.ui:1424
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:235
#: rc.cpp:237
msgid "Number of values for tooltips"
msgstr "Число хранящихся значений"
#. i18n: file: ui/configwindow.ui:1477
#. i18n: file: ui/configwindow.ui:1479
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:238
#: rc.cpp:240
msgid "CPU color"
msgstr "Цвет CPU"
#. i18n: file: ui/configwindow.ui:1517
#. i18n: file: ui/configwindow.ui:1519
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:241
#: rc.cpp:243
msgid "CPU clock color"
msgstr "Цвет частоты CPU"
#. i18n: file: ui/configwindow.ui:1557
#. i18n: file: ui/configwindow.ui:1559
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:244
#: rc.cpp:246
msgid "Memory color"
msgstr "Цвет памяти"
#. i18n: file: ui/configwindow.ui:1597
#. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:247
#: rc.cpp:249
msgid "Swap color"
msgstr "Цвет swap"
#. i18n: file: ui/configwindow.ui:1637
#. i18n: file: ui/configwindow.ui:1639
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:250
#: rc.cpp:252
msgid "Download speed color"
msgstr "Цвет скорости загрузки"
#. i18n: file: ui/configwindow.ui:1677
#. i18n: file: ui/configwindow.ui:1679
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:253
#: rc.cpp:255
msgid "Upload speed color"
msgstr "Цвет скорости отдачи"
#. i18n: file: ui/configwindow.ui:1723
#. i18n: file: ui/configwindow.ui:1725
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:256
#: rc.cpp:258
msgid "Appearance"
msgstr "Внешний вид"
#. i18n: file: ui/configwindow.ui:1737
#. i18n: file: ui/configwindow.ui:1739
#. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:259
#: rc.cpp:261
msgid "Time interval"
msgstr "Интервал обновления"
#. i18n: file: ui/configwindow.ui:1792
#. i18n: file: ui/configwindow.ui:1794
#. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:262
#: rc.cpp:264
msgid "Font"
msgstr "Шрифт"
#. i18n: file: ui/configwindow.ui:1832
#. i18n: file: ui/configwindow.ui:1834
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:265
#: rc.cpp:267
msgid "Font size"
msgstr "Размер шрифта"
#. i18n: file: ui/configwindow.ui:1887
#. i18n: file: ui/configwindow.ui:1889
#. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:268
#: rc.cpp:270
msgid "Font color"
msgstr "Цвет шрифта"
#. i18n: file: ui/configwindow.ui:1927
#. i18n: file: ui/configwindow.ui:1929
#. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:271
#: rc.cpp:273
msgid "Font style"
msgstr "Стиль шрифта"
#. i18n: file: ui/configwindow.ui:1977
#. i18n: file: ui/configwindow.ui:1979
#. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:274
#: rc.cpp:276
msgid "Font weight"
msgstr "Ширина шрифта"
#. i18n: file: ui/configwindow.ui:2038
#. i18n: file: ui/configwindow.ui:2040
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:277
#: rc.cpp:279
msgid "DataEngine"
msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2052
#. i18n: file: ui/configwindow.ui:2054
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:280
#: rc.cpp:282
msgid "GPU device"
msgstr "Устройство GPU"
#. i18n: file: ui/configwindow.ui:2072
#. i18n: file: ui/configwindow.ui:2074
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283
#: rc.cpp:285
msgid "auto"
msgstr "auto"
#. i18n: file: ui/configwindow.ui:2077
#. i18n: file: ui/configwindow.ui:2079
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286
#: rc.cpp:288
msgid "nvidia"
msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2082
#. i18n: file: ui/configwindow.ui:2084
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:289
#: rc.cpp:291
msgid "ati"
msgstr "ati"
#. i18n: file: ui/configwindow.ui:2133
#. i18n: file: ui/configwindow.ui:2135
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:295
#: rc.cpp:297
msgid "MPD address"
msgstr "Адрес сервера MPD"
#. i18n: file: ui/configwindow.ui:2157
#. i18n: file: ui/configwindow.ui:2159
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:298
#: rc.cpp:300
msgid "MPD port"
msgstr "Порт сервера MPD"
#. i18n: file: ui/configwindow.ui:2212
#. i18n: file: ui/configwindow.ui:2214
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:301
#: rc.cpp:303
msgid "Custom command"
msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:2219
#. i18n: file: ui/configwindow.ui:2221
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:304
#: rc.cpp:306
msgid "Custom command to run"
msgstr "Своя команда для запуска"
#: rc.cpp:305
#: rc.cpp:307
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Evgeniy Alekseev"
#: rc.cpp:306
#: rc.cpp:308
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "esalexeev@gmail.com"