release 1.8.2

This commit is contained in:
arcan1s 2014-05-08 00:31:06 +04:00
parent 4857c6658f
commit 962478a27a
15 changed files with 621 additions and 594 deletions

View File

@ -1,3 +1,6 @@
Ver.1.8.2:
+ added different temperature units (Farenheit and Kelvin)
Ver.1.8.1: Ver.1.8.1:
* change pkg update time to hour * change pkg update time to hour

View File

@ -1,3 +1,6 @@
Вер.1.8.2:
+ добавлены различные температурные единицы (Farenheit и Kelvin)
Вер.1.8.1: Вер.1.8.1:
* поле pkg теперь обновляется раз в час * поле pkg теперь обновляется раз в час

View File

@ -2,7 +2,7 @@
pkgname=kdeplasma-applets-pytextmonitor pkgname=kdeplasma-applets-pytextmonitor
_pkgname=pytextmonitor _pkgname=pytextmonitor
pkgver=1.8.1 pkgver=1.8.2
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=('de872b28c48b9b4903dcfa50158595dc') md5sums=('2d5f5a2587c32cce3721ea217564a4ec')
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

@ -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

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

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 1) set (PROJECT_VERSION_PATCH 2)
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}")

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

@ -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"

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"