Compare commits

...

5 Commits

Author SHA1 Message Date
c1f18a31bf release 1.8.3 2014-05-12 23:56:52 +04:00
962478a27a release 1.8.2 2014-05-08 00:31:06 +04:00
4857c6658f fix =) 2014-05-03 04:39:44 +04:00
4416298e88 removed unneeded lines in ptm/CMakeLists.txt 2014-05-03 04:38:20 +04:00
a3576275cc Release 1.8.1 2014-04-10 12:20:30 +04:00
22 changed files with 1607 additions and 602 deletions

View File

@ -2,4 +2,5 @@ Current developers:
Evgeniy Alekseev aka arcanis <esalexeev (at) gmail (dot) com> Evgeniy Alekseev aka arcanis <esalexeev (at) gmail (dot) com>
Translators: Translators:
@Mermouy (french translations) @Mermouy (French translations)
Ernesto Avilés Vzqz (Spanish translations)

View File

@ -1,3 +1,13 @@
Ver.1.8.3:
+ added Spanish translation (thanks to Ernesto Avilés Vzqz)
+ added readme to the package
Ver.1.8.2:
+ added different temperature units (Farenheit and Kelvin)
Ver.1.8.1:
* change pkg update time to hour
Ver.1.8.0: Ver.1.8.0:
+ added scrollbar to configuration interface + added scrollbar to configuration interface
+ added AC lines configuration + added AC lines configuration

View File

@ -1,3 +1,13 @@
Вер.1.8.3:
+ добавлен испанский перевод (Ernesto Avilés Vzqz)
+ добавлены файлы readme
Вер.1.8.2:
+ добавлены различные температурные единицы (Farenheit и Kelvin)
Вер.1.8.1:
* поле pkg теперь обновляется раз в час
Вер.1.8.0: Вер.1.8.0:
+ добавлены скроллбары в конфигурационный интерфейс + добавлены скроллбары в конфигурационный интерфейс
+ добавлена настройка значений AC + добавлена настройка значений AC

View File

@ -2,7 +2,7 @@
pkgname=kdeplasma-applets-pytextmonitor pkgname=kdeplasma-applets-pytextmonitor
_pkgname=pytextmonitor _pkgname=pytextmonitor
pkgver=1.8.0 pkgver=1.8.3
pkgrel=1 pkgrel=1
pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in Awesome WM" pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in Awesome WM"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
@ -20,7 +20,7 @@ optdepends=("amarok: for music player monitor"
makedepends=('automoc4' 'cmake') makedepends=('automoc4' 'cmake')
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz) source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install install=${pkgname}.install
md5sums=('9052985dc219e75ffbed88ce3ebf5a32') md5sums=('fc23780079bd9ecf29a3b5e8328abbb3')
backup=('usr/share/config/extsysmon.conf') backup=('usr/share/config/extsysmon.conf')
prepare() { prepare() {

View File

@ -82,6 +82,10 @@ Advanced settings
* tag `$mm` - uptime minutes * tag `$mm` - uptime minutes
* tag `$m` - uptime minutes without zero * tag `$m` - uptime minutes without zero
**Temperature units**
Select units for temperature. Available units are Celsius, Farenheit and Kelvin.
**Temperature devices** **Temperature devices**
List of devices, which will be observed in temp label (combo box items come from `sensors`). List widget is editable, delete key will remove current item. List of devices, which will be observed in temp label (combo box items come from `sensors`). List widget is editable, delete key will remove current item.

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
# update english readme # update english readme
cp README.md readme/en.md cp README.md sources/readme/en.md
SRCDIR="sources" SRCDIR="sources"
VERSION=$(grep -m1 PROJECT_VERSION_MAJOR sources/CMakeLists.txt | awk '{print $3}' | cut -c 1).\ VERSION=$(grep -m1 PROJECT_VERSION_MAJOR sources/CMakeLists.txt | awk '{print $3}' | cut -c 1).\
@ -19,7 +19,7 @@ rm -rf "${ARCHIVE}"
# build widget # build widget
ARCHIVE="pytextmonitor" ARCHIVE="pytextmonitor"
FILES="AUTHORS CHANGELOG CHANGELOG-RU COPYING readme" FILES="AUTHORS CHANGELOG CHANGELOG-RU COPYING"
IGNORELIST="build usr" IGNORELIST="build usr"
# create archive # create archive
[[ -e ${ARCHIVE}-${VERSION}-src.tar.xz ]] && rm -f "${ARCHIVE}-${VERSION}-src.tar.xz" [[ -e ${ARCHIVE}-${VERSION}-src.tar.xz ]] && rm -f "${ARCHIVE}-${VERSION}-src.tar.xz"

View File

@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW)
project (pytextmonitor) project (pytextmonitor)
set (PROJECT_VERSION_MAJOR 1) set (PROJECT_VERSION_MAJOR 1)
set (PROJECT_VERSION_MINOR 8) set (PROJECT_VERSION_MINOR 8)
set (PROJECT_VERSION_PATCH 0) set (PROJECT_VERSION_PATCH 3)
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}) set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
message (STATUS "Version: ${PROJECT_VERSION}") message (STATUS "Version: ${PROJECT_VERSION}")
@ -25,3 +25,4 @@ endif ()
add_subdirectory (ext-sysmon) add_subdirectory (ext-sysmon)
add_subdirectory (ptm) add_subdirectory (ptm)
add_subdirectory (readme)

View File

@ -6,10 +6,7 @@ message (STATUS "Subproject ${SUBPROJECT}")
# find required libaries # find required libaries
find_package (KDE4 REQUIRED) find_package (KDE4 REQUIRED)
include (KDE4Defaults) add_definitions (${KDE4_DEFINITIONS})
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
include_directories (${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/../)
add_subdirectory (po) add_subdirectory (po)

View File

@ -48,6 +48,7 @@ class ConfigDefinition:
settings.set('custom_time', str(self.configpage.ui.lineEdit_timeFormat.text())) settings.set('custom_time', str(self.configpage.ui.lineEdit_timeFormat.text()))
settings.set('custom_uptime', str(self.configpage.ui.lineEdit_uptimeFormat.text())) settings.set('custom_uptime', str(self.configpage.ui.lineEdit_uptimeFormat.text()))
settings.set('temp_units', str(self.configpage.ui.comboBox_tempUnits.currentText()))
item = QStringList() item = QStringList()
for i in range(self.configpage.ui.listWidget_tempDevice.count()): for i in range(self.configpage.ui.listWidget_tempDevice.count()):
item.append(self.configpage.ui.listWidget_tempDevice.item(i).text()) item.append(self.configpage.ui.listWidget_tempDevice.item(i).text())
@ -133,6 +134,8 @@ class ConfigDefinition:
self.configpage.ui.lineEdit_timeFormat.setText(str(settings.get('custom_time', '$hh:$mm'))) self.configpage.ui.lineEdit_timeFormat.setText(str(settings.get('custom_time', '$hh:$mm')))
self.configpage.ui.lineEdit_uptimeFormat.setText(str(settings.get('custom_uptime', '$ds,$hs,$ms'))) self.configpage.ui.lineEdit_uptimeFormat.setText(str(settings.get('custom_uptime', '$ds,$hs,$ms')))
index = self.configpage.ui.comboBox_tempUnits.findText(str(settings.get('temp_units', "Celsius")))
self.configpage.ui.comboBox_tempUnits.setCurrentIndex(index)
commandOut = commands.getoutput("sensors") commandOut = commands.getoutput("sensors")
for item in commandOut.split("\n\n"): for item in commandOut.split("\n\n"):
for device in item.split("\n"): for device in item.split("\n"):

View File

@ -19,6 +19,7 @@
from PyQt4.QtCore import * from PyQt4.QtCore import *
from PyQt4.QtGui import * from PyQt4.QtGui import *
from PyKDE4.plasma import Plasma
import datetime import datetime
@ -65,7 +66,7 @@ class DataEngine:
dataEngines['system'].connectSource("network/interfaces/" + names['net'] + "/transmitter/data", self.parent, interval) dataEngines['system'].connectSource("network/interfaces/" + names['net'] + "/transmitter/data", self.parent, interval)
dataEngines['system'].connectSource("network/interfaces/" + names['net'] + "/receiver/data", self.parent, interval) dataEngines['system'].connectSource("network/interfaces/" + names['net'] + "/receiver/data", self.parent, interval)
if (bools['pkg'] > 0): if (bools['pkg'] > 0):
dataEngines['ext'].connectSource("pkg", self.parent, interval) dataEngines['ext'].connectSource("pkg", self.parent, 60*60*1000, Plasma.AlignToHour)
if (bools['player'] > 0): if (bools['player'] > 0):
dataEngines['ext'].connectSource("player", self.parent, interval) dataEngines['ext'].connectSource("player", self.parent, interval)
if (bools['ps'] > 0): if (bools['ps'] > 0):

View File

@ -35,6 +35,17 @@ import tooltip
from util import * from util import *
def getTemp(temp, unit):
"""function to return temperature"""
if (unit == "Celsius"):
pass
elif (unit == "Fahrenheit"):
temp = str(round(((float(temp) * 9.0 / 5.0) + 32.0), 1))
elif (unit == "Kelvin"):
temp = str(round((float(temp) + 273.15), 1))
return temp
class CustomPlasmaLabel(Plasma.Label): class CustomPlasmaLabel(Plasma.Label):
"""new Label with defined clicked() event""" """new Label with defined clicked() event"""
@ -374,7 +385,7 @@ class pyTextWidget(plasmascript.Applet):
for i in devices: for i in devices:
if (line.split('$hddtemp' + str(i))[0] != line): if (line.split('$hddtemp' + str(i))[0] != line):
line = line.split('$hddtemp' + str(i))[0] +\ line = line.split('$hddtemp' + str(i))[0] +\
str(self.ptm['values']['hddtemp'][self.ptm['names']['hddtemp'][i]]) +\ getTemp(str(self.ptm['values']['hddtemp'][self.ptm['names']['hddtemp'][i]]), self.ptm['vars']['adv']['tempUnit']) +\
line.split('$hddtemp' + str(i))[1] line.split('$hddtemp' + str(i))[1]
text = self.ptm['vars']['app']['format'][0] + line + self.ptm['vars']['app']['format'][1] text = self.ptm['vars']['app']['format'][0] + line + self.ptm['vars']['app']['format'][1]
self.setText("hddtemp", text) self.setText("hddtemp", text)
@ -443,7 +454,7 @@ class pyTextWidget(plasmascript.Applet):
for i in devices: for i in devices:
if (line.split('$temp' + str(i))[0] != line): if (line.split('$temp' + str(i))[0] != line):
line = line.split('$temp' + str(i))[0] +\ line = line.split('$temp' + str(i))[0] +\
str(self.ptm['values']['temp'][self.ptm['names']['temp'][i]]) +\ getTemp(str(self.ptm['values']['temp'][self.ptm['names']['temp'][i]]), self.ptm['vars']['adv']['tempUnits']) +\
line.split('$temp' + str(i))[1] line.split('$temp' + str(i))[1]
text = self.ptm['vars']['app']['format'][0] + line + self.ptm['vars']['app']['format'][1] text = self.ptm['vars']['app']['format'][0] + line + self.ptm['vars']['app']['format'][1]
self.setText("temp", text) self.setText("temp", text)
@ -540,7 +551,7 @@ class pyTextWidget(plasmascript.Applet):
line = line.split('$gpu')[0] + text + line.split('$gpu')[1] line = line.split('$gpu')[0] + text + line.split('$gpu')[1]
elif (name == "gputemp"): elif (name == "gputemp"):
if (line.split('$gputemp')[0] != line): if (line.split('$gputemp')[0] != line):
line = line.split('$gputemp')[0] + text + line.split('$gputemp')[1] line = line.split('$gputemp')[0] + getTemp(text, self.ptm['vars']['adv']['tempUnits']) + line.split('$gputemp')[1]
elif (name == "pkg"): elif (name == "pkg"):
for item in text.keys(): for item in text.keys():
if (line.split('$' + item)[0] != line): if (line.split('$' + item)[0] != line):

View File

@ -40,6 +40,7 @@ class Reinit():
ptmVars['adv']['acDev'] = str(settings.get('ac_device', '/sys/class/power_supply/AC/online')) ptmVars['adv']['acDev'] = str(settings.get('ac_device', '/sys/class/power_supply/AC/online'))
ptmVars['adv']['acOnline'] = str(settings.get('ac_online', '(*)')) ptmVars['adv']['acOnline'] = str(settings.get('ac_online', '(*)'))
ptmVars['adv']['acOffline'] = str(settings.get('ac_offline', '( )')) ptmVars['adv']['acOffline'] = str(settings.get('ac_offline', '( )'))
ptmVars['adv']['tempUnits'] = str(settings.get('temp_units', 'Celsius'))
ptmVars['adv']['batDev'] = str(settings.get('battery_device', '/sys/class/power_supply/BAT0/capacity')) ptmVars['adv']['batDev'] = str(settings.get('battery_device', '/sys/class/power_supply/BAT0/capacity'))
ptmVars['adv']['customTime'] = str(settings.get('custom_time', '$hh:$mm')) ptmVars['adv']['customTime'] = str(settings.get('custom_time', '$hh:$mm'))
ptmVars['adv']['customUptime'] = str(settings.get('custom_uptime', '$dd,$hh,$mm')) ptmVars['adv']['customUptime'] = str(settings.get('custom_uptime', '$dd,$hh,$mm'))

View File

@ -1131,9 +1131,9 @@ $ps - list of running processes comma separated</string>
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>-102</y>
<width>328</width> <width>526</width>
<height>611</height> <height>642</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_8"> <layout class="QVBoxLayout" name="verticalLayout_8">
@ -1211,6 +1211,61 @@ $m - uptime minutes without zero</string>
</item> </item>
</layout> </layout>
</item> </item>
<item>
<layout class="QHBoxLayout" name="layout_tempUnits">
<item>
<widget class="QLabel" name="label_tempUnits">
<property name="minimumSize">
<size>
<width>120</width>
<height>0</height>
</size>
</property>
<property name="text">
<string>Temperature units</string>
</property>
</widget>
</item>
<item>
<spacer name="spacer_tempUnits">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QComboBox" name="comboBox_tempUnits">
<property name="minimumSize">
<size>
<width>180</width>
<height>0</height>
</size>
</property>
<item>
<property name="text">
<string notr="true">Celsius</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">Fahrenheit</string>
</property>
</item>
<item>
<property name="text">
<string notr="true">Kelvin</string>
</property>
</item>
</widget>
</item>
</layout>
</item>
<item> <item>
<layout class="QVBoxLayout" name="layout_tempDevice"> <layout class="QVBoxLayout" name="layout_tempDevice">
<item> <item>
@ -1578,17 +1633,17 @@ del - remove item</string>
</property> </property>
<item> <item>
<property name="text"> <property name="text">
<string>amarok</string> <string notr="true">amarok</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>mpd</string> <string notr="true">mpd</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>qmmp</string> <string notr="true">qmmp</string>
</property> </property>
</item> </item>
</widget> </widget>
@ -1642,8 +1697,8 @@ del - remove item</string>
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>326</width> <width>544</width>
<height>227</height> <height>504</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_9"> <layout class="QVBoxLayout" name="verticalLayout_9">
@ -1976,8 +2031,8 @@ del - remove item</string>
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>326</width> <width>544</width>
<height>190</height> <height>540</height>
</rect> </rect>
</property> </property>
<layout class="QVBoxLayout" name="verticalLayout_10"> <layout class="QVBoxLayout" name="verticalLayout_10">
@ -2373,17 +2428,17 @@ del - remove item</string>
</property> </property>
<item> <item>
<property name="text"> <property name="text">
<string>auto</string> <string notr="true">auto</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>nvidia</string> <string notr="true">nvidia</string>
</property> </property>
</item> </item>
<item> <item>
<property name="text"> <property name="text">
<string>ati</string> <string notr="true">ati</string>
</property> </property>
</item> </item>
</widget> </widget>
@ -2704,6 +2759,7 @@ del - remove item</string>
<tabstop>scrollArea_advanced</tabstop> <tabstop>scrollArea_advanced</tabstop>
<tabstop>lineEdit_timeFormat</tabstop> <tabstop>lineEdit_timeFormat</tabstop>
<tabstop>lineEdit_uptimeFormat</tabstop> <tabstop>lineEdit_uptimeFormat</tabstop>
<tabstop>comboBox_tempUnits</tabstop>
<tabstop>comboBox_tempDevice</tabstop> <tabstop>comboBox_tempDevice</tabstop>
<tabstop>pushButton_tempDevice</tabstop> <tabstop>pushButton_tempDevice</tabstop>
<tabstop>listWidget_tempDevice</tabstop> <tabstop>listWidget_tempDevice</tabstop>
@ -2742,6 +2798,10 @@ del - remove item</string>
<tabstop>comboBox_hdddev</tabstop> <tabstop>comboBox_hdddev</tabstop>
<tabstop>lineEdit_mpdaddress</tabstop> <tabstop>lineEdit_mpdaddress</tabstop>
<tabstop>spinBox_mpdport</tabstop> <tabstop>spinBox_mpdport</tabstop>
<tabstop>comboBox_pkgCommand</tabstop>
<tabstop>spinBox_pkgCommandNum</tabstop>
<tabstop>pushButton_pkgCommand</tabstop>
<tabstop>listWidget_pkgCommand</tabstop>
</tabstops> </tabstops>
<resources/> <resources/>
<connections/> <connections/>

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-09 12:35+0400\n" "POT-Creation-Date: 2014-05-08 00:24+0400\n"
"PO-Revision-Date: 2014-04-09 12:26+0400\n" "PO-Revision-Date: 2014-05-08 00:24+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"
@ -204,9 +204,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:634 #. i18n: file: ui/configwindow.ui:634
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2404 #. i18n: file: ui/configwindow.ui:2459
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:89 rc.cpp:332 #: rc.cpp:89 rc.cpp:317
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
@ -274,9 +274,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:874 #. i18n: file: ui/configwindow.ui:874
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1561 #. i18n: file: ui/configwindow.ui:1616
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:120 rc.cpp:251 #: rc.cpp:120 rc.cpp:254
msgid "Music player" msgid "Music player"
msgstr "Music player" msgstr "Music player"
@ -316,9 +316,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:996 #. i18n: file: ui/configwindow.ui:996
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg)
#. i18n: file: ui/configwindow.ui:2518 #. i18n: file: ui/configwindow.ui:2573
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommand) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommand)
#: rc.cpp:138 rc.cpp:341 #: rc.cpp:138 rc.cpp:326
msgid "Package manager" msgid "Package manager"
msgstr "Package manager" msgstr "Package manager"
@ -418,33 +418,39 @@ msgstr ""
"$mm - uptime minutes\n" "$mm - uptime minutes\n"
"$m - uptime minutes without zero" "$m - uptime minutes without zero"
#. i18n: file: ui/configwindow.ui:1227 #. i18n: file: ui/configwindow.ui:1225
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempUnits)
#: rc.cpp:185 #: rc.cpp:185
msgid "Temperature units"
msgstr "Temperature units"
#. i18n: file: ui/configwindow.ui:1282
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:188
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Temperature devices" msgstr "Temperature devices"
#. i18n: file: ui/configwindow.ui:1253
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1308 #. i18n: file: ui/configwindow.ui:1308
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1363 #. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1418
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#. i18n: file: ui/configwindow.ui:2604 #. i18n: file: ui/configwindow.ui:2659
#. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand) #. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand)
#: rc.cpp:188 rc.cpp:198 rc.cpp:208 rc.cpp:365 #: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:350
msgid "Add" msgid "Add"
msgstr "Add" msgstr "Add"
#. i18n: file: ui/configwindow.ui:1263
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1318 #. i18n: file: ui/configwindow.ui:1318
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1373 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1428
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#. i18n: file: ui/configwindow.ui:2614 #. i18n: file: ui/configwindow.ui:2669
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand)
#: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:368 #: rc.cpp:194 rc.cpp:204 rc.cpp:214 rc.cpp:353
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -452,117 +458,99 @@ msgstr ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
#. i18n: file: ui/configwindow.ui:1282 #. i18n: file: ui/configwindow.ui:1337
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:195 #: rc.cpp:198
msgid "Mount points" msgid "Mount points"
msgstr "Mount points" msgstr "Mount points"
#. i18n: file: ui/configwindow.ui:1337 #. i18n: file: ui/configwindow.ui:1392
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:205 #: rc.cpp:208
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD devices" msgstr "HDD devices"
#. i18n: file: ui/configwindow.ui:1390 #. i18n: file: ui/configwindow.ui:1445
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:215 #: rc.cpp:218
msgid "Network directory" msgid "Network directory"
msgstr "Network directory" msgstr "Network directory"
#. i18n: file: ui/configwindow.ui:1397 #. i18n: file: ui/configwindow.ui:1452
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:218 #: rc.cpp:221
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:1417 #. i18n: file: ui/configwindow.ui:1472
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:221 #: rc.cpp:224
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:1420 #. i18n: file: ui/configwindow.ui:1475
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:224 #: rc.cpp:227
msgid "Set network device" msgid "Set network device"
msgstr "Set network device" msgstr "Set network device"
#. i18n: file: ui/configwindow.ui:1453 #. i18n: file: ui/configwindow.ui:1508
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:227 #: rc.cpp:230
msgid "Battery device" msgid "Battery device"
msgstr "Battery device" msgstr "Battery device"
#. i18n: file: ui/configwindow.ui:1460 #. i18n: file: ui/configwindow.ui:1515
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:230 #: rc.cpp:233
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:1477 #. i18n: file: ui/configwindow.ui:1532
#. i18n: ectx: property (text), widget (QLabel, label_acOnline) #. i18n: ectx: property (text), widget (QLabel, label_acOnline)
#: rc.cpp:233 #: rc.cpp:236
msgid "AC online tag" msgid "AC online tag"
msgstr "AC online tag" msgstr "AC online tag"
#. i18n: file: ui/configwindow.ui:1484 #. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
#: rc.cpp:236 #: rc.cpp:239
msgid "Line, which returns when AC is online" msgid "Line, which returns when AC is online"
msgstr "Line, which returns when AC is online" msgstr "Line, which returns when AC is online"
#. i18n: file: ui/configwindow.ui:1507 #. i18n: file: ui/configwindow.ui:1562
#. i18n: ectx: property (text), widget (QLabel, label_acOffline) #. i18n: ectx: property (text), widget (QLabel, label_acOffline)
#: rc.cpp:239 #: rc.cpp:242
msgid "AC offline tag" msgid "AC offline tag"
msgstr "AC offline tag" msgstr "AC offline tag"
#. i18n: file: ui/configwindow.ui:1514 #. i18n: file: ui/configwindow.ui:1569
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
#: rc.cpp:242 #: rc.cpp:245
msgid "Line, which returns when AC is offline" msgid "Line, which returns when AC is offline"
msgstr "Line, which returns when AC is offline" msgstr "Line, which returns when AC is offline"
#. i18n: file: ui/configwindow.ui:1537 #. i18n: file: ui/configwindow.ui:1592
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:245 #: rc.cpp:248
msgid "AC device" msgid "AC device"
msgstr "AC device" msgstr "AC device"
#. i18n: file: ui/configwindow.ui:1544 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:248 #: rc.cpp:251
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:1581 #. i18n: file: ui/configwindow.ui:1674
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:254
msgid "amarok"
msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1586
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:257
msgid "mpd"
msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1591
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:260
msgid "qmmp"
msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1619
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:263 #: rc.cpp:257
msgid "Tooltip" msgid "Tooltip"
msgstr "Tooltip" msgstr "Tooltip"
#. i18n: file: ui/configwindow.ui:1625 #. i18n: file: ui/configwindow.ui:1680
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:266 #: rc.cpp:260
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."
@ -570,196 +558,196 @@ 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:1661 #. i18n: file: ui/configwindow.ui:1716
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:269 #: rc.cpp:263
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:1716 #. i18n: file: ui/configwindow.ui:1771
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:272 #: rc.cpp:266
msgid "CPU clock color" msgid "CPU clock color"
msgstr "CPU clock color" msgstr "CPU clock color"
#. i18n: file: ui/configwindow.ui:1756 #. i18n: file: ui/configwindow.ui:1811
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:275 #: rc.cpp:269
msgid "Swap color" msgid "Swap color"
msgstr "Swap color" msgstr "Swap color"
#. i18n: file: ui/configwindow.ui:1796 #. i18n: file: ui/configwindow.ui:1851
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:278 #: rc.cpp:272
msgid "CPU color" msgid "CPU color"
msgstr "CPU color" msgstr "CPU color"
#. i18n: file: ui/configwindow.ui:1836 #. i18n: file: ui/configwindow.ui:1891
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:281 #: rc.cpp:275
msgid "Download speed color" msgid "Download speed color"
msgstr "Download speed color" msgstr "Download speed color"
#. i18n: file: ui/configwindow.ui:1876 #. i18n: file: ui/configwindow.ui:1931
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:284 #: rc.cpp:278
msgid "Memory color" msgid "Memory color"
msgstr "Memory color" msgstr "Memory color"
#. i18n: file: ui/configwindow.ui:1916 #. i18n: file: ui/configwindow.ui:1971
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:287 #: rc.cpp:281
msgid "Upload speed color" msgid "Upload speed color"
msgstr "Upload speed color" msgstr "Upload speed color"
#. i18n: file: ui/configwindow.ui:1966 #. i18n: file: ui/configwindow.ui:2021
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:290 #: rc.cpp:284
msgid "Appearance" msgid "Appearance"
msgstr "Appearance" msgstr "Appearance"
#. i18n: file: ui/configwindow.ui:1995 #. i18n: file: ui/configwindow.ui:2050
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:293 #: rc.cpp:287
msgid "Time interval" msgid "Time interval"
msgstr "Time interval" msgstr "Time interval"
#. i18n: file: ui/configwindow.ui:2050 #. i18n: file: ui/configwindow.ui:2105
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:296 #: rc.cpp:290
msgid "Font" msgid "Font"
msgstr "Font" msgstr "Font"
#. i18n: file: ui/configwindow.ui:2090 #. i18n: file: ui/configwindow.ui:2145
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:299 #: rc.cpp:293
msgid "Font size" msgid "Font size"
msgstr "Font size" msgstr "Font size"
#. i18n: file: ui/configwindow.ui:2145 #. i18n: file: ui/configwindow.ui:2200
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:302 #: rc.cpp:296
msgid "Font color" msgid "Font color"
msgstr "Font color" msgstr "Font color"
#. i18n: file: ui/configwindow.ui:2185 #. i18n: file: ui/configwindow.ui:2240
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:305 #: rc.cpp:299
msgid "Font style" msgid "Font style"
msgstr "Font style" msgstr "Font style"
#. i18n: file: ui/configwindow.ui:2235 #. i18n: file: ui/configwindow.ui:2290
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:308 #: rc.cpp:302
msgid "Font weight" msgid "Font weight"
msgstr "Font weight" msgstr "Font weight"
#. i18n: file: ui/configwindow.ui:2300 #. i18n: file: ui/configwindow.ui:2355
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:311 #: rc.cpp:305
msgid "DataEngine" msgid "DataEngine"
msgstr "DataEngine" msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2329 #. i18n: file: ui/configwindow.ui:2384
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:314 #: rc.cpp:308
msgid "Custom command" msgid "Custom command"
msgstr "Custom command" msgstr "Custom command"
#. i18n: file: ui/configwindow.ui:2336 #. i18n: file: ui/configwindow.ui:2391
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:317 #: rc.cpp:311
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Custom command to run" msgstr "Custom command to run"
#. i18n: file: ui/configwindow.ui:2356 #. i18n: file: ui/configwindow.ui:2411
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:320 #: rc.cpp:314
msgid "GPU device" msgid "GPU device"
msgstr "GPU device" msgstr "GPU device"
#. i18n: file: ui/configwindow.ui:2376 #. i18n: file: ui/configwindow.ui:2492
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:323
msgid "auto"
msgstr "auto"
#. i18n: file: ui/configwindow.ui:2381
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:326
msgid "nvidia"
msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2386
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:329
msgid "ati"
msgstr "ati"
#. i18n: file: ui/configwindow.ui:2437
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:335 #: rc.cpp:320
msgid "MPD address" msgid "MPD address"
msgstr "MPD address" msgstr "MPD address"
#. i18n: file: ui/configwindow.ui:2461 #. i18n: file: ui/configwindow.ui:2516
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:338 #: rc.cpp:323
msgid "MPD port" msgid "MPD port"
msgstr "MPD port" msgstr "MPD port"
#. i18n: file: ui/configwindow.ui:2535 #. i18n: file: ui/configwindow.ui:2590
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:344 #: rc.cpp:329
msgid "pacman -Qu" msgid "pacman -Qu"
msgstr "pacman -Qu" msgstr "pacman -Qu"
#. i18n: file: ui/configwindow.ui:2540 #. i18n: file: ui/configwindow.ui:2595
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:347 #: rc.cpp:332
msgid "apt-show-versions -u -b" msgid "apt-show-versions -u -b"
msgstr "apt-show-versions -u -b" msgstr "apt-show-versions -u -b"
#. i18n: file: ui/configwindow.ui:2545 #. i18n: file: ui/configwindow.ui:2600
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:350 #: rc.cpp:335
msgid "aptitude search '~U'" msgid "aptitude search '~U'"
msgstr "aptitude search '~U'" msgstr "aptitude search '~U'"
#. i18n: file: ui/configwindow.ui:2550 #. i18n: file: ui/configwindow.ui:2605
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:353 #: rc.cpp:338
msgid "yum list updates" msgid "yum list updates"
msgstr "yum list updates" msgstr "yum list updates"
#. i18n: file: ui/configwindow.ui:2555 #. i18n: file: ui/configwindow.ui:2610
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:356 #: rc.cpp:341
msgid "pkg_version -I -l '<'" msgid "pkg_version -I -l '<'"
msgstr "pkg_version -I -l '<'" msgstr "pkg_version -I -l '<'"
#. i18n: file: ui/configwindow.ui:2560 #. i18n: file: ui/configwindow.ui:2615
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:359 #: rc.cpp:344
msgid "urpmq --auto-select" msgid "urpmq --auto-select"
msgstr "urpmq --auto-select" msgstr "urpmq --auto-select"
#. i18n: file: ui/configwindow.ui:2578 #. i18n: file: ui/configwindow.ui:2633
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum)
#: rc.cpp:362 #: rc.cpp:347
msgid "Number of null lines" msgid "Number of null lines"
msgstr "Number of null lines" msgstr "Number of null lines"
#: rc.cpp:370 #: rc.cpp:355
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:371 #: rc.cpp:356
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"
#~ msgid "amarok"
#~ msgstr "amarok"
#~ msgid "mpd"
#~ msgstr "mpd"
#~ msgid "qmmp"
#~ msgstr "qmmp"
#~ msgid "auto"
#~ msgstr "auto"
#~ msgid "nvidia"
#~ msgstr "nvidia"
#~ msgid "ati"
#~ msgstr "ati"
#~ 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"

739
sources/ptm/po/es.po Normal file
View File

@ -0,0 +1,739 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Ernesto Avilés Vzqz <whippiii@gmail.com>, 2014.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n"
"POT-Creation-Date: 2014-05-08 00:24+0400\n"
"PO-Revision-Date: 2014-05-08 11:43-0430\n"
"Last-Translator: Ernesto Avilés Vzqz <whippiii@gmail.com>\n"
"Language-Team: Spanish <kde-i18n-doc@kde.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Lokalize 1.5\n"
#. i18n: file: ui/configwindow.ui:32
#. i18n: ectx: property (windowTitle), widget (QWidget, ConfigWindow)
#: rc.cpp:3
msgid "Form"
msgstr "Formulario"
#. i18n: file: ui/configwindow.ui:42
#. i18n: ectx: attribute (title), widget (QWidget, settings)
#: rc.cpp:6
msgid "Widget settings"
msgstr "Configuración del componente"
#. i18n: file: ui/configwindow.ui:48
#. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:9
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"pytextmonitor/\">project homepage</a>"
msgstr ""
"Puede encontrar información detallada en el <a "
"href=\"http://arcanis.name/projects/"
"pytextmonitor/\">sitio del proyecto</a>"
#. i18n: file: ui/configwindow.ui:84
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
#: rc.cpp:12
msgid "Time"
msgstr "Hora"
#. i18n: file: ui/configwindow.ui:98
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
#: rc.cpp:15
msgid ""
"$time - time in default format\n"
"$isotime - time in ISO format\n"
"$shorttime - time in short format\n"
"$longtime - time in log format\n"
"$custom - custom time format"
msgstr ""
"$time - hora en el formato por defecto\n"
"$isotime - hora en formato ISO\n"
"$shorttime - hora en formato corto\n"
"$longtime - hora en formato largo\n"
"$custom - hora en formato personalizado"
#. i18n: file: ui/configwindow.ui:143
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
#: rc.cpp:22
msgid "Uptime"
msgstr "Tiempo de actividad"
#. i18n: file: ui/configwindow.ui:154
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
#: rc.cpp:25
msgid ""
"$uptime - system uptime\n"
"$custom - custom format"
msgstr ""
"$uptime - tiempo de actividad del sistema\n"
"$custom - formato personalizado"
#. i18n: file: ui/configwindow.ui:202
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
#: rc.cpp:29
msgid "CPU"
msgstr "CPU"
#. i18n: file: ui/configwindow.ui:220
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
#: rc.cpp:33
#, no-c-format
msgid ""
"$cpu - total load CPU, %\n"
"$cpu0 - load CPU for core 0, %\n"
"...\n"
"$cpu9 - load CPU for core 9, %\n"
"...\n"
"$cpuN - load CPU for core N, %"
msgstr ""
"$cpu - carga total de la CPU, %\n"
"$cpu0 - carga de la CPU para el núcleo 0, %\n"
"...\n"
"$cpu9 - carga de la CPU para el núcleo 9, %\n"
"...\n"
"$cpuN - carga de la CPU para el núcleo N, %"
#. i18n: file: ui/configwindow.ui:268
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
#: rc.cpp:41
msgid "CPU Clock"
msgstr "Frecuencia de la CPU"
#. i18n: file: ui/configwindow.ui:286
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
#: rc.cpp:44
msgid ""
"$cpucl - average CPU clock, MHz\n"
"$cpucl0 - CPU clock for core 0, MHz\n"
"...\n"
"$cpucl9 - CPU clock for core 9, MHz\n"
"...\n"
"$cpuclN - CPU clock for core N, MHz"
msgstr ""
"$cpucl - frecuencia de la CPU promedio, MHz\n"
"$cpucl0 - frecuencia de la CPU para el núcleo 0, MHz\n"
"...\n"
"$cpucl9 - frecuencia de la CPU para el núcleo 9, MHz\n"
"...\n"
"$cpuclN - frecuencia de la CPU para el núcleo N, MHz"
#. i18n: file: ui/configwindow.ui:334
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
#: rc.cpp:52
msgid "Temperature"
msgstr "Temperatura"
#. i18n: file: ui/configwindow.ui:344
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
#: rc.cpp:55
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
msgstr ""
"$tempN - temperatura física en el dispositivo N (a partir de 0). Ejemplo: "
"$temp0"
#. i18n: file: ui/configwindow.ui:392
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
#: rc.cpp:58
msgid "GPU"
msgstr "GPU"
#. i18n: file: ui/configwindow.ui:402
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
#: rc.cpp:62
#, no-c-format
msgid "$gpu - gpu usage, %"
msgstr "$gpu - uso de la GPU, %"
#. i18n: file: ui/configwindow.ui:450
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
#: rc.cpp:65
msgid "GPU Temp"
msgstr "Temperatura de la GPU"
#. i18n: file: ui/configwindow.ui:460
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
#: rc.cpp:68
msgid "$gputemp - physical temperature on GPU"
msgstr "$gputemp - temperatura física de la GPU"
#. i18n: file: ui/configwindow.ui:508
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
#: rc.cpp:71
msgid "Memory"
msgstr "Memoria"
#. i18n: file: ui/configwindow.ui:523
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:75
#, no-c-format
msgid ""
"$mem - RAM usage, %\n"
"$memmb - RAM usage, MB\n"
"$memgb - RAM usage, GB"
msgstr ""
"$mem - uso de la RAM, %\n"
"$memmb - uso de la RAM, MB\n"
"$memgb - uso de la RAM, GB"
#. i18n: file: ui/configwindow.ui:571
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:80
msgid "Swap"
msgstr "Swap"
#. i18n: file: ui/configwindow.ui:586
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:84
#, no-c-format
msgid ""
"$swap - swap usage, %\n"
"$swapmb - swap usage, MB\n"
"$swapgb - swap usage, GB"
msgstr ""
"$swap - uso de la swap, %\n"
"$swapmb - uso de la swap, MB\n"
"$swapgb - uso de la swap, GB"
#. i18n: file: ui/configwindow.ui:634
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2459
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:89 rc.cpp:317
msgid "HDD"
msgstr "Disco duro"
#. i18n: file: ui/configwindow.ui:646
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:93
#, no-c-format
msgid ""
"$hddN - usage for mount point N (from 0), %. Example: $hdd0\n"
"$hddmbN - usage for mount point N (from 0), MB. Example: $hddmb0\n"
"$hddgbN - usage for mount point N (from 0), GB. Example: $hddgb0"
msgstr ""
"$hddN - uso para el punto de montaje N (a partir de 0), %. Ejemplo: $hdd0\n"
"$hddmbN - uso para el punto de montaje N (a partir de 0), MB. Ejemplo: "
"$hddmb0\n"
"$hddgbN - uso para el punto de montaje N (a partir de 0), GB. Ejemplo: $hddgb0"
#. i18n: file: ui/configwindow.ui:694
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:98
msgid "HDD Temp"
msgstr "Temperatura del disco duro"
#. i18n: file: ui/configwindow.ui:704
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:101
msgid ""
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
msgstr ""
"$hddtempN - temperatura física en el dispositivo N (a partir de 0). Ejemplo: "
"$hddtemp0"
#. i18n: file: ui/configwindow.ui:752
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:104
msgid "Network"
msgstr "Red"
#. i18n: file: ui/configwindow.ui:767
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:107
msgid ""
"$down - download speed, KB/s\n"
"$up - upload speed, KB/s\n"
"$netdev - current network device"
msgstr ""
"$down - velocidad de recepción, KB/s\n"
"$up - velocidad de envío, KB/s\n"
"$netdev - dispositivo de red actual"
#. i18n: file: ui/configwindow.ui:815
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:112
msgid "Battery"
msgstr "Batería"
#. i18n: file: ui/configwindow.ui:826
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:116
#, no-c-format
msgid ""
"$bat - battery charge, %\n"
"$ac - AC status"
msgstr ""
"$bat - carga de la batería, %\n"
"$ac - estado de la alimentación"
#. i18n: file: ui/configwindow.ui:874
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1616
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:120 rc.cpp:254
msgid "Music player"
msgstr "Reproductor de música"
#. i18n: file: ui/configwindow.ui:888
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:123
msgid ""
"$album - song album\n"
"$artist - song artist\n"
"$progress - song progress\n"
"$time - song duration\n"
"$title - song title"
msgstr ""
"$album - álbum de la canción\n"
"$artist - artista de la canción\n"
"$progress - progreso de la canción\n"
"$time - duración de la canción\n"
"$title - título de la canción"
#. i18n: file: ui/configwindow.ui:936
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_ps)
#: rc.cpp:130
msgid "Processes"
msgstr "Procesos"
#. i18n: file: ui/configwindow.ui:948
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_ps)
#: rc.cpp:133
msgid ""
"$pscount - number of running processes\n"
"$pstotal - total number of running processes\n"
"$ps - list of running processes comma separated"
msgstr ""
"$pscount - número de procesos en ejecución\n"
"$pstotal - total de procesos en ejecución\n"
"$ps - listado de procesos en ejecución separados por coma"
#. i18n: file: ui/configwindow.ui:996
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg)
#. i18n: file: ui/configwindow.ui:2573
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommand)
#: rc.cpp:138 rc.cpp:326
msgid "Package manager"
msgstr "Gestor de paquetes"
#. i18n: file: ui/configwindow.ui:1006
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_pkg)
#: rc.cpp:141
msgid ""
"$pkgcountN - number of packages which are available for updates, command N. "
"For example $pkgcount0"
msgstr ""
"$pkgcountN - número de paquetes con actualizaciones disponibles, comando N. "
"Por ejemplo $pkgcount0"
#. i18n: file: ui/configwindow.ui:1054
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
#: rc.cpp:144
msgid "Custom"
msgstr "Personalizado"
#. i18n: file: ui/configwindow.ui:1064
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
#: rc.cpp:147
msgid "$custom - get output from custom command"
msgstr "$custom - obtener la salida de un comando personalizado"
#. i18n: file: ui/configwindow.ui:1122
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
#: rc.cpp:150
msgid "Advanced"
msgstr "Avanzado"
#. i18n: file: ui/configwindow.ui:1151
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
#: rc.cpp:153
msgid "Custom time format"
msgstr "Formato personalizado para la hora"
#. i18n: file: ui/configwindow.ui:1173
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
#: rc.cpp:156
msgid ""
"$dddd - long weekday\n"
"$ddd - short weekday\n"
"$dd - day\n"
"$d - day w\\o zero\n"
"$MMMM - long month\n"
"$MMM - short month\n"
"$MM - month\n"
"$M - month w\\o zero\n"
"$yyyy - year\n"
"$yy - short year\n"
"$hh - hours (24 only)\n"
"$h - hours w\\o zero (24 only)\n"
"$mm - minutes\n"
"$m - minutes w\\o zero\n"
"$ss - seconds\n"
"$s - seconds w\\o zero"
msgstr ""
"$dddd - día de la semana largo\n"
"$ddd - día de la semana corto\n"
"$dd - día\n"
"$d - día (sin ceros)\n"
"$MMMM - mes largo\n"
"$MMM - mes corto\n"
"$MM - mes\n"
"$M - mes (sin ceros)\n"
"$yyyy - año\n"
"$yy - año largo\n"
"$hh - horas (solo formato de 24 horas)\n"
"$h - horas (sin ceros, solo formato de 24 horas)\n"
"$mm - minutos\n"
"$m - minutos (sin ceros)\n"
"$ss - segundos\n"
"$s - segundos (sin ceros)"
#. i18n: file: ui/configwindow.ui:1193
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
#: rc.cpp:174
msgid "Custom uptime format"
msgstr "Formato personalizado para el tiempo de actividad del sistema"
#. i18n: file: ui/configwindow.ui:1205
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:177
msgid ""
"$dd - uptime days\n"
"$d - uptime days without zero\n"
"$hh - uptime hours\n"
"$h - uptime hours without zero\n"
"$mm - uptime minutes\n"
"$m - uptime minutes without zero"
msgstr ""
"$dd - días\n"
"$d - días (sin ceros)\n"
"$hh - horas\n"
"$h - horas (sin ceros)\n"
"$mm - minutos\n"
"$m - minutos (sin ceros)"
#. i18n: file: ui/configwindow.ui:1225
#. i18n: ectx: property (text), widget (QLabel, label_tempUnits)
#: rc.cpp:185
msgid "Temperature units"
msgstr "Unidades de temperatura"
#. i18n: file: ui/configwindow.ui:1282
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:188
msgid "Temperature devices"
msgstr "Dispositivos de temperatura"
#. i18n: file: ui/configwindow.ui:1308
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1418
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#. i18n: file: ui/configwindow.ui:2659
#. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand)
#: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:350
msgid "Add"
msgstr "Añadir"
#. i18n: file: ui/configwindow.ui:1318
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1428
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#. i18n: file: ui/configwindow.ui:2669
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand)
#: rc.cpp:194 rc.cpp:204 rc.cpp:214 rc.cpp:353
msgid ""
"Editable\n"
"del - remove item"
msgstr ""
"Editable\n"
"del - eliminar elemento"
#. i18n: file: ui/configwindow.ui:1337
#. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:198
msgid "Mount points"
msgstr "Puntos de montaje"
#. i18n: file: ui/configwindow.ui:1392
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:208
msgid "HDD devices"
msgstr "Dispositivos de disco duro"
#. i18n: file: ui/configwindow.ui:1445
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:218
msgid "Network directory"
msgstr "Directorio de la red"
#. i18n: file: ui/configwindow.ui:1452
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:221
msgid "\"/sys/class/net\" by default"
msgstr "\"/sys/class/net\" por defecto"
#. i18n: file: ui/configwindow.ui:1472
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:224
msgid "Disable auto select device and set specified device"
msgstr "Inhabilitar selección automática del dispositivo y especificar uno"
#. i18n: file: ui/configwindow.ui:1475
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:227
msgid "Set network device"
msgstr "Establecer dispositivo de red"
#. i18n: file: ui/configwindow.ui:1508
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:230
msgid "Battery device"
msgstr "Dispositivo de batería"
#. i18n: file: ui/configwindow.ui:1515
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:233
msgid "\"/sys/class/power_supply/BAT0/capacity\" by default"
msgstr "\"/sys/class/power_supply/BAT0/capacity\" por defecto"
#. i18n: file: ui/configwindow.ui:1532
#. i18n: ectx: property (text), widget (QLabel, label_acOnline)
#: rc.cpp:236
msgid "AC online tag"
msgstr "Etiqueta para alimentación conectada"
#. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
#: rc.cpp:239
msgid "Line, which returns when AC is online"
msgstr "Línea que devuelve si la alimentación está conectada"
#. i18n: file: ui/configwindow.ui:1562
#. i18n: ectx: property (text), widget (QLabel, label_acOffline)
#: rc.cpp:242
msgid "AC offline tag"
msgstr "Etiqueta para la alimentación desconectada"
#. i18n: file: ui/configwindow.ui:1569
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
#: rc.cpp:245
msgid "Line, which returns when AC is offline"
msgstr "Línea que devuelve si la alimentación está desconectada"
#. i18n: file: ui/configwindow.ui:1592
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:248
msgid "AC device"
msgstr "Dispositivo de alimentación"
#. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:251
msgid "\"/sys/class/power_supply/AC/online\" by default"
msgstr "\"/sys/class/power_supply/AC/online\" por defecto"
#. i18n: file: ui/configwindow.ui:1674
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:257
msgid "Tooltip"
msgstr "Ventana emergente"
#. i18n: file: ui/configwindow.ui:1680
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:260
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox fully checked."
msgstr ""
"Las etiquetas para CPU, frecuencia de la CPU, memoria, swap y red soportan "
"ventanas emergentes. "
"Para habilitarlas habilite la caja de seleccione la casilla de verificación "
"pertinente."
#. i18n: file: ui/configwindow.ui:1716
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:263
msgid "Number of values for tooltips"
msgstr "Número de valores para las ventanas emergentes"
#. i18n: file: ui/configwindow.ui:1771
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:266
msgid "CPU clock color"
msgstr "Color de la frecuencia de la CPU"
#. i18n: file: ui/configwindow.ui:1811
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:269
msgid "Swap color"
msgstr "Color de la swap"
#. i18n: file: ui/configwindow.ui:1851
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:272
msgid "CPU color"
msgstr "Color de la CPU"
#. i18n: file: ui/configwindow.ui:1891
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:275
msgid "Download speed color"
msgstr "Color de la velocidad de recepción"
#. i18n: file: ui/configwindow.ui:1931
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:278
msgid "Memory color"
msgstr "Color de la memoria"
#. i18n: file: ui/configwindow.ui:1971
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:281
msgid "Upload speed color"
msgstr "Color de la velocidad de envío"
#. i18n: file: ui/configwindow.ui:2021
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:284
msgid "Appearance"
msgstr "Apariencia"
#. i18n: file: ui/configwindow.ui:2050
#. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:287
msgid "Time interval"
msgstr "Intervalo de tiempo"
#. i18n: file: ui/configwindow.ui:2105
#. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:290
msgid "Font"
msgstr "Fuente"
#. i18n: file: ui/configwindow.ui:2145
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:293
msgid "Font size"
msgstr "Tamaño de fuente"
#. i18n: file: ui/configwindow.ui:2200
#. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:296
msgid "Font color"
msgstr "Color de fuente"
#. i18n: file: ui/configwindow.ui:2240
#. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:299
msgid "Font style"
msgstr "Estilo de fuente"
#. i18n: file: ui/configwindow.ui:2290
#. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:302
msgid "Font weight"
msgstr "Grosor de la fuente"
#. i18n: file: ui/configwindow.ui:2355
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:305
msgid "DataEngine"
msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2384
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:308
msgid "Custom command"
msgstr "Comando personalizado"
#. i18n: file: ui/configwindow.ui:2391
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:311
msgid "Custom command to run"
msgstr "Comando personalizado para ejecutar"
#. i18n: file: ui/configwindow.ui:2411
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:314
msgid "GPU device"
msgstr "Dispositivo de GPU"
#. i18n: file: ui/configwindow.ui:2492
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:320
msgid "MPD address"
msgstr "Dirección de MPD"
#. i18n: file: ui/configwindow.ui:2516
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:323
msgid "MPD port"
msgstr "Puerto de MPD"
#. i18n: file: ui/configwindow.ui:2590
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:329
msgid "pacman -Qu"
msgstr "pacman -Qu"
#. i18n: file: ui/configwindow.ui:2595
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:332
msgid "apt-show-versions -u -b"
msgstr "apt-show-versions -u -b"
#. i18n: file: ui/configwindow.ui:2600
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:335
msgid "aptitude search '~U'"
msgstr "aptitude search '~U'"
#. i18n: file: ui/configwindow.ui:2605
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:338
msgid "yum list updates"
msgstr "yum list updates"
#. i18n: file: ui/configwindow.ui:2610
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:341
msgid "pkg_version -I -l '<'"
msgstr "pkg_version -I -l '<'"
#. i18n: file: ui/configwindow.ui:2615
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:344
msgid "urpmq --auto-select"
msgstr "urpmq --auto-select"
#. i18n: file: ui/configwindow.ui:2633
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum)
#: rc.cpp:347
msgid "Number of null lines"
msgstr "Número de líneas nulas"
#: rc.cpp:355
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Tu nombre"
#: rc.cpp:356
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "Tus correos"

View File

@ -7,8 +7,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-09 12:35+0400\n" "POT-Creation-Date: 2014-05-08 00:24+0400\n"
"PO-Revision-Date: 2014-04-09 12:33+0400\n" "PO-Revision-Date: 2014-05-08 00:25+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: fr\n" "Language: fr\n"
@ -207,9 +207,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:634 #. i18n: file: ui/configwindow.ui:634
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2404 #. i18n: file: ui/configwindow.ui:2459
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:89 rc.cpp:332 #: rc.cpp:89 rc.cpp:317
msgid "HDD" msgid "HDD"
msgstr "Disque dur" msgstr "Disque dur"
@ -281,9 +281,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:874 #. i18n: file: ui/configwindow.ui:874
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1561 #. i18n: file: ui/configwindow.ui:1616
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:120 rc.cpp:251 #: rc.cpp:120 rc.cpp:254
msgid "Music player" msgid "Music player"
msgstr "Lecteur audio" msgstr "Lecteur audio"
@ -323,9 +323,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:996 #. i18n: file: ui/configwindow.ui:996
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg)
#. i18n: file: ui/configwindow.ui:2518 #. i18n: file: ui/configwindow.ui:2573
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommand) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommand)
#: rc.cpp:138 rc.cpp:341 #: rc.cpp:138 rc.cpp:326
msgid "Package manager" msgid "Package manager"
msgstr "Gestionnaire de paquets" msgstr "Gestionnaire de paquets"
@ -425,33 +425,39 @@ 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:1227 #. i18n: file: ui/configwindow.ui:1225
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempUnits)
#: rc.cpp:185 #: rc.cpp:185
msgid "Temperature units"
msgstr "Unités de température"
#. i18n: file: ui/configwindow.ui:1282
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:188
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Temperature des périphériques" msgstr "Temperature des périphériques"
#. i18n: file: ui/configwindow.ui:1253
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1308 #. i18n: file: ui/configwindow.ui:1308
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1363 #. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1418
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#. i18n: file: ui/configwindow.ui:2604 #. i18n: file: ui/configwindow.ui:2659
#. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand) #. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand)
#: rc.cpp:188 rc.cpp:198 rc.cpp:208 rc.cpp:365 #: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:350
msgid "Add" msgid "Add"
msgstr "Ajouter" msgstr "Ajouter"
#. i18n: file: ui/configwindow.ui:1263
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1318 #. i18n: file: ui/configwindow.ui:1318
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1373 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1428
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#. i18n: file: ui/configwindow.ui:2614 #. i18n: file: ui/configwindow.ui:2669
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand)
#: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:368 #: rc.cpp:194 rc.cpp:204 rc.cpp:214 rc.cpp:353
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -459,119 +465,101 @@ msgstr ""
"Modifiable\n" "Modifiable\n"
"del - supprimer un élément" "del - supprimer un élément"
#. i18n: file: ui/configwindow.ui:1282 #. i18n: file: ui/configwindow.ui:1337
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:195 #: rc.cpp:198
msgid "Mount points" msgid "Mount points"
msgstr "Points de montage" msgstr "Points de montage"
#. i18n: file: ui/configwindow.ui:1337 #. i18n: file: ui/configwindow.ui:1392
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:205 #: rc.cpp:208
msgid "HDD devices" msgid "HDD devices"
msgstr "Périphériques HDD" msgstr "Périphériques HDD"
#. i18n: file: ui/configwindow.ui:1390 #. i18n: file: ui/configwindow.ui:1445
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:215 #: rc.cpp:218
msgid "Network directory" msgid "Network directory"
msgstr "Voisinage réseau" msgstr "Voisinage réseau"
#. i18n: file: ui/configwindow.ui:1397 #. i18n: file: ui/configwindow.ui:1452
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:218 #: rc.cpp:221
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:1417 #. i18n: file: ui/configwindow.ui:1472
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:221 #: rc.cpp:224
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:1420 #. i18n: file: ui/configwindow.ui:1475
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:224 #: rc.cpp:227
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:1453 #. i18n: file: ui/configwindow.ui:1508
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:227 #: rc.cpp:230
msgid "Battery device" msgid "Battery device"
msgstr "Batterie" msgstr "Batterie"
#. i18n: file: ui/configwindow.ui:1460 #. i18n: file: ui/configwindow.ui:1515
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:230 #: rc.cpp:233
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:1477 #. i18n: file: ui/configwindow.ui:1532
#. i18n: ectx: property (text), widget (QLabel, label_acOnline) #. i18n: ectx: property (text), widget (QLabel, label_acOnline)
#: rc.cpp:233 #: rc.cpp:236
msgid "AC online tag" msgid "AC online tag"
msgstr "AC online tag" msgstr "AC online tag"
#. i18n: file: ui/configwindow.ui:1484 #. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
#: rc.cpp:236 #: rc.cpp:239
msgid "Line, which returns when AC is online" msgid "Line, which returns when AC is online"
msgstr "Ligne, qui retourne lorsque le AC est online" msgstr "Ligne, qui retourne lorsque le AC est online"
#. i18n: file: ui/configwindow.ui:1507 #. i18n: file: ui/configwindow.ui:1562
#. i18n: ectx: property (text), widget (QLabel, label_acOffline) #. i18n: ectx: property (text), widget (QLabel, label_acOffline)
#: rc.cpp:239 #: rc.cpp:242
msgid "AC offline tag" msgid "AC offline tag"
msgstr "AC déconnecté tag" msgstr "AC déconnecté tag"
#. i18n: file: ui/configwindow.ui:1514 #. i18n: file: ui/configwindow.ui:1569
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
#: rc.cpp:242 #: rc.cpp:245
msgid "Line, which returns when AC is offline" msgid "Line, which returns when AC is offline"
msgstr "Ligne, qui retourne lorsque le AC est offline" msgstr "Ligne, qui retourne lorsque le AC est offline"
#. i18n: file: ui/configwindow.ui:1537 #. i18n: file: ui/configwindow.ui:1592
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:245 #: rc.cpp:248
msgid "AC device" msgid "AC device"
msgstr "Périphérique d'alimentation" msgstr "Périphérique d'alimentation"
#. i18n: file: ui/configwindow.ui:1544 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:248 #: rc.cpp:251
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:1581 #. i18n: file: ui/configwindow.ui:1674
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:254
msgid "amarok"
msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1586
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:257
msgid "mpd"
msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1591
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:260
msgid "qmmp"
msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1619
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:263 #: rc.cpp:257
msgid "Tooltip" msgid "Tooltip"
msgstr "Conseil" msgstr "Conseil"
#. i18n: file: ui/configwindow.ui:1625 #. i18n: file: ui/configwindow.ui:1680
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:266 #: rc.cpp:260
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."
@ -580,196 +568,196 @@ msgstr ""
"les conseils visuels. Pour les activer cochez simplement les cases " "les conseils visuels. Pour les activer cochez simplement les cases "
"correspondantes." "correspondantes."
#. i18n: file: ui/configwindow.ui:1661 #. i18n: file: ui/configwindow.ui:1716
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:269 #: rc.cpp:263
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:1716 #. i18n: file: ui/configwindow.ui:1771
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:272 #: rc.cpp:266
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:1756 #. i18n: file: ui/configwindow.ui:1811
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:275 #: rc.cpp:269
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:1796 #. i18n: file: ui/configwindow.ui:1851
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:278 #: rc.cpp:272
msgid "CPU color" msgid "CPU color"
msgstr "Couleur processeur" msgstr "Couleur processeur"
#. i18n: file: ui/configwindow.ui:1836 #. i18n: file: ui/configwindow.ui:1891
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:281 #: rc.cpp:275
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:1876 #. i18n: file: ui/configwindow.ui:1931
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:284 #: rc.cpp:278
msgid "Memory color" msgid "Memory color"
msgstr "Couleur de la mémoire" msgstr "Couleur de la mémoire"
#. i18n: file: ui/configwindow.ui:1916 #. i18n: file: ui/configwindow.ui:1971
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:287 #: rc.cpp:281
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:1966 #. i18n: file: ui/configwindow.ui:2021
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:290 #: rc.cpp:284
msgid "Appearance" msgid "Appearance"
msgstr "Apparence" msgstr "Apparence"
#. i18n: file: ui/configwindow.ui:1995 #. i18n: file: ui/configwindow.ui:2050
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:293 #: rc.cpp:287
msgid "Time interval" msgid "Time interval"
msgstr "Intervalle" msgstr "Intervalle"
#. i18n: file: ui/configwindow.ui:2050 #. i18n: file: ui/configwindow.ui:2105
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:296 #: rc.cpp:290
msgid "Font" msgid "Font"
msgstr "Police" msgstr "Police"
#. i18n: file: ui/configwindow.ui:2090 #. i18n: file: ui/configwindow.ui:2145
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:299 #: rc.cpp:293
msgid "Font size" msgid "Font size"
msgstr "Taille de la police" msgstr "Taille de la police"
#. i18n: file: ui/configwindow.ui:2145 #. i18n: file: ui/configwindow.ui:2200
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:302 #: rc.cpp:296
msgid "Font color" msgid "Font color"
msgstr "Couleur de la police" msgstr "Couleur de la police"
#. i18n: file: ui/configwindow.ui:2185 #. i18n: file: ui/configwindow.ui:2240
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:305 #: rc.cpp:299
msgid "Font style" msgid "Font style"
msgstr "Style de la police" msgstr "Style de la police"
#. i18n: file: ui/configwindow.ui:2235 #. i18n: file: ui/configwindow.ui:2290
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:308 #: rc.cpp:302
msgid "Font weight" msgid "Font weight"
msgstr "Épaisseur de la police" msgstr "Épaisseur de la police"
#. i18n: file: ui/configwindow.ui:2300 #. i18n: file: ui/configwindow.ui:2355
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:311 #: rc.cpp:305
msgid "DataEngine" msgid "DataEngine"
msgstr "Moteur de données" msgstr "Moteur de données"
#. i18n: file: ui/configwindow.ui:2329 #. i18n: file: ui/configwindow.ui:2384
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:314 #: rc.cpp:308
msgid "Custom command" msgid "Custom command"
msgstr "Commande personnalisée" msgstr "Commande personnalisée"
#. i18n: file: ui/configwindow.ui:2336 #. i18n: file: ui/configwindow.ui:2391
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:317 #: rc.cpp:311
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Commande personnalisée à exécuter" msgstr "Commande personnalisée à exécuter"
#. i18n: file: ui/configwindow.ui:2356 #. i18n: file: ui/configwindow.ui:2411
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:320 #: rc.cpp:314
msgid "GPU device" msgid "GPU device"
msgstr "Périphérique graphique" msgstr "Périphérique graphique"
#. i18n: file: ui/configwindow.ui:2376 #. i18n: file: ui/configwindow.ui:2492
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:323
msgid "auto"
msgstr "auto"
#. i18n: file: ui/configwindow.ui:2381
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:326
msgid "nvidia"
msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2386
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:329
msgid "ati"
msgstr "ati"
#. i18n: file: ui/configwindow.ui:2437
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:335 #: rc.cpp:320
msgid "MPD address" msgid "MPD address"
msgstr "Adresse MPD" msgstr "Adresse MPD"
#. i18n: file: ui/configwindow.ui:2461 #. i18n: file: ui/configwindow.ui:2516
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:338 #: rc.cpp:323
msgid "MPD port" msgid "MPD port"
msgstr "Port MPD" msgstr "Port MPD"
#. i18n: file: ui/configwindow.ui:2535 #. i18n: file: ui/configwindow.ui:2590
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:344 #: rc.cpp:329
msgid "pacman -Qu" msgid "pacman -Qu"
msgstr "pacman -Qu" msgstr "pacman -Qu"
#. i18n: file: ui/configwindow.ui:2540 #. i18n: file: ui/configwindow.ui:2595
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:347 #: rc.cpp:332
msgid "apt-show-versions -u -b" msgid "apt-show-versions -u -b"
msgstr "apt-show-versions -u -b" msgstr "apt-show-versions -u -b"
#. i18n: file: ui/configwindow.ui:2545 #. i18n: file: ui/configwindow.ui:2600
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:350 #: rc.cpp:335
msgid "aptitude search '~U'" msgid "aptitude search '~U'"
msgstr "aptitude search '~U'" msgstr "aptitude search '~U'"
#. i18n: file: ui/configwindow.ui:2550 #. i18n: file: ui/configwindow.ui:2605
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:353 #: rc.cpp:338
msgid "yum list updates" msgid "yum list updates"
msgstr "yum list updates" msgstr "yum list updates"
#. i18n: file: ui/configwindow.ui:2555 #. i18n: file: ui/configwindow.ui:2610
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:356 #: rc.cpp:341
msgid "pkg_version -I -l '<'" msgid "pkg_version -I -l '<'"
msgstr "pkg_version -I -l '<'" msgstr "pkg_version -I -l '<'"
#. i18n: file: ui/configwindow.ui:2560 #. i18n: file: ui/configwindow.ui:2615
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:359 #: rc.cpp:344
msgid "urpmq --auto-select" msgid "urpmq --auto-select"
msgstr "urpmq --auto-select" msgstr "urpmq --auto-select"
#. i18n: file: ui/configwindow.ui:2578 #. i18n: file: ui/configwindow.ui:2633
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum)
#: rc.cpp:362 #: rc.cpp:347
msgid "Number of null lines" msgid "Number of null lines"
msgstr "Nombre de lignes nulles" msgstr "Nombre de lignes nulles"
#: rc.cpp:370 #: rc.cpp:355
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:371 #: rc.cpp:356
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"
#~ msgid "amarok"
#~ msgstr "amarok"
#~ msgid "mpd"
#~ msgstr "mpd"
#~ msgid "qmmp"
#~ msgstr "qmmp"
#~ msgid "auto"
#~ msgstr "auto"
#~ msgid "nvidia"
#~ msgstr "nvidia"
#~ msgid "ati"
#~ msgstr "ati"
#~ 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), %. " #~ "$hddN - espace occupé sur le point de montage N (à partir de 0), %. "

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-09 12:35+0400\n" "POT-Creation-Date: 2014-05-08 00:24+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"
@ -176,9 +176,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:634 #. i18n: file: ui/configwindow.ui:634
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2404 #. i18n: file: ui/configwindow.ui:2459
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:89 rc.cpp:332 #: rc.cpp:89 rc.cpp:317
msgid "HDD" msgid "HDD"
msgstr "" msgstr ""
@ -237,9 +237,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:874 #. i18n: file: ui/configwindow.ui:874
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1561 #. i18n: file: ui/configwindow.ui:1616
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:120 rc.cpp:251 #: rc.cpp:120 rc.cpp:254
msgid "Music player" msgid "Music player"
msgstr "" msgstr ""
@ -271,9 +271,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:996 #. i18n: file: ui/configwindow.ui:996
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg)
#. i18n: file: ui/configwindow.ui:2518 #. i18n: file: ui/configwindow.ui:2573
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommand) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommand)
#: rc.cpp:138 rc.cpp:341 #: rc.cpp:138 rc.cpp:326
msgid "Package manager" msgid "Package manager"
msgstr "" msgstr ""
@ -349,340 +349,310 @@ msgid ""
"$m - uptime minutes without zero" "$m - uptime minutes without zero"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1227 #. i18n: file: ui/configwindow.ui:1225
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempUnits)
#: rc.cpp:185 #: rc.cpp:185
msgid "Temperature units"
msgstr ""
#. i18n: file: ui/configwindow.ui:1282
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:188
msgid "Temperature devices" msgid "Temperature devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1253
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1308 #. i18n: file: ui/configwindow.ui:1308
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1363 #. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1418
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#. i18n: file: ui/configwindow.ui:2604 #. i18n: file: ui/configwindow.ui:2659
#. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand) #. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand)
#: rc.cpp:188 rc.cpp:198 rc.cpp:208 rc.cpp:365 #: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:350
msgid "Add" msgid "Add"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1263
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1318 #. i18n: file: ui/configwindow.ui:1318
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1373 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1428
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#. i18n: file: ui/configwindow.ui:2614 #. i18n: file: ui/configwindow.ui:2669
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand)
#: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:368 #: rc.cpp:194 rc.cpp:204 rc.cpp:214 rc.cpp:353
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1282 #. i18n: file: ui/configwindow.ui:1337
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:195 #: rc.cpp:198
msgid "Mount points" msgid "Mount points"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1337 #. i18n: file: ui/configwindow.ui:1392
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:205 #: rc.cpp:208
msgid "HDD devices" msgid "HDD devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1390 #. i18n: file: ui/configwindow.ui:1445
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:215 #: rc.cpp:218
msgid "Network directory" msgid "Network directory"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1397 #. i18n: file: ui/configwindow.ui:1452
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:218 #: rc.cpp:221
msgid "\"/sys/class/net\" by default" msgid "\"/sys/class/net\" by default"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1417 #. i18n: file: ui/configwindow.ui:1472
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:221 #: rc.cpp:224
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:1420 #. i18n: file: ui/configwindow.ui:1475
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:224 #: rc.cpp:227
msgid "Set network device" msgid "Set network device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1453 #. i18n: file: ui/configwindow.ui:1508
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:227 #: rc.cpp:230
msgid "Battery device" msgid "Battery device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1460 #. i18n: file: ui/configwindow.ui:1515
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:230 #: rc.cpp:233
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:1477 #. i18n: file: ui/configwindow.ui:1532
#. i18n: ectx: property (text), widget (QLabel, label_acOnline) #. i18n: ectx: property (text), widget (QLabel, label_acOnline)
#: rc.cpp:233 #: rc.cpp:236
msgid "AC online tag" msgid "AC online tag"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1484 #. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
#: rc.cpp:236 #: rc.cpp:239
msgid "Line, which returns when AC is online" msgid "Line, which returns when AC is online"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1507 #. i18n: file: ui/configwindow.ui:1562
#. i18n: ectx: property (text), widget (QLabel, label_acOffline) #. i18n: ectx: property (text), widget (QLabel, label_acOffline)
#: rc.cpp:239 #: rc.cpp:242
msgid "AC offline tag" msgid "AC offline tag"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1514 #. i18n: file: ui/configwindow.ui:1569
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
#: rc.cpp:242 #: rc.cpp:245
msgid "Line, which returns when AC is offline" msgid "Line, which returns when AC is offline"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1537 #. i18n: file: ui/configwindow.ui:1592
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:245 #: rc.cpp:248
msgid "AC device" msgid "AC device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1544 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:248 #: rc.cpp:251
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:1581 #. i18n: file: ui/configwindow.ui:1674
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:254
msgid "amarok"
msgstr ""
#. i18n: file: ui/configwindow.ui:1586
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:257
msgid "mpd"
msgstr ""
#. i18n: file: ui/configwindow.ui:1591
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:260
msgid "qmmp"
msgstr ""
#. i18n: file: ui/configwindow.ui:1619
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:263 #: rc.cpp:257
msgid "Tooltip" msgid "Tooltip"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1625 #. i18n: file: ui/configwindow.ui:1680
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:266 #: rc.cpp:260
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:1661 #. i18n: file: ui/configwindow.ui:1716
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:269 #: rc.cpp:263
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1716 #. i18n: file: ui/configwindow.ui:1771
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:272 #: rc.cpp:266
msgid "CPU clock color" msgid "CPU clock color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1756 #. i18n: file: ui/configwindow.ui:1811
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:275 #: rc.cpp:269
msgid "Swap color" msgid "Swap color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1796 #. i18n: file: ui/configwindow.ui:1851
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:278 #: rc.cpp:272
msgid "CPU color" msgid "CPU color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1836 #. i18n: file: ui/configwindow.ui:1891
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:281 #: rc.cpp:275
msgid "Download speed color" msgid "Download speed color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1876 #. i18n: file: ui/configwindow.ui:1931
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:284 #: rc.cpp:278
msgid "Memory color" msgid "Memory color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1916 #. i18n: file: ui/configwindow.ui:1971
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:287 #: rc.cpp:281
msgid "Upload speed color" msgid "Upload speed color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1966 #. i18n: file: ui/configwindow.ui:2021
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:290 #: rc.cpp:284
msgid "Appearance" msgid "Appearance"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1995 #. i18n: file: ui/configwindow.ui:2050
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:293 #: rc.cpp:287
msgid "Time interval" msgid "Time interval"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2050 #. i18n: file: ui/configwindow.ui:2105
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:296 #: rc.cpp:290
msgid "Font" msgid "Font"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2090 #. i18n: file: ui/configwindow.ui:2145
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:299 #: rc.cpp:293
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2145 #. i18n: file: ui/configwindow.ui:2200
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:302 #: rc.cpp:296
msgid "Font color" msgid "Font color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2185 #. i18n: file: ui/configwindow.ui:2240
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:305 #: rc.cpp:299
msgid "Font style" msgid "Font style"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2235 #. i18n: file: ui/configwindow.ui:2290
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:308 #: rc.cpp:302
msgid "Font weight" msgid "Font weight"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2300 #. i18n: file: ui/configwindow.ui:2355
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:311 #: rc.cpp:305
msgid "DataEngine" msgid "DataEngine"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2329 #. i18n: file: ui/configwindow.ui:2384
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:314 #: rc.cpp:308
msgid "Custom command" msgid "Custom command"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2336 #. i18n: file: ui/configwindow.ui:2391
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:317 #: rc.cpp:311
msgid "Custom command to run" msgid "Custom command to run"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2356 #. i18n: file: ui/configwindow.ui:2411
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:320 #: rc.cpp:314
msgid "GPU device" msgid "GPU device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2376 #. i18n: file: ui/configwindow.ui:2492
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:323
msgid "auto"
msgstr ""
#. i18n: file: ui/configwindow.ui:2381
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:326
msgid "nvidia"
msgstr ""
#. i18n: file: ui/configwindow.ui:2386
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:329
msgid "ati"
msgstr ""
#. i18n: file: ui/configwindow.ui:2437
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:335 #: rc.cpp:320
msgid "MPD address" msgid "MPD address"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2461 #. i18n: file: ui/configwindow.ui:2516
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:338 #: rc.cpp:323
msgid "MPD port" msgid "MPD port"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2535 #. i18n: file: ui/configwindow.ui:2590
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:344 #: rc.cpp:329
msgid "pacman -Qu" msgid "pacman -Qu"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2540 #. i18n: file: ui/configwindow.ui:2595
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:347 #: rc.cpp:332
msgid "apt-show-versions -u -b" msgid "apt-show-versions -u -b"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2545 #. i18n: file: ui/configwindow.ui:2600
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:350 #: rc.cpp:335
msgid "aptitude search '~U'" msgid "aptitude search '~U'"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2550 #. i18n: file: ui/configwindow.ui:2605
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:353 #: rc.cpp:338
msgid "yum list updates" msgid "yum list updates"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2555 #. i18n: file: ui/configwindow.ui:2610
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:356 #: rc.cpp:341
msgid "pkg_version -I -l '<'" msgid "pkg_version -I -l '<'"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2560 #. i18n: file: ui/configwindow.ui:2615
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:359 #: rc.cpp:344
msgid "urpmq --auto-select" msgid "urpmq --auto-select"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2578 #. i18n: file: ui/configwindow.ui:2633
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum)
#: rc.cpp:362 #: rc.cpp:347
msgid "Number of null lines" msgid "Number of null lines"
msgstr "" msgstr ""
#: rc.cpp:370 #: rc.cpp:355
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "" msgstr ""
#: rc.cpp:371 #: rc.cpp:356
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-09 12:35+0400\n" "POT-Creation-Date: 2014-05-08 00:24+0400\n"
"PO-Revision-Date: 2014-04-09 12:26+0400\n" "PO-Revision-Date: 2014-05-08 00:25+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"
@ -204,9 +204,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:634 #. i18n: file: ui/configwindow.ui:634
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2404 #. i18n: file: ui/configwindow.ui:2459
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:89 rc.cpp:332 #: rc.cpp:89 rc.cpp:317
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
@ -275,9 +275,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:874 #. i18n: file: ui/configwindow.ui:874
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1561 #. i18n: file: ui/configwindow.ui:1616
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:120 rc.cpp:251 #: rc.cpp:120 rc.cpp:254
msgid "Music player" msgid "Music player"
msgstr "Музыкальный плеер" msgstr "Музыкальный плеер"
@ -317,9 +317,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:996 #. i18n: file: ui/configwindow.ui:996
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_pkg)
#. i18n: file: ui/configwindow.ui:2518 #. i18n: file: ui/configwindow.ui:2573
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommand) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommand)
#: rc.cpp:138 rc.cpp:341 #: rc.cpp:138 rc.cpp:326
msgid "Package manager" msgid "Package manager"
msgstr "Пакетный менеджер" msgstr "Пакетный менеджер"
@ -419,33 +419,39 @@ msgstr ""
"$mm - минуты аптайма\n" "$mm - минуты аптайма\n"
"$m - минуты аптайма без нулей" "$m - минуты аптайма без нулей"
#. i18n: file: ui/configwindow.ui:1227 #. i18n: file: ui/configwindow.ui:1225
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempUnits)
#: rc.cpp:185 #: rc.cpp:185
msgid "Temperature units"
msgstr "Температурные единицы"
#. i18n: file: ui/configwindow.ui:1282
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:188
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Температурные устройства" msgstr "Температурные устройства"
#. i18n: file: ui/configwindow.ui:1253
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1308 #. i18n: file: ui/configwindow.ui:1308
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1363 #. i18n: file: ui/configwindow.ui:1363
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1418
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#. i18n: file: ui/configwindow.ui:2604 #. i18n: file: ui/configwindow.ui:2659
#. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand) #. i18n: ectx: property (text), widget (QPushButton, pushButton_pkgCommand)
#: rc.cpp:188 rc.cpp:198 rc.cpp:208 rc.cpp:365 #: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:350
msgid "Add" msgid "Add"
msgstr "Добавить" msgstr "Добавить"
#. i18n: file: ui/configwindow.ui:1263
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1318 #. i18n: file: ui/configwindow.ui:1318
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1373 #. i18n: file: ui/configwindow.ui:1373
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1428
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#. i18n: file: ui/configwindow.ui:2614 #. i18n: file: ui/configwindow.ui:2669
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_pkgCommand)
#: rc.cpp:191 rc.cpp:201 rc.cpp:211 rc.cpp:368 #: rc.cpp:194 rc.cpp:204 rc.cpp:214 rc.cpp:353
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -453,117 +459,99 @@ msgstr ""
"Редактируемо\n" "Редактируемо\n"
"del - удалить строку" "del - удалить строку"
#. i18n: file: ui/configwindow.ui:1282 #. i18n: file: ui/configwindow.ui:1337
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:195 #: rc.cpp:198
msgid "Mount points" msgid "Mount points"
msgstr "Точки монтирования" msgstr "Точки монтирования"
#. i18n: file: ui/configwindow.ui:1337 #. i18n: file: ui/configwindow.ui:1392
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:205 #: rc.cpp:208
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:1390 #. i18n: file: ui/configwindow.ui:1445
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:215 #: rc.cpp:218
msgid "Network directory" msgid "Network directory"
msgstr "Путь к интерфейсам" msgstr "Путь к интерфейсам"
#. i18n: file: ui/configwindow.ui:1397 #. i18n: file: ui/configwindow.ui:1452
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:218 #: rc.cpp:221
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:1417 #. i18n: file: ui/configwindow.ui:1472
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:221 #: rc.cpp:224
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:1420 #. i18n: file: ui/configwindow.ui:1475
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:224 #: rc.cpp:227
msgid "Set network device" msgid "Set network device"
msgstr "Выберете сетевое устройство" msgstr "Выберете сетевое устройство"
#. i18n: file: ui/configwindow.ui:1453 #. i18n: file: ui/configwindow.ui:1508
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:227 #: rc.cpp:230
msgid "Battery device" msgid "Battery device"
msgstr "Устройство батареи" msgstr "Устройство батареи"
#. i18n: file: ui/configwindow.ui:1460 #. i18n: file: ui/configwindow.ui:1515
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:230 #: rc.cpp:233
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:1477 #. i18n: file: ui/configwindow.ui:1532
#. i18n: ectx: property (text), widget (QLabel, label_acOnline) #. i18n: ectx: property (text), widget (QLabel, label_acOnline)
#: rc.cpp:233 #: rc.cpp:236
msgid "AC online tag" msgid "AC online tag"
msgstr "AC подключен" msgstr "AC подключен"
#. i18n: file: ui/configwindow.ui:1484 #. i18n: file: ui/configwindow.ui:1539
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
#: rc.cpp:236 #: rc.cpp:239
msgid "Line, which returns when AC is online" msgid "Line, which returns when AC is online"
msgstr "Строка, возвращаемая при подключенном адапторе питания" msgstr "Строка, возвращаемая при подключенном адапторе питания"
#. i18n: file: ui/configwindow.ui:1507 #. i18n: file: ui/configwindow.ui:1562
#. i18n: ectx: property (text), widget (QLabel, label_acOffline) #. i18n: ectx: property (text), widget (QLabel, label_acOffline)
#: rc.cpp:239 #: rc.cpp:242
msgid "AC offline tag" msgid "AC offline tag"
msgstr "AC отключен" msgstr "AC отключен"
#. i18n: file: ui/configwindow.ui:1514 #. i18n: file: ui/configwindow.ui:1569
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
#: rc.cpp:242 #: rc.cpp:245
msgid "Line, which returns when AC is offline" msgid "Line, which returns when AC is offline"
msgstr "Строка, возвращаемая при отключенном адапторе питания" msgstr "Строка, возвращаемая при отключенном адапторе питания"
#. i18n: file: ui/configwindow.ui:1537 #. i18n: file: ui/configwindow.ui:1592
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:245 #: rc.cpp:248
msgid "AC device" msgid "AC device"
msgstr "Устройство AC" msgstr "Устройство AC"
#. i18n: file: ui/configwindow.ui:1544 #. i18n: file: ui/configwindow.ui:1599
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:248 #: rc.cpp:251
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:1581 #. i18n: file: ui/configwindow.ui:1674
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:254
msgid "amarok"
msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1586
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:257
msgid "mpd"
msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1591
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:260
msgid "qmmp"
msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1619
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:263 #: rc.cpp:257
msgid "Tooltip" msgid "Tooltip"
msgstr "Тултип" msgstr "Тултип"
#. i18n: file: ui/configwindow.ui:1625 #. i18n: file: ui/configwindow.ui:1680
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:266 #: rc.cpp:260
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."
@ -571,196 +559,196 @@ msgstr ""
"Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. " "Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. "
"Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми." "Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми."
#. i18n: file: ui/configwindow.ui:1661 #. i18n: file: ui/configwindow.ui:1716
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:269 #: rc.cpp:263
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "Число хранящихся значений" msgstr "Число хранящихся значений"
#. i18n: file: ui/configwindow.ui:1716 #. i18n: file: ui/configwindow.ui:1771
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:272 #: rc.cpp:266
msgid "CPU clock color" msgid "CPU clock color"
msgstr "Цвет частоты CPU" msgstr "Цвет частоты CPU"
#. i18n: file: ui/configwindow.ui:1756 #. i18n: file: ui/configwindow.ui:1811
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:275 #: rc.cpp:269
msgid "Swap color" msgid "Swap color"
msgstr "Цвет swap" msgstr "Цвет swap"
#. i18n: file: ui/configwindow.ui:1796 #. i18n: file: ui/configwindow.ui:1851
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:278 #: rc.cpp:272
msgid "CPU color" msgid "CPU color"
msgstr "Цвет CPU" msgstr "Цвет CPU"
#. i18n: file: ui/configwindow.ui:1836 #. i18n: file: ui/configwindow.ui:1891
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:281 #: rc.cpp:275
msgid "Download speed color" msgid "Download speed color"
msgstr "Цвет скорости загрузки" msgstr "Цвет скорости загрузки"
#. i18n: file: ui/configwindow.ui:1876 #. i18n: file: ui/configwindow.ui:1931
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:284 #: rc.cpp:278
msgid "Memory color" msgid "Memory color"
msgstr "Цвет памяти" msgstr "Цвет памяти"
#. i18n: file: ui/configwindow.ui:1916 #. i18n: file: ui/configwindow.ui:1971
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:287 #: rc.cpp:281
msgid "Upload speed color" msgid "Upload speed color"
msgstr "Цвет скорости отдачи" msgstr "Цвет скорости отдачи"
#. i18n: file: ui/configwindow.ui:1966 #. i18n: file: ui/configwindow.ui:2021
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:290 #: rc.cpp:284
msgid "Appearance" msgid "Appearance"
msgstr "Внешний вид" msgstr "Внешний вид"
#. i18n: file: ui/configwindow.ui:1995 #. i18n: file: ui/configwindow.ui:2050
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:293 #: rc.cpp:287
msgid "Time interval" msgid "Time interval"
msgstr "Интервал обновления" msgstr "Интервал обновления"
#. i18n: file: ui/configwindow.ui:2050 #. i18n: file: ui/configwindow.ui:2105
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:296 #: rc.cpp:290
msgid "Font" msgid "Font"
msgstr "Шрифт" msgstr "Шрифт"
#. i18n: file: ui/configwindow.ui:2090 #. i18n: file: ui/configwindow.ui:2145
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:299 #: rc.cpp:293
msgid "Font size" msgid "Font size"
msgstr "Размер шрифта" msgstr "Размер шрифта"
#. i18n: file: ui/configwindow.ui:2145 #. i18n: file: ui/configwindow.ui:2200
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:302 #: rc.cpp:296
msgid "Font color" msgid "Font color"
msgstr "Цвет шрифта" msgstr "Цвет шрифта"
#. i18n: file: ui/configwindow.ui:2185 #. i18n: file: ui/configwindow.ui:2240
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:305 #: rc.cpp:299
msgid "Font style" msgid "Font style"
msgstr "Стиль шрифта" msgstr "Стиль шрифта"
#. i18n: file: ui/configwindow.ui:2235 #. i18n: file: ui/configwindow.ui:2290
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:308 #: rc.cpp:302
msgid "Font weight" msgid "Font weight"
msgstr "Ширина шрифта" msgstr "Ширина шрифта"
#. i18n: file: ui/configwindow.ui:2300 #. i18n: file: ui/configwindow.ui:2355
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:311 #: rc.cpp:305
msgid "DataEngine" msgid "DataEngine"
msgstr "DataEngine" msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2329 #. i18n: file: ui/configwindow.ui:2384
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:314 #: rc.cpp:308
msgid "Custom command" msgid "Custom command"
msgstr "Своя команда" msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:2336 #. i18n: file: ui/configwindow.ui:2391
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:317 #: rc.cpp:311
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Своя команда для запуска" msgstr "Своя команда для запуска"
#. i18n: file: ui/configwindow.ui:2356 #. i18n: file: ui/configwindow.ui:2411
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:320 #: rc.cpp:314
msgid "GPU device" msgid "GPU device"
msgstr "Устройство GPU" msgstr "Устройство GPU"
#. i18n: file: ui/configwindow.ui:2376 #. i18n: file: ui/configwindow.ui:2492
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:323
msgid "auto"
msgstr "auto"
#. i18n: file: ui/configwindow.ui:2381
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:326
msgid "nvidia"
msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2386
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:329
msgid "ati"
msgstr "ati"
#. i18n: file: ui/configwindow.ui:2437
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:335 #: rc.cpp:320
msgid "MPD address" msgid "MPD address"
msgstr "Адрес сервера MPD" msgstr "Адрес сервера MPD"
#. i18n: file: ui/configwindow.ui:2461 #. i18n: file: ui/configwindow.ui:2516
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:338 #: rc.cpp:323
msgid "MPD port" msgid "MPD port"
msgstr "Порт сервера MPD" msgstr "Порт сервера MPD"
#. i18n: file: ui/configwindow.ui:2535 #. i18n: file: ui/configwindow.ui:2590
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:344 #: rc.cpp:329
msgid "pacman -Qu" msgid "pacman -Qu"
msgstr "pacman -Qu" msgstr "pacman -Qu"
#. i18n: file: ui/configwindow.ui:2540 #. i18n: file: ui/configwindow.ui:2595
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:347 #: rc.cpp:332
msgid "apt-show-versions -u -b" msgid "apt-show-versions -u -b"
msgstr "apt-show-versions -u -b" msgstr "apt-show-versions -u -b"
#. i18n: file: ui/configwindow.ui:2545 #. i18n: file: ui/configwindow.ui:2600
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:350 #: rc.cpp:335
msgid "aptitude search '~U'" msgid "aptitude search '~U'"
msgstr "aptitude search '~U'" msgstr "aptitude search '~U'"
#. i18n: file: ui/configwindow.ui:2550 #. i18n: file: ui/configwindow.ui:2605
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:353 #: rc.cpp:338
msgid "yum list updates" msgid "yum list updates"
msgstr "yum list updates" msgstr "yum list updates"
#. i18n: file: ui/configwindow.ui:2555 #. i18n: file: ui/configwindow.ui:2610
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:356 #: rc.cpp:341
msgid "pkg_version -I -l '<'" msgid "pkg_version -I -l '<'"
msgstr "pkg_version -I -l '<'" msgstr "pkg_version -I -l '<'"
#. i18n: file: ui/configwindow.ui:2560 #. i18n: file: ui/configwindow.ui:2615
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_pkgCommand)
#: rc.cpp:359 #: rc.cpp:344
msgid "urpmq --auto-select" msgid "urpmq --auto-select"
msgstr "urpmq --auto-select" msgstr "urpmq --auto-select"
#. i18n: file: ui/configwindow.ui:2578 #. i18n: file: ui/configwindow.ui:2633
#. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum) #. i18n: ectx: property (text), widget (QLabel, label_pkgCommandNum)
#: rc.cpp:362 #: rc.cpp:347
msgid "Number of null lines" msgid "Number of null lines"
msgstr "Число пустых линий" msgstr "Число пустых линий"
#: rc.cpp:370 #: rc.cpp:355
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:371 #: rc.cpp:356
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"
#~ msgid "amarok"
#~ msgstr "amarok"
#~ msgid "mpd"
#~ msgstr "mpd"
#~ msgid "qmmp"
#~ msgstr "qmmp"
#~ msgid "auto"
#~ msgstr "auto"
#~ msgid "nvidia"
#~ msgstr "nvidia"
#~ msgid "ati"
#~ msgstr "ati"
#~ 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"

View File

@ -0,0 +1,5 @@
# set project name
set (SUBPROJECT pytextmonitor)
file (GLOB SUBPROJECT_MD *.md)
install (FILES ${SUBPROJECT_MD} DESTINATION share/${SUBPROJECT}/)

View File

@ -82,6 +82,10 @@ Advanced settings
* tag `$mm` - uptime minutes * tag `$mm` - uptime minutes
* tag `$m` - uptime minutes without zero * tag `$m` - uptime minutes without zero
**Temperature units**
Select units for temperature. Available units are Celsius, Farenheit and Kelvin.
**Temperature devices** **Temperature devices**
List of devices, which will be observed in temp label (combo box items come from `sensors`). List widget is editable, delete key will remove current item. List of devices, which will be observed in temp label (combo box items come from `sensors`). List widget is editable, delete key will remove current item.

220
sources/readme/es.md Normal file
View File

@ -0,0 +1,220 @@
pytextmonitor
=============
Información
-----------
PyTextMonitor es un plasmoide minimalista escrito en Python2. Luce como los componentes visuales de awesome-wm.
**NOTA** ¡Se buscan traductores!
Configuración
-------------
Para editar la visualización debes abrir la ventana de Ajustes y establecer el formato de visualización en líneas:
* etiqueta `$time` - hora en formato por defecto. Por ejemplo, *vie 06 Nov 04:48:01 2013*
* etiqueta `$isotime` - hora en formato ISO
* etiqueta `$shorttime` - hora en formato local corto
* etiqueta `$longtime` - hora en formato local largo
* etiqueta `$custom` - formato de hora personalizado
* etiqueta `$uptime` - tiempo de actividad del sistema, *---d--h--m*
* etiqueta `$custom` - formato personalizado del tiempo de actividad del sistema
* etiqueta `$cpu` - carga total de la CPU, *%*
* etiqueta `$cpuN` - carga de la CPU para el núcleo N, *%*
* etiqueta `$cpucl` - frecuencia promedio de la CPU, *MHz*
* etiqueta `$cpuclN` - frecuencia de la CPU para el núcleo N, *MHz*
* etiqueta `$tempN` - temperatura para el dispositivo N. Por ejemplo, `$temp0`
* etiqueta `$gpu` - uso de la GPU, *%*. Debe estar instalado `aticonfig` o `nvidia-smi`
* etiqueta `$gputemp` - temperatura de la GPU. Debe estar instalado `aticonfig` o `nvidia-smi`
* etiqueta `$mem` - uso de la memori, *%*
* etiqueta `$memmb` - uso de la memoria, *MB*
* etiqueta `$memgb` - uso de la memoria, *GB*
* etiqueta `$swap` - swap, *%*
* etiqueta `$swapmb` - swap, *MB*
* etiqueta `$swapgb` - swap, *GB*
* etiqueta `$hddN` - uso para el punto de montaje N, *%*. Por ejemplo, `$hdd0`
* etiqueta `$hddtempN` - temperatura para el disco duro N. Por ejemplo, `$hddtemp0`
* etiqueta `$down` - velocidad de recepción, *KB/s*
* etiqueta `$up` - velocidad de envío, *KB/s*
* etiqueta `$netdev` - dispositivo de red actual
* etiqueta `$bat` - carga de la batería, *%*
* etiqueta `$ac` - estado del dispositivo de alimentación. Devuelve (\*) si la alimentación está conectada o *( )* si no lo está
* etiqueta `$album` - álbum de la canción actual. Debe estar instalado uno de los reproductores soportados
* etiqueta `$artist` - artista de la canción actual. Debe estar instalado uno de los reproductores soportados
* etiqueta `$progress` - progreso de la canción actual. Debe estar instalado uno de los reproductores soportados
* etiqueta `$time` - duración de la canción actual. Debe estar instalado uno de los reproductores soportados
* etiqueta `$title` - título de la canción actual. Debe estar instalado uno de los reproductores soportados
* etiqueta `$pscount` - cantidad de procesos en ejecución
* etiqueta `$pstotal` - total de procesos en ejecución
* etiqueta `$ps` - listado de procesos en ejecución
* etiqueta `$pkgcountN` - cantidad de paquetes con actualizaciones disponibles para el comando N. Por ejemplo, `$pkgcount0`
* etiqueta `$custom` - devuelve la salida para un comando personalizado
El orden de las etiquetas será cambiado si cambias la posición del deslizador. Es posible usar código HTML para las etiquetas.
**NOTA** no puedes establecer la etiqueta `$cpu` para que se muestre en la información de la swap, por citar un ejemplo. **`$cpu` solo funcionará en la etiqueta de la CPU**.
Ajustes avanzados
-----------------
**Hora personalizada**
* etiqueta `$dddd` - día de la semana en foramto largo
* etiqueta `$ddd` - día de la semana en formato corto
* etiqueta `$dd` - día
* etiqueta `$d` - día sin ceros
* etiqueta `$MMMM` - mes en formato largo
* etiqueta `$MMM` - mes en formato corto
* etiqueta `$MM` - mes
* etiqueta `$M` - mes sin ceros
* etiqueta `$yyyy` - año
* etiqueta `$yy` - año en formato corto
* etiqueta `$hh` - horas
* etiqueta `$h` - horas sin ceros
* etiqueta `$mm` - minutos
* etiqueta `$m` - minutos sin ceros
* etiqueta `$ss` - segundos
* etiqueta `$s` - segundos sin ceros
**Tiempo de ejecución del sistema personalizado**
* etiqueta `$dd` - días
* etiqueta `$d` - días sin ceros
* etiqueta `$hh` - horas
* etiqueta `$h` - horas sin ceros
* etiqueta `$mm` - minutos
* etiqueta `$m` - minutos sin ceros
**Unidades de temperatura**
Elija las unidades de temperatura. Las unidades disponibles son: Celsius, Farenheit y Kelvin.
**Dispositivos de temperatura**
El listado de dispositivos, será observado en la etiqueta de temperatura (los elementos de la lista desplegable provienen de `sensors`). El listado es editable, la tecla Suprimir borrará el elemento activo.
**Puntos de montaje**
El listado de puntos de montaje, será observado en la etiqueta de disco duro (los elementos de la lista desplegable provienen de `mount`). El listado es editable, la tecla Suprimir borrará el elemento activo.
**Disco duro**
El listado de dispositivos de disco duro, será observado desde la etiqueta disco duro (los elementos de la lista desplegable provienen de `find`). El listado es editable, la tecla Suprimir borrará el elemento activo.
**Directorio de red**
Ruta hacia el directorio que contiene información de los dispositivos de red. Por defecto es `/sys/class/net`. Se requiere para la selección automática del dispositivo de red.
**Dispositivo de red**
Usar el dispositivo especificado como activo. Los elementos de la lista desplegable provienen del **directorio de red**. Esto inhabilitará la selección automática del dispositivo de red.
**Dispositivo de batería**
El archivo que contiene información de la batería. El archivo (`/sys/class/power_supply/BAT0/capacity` por defecto) solo debería contener la carga de la batería en por ciento.
**Etiqueta alimentación conectada**
Línea que será mostrada cuando la alimentación esté conectada.
**Etiqueta alimentación conectada**
Línea que será mostrada cuando la alimentación esté desconectada.
**Dispositivo de alimentación**
El archivo con información de la alimentación. El archivo (`/sys/class/power_supply/AC/online` por defecto) debe contener `1` si la alimentación está conectada.
**Reproductor de música**
Seleccionar uno de los reproductores de música soportados para la etiqueta del reproductor.
Ajustes de las ventanas emergentes
----------------------------------
Desde la versión 1.7.0 las etiquetas CPU, frecuencia de la CPU, memoria, swap y red soportan ventanas emergentes. Para habilitarlas es necesario tener marcadas las casillas de verificación pertinentes. El número de valores almacenados puede ser establecido en la pestaña. También es posible configurar los colores de los gráficos.
Ajustes de DataEngine
---------------------
**Comando personalizado**
*NOTA* Esto puede causar congelamiento de la computadora.
Un comando que será ejecutado para una etiqueta personalizada.
**Dispositivo GPU**
Elegir uno de los dispositivos GPU soportados. `auto` habilitará la selección automática. El valor por defecto es `auto`.
**Disco duro**
Elegir uno de los discos duros para el monitor de temperatura del disco. `all` habilitará el monitor para todos los dispositivos. El valor por defecto es `all`.
**Dirección MPD**
Dirección del servidor MPD. El valor por defecto es `localhost`.
**Puerto MPD**
Puerto del servidor MPD. El valor por defecto es `6600`.
**Gestor de paquetes**
Listado de comandos que serán ejecutados. La cantidad de líneas nulas es el número de líneas innecesarias. Predeterminados:
* *Arch*: `PKGCMD=pacman -Qu`, `PKGNULL=0`
* *Debian*: `PKGCMD=apt-show-versions -u -b`, `PKGNULL=0`
* *Ubuntu*: `PKGCMD=aptitude search '~U'`, `PKGNULL=0`
* *Fedora*: `PKGCMD=yum list updates`, `PKGNULL=3`
* *FreeBSD*: `PKGCMD=pkg_version -I -l '<'`, `PKGNULL=0`
* *Mandriva*: `PKGCMD=urpmq --auto-select`, `PKGNULL=0`
Configuración de DataEngine
---------------------------
Se puede editar la configuración de DataEngine. Se encuentra en `/usr/share/config/extsysmon.conf` o `$HOME/share/config/extsysmon.conf` en dependencia del tipo de instalación. Quitar el comentario de la línea requerida y editarlo.
Instrucción
===========
Dependencias
------------
* kdebase-workspace
* kdebindings-python2
* lm_sensors (*para definir el dispositivo de temperatura*)
* sysstat (*para las notificaciones*)
Dependencias opcionales
-----------------------
* controlador propietario de video
* hddtemp (asegúrate de que puede ser ejecutado con `sudo` y sin contraseña. Solo hay que agregar la siguiente línea al archivo `/etc/sudoers`: `$USERNAME ALL=NOPASSWD: /usr/bin/hddtemp`)
* reproductor de música (amarok, mpd or qmmp)
Dependencias de construcción
----------------------------
* automoc4
* cmake
* kdebase-runtime
Instalación
-----------
* descargar fuentes
* instalar
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=`kde4-config --localprefix` ../
make && make install
También es posible instalarlo en `/`:
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ../
make && sudo make install
Información adicional
=====================
TODO (funcionalidades solicitadas)
----------------------------------
Enlaces
-----
* [Sitio oficial](http://arcanis.name/projects/pytextmonitor/)
* Plasmoide en [kde-look](http://kde-look.org/content/show.php/Py+Text+Monitor?content=157124)
* DataEngine en [kde-look](http://kde-look.org/content/show.php/Extended+Systemmonitor+DataEngine?content=158773)
* Archlinux [AUR](https://aur.archlinux.org/packages/kdeplasma-applets-pytextmonitor/) package

View File

@ -80,6 +80,10 @@ PyTextMonitor - минималистичный плазмоид, написан
* тег `$mm` - минуты аптайма * тег `$mm` - минуты аптайма
* тег `$m` - минуты аптайма без нуля * тег `$m` - минуты аптайма без нуля
**Температурные единицы**
Выберете единицы температуры. Доступные единицы следующие: Цельсий, Фаренгейт и Кельвин.
**Датчики температуры** **Датчики температуры**
Список датчиков, которые будут наблюдаться в поле temo (содержимое комбо бокса берется из `sensors`). Виджет редактируем, клавиша delete удалит текущую строку. Список датчиков, которые будут наблюдаться в поле temo (содержимое комбо бокса берется из `sensors`). Виджет редактируем, клавиша delete удалит текущую строку.