mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-25 07:57:19 +00:00
added scrollbar
added AC configuration
This commit is contained in:
parent
c9fd746cd0
commit
cc1d062fd9
@ -65,6 +65,8 @@ class ConfigDefinition:
|
|||||||
settings.set('custom_netdev', str(self.configpage.ui.comboBox_netdev.currentText()))
|
settings.set('custom_netdev', str(self.configpage.ui.comboBox_netdev.currentText()))
|
||||||
settings.set('battery_device', str(self.configpage.ui.lineEdit_batdev.text()))
|
settings.set('battery_device', str(self.configpage.ui.lineEdit_batdev.text()))
|
||||||
settings.set('ac_device', str(self.configpage.ui.lineEdit_acdev.text()))
|
settings.set('ac_device', str(self.configpage.ui.lineEdit_acdev.text()))
|
||||||
|
settings.set('ac_online', str(self.configpage.ui.lineEdit_acOnline.text()))
|
||||||
|
settings.set('ac_offline', str(self.configpage.ui.lineEdit_acOffline.text()))
|
||||||
settings.set('player_name', str(self.configpage.ui.comboBox_playerSelect.currentText()))
|
settings.set('player_name', str(self.configpage.ui.comboBox_playerSelect.currentText()))
|
||||||
|
|
||||||
settings.set('tooltip_num', self.configpage.ui.spinBox_tooltipNum.value())
|
settings.set('tooltip_num', self.configpage.ui.spinBox_tooltipNum.value())
|
||||||
@ -157,6 +159,8 @@ class ConfigDefinition:
|
|||||||
self.configpage.ui.comboBox_netdev.setCurrentIndex(index)
|
self.configpage.ui.comboBox_netdev.setCurrentIndex(index)
|
||||||
self.configpage.ui.lineEdit_batdev.setText(str(settings.get('battery_device', '/sys/class/power_supply/BAT0/capacity')))
|
self.configpage.ui.lineEdit_batdev.setText(str(settings.get('battery_device', '/sys/class/power_supply/BAT0/capacity')))
|
||||||
self.configpage.ui.lineEdit_acdev.setText(str(settings.get('ac_device', '/sys/class/power_supply/AC/online')))
|
self.configpage.ui.lineEdit_acdev.setText(str(settings.get('ac_device', '/sys/class/power_supply/AC/online')))
|
||||||
|
self.configpage.ui.lineEdit_acOnline.setText(str(settings.get('ac_online', '(*)')))
|
||||||
|
self.configpage.ui.lineEdit_acOffline.setText(str(settings.get('ac_offline', '( )')))
|
||||||
index = self.configpage.ui.comboBox_playerSelect.findText(str(settings.get('player_name', "amarok")))
|
index = self.configpage.ui.comboBox_playerSelect.findText(str(settings.get('player_name', "amarok")))
|
||||||
self.configpage.ui.comboBox_playerSelect.setCurrentIndex(index)
|
self.configpage.ui.comboBox_playerSelect.setCurrentIndex(index)
|
||||||
|
|
||||||
|
@ -296,12 +296,12 @@ class pyTextWidget(plasmascript.Applet):
|
|||||||
try:
|
try:
|
||||||
with open (self.ptm['vars']['adv']['acDev'], 'r') as batFile:
|
with open (self.ptm['vars']['adv']['acDev'], 'r') as batFile:
|
||||||
bat = batFile.readline()[:-1]
|
bat = batFile.readline()[:-1]
|
||||||
if (bat == '1'):
|
if (bat == "1"):
|
||||||
bat = "(*)"
|
bat = self.ptm['vars']['adv']['acOnline']
|
||||||
else:
|
else:
|
||||||
bat = "( )"
|
bat = self.ptm['vars']['adv']['acOffline']
|
||||||
except:
|
except:
|
||||||
bat = "(?)"
|
bat = "N\\A"
|
||||||
line = line.split('$ac')[0] + bat + line.split('$ac')[1]
|
line = line.split('$ac')[0] + bat + line.split('$ac')[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("bat", text)
|
self.setText("bat", text)
|
||||||
|
@ -38,6 +38,8 @@ class Reinit():
|
|||||||
|
|
||||||
ptmVars['adv'] = {}
|
ptmVars['adv'] = {}
|
||||||
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']['acOffline'] = str(settings.get('ac_offline', '( )'))
|
||||||
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'))
|
||||||
|
@ -6,8 +6,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>575</width>
|
<width>576</width>
|
||||||
<height>593</height>
|
<height>594</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
@ -18,8 +18,8 @@
|
|||||||
</property>
|
</property>
|
||||||
<property name="minimumSize">
|
<property name="minimumSize">
|
||||||
<size>
|
<size>
|
||||||
<width>575</width>
|
<width>576</width>
|
||||||
<height>593</height>
|
<height>0</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="maximumSize">
|
<property name="maximumSize">
|
||||||
@ -31,8 +31,8 @@
|
|||||||
<property name="windowTitle">
|
<property name="windowTitle">
|
||||||
<string>Form</string>
|
<string>Form</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QGridLayout" name="gridLayout">
|
<layout class="QVBoxLayout" name="verticalLayout_6">
|
||||||
<item row="0" column="0">
|
<item>
|
||||||
<widget class="QTabWidget" name="tabWidget">
|
<widget class="QTabWidget" name="tabWidget">
|
||||||
<property name="currentIndex">
|
<property name="currentIndex">
|
||||||
<number>0</number>
|
<number>0</number>
|
||||||
@ -55,6 +55,21 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QScrollArea" name="scrollArea_settings">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="content_settings">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>526</width>
|
||||||
|
<height>552</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_7">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_time">
|
<layout class="QHBoxLayout" name="layout_time">
|
||||||
<item>
|
<item>
|
||||||
@ -978,11 +993,30 @@ $title - song title</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
<widget class="QWidget" name="advanced">
|
<widget class="QWidget" name="advanced">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>Advanced</string>
|
<string>Advanced</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout">
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QScrollArea" name="scrollArea_advanced">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="contents_advanced">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>328</width>
|
||||||
|
<height>611</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_8">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_timeFormat">
|
<layout class="QHBoxLayout" name="layout_timeFormat">
|
||||||
<item>
|
<item>
|
||||||
@ -1309,6 +1343,66 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_acOnline">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_acOnline">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>120</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>AC online tag</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="lineEdit_acOnline">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Line, which returns when AC is online</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_acOffline">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_acOffline">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>120</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>AC offline tag</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="lineEdit_acOffline">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string>Line, which returns when AC is offline</string>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
<property name="alignment">
|
||||||
|
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_acdev">
|
<layout class="QHBoxLayout" name="layout_acdev">
|
||||||
<item>
|
<item>
|
||||||
@ -1396,6 +1490,10 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
<widget class="QWidget" name="tooltip">
|
<widget class="QWidget" name="tooltip">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>Tooltip</string>
|
<string>Tooltip</string>
|
||||||
@ -1414,6 +1512,21 @@ del - remove item</string>
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QScrollArea" name="scrollArea_tooltip">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="contents_tooltip">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>326</width>
|
||||||
|
<height>227</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_9">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_tooltipNum">
|
<layout class="QHBoxLayout" name="layout_tooltipNum">
|
||||||
<item>
|
<item>
|
||||||
@ -1469,46 +1582,6 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<layout class="QHBoxLayout" name="layout_cpuColor">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_cpuColor">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>120</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>CPU color</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<spacer name="spacer_cpuColor">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="KColorCombo" name="kcolorcombo_cpu">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>180</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_cpuclockColor">
|
<layout class="QHBoxLayout" name="layout_cpuclockColor">
|
||||||
<item>
|
<item>
|
||||||
@ -1549,46 +1622,6 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
|
||||||
<layout class="QHBoxLayout" name="layout_memColor">
|
|
||||||
<item>
|
|
||||||
<widget class="QLabel" name="label_memColor">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>120</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
<property name="text">
|
|
||||||
<string>Memory color</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<spacer name="spacer_memColor">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="KColorCombo" name="kcolorcombo_mem">
|
|
||||||
<property name="minimumSize">
|
|
||||||
<size>
|
|
||||||
<width>180</width>
|
|
||||||
<height>0</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_swapColor">
|
<layout class="QHBoxLayout" name="layout_swapColor">
|
||||||
<item>
|
<item>
|
||||||
@ -1629,6 +1662,46 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_cpuColor">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_cpuColor">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>120</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>CPU color</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="spacer_cpuColor">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="KColorCombo" name="kcolorcombo_cpu">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>180</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_downColor">
|
<layout class="QHBoxLayout" name="layout_downColor">
|
||||||
<item>
|
<item>
|
||||||
@ -1669,6 +1742,46 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<layout class="QHBoxLayout" name="layout_memColor">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label_memColor">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>120</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="text">
|
||||||
|
<string>Memory color</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="spacer_memColor">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="KColorCombo" name="kcolorcombo_mem">
|
||||||
|
<property name="minimumSize">
|
||||||
|
<size>
|
||||||
|
<width>180</width>
|
||||||
|
<height>0</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_upColor">
|
<layout class="QHBoxLayout" name="layout_upColor">
|
||||||
<item>
|
<item>
|
||||||
@ -1724,11 +1837,30 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
<widget class="QWidget" name="appearance">
|
<widget class="QWidget" name="appearance">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>Appearance</string>
|
<string>Appearance</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||||
|
<item>
|
||||||
|
<widget class="QScrollArea" name="scrollArea_appearance">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="contents_appearance">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>326</width>
|
||||||
|
<height>190</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_10">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_interval">
|
<layout class="QHBoxLayout" name="layout_interval">
|
||||||
<item>
|
<item>
|
||||||
@ -2039,11 +2171,30 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
<widget class="QWidget" name="dataengine">
|
<widget class="QWidget" name="dataengine">
|
||||||
<attribute name="title">
|
<attribute name="title">
|
||||||
<string>DataEngine</string>
|
<string>DataEngine</string>
|
||||||
</attribute>
|
</attribute>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||||||
|
<item>
|
||||||
|
<widget class="QScrollArea" name="scrollArea_dattaengine">
|
||||||
|
<property name="widgetResizable">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
<widget class="QWidget" name="contents_dattaengine">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>326</width>
|
||||||
|
<height>161</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QVBoxLayout" name="verticalLayout_11">
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layout_gpudev">
|
<layout class="QHBoxLayout" name="layout_gpudev">
|
||||||
<item>
|
<item>
|
||||||
@ -2239,7 +2390,7 @@ del - remove item</string>
|
|||||||
<property name="sizeHint" stdset="0">
|
<property name="sizeHint" stdset="0">
|
||||||
<size>
|
<size>
|
||||||
<width>20</width>
|
<width>20</width>
|
||||||
<height>391</height>
|
<height>657</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
@ -2250,6 +2401,10 @@ del - remove item</string>
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
<customwidgets>
|
<customwidgets>
|
||||||
<customwidget>
|
<customwidget>
|
||||||
<class>KColorCombo</class>
|
<class>KColorCombo</class>
|
||||||
@ -2259,6 +2414,7 @@ del - remove item</string>
|
|||||||
</customwidgets>
|
</customwidgets>
|
||||||
<tabstops>
|
<tabstops>
|
||||||
<tabstop>tabWidget</tabstop>
|
<tabstop>tabWidget</tabstop>
|
||||||
|
<tabstop>scrollArea_settings</tabstop>
|
||||||
<tabstop>checkBox_time</tabstop>
|
<tabstop>checkBox_time</tabstop>
|
||||||
<tabstop>lineEdit_time</tabstop>
|
<tabstop>lineEdit_time</tabstop>
|
||||||
<tabstop>slider_time</tabstop>
|
<tabstop>slider_time</tabstop>
|
||||||
@ -2304,6 +2460,7 @@ del - remove item</string>
|
|||||||
<tabstop>checkBox_custom</tabstop>
|
<tabstop>checkBox_custom</tabstop>
|
||||||
<tabstop>lineEdit_custom</tabstop>
|
<tabstop>lineEdit_custom</tabstop>
|
||||||
<tabstop>slider_custom</tabstop>
|
<tabstop>slider_custom</tabstop>
|
||||||
|
<tabstop>scrollArea_advanced</tabstop>
|
||||||
<tabstop>lineEdit_timeFormat</tabstop>
|
<tabstop>lineEdit_timeFormat</tabstop>
|
||||||
<tabstop>lineEdit_uptimeFormat</tabstop>
|
<tabstop>lineEdit_uptimeFormat</tabstop>
|
||||||
<tabstop>comboBox_tempDevice</tabstop>
|
<tabstop>comboBox_tempDevice</tabstop>
|
||||||
@ -2319,21 +2476,26 @@ del - remove item</string>
|
|||||||
<tabstop>checkBox_netdev</tabstop>
|
<tabstop>checkBox_netdev</tabstop>
|
||||||
<tabstop>comboBox_netdev</tabstop>
|
<tabstop>comboBox_netdev</tabstop>
|
||||||
<tabstop>lineEdit_batdev</tabstop>
|
<tabstop>lineEdit_batdev</tabstop>
|
||||||
|
<tabstop>lineEdit_acOnline</tabstop>
|
||||||
|
<tabstop>lineEdit_acOffline</tabstop>
|
||||||
<tabstop>lineEdit_acdev</tabstop>
|
<tabstop>lineEdit_acdev</tabstop>
|
||||||
<tabstop>comboBox_playerSelect</tabstop>
|
<tabstop>comboBox_playerSelect</tabstop>
|
||||||
|
<tabstop>scrollArea_tooltip</tabstop>
|
||||||
<tabstop>spinBox_tooltipNum</tabstop>
|
<tabstop>spinBox_tooltipNum</tabstop>
|
||||||
<tabstop>kcolorcombo_cpu</tabstop>
|
|
||||||
<tabstop>kcolorcombo_cpuclock</tabstop>
|
<tabstop>kcolorcombo_cpuclock</tabstop>
|
||||||
<tabstop>kcolorcombo_mem</tabstop>
|
|
||||||
<tabstop>kcolorcombo_swap</tabstop>
|
<tabstop>kcolorcombo_swap</tabstop>
|
||||||
|
<tabstop>kcolorcombo_cpu</tabstop>
|
||||||
<tabstop>kcolorcombo_down</tabstop>
|
<tabstop>kcolorcombo_down</tabstop>
|
||||||
|
<tabstop>kcolorcombo_mem</tabstop>
|
||||||
<tabstop>kcolorcombo_up</tabstop>
|
<tabstop>kcolorcombo_up</tabstop>
|
||||||
|
<tabstop>scrollArea_appearance</tabstop>
|
||||||
<tabstop>spinBox_interval</tabstop>
|
<tabstop>spinBox_interval</tabstop>
|
||||||
<tabstop>fontComboBox</tabstop>
|
<tabstop>fontComboBox</tabstop>
|
||||||
<tabstop>spinBox_fontSize</tabstop>
|
<tabstop>spinBox_fontSize</tabstop>
|
||||||
<tabstop>kcolorcombo</tabstop>
|
<tabstop>kcolorcombo</tabstop>
|
||||||
<tabstop>comboBox_style</tabstop>
|
<tabstop>comboBox_style</tabstop>
|
||||||
<tabstop>spinBox_weight</tabstop>
|
<tabstop>spinBox_weight</tabstop>
|
||||||
|
<tabstop>scrollArea_dattaengine</tabstop>
|
||||||
<tabstop>comboBox_gpudev</tabstop>
|
<tabstop>comboBox_gpudev</tabstop>
|
||||||
<tabstop>comboBox_hdddev</tabstop>
|
<tabstop>comboBox_hdddev</tabstop>
|
||||||
<tabstop>lineEdit_mpdaddress</tabstop>
|
<tabstop>lineEdit_mpdaddress</tabstop>
|
||||||
|
@ -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-05 22:36+0400\n"
|
"POT-Creation-Date: 2014-04-07 12:08+0400\n"
|
||||||
"PO-Revision-Date: 2014-04-05 22:36+0400\n"
|
"PO-Revision-Date: 2014-04-07 12:08+0400\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -40,13 +40,13 @@ msgstr ""
|
|||||||
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
|
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
|
||||||
"pytextmonitor/\">project homepage</a>"
|
"pytextmonitor/\">project homepage</a>"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:69
|
#. i18n: file: ui/configwindow.ui:84
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
||||||
#: rc.cpp:12
|
#: rc.cpp:12
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Time"
|
msgstr "Time"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:83
|
#. i18n: file: ui/configwindow.ui:98
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
||||||
#: rc.cpp:15
|
#: rc.cpp:15
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -62,13 +62,13 @@ msgstr ""
|
|||||||
"$longtime - time in log format\n"
|
"$longtime - time in log format\n"
|
||||||
"$custom - custom time format"
|
"$custom - custom time format"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:128
|
#. i18n: file: ui/configwindow.ui:143
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
||||||
#: rc.cpp:22
|
#: rc.cpp:22
|
||||||
msgid "Uptime"
|
msgid "Uptime"
|
||||||
msgstr "Uptime"
|
msgstr "Uptime"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:139
|
#. i18n: file: ui/configwindow.ui:154
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
||||||
#: rc.cpp:25
|
#: rc.cpp:25
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -78,13 +78,13 @@ msgstr ""
|
|||||||
"$uptime - system uptime\n"
|
"$uptime - system uptime\n"
|
||||||
"$custom - custom format"
|
"$custom - custom format"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:187
|
#. i18n: file: ui/configwindow.ui:202
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
||||||
#: rc.cpp:29
|
#: rc.cpp:29
|
||||||
msgid "CPU"
|
msgid "CPU"
|
||||||
msgstr "CPU"
|
msgstr "CPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:205
|
#. i18n: file: ui/configwindow.ui:220
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
||||||
#: rc.cpp:33
|
#: rc.cpp:33
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -103,13 +103,13 @@ msgstr ""
|
|||||||
"...\n"
|
"...\n"
|
||||||
"$cpuN - load CPU for core N, %"
|
"$cpuN - load CPU for core N, %"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:253
|
#. i18n: file: ui/configwindow.ui:268
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
||||||
#: rc.cpp:41
|
#: rc.cpp:41
|
||||||
msgid "CPU Clock"
|
msgid "CPU Clock"
|
||||||
msgstr "CPU Clock"
|
msgstr "CPU Clock"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:271
|
#. i18n: file: ui/configwindow.ui:286
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
||||||
#: rc.cpp:44
|
#: rc.cpp:44
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -127,50 +127,50 @@ msgstr ""
|
|||||||
"...\n"
|
"...\n"
|
||||||
"$cpuclN - CPU clock for core N, MHz"
|
"$cpuclN - CPU clock for core N, MHz"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:319
|
#. i18n: file: ui/configwindow.ui:334
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
||||||
#: rc.cpp:52
|
#: rc.cpp:52
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Temperature"
|
msgstr "Temperature"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:329
|
#. i18n: file: ui/configwindow.ui:344
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
||||||
#: rc.cpp:55
|
#: rc.cpp:55
|
||||||
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
||||||
msgstr "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
msgstr "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:377
|
#. i18n: file: ui/configwindow.ui:392
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
||||||
#: rc.cpp:58
|
#: rc.cpp:58
|
||||||
msgid "GPU"
|
msgid "GPU"
|
||||||
msgstr "GPU"
|
msgstr "GPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:387
|
#. i18n: file: ui/configwindow.ui:402
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
||||||
#: rc.cpp:62
|
#: rc.cpp:62
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "$gpu - gpu usage, %"
|
msgid "$gpu - gpu usage, %"
|
||||||
msgstr "$gpu - gpu usage, %"
|
msgstr "$gpu - gpu usage, %"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:435
|
#. i18n: file: ui/configwindow.ui:450
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
||||||
#: rc.cpp:65
|
#: rc.cpp:65
|
||||||
msgid "GPU Temp"
|
msgid "GPU Temp"
|
||||||
msgstr "GPU Temp"
|
msgstr "GPU Temp"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:445
|
#. i18n: file: ui/configwindow.ui:460
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
||||||
#: rc.cpp:68
|
#: rc.cpp:68
|
||||||
msgid "$gputemp - physical temperature on GPU"
|
msgid "$gputemp - physical temperature on GPU"
|
||||||
msgstr "$gputemp - physical temperature on GPU"
|
msgstr "$gputemp - physical temperature on GPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:493
|
#. i18n: file: ui/configwindow.ui:508
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
||||||
#: rc.cpp:71
|
#: rc.cpp:71
|
||||||
msgid "Memory"
|
msgid "Memory"
|
||||||
msgstr "Memory"
|
msgstr "Memory"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:508
|
#. i18n: file: ui/configwindow.ui:523
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
||||||
#: rc.cpp:75
|
#: rc.cpp:75
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -183,13 +183,13 @@ msgstr ""
|
|||||||
"$memmb - RAM usage, MB\n"
|
"$memmb - RAM usage, MB\n"
|
||||||
"$memgb - RAM usage, GB"
|
"$memgb - RAM usage, GB"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:556
|
#. i18n: file: ui/configwindow.ui:571
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
||||||
#: rc.cpp:80
|
#: rc.cpp:80
|
||||||
msgid "Swap"
|
msgid "Swap"
|
||||||
msgstr "Swap"
|
msgstr "Swap"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:571
|
#. i18n: file: ui/configwindow.ui:586
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
||||||
#: rc.cpp:84
|
#: rc.cpp:84
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -202,28 +202,28 @@ msgstr ""
|
|||||||
"$swapmb - swap usage, MB\n"
|
"$swapmb - swap usage, MB\n"
|
||||||
"$swapgb - swap usage, GB"
|
"$swapgb - swap usage, GB"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:619
|
#. 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:2106
|
#. i18n: file: ui/configwindow.ui:2257
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
||||||
#: rc.cpp:89 rc.cpp:298
|
#: rc.cpp:89 rc.cpp:310
|
||||||
msgid "HDD"
|
msgid "HDD"
|
||||||
msgstr "HDD"
|
msgstr "HDD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:629
|
#. i18n: file: ui/configwindow.ui:644
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
||||||
#: rc.cpp:93
|
#: rc.cpp:93
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
||||||
msgstr "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
msgstr "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:677
|
#. i18n: file: ui/configwindow.ui:692
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
||||||
#: rc.cpp:96
|
#: rc.cpp:96
|
||||||
msgid "HDD Temp"
|
msgid "HDD Temp"
|
||||||
msgstr "HDD Temp"
|
msgstr "HDD Temp"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:687
|
#. i18n: file: ui/configwindow.ui:702
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
||||||
#: rc.cpp:99
|
#: rc.cpp:99
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -231,13 +231,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
|
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:735
|
#. i18n: file: ui/configwindow.ui:750
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
||||||
#: rc.cpp:102
|
#: rc.cpp:102
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Network"
|
msgstr "Network"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:750
|
#. i18n: file: ui/configwindow.ui:765
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
||||||
#: rc.cpp:105
|
#: rc.cpp:105
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -249,13 +249,13 @@ msgstr ""
|
|||||||
"$up - upload speed, KB/s\n"
|
"$up - upload speed, KB/s\n"
|
||||||
"$netdev - current network device"
|
"$netdev - current network device"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:798
|
#. i18n: file: ui/configwindow.ui:813
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
||||||
#: rc.cpp:110
|
#: rc.cpp:110
|
||||||
msgid "Battery"
|
msgid "Battery"
|
||||||
msgstr "Battery"
|
msgstr "Battery"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:809
|
#. i18n: file: ui/configwindow.ui:824
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
||||||
#: rc.cpp:114
|
#: rc.cpp:114
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -266,15 +266,15 @@ msgstr ""
|
|||||||
"$bat - battery charge, %\n"
|
"$bat - battery charge, %\n"
|
||||||
"$ac - AC status"
|
"$ac - AC status"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:857
|
#. i18n: file: ui/configwindow.ui:872
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
||||||
#. i18n: file: ui/configwindow.ui:1347
|
#. i18n: file: ui/configwindow.ui:1441
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
||||||
#: rc.cpp:118 rc.cpp:223
|
#: rc.cpp:118 rc.cpp:235
|
||||||
msgid "Music player"
|
msgid "Music player"
|
||||||
msgstr "Music player"
|
msgstr "Music player"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:871
|
#. i18n: file: ui/configwindow.ui:886
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
||||||
#: rc.cpp:121
|
#: rc.cpp:121
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -290,31 +290,31 @@ msgstr ""
|
|||||||
"$time - song duration\n"
|
"$time - song duration\n"
|
||||||
"$title - song title"
|
"$title - song title"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:919
|
#. i18n: file: ui/configwindow.ui:934
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
||||||
#: rc.cpp:128
|
#: rc.cpp:128
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Custom"
|
msgstr "Custom"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:929
|
#. i18n: file: ui/configwindow.ui:944
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
||||||
#: rc.cpp:131
|
#: rc.cpp:131
|
||||||
msgid "$custom - get output from custom command"
|
msgid "$custom - get output from custom command"
|
||||||
msgstr "$custom - get output from custom command"
|
msgstr "$custom - get output from custom command"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:983
|
#. i18n: file: ui/configwindow.ui:1002
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
||||||
#: rc.cpp:134
|
#: rc.cpp:134
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Advanced"
|
msgstr "Advanced"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:997
|
#. i18n: file: ui/configwindow.ui:1031
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
||||||
#: rc.cpp:137
|
#: rc.cpp:137
|
||||||
msgid "Custom time format"
|
msgid "Custom time format"
|
||||||
msgstr "Custom time format"
|
msgstr "Custom time format"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1019
|
#. i18n: file: ui/configwindow.ui:1053
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
||||||
#: rc.cpp:140
|
#: rc.cpp:140
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -352,13 +352,13 @@ msgstr ""
|
|||||||
"$ss - seconds\n"
|
"$ss - seconds\n"
|
||||||
"$s - seconds w\\o zero"
|
"$s - seconds w\\o zero"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1039
|
#. i18n: file: ui/configwindow.ui:1073
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
||||||
#: rc.cpp:158
|
#: rc.cpp:158
|
||||||
msgid "Custom uptime format"
|
msgid "Custom uptime format"
|
||||||
msgstr "Custom uptime format"
|
msgstr "Custom uptime format"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1051
|
#. i18n: file: ui/configwindow.ui:1085
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
||||||
#: rc.cpp:161
|
#: rc.cpp:161
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -376,27 +376,27 @@ msgstr ""
|
|||||||
"$mm - uptime minutes\n"
|
"$mm - uptime minutes\n"
|
||||||
"$m - uptime minutes without zero"
|
"$m - uptime minutes without zero"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1073
|
#. i18n: file: ui/configwindow.ui:1107
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
||||||
#: rc.cpp:169
|
#: rc.cpp:169
|
||||||
msgid "Temperature devices"
|
msgid "Temperature devices"
|
||||||
msgstr "Temperature devices"
|
msgstr "Temperature devices"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1099
|
#. i18n: file: ui/configwindow.ui:1133
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1154
|
#. i18n: file: ui/configwindow.ui:1188
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1209
|
#. i18n: file: ui/configwindow.ui:1243
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
||||||
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Add"
|
msgstr "Add"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1109
|
#. i18n: file: ui/configwindow.ui:1143
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1164
|
#. i18n: file: ui/configwindow.ui:1198
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1219
|
#. i18n: file: ui/configwindow.ui:1253
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
||||||
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -406,93 +406,117 @@ msgstr ""
|
|||||||
"Editable\n"
|
"Editable\n"
|
||||||
"del - remove item"
|
"del - remove item"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1128
|
#. i18n: file: ui/configwindow.ui:1162
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
||||||
#: rc.cpp:179
|
#: rc.cpp:179
|
||||||
msgid "Mount points"
|
msgid "Mount points"
|
||||||
msgstr "Mount points"
|
msgstr "Mount points"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1183
|
#. i18n: file: ui/configwindow.ui:1217
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
||||||
#: rc.cpp:189
|
#: rc.cpp:189
|
||||||
msgid "HDD devices"
|
msgid "HDD devices"
|
||||||
msgstr "HDD devices"
|
msgstr "HDD devices"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1236
|
#. i18n: file: ui/configwindow.ui:1270
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
||||||
#: rc.cpp:199
|
#: rc.cpp:199
|
||||||
msgid "Network directory"
|
msgid "Network directory"
|
||||||
msgstr "Network directory"
|
msgstr "Network directory"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1243
|
#. i18n: file: ui/configwindow.ui:1277
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
||||||
#: rc.cpp:202
|
#: rc.cpp:202
|
||||||
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:1263
|
#. i18n: file: ui/configwindow.ui:1297
|
||||||
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:205
|
#: rc.cpp:205
|
||||||
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:1266
|
#. i18n: file: ui/configwindow.ui:1300
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:208
|
#: rc.cpp:208
|
||||||
msgid "Set network device"
|
msgid "Set network device"
|
||||||
msgstr "Set network device"
|
msgstr "Set network device"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1299
|
#. i18n: file: ui/configwindow.ui:1333
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
||||||
#: rc.cpp:211
|
#: rc.cpp:211
|
||||||
msgid "Battery device"
|
msgid "Battery device"
|
||||||
msgstr "Battery device"
|
msgstr "Battery device"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1306
|
#. i18n: file: ui/configwindow.ui:1340
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
||||||
#: rc.cpp:214
|
#: rc.cpp:214
|
||||||
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:1323
|
#. i18n: file: ui/configwindow.ui:1357
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_acOnline)
|
||||||
#: rc.cpp:217
|
#: rc.cpp:217
|
||||||
|
msgid "AC online tag"
|
||||||
|
msgstr "AC online tag"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1364
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
|
||||||
|
#: rc.cpp:220
|
||||||
|
msgid "Line, which returns when AC is online"
|
||||||
|
msgstr "Line, which returns when AC is online"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1387
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acOffline)
|
||||||
|
#: rc.cpp:223
|
||||||
|
msgid "AC offline tag"
|
||||||
|
msgstr "AC offline tag"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1394
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
|
||||||
|
#: rc.cpp:226
|
||||||
|
msgid "Line, which returns when AC is offline"
|
||||||
|
msgstr "Line, which returns when AC is offline"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1417
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
||||||
|
#: rc.cpp:229
|
||||||
msgid "AC device"
|
msgid "AC device"
|
||||||
msgstr "AC device"
|
msgstr "AC device"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1330
|
#. i18n: file: ui/configwindow.ui:1424
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
||||||
#: rc.cpp:220
|
#: rc.cpp:232
|
||||||
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:1367
|
#. i18n: file: ui/configwindow.ui:1461
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:226
|
#: rc.cpp:238
|
||||||
msgid "amarok"
|
msgid "amarok"
|
||||||
msgstr "amarok"
|
msgstr "amarok"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1372
|
#. i18n: file: ui/configwindow.ui:1466
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:229
|
#: rc.cpp:241
|
||||||
msgid "mpd"
|
msgid "mpd"
|
||||||
msgstr "mpd"
|
msgstr "mpd"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1377
|
#. i18n: file: ui/configwindow.ui:1471
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:232
|
#: rc.cpp:244
|
||||||
msgid "qmmp"
|
msgid "qmmp"
|
||||||
msgstr "qmmp"
|
msgstr "qmmp"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1401
|
#. i18n: file: ui/configwindow.ui:1499
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
||||||
#: rc.cpp:235
|
#: rc.cpp:247
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Tooltip"
|
msgstr "Tooltip"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1407
|
#. i18n: file: ui/configwindow.ui:1505
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
||||||
#: rc.cpp:238
|
#: rc.cpp:250
|
||||||
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."
|
||||||
@ -500,150 +524,150 @@ msgstr ""
|
|||||||
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
|
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
|
||||||
"To enable them just make needed checkbox fully checked."
|
"To enable them just make needed checkbox fully checked."
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1428
|
#. i18n: file: ui/configwindow.ui:1541
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
||||||
#: rc.cpp:241
|
#: rc.cpp:253
|
||||||
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:1483
|
#. i18n: file: ui/configwindow.ui:1596
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
|
||||||
#: rc.cpp:244
|
|
||||||
msgid "CPU color"
|
|
||||||
msgstr "CPU color"
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1523
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
||||||
#: rc.cpp:247
|
#: rc.cpp:256
|
||||||
msgid "CPU clock color"
|
msgid "CPU clock color"
|
||||||
msgstr "CPU clock color"
|
msgstr "CPU clock color"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1563
|
#. i18n: file: ui/configwindow.ui:1636
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
|
||||||
#: rc.cpp:250
|
|
||||||
msgid "Memory color"
|
|
||||||
msgstr "Memory color"
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1603
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
||||||
#: rc.cpp:253
|
#: rc.cpp:259
|
||||||
msgid "Swap color"
|
msgid "Swap color"
|
||||||
msgstr "Swap color"
|
msgstr "Swap color"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1643
|
#. i18n: file: ui/configwindow.ui:1676
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
||||||
|
#: rc.cpp:262
|
||||||
|
msgid "CPU color"
|
||||||
|
msgstr "CPU color"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1716
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
||||||
#: rc.cpp:256
|
#: rc.cpp:265
|
||||||
msgid "Download speed color"
|
msgid "Download speed color"
|
||||||
msgstr "Download speed color"
|
msgstr "Download speed color"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1683
|
#. i18n: file: ui/configwindow.ui:1756
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
||||||
|
#: rc.cpp:268
|
||||||
|
msgid "Memory color"
|
||||||
|
msgstr "Memory color"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1796
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
||||||
#: rc.cpp:259
|
#: rc.cpp:271
|
||||||
msgid "Upload speed color"
|
msgid "Upload speed color"
|
||||||
msgstr "Upload speed color"
|
msgstr "Upload speed color"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1729
|
#. i18n: file: ui/configwindow.ui:1846
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
||||||
#: rc.cpp:262
|
#: rc.cpp:274
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Appearance"
|
msgstr "Appearance"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1743
|
#. i18n: file: ui/configwindow.ui:1875
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
||||||
#: rc.cpp:265
|
#: rc.cpp:277
|
||||||
msgid "Time interval"
|
msgid "Time interval"
|
||||||
msgstr "Time interval"
|
msgstr "Time interval"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1798
|
#. i18n: file: ui/configwindow.ui:1930
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
#: rc.cpp:268
|
#: rc.cpp:280
|
||||||
msgid "Font"
|
msgid "Font"
|
||||||
msgstr "Font"
|
msgstr "Font"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1838
|
#. i18n: file: ui/configwindow.ui:1970
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
#: rc.cpp:271
|
#: rc.cpp:283
|
||||||
msgid "Font size"
|
msgid "Font size"
|
||||||
msgstr "Font size"
|
msgstr "Font size"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1893
|
#. i18n: file: ui/configwindow.ui:2025
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
||||||
#: rc.cpp:274
|
#: rc.cpp:286
|
||||||
msgid "Font color"
|
msgid "Font color"
|
||||||
msgstr "Font color"
|
msgstr "Font color"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1933
|
#. i18n: file: ui/configwindow.ui:2065
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
||||||
#: rc.cpp:277
|
#: rc.cpp:289
|
||||||
msgid "Font style"
|
msgid "Font style"
|
||||||
msgstr "Font style"
|
msgstr "Font style"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1983
|
#. i18n: file: ui/configwindow.ui:2115
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
||||||
#: rc.cpp:280
|
#: rc.cpp:292
|
||||||
msgid "Font weight"
|
msgid "Font weight"
|
||||||
msgstr "Font weight"
|
msgstr "Font weight"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2044
|
#. i18n: file: ui/configwindow.ui:2180
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
||||||
#: rc.cpp:283
|
#: rc.cpp:295
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2058
|
#. i18n: file: ui/configwindow.ui:2209
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
||||||
#: rc.cpp:286
|
#: rc.cpp:298
|
||||||
msgid "GPU device"
|
msgid "GPU device"
|
||||||
msgstr "GPU device"
|
msgstr "GPU device"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2078
|
#. i18n: file: ui/configwindow.ui:2229
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:289
|
#: rc.cpp:301
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "auto"
|
msgstr "auto"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2083
|
#. i18n: file: ui/configwindow.ui:2234
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:292
|
#: rc.cpp:304
|
||||||
msgid "nvidia"
|
msgid "nvidia"
|
||||||
msgstr "nvidia"
|
msgstr "nvidia"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2088
|
#. i18n: file: ui/configwindow.ui:2239
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:295
|
#: rc.cpp:307
|
||||||
msgid "ati"
|
msgid "ati"
|
||||||
msgstr "ati"
|
msgstr "ati"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2139
|
#. i18n: file: ui/configwindow.ui:2290
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
||||||
#: rc.cpp:301
|
#: rc.cpp:313
|
||||||
msgid "MPD address"
|
msgid "MPD address"
|
||||||
msgstr "MPD address"
|
msgstr "MPD address"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2163
|
#. i18n: file: ui/configwindow.ui:2314
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
||||||
#: rc.cpp:304
|
#: rc.cpp:316
|
||||||
msgid "MPD port"
|
msgid "MPD port"
|
||||||
msgstr "MPD port"
|
msgstr "MPD port"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2218
|
#. i18n: file: ui/configwindow.ui:2369
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
||||||
#: rc.cpp:307
|
#: rc.cpp:319
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Custom command"
|
msgstr "Custom command"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2225
|
#. i18n: file: ui/configwindow.ui:2376
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
||||||
#: rc.cpp:310
|
#: rc.cpp:322
|
||||||
msgid "Custom command to run"
|
msgid "Custom command to run"
|
||||||
msgstr "Custom command to run"
|
msgstr "Custom command to run"
|
||||||
|
|
||||||
#: rc.cpp:311
|
#: rc.cpp:323
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: rc.cpp:312
|
#: rc.cpp:324
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
|
@ -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-05 22:36+0400\n"
|
"POT-Creation-Date: 2014-04-07 12:08+0400\n"
|
||||||
"PO-Revision-Date: 2014-04-05 22:36+0400\n"
|
"PO-Revision-Date: 2014-04-07 12:13+0400\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
@ -41,13 +41,13 @@ msgstr ""
|
|||||||
"D'avantage d'informations se trouvent sur <a href=\"http://arcanis.name/"
|
"D'avantage d'informations se trouvent sur <a href=\"http://arcanis.name/"
|
||||||
"projects/pytextmonitor/\">la page du projet</a>"
|
"projects/pytextmonitor/\">la page du projet</a>"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:69
|
#. i18n: file: ui/configwindow.ui:84
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
||||||
#: rc.cpp:12
|
#: rc.cpp:12
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Durée"
|
msgstr "Durée"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:83
|
#. i18n: file: ui/configwindow.ui:98
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
||||||
#: rc.cpp:15
|
#: rc.cpp:15
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -63,13 +63,13 @@ msgstr ""
|
|||||||
"$longtime - l'heure au format log\n"
|
"$longtime - l'heure au format log\n"
|
||||||
"$custom - l'heure, format personnalisé"
|
"$custom - l'heure, format personnalisé"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:128
|
#. i18n: file: ui/configwindow.ui:143
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
||||||
#: rc.cpp:22
|
#: rc.cpp:22
|
||||||
msgid "Uptime"
|
msgid "Uptime"
|
||||||
msgstr "temps de fonctionnement"
|
msgstr "temps de fonctionnement"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:139
|
#. i18n: file: ui/configwindow.ui:154
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
||||||
#: rc.cpp:25
|
#: rc.cpp:25
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -79,13 +79,13 @@ msgstr ""
|
|||||||
"$uptime - temps de fonctionnement\n"
|
"$uptime - temps de fonctionnement\n"
|
||||||
"$custom - format personnalisé"
|
"$custom - format personnalisé"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:187
|
#. i18n: file: ui/configwindow.ui:202
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
||||||
#: rc.cpp:29
|
#: rc.cpp:29
|
||||||
msgid "CPU"
|
msgid "CPU"
|
||||||
msgstr "CPU"
|
msgstr "CPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:205
|
#. i18n: file: ui/configwindow.ui:220
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
||||||
#: rc.cpp:33
|
#: rc.cpp:33
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -104,13 +104,13 @@ msgstr ""
|
|||||||
"...\n"
|
"...\n"
|
||||||
"$cpuN - charge processeur pour le coeur N, %"
|
"$cpuN - charge processeur pour le coeur N, %"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:253
|
#. i18n: file: ui/configwindow.ui:268
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
||||||
#: rc.cpp:41
|
#: rc.cpp:41
|
||||||
msgid "CPU Clock"
|
msgid "CPU Clock"
|
||||||
msgstr "Horloge processeur"
|
msgstr "Horloge processeur"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:271
|
#. i18n: file: ui/configwindow.ui:286
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
||||||
#: rc.cpp:44
|
#: rc.cpp:44
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -128,13 +128,13 @@ msgstr ""
|
|||||||
"...\n"
|
"...\n"
|
||||||
"$cpuclN - Horloge du coeur N, MHz"
|
"$cpuclN - Horloge du coeur N, MHz"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:319
|
#. i18n: file: ui/configwindow.ui:334
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
||||||
#: rc.cpp:52
|
#: rc.cpp:52
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Température"
|
msgstr "Température"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:329
|
#. i18n: file: ui/configwindow.ui:344
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
||||||
#: rc.cpp:55
|
#: rc.cpp:55
|
||||||
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
||||||
@ -142,38 +142,38 @@ msgstr ""
|
|||||||
"$tempN - Température physique du périphérique N (à partir de 0). Exemple: "
|
"$tempN - Température physique du périphérique N (à partir de 0). Exemple: "
|
||||||
"$temp0"
|
"$temp0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:377
|
#. i18n: file: ui/configwindow.ui:392
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
||||||
#: rc.cpp:58
|
#: rc.cpp:58
|
||||||
msgid "GPU"
|
msgid "GPU"
|
||||||
msgstr "Processeur graphique"
|
msgstr "Processeur graphique"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:387
|
#. i18n: file: ui/configwindow.ui:402
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
||||||
#: rc.cpp:62
|
#: rc.cpp:62
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "$gpu - gpu usage, %"
|
msgid "$gpu - gpu usage, %"
|
||||||
msgstr "$gpu - utilisation du processeur graphique, %"
|
msgstr "$gpu - utilisation du processeur graphique, %"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:435
|
#. i18n: file: ui/configwindow.ui:450
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
||||||
#: rc.cpp:65
|
#: rc.cpp:65
|
||||||
msgid "GPU Temp"
|
msgid "GPU Temp"
|
||||||
msgstr "Temp du processeur graphique"
|
msgstr "Temp du processeur graphique"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:445
|
#. i18n: file: ui/configwindow.ui:460
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
||||||
#: rc.cpp:68
|
#: rc.cpp:68
|
||||||
msgid "$gputemp - physical temperature on GPU"
|
msgid "$gputemp - physical temperature on GPU"
|
||||||
msgstr "$gputemp - Température physique du processeur graphique"
|
msgstr "$gputemp - Température physique du processeur graphique"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:493
|
#. i18n: file: ui/configwindow.ui:508
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
||||||
#: rc.cpp:71
|
#: rc.cpp:71
|
||||||
msgid "Memory"
|
msgid "Memory"
|
||||||
msgstr "Mémoire"
|
msgstr "Mémoire"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:508
|
#. i18n: file: ui/configwindow.ui:523
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
||||||
#: rc.cpp:75
|
#: rc.cpp:75
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -186,13 +186,13 @@ msgstr ""
|
|||||||
"$memmb - utilisation de la RAM, MB\n"
|
"$memmb - utilisation de la RAM, MB\n"
|
||||||
"$memgb - utilisation de la RAM, GB"
|
"$memgb - utilisation de la RAM, GB"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:556
|
#. i18n: file: ui/configwindow.ui:571
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
||||||
#: rc.cpp:80
|
#: rc.cpp:80
|
||||||
msgid "Swap"
|
msgid "Swap"
|
||||||
msgstr "mémoire d'échange (swap)"
|
msgstr "mémoire d'échange (swap)"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:571
|
#. i18n: file: ui/configwindow.ui:586
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
||||||
#: rc.cpp:84
|
#: rc.cpp:84
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -205,15 +205,15 @@ msgstr ""
|
|||||||
"$swapmb - utilisation swap, MB\n"
|
"$swapmb - utilisation swap, MB\n"
|
||||||
"$swapgb - utilisation swap, GB"
|
"$swapgb - utilisation swap, GB"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:619
|
#. 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:2106
|
#. i18n: file: ui/configwindow.ui:2257
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
||||||
#: rc.cpp:89 rc.cpp:298
|
#: rc.cpp:89 rc.cpp:310
|
||||||
msgid "HDD"
|
msgid "HDD"
|
||||||
msgstr "Disque dur"
|
msgstr "Disque dur"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:629
|
#. i18n: file: ui/configwindow.ui:644
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
||||||
#: rc.cpp:93
|
#: rc.cpp:93
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -222,13 +222,13 @@ msgstr ""
|
|||||||
"$hddN - espace occupé sur le point de montage N (à partir de 0), %. Exemple: "
|
"$hddN - espace occupé sur le point de montage N (à partir de 0), %. Exemple: "
|
||||||
"$hdd0"
|
"$hdd0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:677
|
#. i18n: file: ui/configwindow.ui:692
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
||||||
#: rc.cpp:96
|
#: rc.cpp:96
|
||||||
msgid "HDD Temp"
|
msgid "HDD Temp"
|
||||||
msgstr "Température disque dur"
|
msgstr "Température disque dur"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:687
|
#. i18n: file: ui/configwindow.ui:702
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
||||||
#: rc.cpp:99
|
#: rc.cpp:99
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -237,13 +237,13 @@ msgstr ""
|
|||||||
"$hddtempN - température physique du périphérique N (à partir de 0). Exemple: "
|
"$hddtempN - température physique du périphérique N (à partir de 0). Exemple: "
|
||||||
"$hddtemp0"
|
"$hddtemp0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:735
|
#. i18n: file: ui/configwindow.ui:750
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
||||||
#: rc.cpp:102
|
#: rc.cpp:102
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Réseau"
|
msgstr "Réseau"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:750
|
#. i18n: file: ui/configwindow.ui:765
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
||||||
#: rc.cpp:105
|
#: rc.cpp:105
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -255,13 +255,13 @@ msgstr ""
|
|||||||
"$up - vitesse ascendante, KB/s\n"
|
"$up - vitesse ascendante, KB/s\n"
|
||||||
"$netdev - périphérique réseau actuel"
|
"$netdev - périphérique réseau actuel"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:798
|
#. i18n: file: ui/configwindow.ui:813
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
||||||
#: rc.cpp:110
|
#: rc.cpp:110
|
||||||
msgid "Battery"
|
msgid "Battery"
|
||||||
msgstr "Batterie"
|
msgstr "Batterie"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:809
|
#. i18n: file: ui/configwindow.ui:824
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
||||||
#: rc.cpp:114
|
#: rc.cpp:114
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -272,15 +272,15 @@ msgstr ""
|
|||||||
"$bat - charge de la batterie, %\n"
|
"$bat - charge de la batterie, %\n"
|
||||||
"$ac - état de l'alimentation"
|
"$ac - état de l'alimentation"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:857
|
#. i18n: file: ui/configwindow.ui:872
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
||||||
#. i18n: file: ui/configwindow.ui:1347
|
#. i18n: file: ui/configwindow.ui:1441
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
||||||
#: rc.cpp:118 rc.cpp:223
|
#: rc.cpp:118 rc.cpp:235
|
||||||
msgid "Music player"
|
msgid "Music player"
|
||||||
msgstr "Lecteur audio"
|
msgstr "Lecteur audio"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:871
|
#. i18n: file: ui/configwindow.ui:886
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
||||||
#: rc.cpp:121
|
#: rc.cpp:121
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -296,31 +296,31 @@ msgstr ""
|
|||||||
"$time - durée du morceau\n"
|
"$time - durée du morceau\n"
|
||||||
"$title - titre du morceau"
|
"$title - titre du morceau"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:919
|
#. i18n: file: ui/configwindow.ui:934
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
||||||
#: rc.cpp:128
|
#: rc.cpp:128
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Personnalisé"
|
msgstr "Personnalisé"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:929
|
#. i18n: file: ui/configwindow.ui:944
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
||||||
#: rc.cpp:131
|
#: rc.cpp:131
|
||||||
msgid "$custom - get output from custom command"
|
msgid "$custom - get output from custom command"
|
||||||
msgstr "$custom - sortie d'une commande personnelle"
|
msgstr "$custom - sortie d'une commande personnelle"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:983
|
#. i18n: file: ui/configwindow.ui:1002
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
||||||
#: rc.cpp:134
|
#: rc.cpp:134
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avancé"
|
msgstr "Avancé"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:997
|
#. i18n: file: ui/configwindow.ui:1031
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
||||||
#: rc.cpp:137
|
#: rc.cpp:137
|
||||||
msgid "Custom time format"
|
msgid "Custom time format"
|
||||||
msgstr "Format de l'heure personnalisé"
|
msgstr "Format de l'heure personnalisé"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1019
|
#. i18n: file: ui/configwindow.ui:1053
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
||||||
#: rc.cpp:140
|
#: rc.cpp:140
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -358,13 +358,13 @@ msgstr ""
|
|||||||
"$ss - secondes\n"
|
"$ss - secondes\n"
|
||||||
"$s - secondes sans zéro"
|
"$s - secondes sans zéro"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1039
|
#. i18n: file: ui/configwindow.ui:1073
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
||||||
#: rc.cpp:158
|
#: rc.cpp:158
|
||||||
msgid "Custom uptime format"
|
msgid "Custom uptime format"
|
||||||
msgstr "Temps de fonctionnement personalisé"
|
msgstr "Temps de fonctionnement personalisé"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1051
|
#. i18n: file: ui/configwindow.ui:1085
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
||||||
#: rc.cpp:161
|
#: rc.cpp:161
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -382,27 +382,27 @@ 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:1073
|
#. i18n: file: ui/configwindow.ui:1107
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
||||||
#: rc.cpp:169
|
#: rc.cpp:169
|
||||||
msgid "Temperature devices"
|
msgid "Temperature devices"
|
||||||
msgstr "Temperature des périphériques"
|
msgstr "Temperature des périphériques"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1099
|
#. i18n: file: ui/configwindow.ui:1133
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1154
|
#. i18n: file: ui/configwindow.ui:1188
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1209
|
#. i18n: file: ui/configwindow.ui:1243
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
||||||
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Ajouter"
|
msgstr "Ajouter"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1109
|
#. i18n: file: ui/configwindow.ui:1143
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1164
|
#. i18n: file: ui/configwindow.ui:1198
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1219
|
#. i18n: file: ui/configwindow.ui:1253
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
||||||
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -412,31 +412,31 @@ msgstr ""
|
|||||||
"Modifiable\n"
|
"Modifiable\n"
|
||||||
"del - supprimer un élément"
|
"del - supprimer un élément"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1128
|
#. i18n: file: ui/configwindow.ui:1162
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
||||||
#: rc.cpp:179
|
#: rc.cpp:179
|
||||||
msgid "Mount points"
|
msgid "Mount points"
|
||||||
msgstr "Points de montage"
|
msgstr "Points de montage"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1183
|
#. i18n: file: ui/configwindow.ui:1217
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
||||||
#: rc.cpp:189
|
#: rc.cpp:189
|
||||||
msgid "HDD devices"
|
msgid "HDD devices"
|
||||||
msgstr "Périphériques HDD"
|
msgstr "Périphériques HDD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1236
|
#. i18n: file: ui/configwindow.ui:1270
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
||||||
#: rc.cpp:199
|
#: rc.cpp:199
|
||||||
msgid "Network directory"
|
msgid "Network directory"
|
||||||
msgstr "Voisinage réseau"
|
msgstr "Voisinage réseau"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1243
|
#. i18n: file: ui/configwindow.ui:1277
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
||||||
#: rc.cpp:202
|
#: rc.cpp:202
|
||||||
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:1263
|
#. i18n: file: ui/configwindow.ui:1297
|
||||||
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:205
|
#: rc.cpp:205
|
||||||
msgid "Disable auto select device and set specified device"
|
msgid "Disable auto select device and set specified device"
|
||||||
@ -444,63 +444,87 @@ 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:1266
|
#. i18n: file: ui/configwindow.ui:1300
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:208
|
#: rc.cpp:208
|
||||||
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:1299
|
#. i18n: file: ui/configwindow.ui:1333
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
||||||
#: rc.cpp:211
|
#: rc.cpp:211
|
||||||
msgid "Battery device"
|
msgid "Battery device"
|
||||||
msgstr "Batterie"
|
msgstr "Batterie"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1306
|
#. i18n: file: ui/configwindow.ui:1340
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
||||||
#: rc.cpp:214
|
#: rc.cpp:214
|
||||||
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:1323
|
#. i18n: file: ui/configwindow.ui:1357
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_acOnline)
|
||||||
#: rc.cpp:217
|
#: rc.cpp:217
|
||||||
|
msgid "AC online tag"
|
||||||
|
msgstr "AC online tag"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1364
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
|
||||||
|
#: rc.cpp:220
|
||||||
|
msgid "Line, which returns when AC is online"
|
||||||
|
msgstr "Ligne, qui retourne lorsque le AC est online"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1387
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acOffline)
|
||||||
|
#: rc.cpp:223
|
||||||
|
msgid "AC offline tag"
|
||||||
|
msgstr "AC déconnecté tag"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1394
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
|
||||||
|
#: rc.cpp:226
|
||||||
|
msgid "Line, which returns when AC is offline"
|
||||||
|
msgstr "Ligne, qui retourne lorsque le AC est offline"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1417
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
||||||
|
#: rc.cpp:229
|
||||||
msgid "AC device"
|
msgid "AC device"
|
||||||
msgstr "Périphérique d'alimentation"
|
msgstr "Périphérique d'alimentation"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1330
|
#. i18n: file: ui/configwindow.ui:1424
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
||||||
#: rc.cpp:220
|
#: rc.cpp:232
|
||||||
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:1367
|
#. i18n: file: ui/configwindow.ui:1461
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:226
|
#: rc.cpp:238
|
||||||
msgid "amarok"
|
msgid "amarok"
|
||||||
msgstr "amarok"
|
msgstr "amarok"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1372
|
#. i18n: file: ui/configwindow.ui:1466
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:229
|
#: rc.cpp:241
|
||||||
msgid "mpd"
|
msgid "mpd"
|
||||||
msgstr "mpd"
|
msgstr "mpd"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1377
|
#. i18n: file: ui/configwindow.ui:1471
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:232
|
#: rc.cpp:244
|
||||||
msgid "qmmp"
|
msgid "qmmp"
|
||||||
msgstr "qmmp"
|
msgstr "qmmp"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1401
|
#. i18n: file: ui/configwindow.ui:1499
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
||||||
#: rc.cpp:235
|
#: rc.cpp:247
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Conseil"
|
msgstr "Conseil"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1407
|
#. i18n: file: ui/configwindow.ui:1505
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
||||||
#: rc.cpp:238
|
#: rc.cpp:250
|
||||||
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."
|
||||||
@ -509,150 +533,150 @@ 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:1428
|
#. i18n: file: ui/configwindow.ui:1541
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
||||||
#: rc.cpp:241
|
#: rc.cpp:253
|
||||||
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:1483
|
#. i18n: file: ui/configwindow.ui:1596
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
|
||||||
#: rc.cpp:244
|
|
||||||
msgid "CPU color"
|
|
||||||
msgstr "Couleur processeur"
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1523
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
||||||
#: rc.cpp:247
|
#: rc.cpp:256
|
||||||
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:1563
|
#. i18n: file: ui/configwindow.ui:1636
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
|
||||||
#: rc.cpp:250
|
|
||||||
msgid "Memory color"
|
|
||||||
msgstr "Couleur de la mémoire"
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1603
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
||||||
#: rc.cpp:253
|
#: rc.cpp:259
|
||||||
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:1643
|
#. i18n: file: ui/configwindow.ui:1676
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
||||||
|
#: rc.cpp:262
|
||||||
|
msgid "CPU color"
|
||||||
|
msgstr "Couleur processeur"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1716
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
||||||
#: rc.cpp:256
|
#: rc.cpp:265
|
||||||
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:1683
|
#. i18n: file: ui/configwindow.ui:1756
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
||||||
|
#: rc.cpp:268
|
||||||
|
msgid "Memory color"
|
||||||
|
msgstr "Couleur de la mémoire"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1796
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
||||||
#: rc.cpp:259
|
#: rc.cpp:271
|
||||||
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:1729
|
#. i18n: file: ui/configwindow.ui:1846
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
||||||
#: rc.cpp:262
|
#: rc.cpp:274
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Apparence"
|
msgstr "Apparence"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1743
|
#. i18n: file: ui/configwindow.ui:1875
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
||||||
#: rc.cpp:265
|
#: rc.cpp:277
|
||||||
msgid "Time interval"
|
msgid "Time interval"
|
||||||
msgstr "Intervalle"
|
msgstr "Intervalle"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1798
|
#. i18n: file: ui/configwindow.ui:1930
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
#: rc.cpp:268
|
#: rc.cpp:280
|
||||||
msgid "Font"
|
msgid "Font"
|
||||||
msgstr "Police"
|
msgstr "Police"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1838
|
#. i18n: file: ui/configwindow.ui:1970
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
#: rc.cpp:271
|
#: rc.cpp:283
|
||||||
msgid "Font size"
|
msgid "Font size"
|
||||||
msgstr "Taille de la police"
|
msgstr "Taille de la police"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1893
|
#. i18n: file: ui/configwindow.ui:2025
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
||||||
#: rc.cpp:274
|
#: rc.cpp:286
|
||||||
msgid "Font color"
|
msgid "Font color"
|
||||||
msgstr "Couleur de la police"
|
msgstr "Couleur de la police"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1933
|
#. i18n: file: ui/configwindow.ui:2065
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
||||||
#: rc.cpp:277
|
#: rc.cpp:289
|
||||||
msgid "Font style"
|
msgid "Font style"
|
||||||
msgstr "Style de la police"
|
msgstr "Style de la police"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1983
|
#. i18n: file: ui/configwindow.ui:2115
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
||||||
#: rc.cpp:280
|
#: rc.cpp:292
|
||||||
msgid "Font weight"
|
msgid "Font weight"
|
||||||
msgstr "Épaisseur de la police"
|
msgstr "Épaisseur de la police"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2044
|
#. i18n: file: ui/configwindow.ui:2180
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
||||||
#: rc.cpp:283
|
#: rc.cpp:295
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "Moteur de données"
|
msgstr "Moteur de données"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2058
|
#. i18n: file: ui/configwindow.ui:2209
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
||||||
#: rc.cpp:286
|
#: rc.cpp:298
|
||||||
msgid "GPU device"
|
msgid "GPU device"
|
||||||
msgstr "Périphérique graphique"
|
msgstr "Périphérique graphique"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2078
|
#. i18n: file: ui/configwindow.ui:2229
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:289
|
#: rc.cpp:301
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "auto"
|
msgstr "auto"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2083
|
#. i18n: file: ui/configwindow.ui:2234
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:292
|
#: rc.cpp:304
|
||||||
msgid "nvidia"
|
msgid "nvidia"
|
||||||
msgstr "nvidia"
|
msgstr "nvidia"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2088
|
#. i18n: file: ui/configwindow.ui:2239
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:295
|
#: rc.cpp:307
|
||||||
msgid "ati"
|
msgid "ati"
|
||||||
msgstr "ati"
|
msgstr "ati"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2139
|
#. i18n: file: ui/configwindow.ui:2290
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
||||||
#: rc.cpp:301
|
#: rc.cpp:313
|
||||||
msgid "MPD address"
|
msgid "MPD address"
|
||||||
msgstr "Adresse MPD"
|
msgstr "Adresse MPD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2163
|
#. i18n: file: ui/configwindow.ui:2314
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
||||||
#: rc.cpp:304
|
#: rc.cpp:316
|
||||||
msgid "MPD port"
|
msgid "MPD port"
|
||||||
msgstr "Port MPD"
|
msgstr "Port MPD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2218
|
#. i18n: file: ui/configwindow.ui:2369
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
||||||
#: rc.cpp:307
|
#: rc.cpp:319
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Commande personnalisée"
|
msgstr "Commande personnalisée"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2225
|
#. i18n: file: ui/configwindow.ui:2376
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
||||||
#: rc.cpp:310
|
#: rc.cpp:322
|
||||||
msgid "Custom command to run"
|
msgid "Custom command to run"
|
||||||
msgstr "Commande personnalisée à exécuter"
|
msgstr "Commande personnalisée à exécuter"
|
||||||
|
|
||||||
#: rc.cpp:311
|
#: rc.cpp:323
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: rc.cpp:312
|
#: rc.cpp:324
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
|
@ -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-05 22:36+0400\n"
|
"POT-Creation-Date: 2014-04-07 12:08+0400\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -37,13 +37,13 @@ msgid ""
|
|||||||
"pytextmonitor/\">project homepage</a>"
|
"pytextmonitor/\">project homepage</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:69
|
#. i18n: file: ui/configwindow.ui:84
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
||||||
#: rc.cpp:12
|
#: rc.cpp:12
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:83
|
#. i18n: file: ui/configwindow.ui:98
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
||||||
#: rc.cpp:15
|
#: rc.cpp:15
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -54,13 +54,13 @@ msgid ""
|
|||||||
"$custom - custom time format"
|
"$custom - custom time format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:128
|
#. i18n: file: ui/configwindow.ui:143
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
||||||
#: rc.cpp:22
|
#: rc.cpp:22
|
||||||
msgid "Uptime"
|
msgid "Uptime"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:139
|
#. i18n: file: ui/configwindow.ui:154
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
||||||
#: rc.cpp:25
|
#: rc.cpp:25
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -68,13 +68,13 @@ msgid ""
|
|||||||
"$custom - custom format"
|
"$custom - custom format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:187
|
#. i18n: file: ui/configwindow.ui:202
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
||||||
#: rc.cpp:29
|
#: rc.cpp:29
|
||||||
msgid "CPU"
|
msgid "CPU"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:205
|
#. i18n: file: ui/configwindow.ui:220
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
||||||
#: rc.cpp:33
|
#: rc.cpp:33
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -87,13 +87,13 @@ msgid ""
|
|||||||
"$cpuN - load CPU for core N, %"
|
"$cpuN - load CPU for core N, %"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:253
|
#. i18n: file: ui/configwindow.ui:268
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
||||||
#: rc.cpp:41
|
#: rc.cpp:41
|
||||||
msgid "CPU Clock"
|
msgid "CPU Clock"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:271
|
#. i18n: file: ui/configwindow.ui:286
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
||||||
#: rc.cpp:44
|
#: rc.cpp:44
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -105,50 +105,50 @@ msgid ""
|
|||||||
"$cpuclN - CPU clock for core N, MHz"
|
"$cpuclN - CPU clock for core N, MHz"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:319
|
#. i18n: file: ui/configwindow.ui:334
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
||||||
#: rc.cpp:52
|
#: rc.cpp:52
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:329
|
#. i18n: file: ui/configwindow.ui:344
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
||||||
#: rc.cpp:55
|
#: rc.cpp:55
|
||||||
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:377
|
#. i18n: file: ui/configwindow.ui:392
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
||||||
#: rc.cpp:58
|
#: rc.cpp:58
|
||||||
msgid "GPU"
|
msgid "GPU"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:387
|
#. i18n: file: ui/configwindow.ui:402
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
||||||
#: rc.cpp:62
|
#: rc.cpp:62
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "$gpu - gpu usage, %"
|
msgid "$gpu - gpu usage, %"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:435
|
#. i18n: file: ui/configwindow.ui:450
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
||||||
#: rc.cpp:65
|
#: rc.cpp:65
|
||||||
msgid "GPU Temp"
|
msgid "GPU Temp"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:445
|
#. i18n: file: ui/configwindow.ui:460
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
||||||
#: rc.cpp:68
|
#: rc.cpp:68
|
||||||
msgid "$gputemp - physical temperature on GPU"
|
msgid "$gputemp - physical temperature on GPU"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:493
|
#. i18n: file: ui/configwindow.ui:508
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
||||||
#: rc.cpp:71
|
#: rc.cpp:71
|
||||||
msgid "Memory"
|
msgid "Memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:508
|
#. i18n: file: ui/configwindow.ui:523
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
||||||
#: rc.cpp:75
|
#: rc.cpp:75
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -158,13 +158,13 @@ msgid ""
|
|||||||
"$memgb - RAM usage, GB"
|
"$memgb - RAM usage, GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:556
|
#. i18n: file: ui/configwindow.ui:571
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
||||||
#: rc.cpp:80
|
#: rc.cpp:80
|
||||||
msgid "Swap"
|
msgid "Swap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:571
|
#. i18n: file: ui/configwindow.ui:586
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
||||||
#: rc.cpp:84
|
#: rc.cpp:84
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -174,41 +174,41 @@ msgid ""
|
|||||||
"$swapgb - swap usage, GB"
|
"$swapgb - swap usage, GB"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:619
|
#. 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:2106
|
#. i18n: file: ui/configwindow.ui:2257
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
||||||
#: rc.cpp:89 rc.cpp:298
|
#: rc.cpp:89 rc.cpp:310
|
||||||
msgid "HDD"
|
msgid "HDD"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:629
|
#. i18n: file: ui/configwindow.ui:644
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
||||||
#: rc.cpp:93
|
#: rc.cpp:93
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:677
|
#. i18n: file: ui/configwindow.ui:692
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
||||||
#: rc.cpp:96
|
#: rc.cpp:96
|
||||||
msgid "HDD Temp"
|
msgid "HDD Temp"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:687
|
#. i18n: file: ui/configwindow.ui:702
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
||||||
#: rc.cpp:99
|
#: rc.cpp:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
|
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:735
|
#. i18n: file: ui/configwindow.ui:750
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
||||||
#: rc.cpp:102
|
#: rc.cpp:102
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:750
|
#. i18n: file: ui/configwindow.ui:765
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
||||||
#: rc.cpp:105
|
#: rc.cpp:105
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -217,13 +217,13 @@ msgid ""
|
|||||||
"$netdev - current network device"
|
"$netdev - current network device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:798
|
#. i18n: file: ui/configwindow.ui:813
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
||||||
#: rc.cpp:110
|
#: rc.cpp:110
|
||||||
msgid "Battery"
|
msgid "Battery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:809
|
#. i18n: file: ui/configwindow.ui:824
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
||||||
#: rc.cpp:114
|
#: rc.cpp:114
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -232,15 +232,15 @@ msgid ""
|
|||||||
"$ac - AC status"
|
"$ac - AC status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:857
|
#. i18n: file: ui/configwindow.ui:872
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
||||||
#. i18n: file: ui/configwindow.ui:1347
|
#. i18n: file: ui/configwindow.ui:1441
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
||||||
#: rc.cpp:118 rc.cpp:223
|
#: rc.cpp:118 rc.cpp:235
|
||||||
msgid "Music player"
|
msgid "Music player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:871
|
#. i18n: file: ui/configwindow.ui:886
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
||||||
#: rc.cpp:121
|
#: rc.cpp:121
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -251,31 +251,31 @@ msgid ""
|
|||||||
"$title - song title"
|
"$title - song title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:919
|
#. i18n: file: ui/configwindow.ui:934
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
||||||
#: rc.cpp:128
|
#: rc.cpp:128
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:929
|
#. i18n: file: ui/configwindow.ui:944
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
||||||
#: rc.cpp:131
|
#: rc.cpp:131
|
||||||
msgid "$custom - get output from custom command"
|
msgid "$custom - get output from custom command"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:983
|
#. i18n: file: ui/configwindow.ui:1002
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
||||||
#: rc.cpp:134
|
#: rc.cpp:134
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:997
|
#. i18n: file: ui/configwindow.ui:1031
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
||||||
#: rc.cpp:137
|
#: rc.cpp:137
|
||||||
msgid "Custom time format"
|
msgid "Custom time format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1019
|
#. i18n: file: ui/configwindow.ui:1053
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
||||||
#: rc.cpp:140
|
#: rc.cpp:140
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -297,13 +297,13 @@ msgid ""
|
|||||||
"$s - seconds w\\o zero"
|
"$s - seconds w\\o zero"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1039
|
#. i18n: file: ui/configwindow.ui:1073
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
||||||
#: rc.cpp:158
|
#: rc.cpp:158
|
||||||
msgid "Custom uptime format"
|
msgid "Custom uptime format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1051
|
#. i18n: file: ui/configwindow.ui:1085
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
||||||
#: rc.cpp:161
|
#: rc.cpp:161
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -315,27 +315,27 @@ msgid ""
|
|||||||
"$m - uptime minutes without zero"
|
"$m - uptime minutes without zero"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1073
|
#. i18n: file: ui/configwindow.ui:1107
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
||||||
#: rc.cpp:169
|
#: rc.cpp:169
|
||||||
msgid "Temperature devices"
|
msgid "Temperature devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1099
|
#. i18n: file: ui/configwindow.ui:1133
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1154
|
#. i18n: file: ui/configwindow.ui:1188
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1209
|
#. i18n: file: ui/configwindow.ui:1243
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
||||||
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1109
|
#. i18n: file: ui/configwindow.ui:1143
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1164
|
#. i18n: file: ui/configwindow.ui:1198
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1219
|
#. i18n: file: ui/configwindow.ui:1253
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
||||||
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -343,242 +343,266 @@ msgid ""
|
|||||||
"del - remove item"
|
"del - remove item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1128
|
#. i18n: file: ui/configwindow.ui:1162
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
||||||
#: rc.cpp:179
|
#: rc.cpp:179
|
||||||
msgid "Mount points"
|
msgid "Mount points"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1183
|
#. i18n: file: ui/configwindow.ui:1217
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
||||||
#: rc.cpp:189
|
#: rc.cpp:189
|
||||||
msgid "HDD devices"
|
msgid "HDD devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1236
|
#. i18n: file: ui/configwindow.ui:1270
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
||||||
#: rc.cpp:199
|
#: rc.cpp:199
|
||||||
msgid "Network directory"
|
msgid "Network directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1243
|
#. i18n: file: ui/configwindow.ui:1277
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
||||||
#: rc.cpp:202
|
#: rc.cpp:202
|
||||||
msgid "\"/sys/class/net\" by default"
|
msgid "\"/sys/class/net\" by default"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1263
|
#. i18n: file: ui/configwindow.ui:1297
|
||||||
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:205
|
#: rc.cpp:205
|
||||||
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:1266
|
#. i18n: file: ui/configwindow.ui:1300
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:208
|
#: rc.cpp:208
|
||||||
msgid "Set network device"
|
msgid "Set network device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1299
|
#. i18n: file: ui/configwindow.ui:1333
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
||||||
#: rc.cpp:211
|
#: rc.cpp:211
|
||||||
msgid "Battery device"
|
msgid "Battery device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1306
|
#. i18n: file: ui/configwindow.ui:1340
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
||||||
#: rc.cpp:214
|
#: rc.cpp:214
|
||||||
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:1323
|
#. i18n: file: ui/configwindow.ui:1357
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_acOnline)
|
||||||
#: rc.cpp:217
|
#: rc.cpp:217
|
||||||
|
msgid "AC online tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1364
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
|
||||||
|
#: rc.cpp:220
|
||||||
|
msgid "Line, which returns when AC is online"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1387
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acOffline)
|
||||||
|
#: rc.cpp:223
|
||||||
|
msgid "AC offline tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1394
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
|
||||||
|
#: rc.cpp:226
|
||||||
|
msgid "Line, which returns when AC is offline"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1417
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
||||||
|
#: rc.cpp:229
|
||||||
msgid "AC device"
|
msgid "AC device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1330
|
#. i18n: file: ui/configwindow.ui:1424
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
||||||
#: rc.cpp:220
|
#: rc.cpp:232
|
||||||
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:1367
|
#. i18n: file: ui/configwindow.ui:1461
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:226
|
#: rc.cpp:238
|
||||||
msgid "amarok"
|
msgid "amarok"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1372
|
#. i18n: file: ui/configwindow.ui:1466
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:229
|
#: rc.cpp:241
|
||||||
msgid "mpd"
|
msgid "mpd"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1377
|
#. i18n: file: ui/configwindow.ui:1471
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:232
|
#: rc.cpp:244
|
||||||
msgid "qmmp"
|
msgid "qmmp"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1401
|
#. i18n: file: ui/configwindow.ui:1499
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
||||||
#: rc.cpp:235
|
#: rc.cpp:247
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1407
|
#. i18n: file: ui/configwindow.ui:1505
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
||||||
#: rc.cpp:238
|
#: rc.cpp:250
|
||||||
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:1428
|
#. i18n: file: ui/configwindow.ui:1541
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
||||||
#: rc.cpp:241
|
#: rc.cpp:253
|
||||||
msgid "Number of values for tooltips"
|
msgid "Number of values for tooltips"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1483
|
#. i18n: file: ui/configwindow.ui:1596
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
|
||||||
#: rc.cpp:244
|
|
||||||
msgid "CPU color"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1523
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
||||||
#: rc.cpp:247
|
#: rc.cpp:256
|
||||||
msgid "CPU clock color"
|
msgid "CPU clock color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1563
|
#. i18n: file: ui/configwindow.ui:1636
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
|
||||||
#: rc.cpp:250
|
|
||||||
msgid "Memory color"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1603
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
||||||
#: rc.cpp:253
|
#: rc.cpp:259
|
||||||
msgid "Swap color"
|
msgid "Swap color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1643
|
#. i18n: file: ui/configwindow.ui:1676
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
||||||
|
#: rc.cpp:262
|
||||||
|
msgid "CPU color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1716
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
||||||
#: rc.cpp:256
|
#: rc.cpp:265
|
||||||
msgid "Download speed color"
|
msgid "Download speed color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1683
|
#. i18n: file: ui/configwindow.ui:1756
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
||||||
|
#: rc.cpp:268
|
||||||
|
msgid "Memory color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1796
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
||||||
#: rc.cpp:259
|
#: rc.cpp:271
|
||||||
msgid "Upload speed color"
|
msgid "Upload speed color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1729
|
#. i18n: file: ui/configwindow.ui:1846
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
||||||
#: rc.cpp:262
|
#: rc.cpp:274
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1743
|
#. i18n: file: ui/configwindow.ui:1875
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
||||||
#: rc.cpp:265
|
#: rc.cpp:277
|
||||||
msgid "Time interval"
|
msgid "Time interval"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1798
|
#. i18n: file: ui/configwindow.ui:1930
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
#: rc.cpp:268
|
#: rc.cpp:280
|
||||||
msgid "Font"
|
msgid "Font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1838
|
#. i18n: file: ui/configwindow.ui:1970
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
#: rc.cpp:271
|
#: rc.cpp:283
|
||||||
msgid "Font size"
|
msgid "Font size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1893
|
#. i18n: file: ui/configwindow.ui:2025
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
||||||
#: rc.cpp:274
|
#: rc.cpp:286
|
||||||
msgid "Font color"
|
msgid "Font color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1933
|
#. i18n: file: ui/configwindow.ui:2065
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
||||||
#: rc.cpp:277
|
#: rc.cpp:289
|
||||||
msgid "Font style"
|
msgid "Font style"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1983
|
#. i18n: file: ui/configwindow.ui:2115
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
||||||
#: rc.cpp:280
|
#: rc.cpp:292
|
||||||
msgid "Font weight"
|
msgid "Font weight"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2044
|
#. i18n: file: ui/configwindow.ui:2180
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
||||||
#: rc.cpp:283
|
#: rc.cpp:295
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2058
|
#. i18n: file: ui/configwindow.ui:2209
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
||||||
#: rc.cpp:286
|
#: rc.cpp:298
|
||||||
msgid "GPU device"
|
msgid "GPU device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2078
|
#. i18n: file: ui/configwindow.ui:2229
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:289
|
#: rc.cpp:301
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2083
|
#. i18n: file: ui/configwindow.ui:2234
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:292
|
#: rc.cpp:304
|
||||||
msgid "nvidia"
|
msgid "nvidia"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2088
|
#. i18n: file: ui/configwindow.ui:2239
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:295
|
#: rc.cpp:307
|
||||||
msgid "ati"
|
msgid "ati"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2139
|
#. i18n: file: ui/configwindow.ui:2290
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
||||||
#: rc.cpp:301
|
#: rc.cpp:313
|
||||||
msgid "MPD address"
|
msgid "MPD address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2163
|
#. i18n: file: ui/configwindow.ui:2314
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
||||||
#: rc.cpp:304
|
#: rc.cpp:316
|
||||||
msgid "MPD port"
|
msgid "MPD port"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2218
|
#. i18n: file: ui/configwindow.ui:2369
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
||||||
#: rc.cpp:307
|
#: rc.cpp:319
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2225
|
#. i18n: file: ui/configwindow.ui:2376
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
||||||
#: rc.cpp:310
|
#: rc.cpp:322
|
||||||
msgid "Custom command to run"
|
msgid "Custom command to run"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: rc.cpp:311
|
#: rc.cpp:323
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: rc.cpp:312
|
#: rc.cpp:324
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -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-05 22:36+0400\n"
|
"POT-Creation-Date: 2014-04-07 12:08+0400\n"
|
||||||
"PO-Revision-Date: 2014-04-05 22:37+0400\n"
|
"PO-Revision-Date: 2014-04-07 12:09+0400\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\n"
|
||||||
@ -40,13 +40,13 @@ msgstr ""
|
|||||||
"Подробная информация может быть найдена на <a href=\"http://arcanis.name/ru/"
|
"Подробная информация может быть найдена на <a href=\"http://arcanis.name/ru/"
|
||||||
"projects/pytextmonitor/\">домашней странице проекта</a>"
|
"projects/pytextmonitor/\">домашней странице проекта</a>"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:69
|
#. i18n: file: ui/configwindow.ui:84
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
|
||||||
#: rc.cpp:12
|
#: rc.cpp:12
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Время"
|
msgstr "Время"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:83
|
#. i18n: file: ui/configwindow.ui:98
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
|
||||||
#: rc.cpp:15
|
#: rc.cpp:15
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -62,13 +62,13 @@ msgstr ""
|
|||||||
"$longtime - время в длинном формате\n"
|
"$longtime - время в длинном формате\n"
|
||||||
"$custom - свой формат времени"
|
"$custom - свой формат времени"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:128
|
#. i18n: file: ui/configwindow.ui:143
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
|
||||||
#: rc.cpp:22
|
#: rc.cpp:22
|
||||||
msgid "Uptime"
|
msgid "Uptime"
|
||||||
msgstr "Время работы"
|
msgstr "Время работы"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:139
|
#. i18n: file: ui/configwindow.ui:154
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
|
||||||
#: rc.cpp:25
|
#: rc.cpp:25
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -78,13 +78,13 @@ msgstr ""
|
|||||||
"$uptime - время работы\n"
|
"$uptime - время работы\n"
|
||||||
"$custom - свой формат"
|
"$custom - свой формат"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:187
|
#. i18n: file: ui/configwindow.ui:202
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
|
||||||
#: rc.cpp:29
|
#: rc.cpp:29
|
||||||
msgid "CPU"
|
msgid "CPU"
|
||||||
msgstr "CPU"
|
msgstr "CPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:205
|
#. i18n: file: ui/configwindow.ui:220
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
|
||||||
#: rc.cpp:33
|
#: rc.cpp:33
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -103,13 +103,13 @@ msgstr ""
|
|||||||
"...\n"
|
"...\n"
|
||||||
"$cpuN - загрузка CPU для ядра N, %"
|
"$cpuN - загрузка CPU для ядра N, %"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:253
|
#. i18n: file: ui/configwindow.ui:268
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
|
||||||
#: rc.cpp:41
|
#: rc.cpp:41
|
||||||
msgid "CPU Clock"
|
msgid "CPU Clock"
|
||||||
msgstr "Частота CPU"
|
msgstr "Частота CPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:271
|
#. i18n: file: ui/configwindow.ui:286
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
|
||||||
#: rc.cpp:44
|
#: rc.cpp:44
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -127,50 +127,50 @@ msgstr ""
|
|||||||
"...\n"
|
"...\n"
|
||||||
"$cpuclN - частота CPU для ядра N, MHz"
|
"$cpuclN - частота CPU для ядра N, MHz"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:319
|
#. i18n: file: ui/configwindow.ui:334
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
|
||||||
#: rc.cpp:52
|
#: rc.cpp:52
|
||||||
msgid "Temperature"
|
msgid "Temperature"
|
||||||
msgstr "Температура"
|
msgstr "Температура"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:329
|
#. i18n: file: ui/configwindow.ui:344
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
|
||||||
#: rc.cpp:55
|
#: rc.cpp:55
|
||||||
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
msgid "$tempN - physical temperature on device N (from 0). Example: $temp0"
|
||||||
msgstr "$tempN - физическая температура на устройстве N (от 0). Пример: $temp0"
|
msgstr "$tempN - физическая температура на устройстве N (от 0). Пример: $temp0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:377
|
#. i18n: file: ui/configwindow.ui:392
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
|
||||||
#: rc.cpp:58
|
#: rc.cpp:58
|
||||||
msgid "GPU"
|
msgid "GPU"
|
||||||
msgstr "GPU"
|
msgstr "GPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:387
|
#. i18n: file: ui/configwindow.ui:402
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
|
||||||
#: rc.cpp:62
|
#: rc.cpp:62
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "$gpu - gpu usage, %"
|
msgid "$gpu - gpu usage, %"
|
||||||
msgstr "$gpu - использование GPU, %"
|
msgstr "$gpu - использование GPU, %"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:435
|
#. i18n: file: ui/configwindow.ui:450
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
|
||||||
#: rc.cpp:65
|
#: rc.cpp:65
|
||||||
msgid "GPU Temp"
|
msgid "GPU Temp"
|
||||||
msgstr "Температура GPU"
|
msgstr "Температура GPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:445
|
#. i18n: file: ui/configwindow.ui:460
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
|
||||||
#: rc.cpp:68
|
#: rc.cpp:68
|
||||||
msgid "$gputemp - physical temperature on GPU"
|
msgid "$gputemp - physical temperature on GPU"
|
||||||
msgstr "$gputemp - физическая температура на GPU"
|
msgstr "$gputemp - физическая температура на GPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:493
|
#. i18n: file: ui/configwindow.ui:508
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
|
||||||
#: rc.cpp:71
|
#: rc.cpp:71
|
||||||
msgid "Memory"
|
msgid "Memory"
|
||||||
msgstr "Память"
|
msgstr "Память"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:508
|
#. i18n: file: ui/configwindow.ui:523
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
|
||||||
#: rc.cpp:75
|
#: rc.cpp:75
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -183,13 +183,13 @@ msgstr ""
|
|||||||
"$memmb - использование RAM, MB\n"
|
"$memmb - использование RAM, MB\n"
|
||||||
"$memgb - использование RAM, GB"
|
"$memgb - использование RAM, GB"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:556
|
#. i18n: file: ui/configwindow.ui:571
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
|
||||||
#: rc.cpp:80
|
#: rc.cpp:80
|
||||||
msgid "Swap"
|
msgid "Swap"
|
||||||
msgstr "Swap"
|
msgstr "Swap"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:571
|
#. i18n: file: ui/configwindow.ui:586
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
|
||||||
#: rc.cpp:84
|
#: rc.cpp:84
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -202,28 +202,28 @@ msgstr ""
|
|||||||
"$swapmb - использование swap, MB\n"
|
"$swapmb - использование swap, MB\n"
|
||||||
"$swapgb - использование swap, GB"
|
"$swapgb - использование swap, GB"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:619
|
#. 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:2106
|
#. i18n: file: ui/configwindow.ui:2257
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
#. i18n: ectx: property (text), widget (QLabel, label_hdddev)
|
||||||
#: rc.cpp:89 rc.cpp:298
|
#: rc.cpp:89 rc.cpp:310
|
||||||
msgid "HDD"
|
msgid "HDD"
|
||||||
msgstr "HDD"
|
msgstr "HDD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:629
|
#. i18n: file: ui/configwindow.ui:644
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
|
||||||
#: rc.cpp:93
|
#: rc.cpp:93
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
msgid "$hddN - usage for mount point N (from 0), %. Example: $hdd0"
|
||||||
msgstr "$hddN - использование точки монтирования N (от 0), %. Пример: $hdd0"
|
msgstr "$hddN - использование точки монтирования N (от 0), %. Пример: $hdd0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:677
|
#. i18n: file: ui/configwindow.ui:692
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
|
||||||
#: rc.cpp:96
|
#: rc.cpp:96
|
||||||
msgid "HDD Temp"
|
msgid "HDD Temp"
|
||||||
msgstr "Температура HDD"
|
msgstr "Температура HDD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:687
|
#. i18n: file: ui/configwindow.ui:702
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
|
||||||
#: rc.cpp:99
|
#: rc.cpp:99
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -232,13 +232,13 @@ msgstr ""
|
|||||||
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0 "
|
"$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0 "
|
||||||
"$hddtempN - температура на устройстве N (от 0). Пример: $hddtemp0"
|
"$hddtempN - температура на устройстве N (от 0). Пример: $hddtemp0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:735
|
#. i18n: file: ui/configwindow.ui:750
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
|
||||||
#: rc.cpp:102
|
#: rc.cpp:102
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Сеть"
|
msgstr "Сеть"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:750
|
#. i18n: file: ui/configwindow.ui:765
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
|
||||||
#: rc.cpp:105
|
#: rc.cpp:105
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -250,13 +250,13 @@ msgstr ""
|
|||||||
"$up - скорость загрузки, KB/s\n"
|
"$up - скорость загрузки, KB/s\n"
|
||||||
"$netdev - текущее устройство"
|
"$netdev - текущее устройство"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:798
|
#. i18n: file: ui/configwindow.ui:813
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
|
||||||
#: rc.cpp:110
|
#: rc.cpp:110
|
||||||
msgid "Battery"
|
msgid "Battery"
|
||||||
msgstr "Батарея"
|
msgstr "Батарея"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:809
|
#. i18n: file: ui/configwindow.ui:824
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
|
||||||
#: rc.cpp:114
|
#: rc.cpp:114
|
||||||
#, no-c-format
|
#, no-c-format
|
||||||
@ -267,15 +267,15 @@ msgstr ""
|
|||||||
"$bat - заряд батареи, %\n"
|
"$bat - заряд батареи, %\n"
|
||||||
"$ac - статус адаптора питания"
|
"$ac - статус адаптора питания"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:857
|
#. i18n: file: ui/configwindow.ui:872
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
|
||||||
#. i18n: file: ui/configwindow.ui:1347
|
#. i18n: file: ui/configwindow.ui:1441
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
|
||||||
#: rc.cpp:118 rc.cpp:223
|
#: rc.cpp:118 rc.cpp:235
|
||||||
msgid "Music player"
|
msgid "Music player"
|
||||||
msgstr "Музыкальный плеер"
|
msgstr "Музыкальный плеер"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:871
|
#. i18n: file: ui/configwindow.ui:886
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
|
||||||
#: rc.cpp:121
|
#: rc.cpp:121
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -291,31 +291,31 @@ msgstr ""
|
|||||||
"$time - продолжительность\n"
|
"$time - продолжительность\n"
|
||||||
"$title - название"
|
"$title - название"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:919
|
#. i18n: file: ui/configwindow.ui:934
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_custom)
|
||||||
#: rc.cpp:128
|
#: rc.cpp:128
|
||||||
msgid "Custom"
|
msgid "Custom"
|
||||||
msgstr "Своя команда"
|
msgstr "Своя команда"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:929
|
#. i18n: file: ui/configwindow.ui:944
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_custom)
|
||||||
#: rc.cpp:131
|
#: rc.cpp:131
|
||||||
msgid "$custom - get output from custom command"
|
msgid "$custom - get output from custom command"
|
||||||
msgstr "$custom - получить информацию из своей команды"
|
msgstr "$custom - получить информацию из своей команды"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:983
|
#. i18n: file: ui/configwindow.ui:1002
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
#. i18n: ectx: attribute (title), widget (QWidget, advanced)
|
||||||
#: rc.cpp:134
|
#: rc.cpp:134
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Расширенные"
|
msgstr "Расширенные"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:997
|
#. i18n: file: ui/configwindow.ui:1031
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_timeFormat)
|
||||||
#: rc.cpp:137
|
#: rc.cpp:137
|
||||||
msgid "Custom time format"
|
msgid "Custom time format"
|
||||||
msgstr "Свой формат времени"
|
msgstr "Свой формат времени"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1019
|
#. i18n: file: ui/configwindow.ui:1053
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_timeFormat)
|
||||||
#: rc.cpp:140
|
#: rc.cpp:140
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -353,13 +353,13 @@ msgstr ""
|
|||||||
"$ss - секунды\n"
|
"$ss - секунды\n"
|
||||||
"$s - секунды без 0"
|
"$s - секунды без 0"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1039
|
#. i18n: file: ui/configwindow.ui:1073
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
#. i18n: ectx: property (text), widget (QLabel, label_uptimeFormat)
|
||||||
#: rc.cpp:158
|
#: rc.cpp:158
|
||||||
msgid "Custom uptime format"
|
msgid "Custom uptime format"
|
||||||
msgstr "Свой формат аптайма"
|
msgstr "Свой формат аптайма"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1051
|
#. i18n: file: ui/configwindow.ui:1085
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
|
||||||
#: rc.cpp:161
|
#: rc.cpp:161
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -377,27 +377,27 @@ msgstr ""
|
|||||||
"$mm - минуты аптайма\n"
|
"$mm - минуты аптайма\n"
|
||||||
"$m - минуты аптайма без нулей"
|
"$m - минуты аптайма без нулей"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1073
|
#. i18n: file: ui/configwindow.ui:1107
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
|
||||||
#: rc.cpp:169
|
#: rc.cpp:169
|
||||||
msgid "Temperature devices"
|
msgid "Temperature devices"
|
||||||
msgstr "Температурные устройства"
|
msgstr "Температурные устройства"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1099
|
#. i18n: file: ui/configwindow.ui:1133
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1154
|
#. i18n: file: ui/configwindow.ui:1188
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1209
|
#. i18n: file: ui/configwindow.ui:1243
|
||||||
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
|
||||||
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
#: rc.cpp:172 rc.cpp:182 rc.cpp:192
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Добавить"
|
msgstr "Добавить"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1109
|
#. i18n: file: ui/configwindow.ui:1143
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
|
||||||
#. i18n: file: ui/configwindow.ui:1164
|
#. i18n: file: ui/configwindow.ui:1198
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
|
||||||
#. i18n: file: ui/configwindow.ui:1219
|
#. i18n: file: ui/configwindow.ui:1253
|
||||||
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
|
||||||
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
#: rc.cpp:175 rc.cpp:185 rc.cpp:195
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -407,93 +407,117 @@ msgstr ""
|
|||||||
"Редактируемо\n"
|
"Редактируемо\n"
|
||||||
"del - удалить строку"
|
"del - удалить строку"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1128
|
#. i18n: file: ui/configwindow.ui:1162
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
#. i18n: ectx: property (text), widget (QLabel, label_mount)
|
||||||
#: rc.cpp:179
|
#: rc.cpp:179
|
||||||
msgid "Mount points"
|
msgid "Mount points"
|
||||||
msgstr "Точки монтирования"
|
msgstr "Точки монтирования"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1183
|
#. i18n: file: ui/configwindow.ui:1217
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
|
||||||
#: rc.cpp:189
|
#: rc.cpp:189
|
||||||
msgid "HDD devices"
|
msgid "HDD devices"
|
||||||
msgstr "HDD"
|
msgstr "HDD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1236
|
#. i18n: file: ui/configwindow.ui:1270
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
#. i18n: ectx: property (text), widget (QLabel, label_netdir)
|
||||||
#: rc.cpp:199
|
#: rc.cpp:199
|
||||||
msgid "Network directory"
|
msgid "Network directory"
|
||||||
msgstr "Путь к интерфейсам"
|
msgstr "Путь к интерфейсам"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1243
|
#. i18n: file: ui/configwindow.ui:1277
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
|
||||||
#: rc.cpp:202
|
#: rc.cpp:202
|
||||||
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:1263
|
#. i18n: file: ui/configwindow.ui:1297
|
||||||
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:205
|
#: rc.cpp:205
|
||||||
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:1266
|
#. i18n: file: ui/configwindow.ui:1300
|
||||||
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
|
||||||
#: rc.cpp:208
|
#: rc.cpp:208
|
||||||
msgid "Set network device"
|
msgid "Set network device"
|
||||||
msgstr "Выберете сетевое устройство"
|
msgstr "Выберете сетевое устройство"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1299
|
#. i18n: file: ui/configwindow.ui:1333
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_batdev)
|
||||||
#: rc.cpp:211
|
#: rc.cpp:211
|
||||||
msgid "Battery device"
|
msgid "Battery device"
|
||||||
msgstr "Устройство батареи"
|
msgstr "Устройство батареи"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1306
|
#. i18n: file: ui/configwindow.ui:1340
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
|
||||||
#: rc.cpp:214
|
#: rc.cpp:214
|
||||||
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:1323
|
#. i18n: file: ui/configwindow.ui:1357
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
#. i18n: ectx: property (text), widget (QLabel, label_acOnline)
|
||||||
#: rc.cpp:217
|
#: rc.cpp:217
|
||||||
|
msgid "AC online tag"
|
||||||
|
msgstr "AC подключен"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1364
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOnline)
|
||||||
|
#: rc.cpp:220
|
||||||
|
msgid "Line, which returns when AC is online"
|
||||||
|
msgstr "Строка, возвращаемая при подключенном адапторе питания"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1387
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acOffline)
|
||||||
|
#: rc.cpp:223
|
||||||
|
msgid "AC offline tag"
|
||||||
|
msgstr "AC отключен"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1394
|
||||||
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acOffline)
|
||||||
|
#: rc.cpp:226
|
||||||
|
msgid "Line, which returns when AC is offline"
|
||||||
|
msgstr "Строка, возвращаемая при отключенном адапторе питания"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1417
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_acdev)
|
||||||
|
#: rc.cpp:229
|
||||||
msgid "AC device"
|
msgid "AC device"
|
||||||
msgstr "Устройство AC"
|
msgstr "Устройство AC"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1330
|
#. i18n: file: ui/configwindow.ui:1424
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
|
||||||
#: rc.cpp:220
|
#: rc.cpp:232
|
||||||
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:1367
|
#. i18n: file: ui/configwindow.ui:1461
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:226
|
#: rc.cpp:238
|
||||||
msgid "amarok"
|
msgid "amarok"
|
||||||
msgstr "amarok"
|
msgstr "amarok"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1372
|
#. i18n: file: ui/configwindow.ui:1466
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:229
|
#: rc.cpp:241
|
||||||
msgid "mpd"
|
msgid "mpd"
|
||||||
msgstr "mpd"
|
msgstr "mpd"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1377
|
#. i18n: file: ui/configwindow.ui:1471
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
|
||||||
#: rc.cpp:232
|
#: rc.cpp:244
|
||||||
msgid "qmmp"
|
msgid "qmmp"
|
||||||
msgstr "qmmp"
|
msgstr "qmmp"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1401
|
#. i18n: file: ui/configwindow.ui:1499
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
#. i18n: ectx: attribute (title), widget (QWidget, tooltip)
|
||||||
#: rc.cpp:235
|
#: rc.cpp:247
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Тултип"
|
msgstr "Тултип"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1407
|
#. i18n: file: ui/configwindow.ui:1505
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltip)
|
||||||
#: rc.cpp:238
|
#: rc.cpp:250
|
||||||
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."
|
||||||
@ -501,150 +525,150 @@ msgstr ""
|
|||||||
"Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. "
|
"Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. "
|
||||||
"Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми."
|
"Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми."
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1428
|
#. i18n: file: ui/configwindow.ui:1541
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
|
||||||
#: rc.cpp:241
|
#: rc.cpp:253
|
||||||
msgid "Number of values for tooltips"
|
msgid "Number of values for tooltips"
|
||||||
msgstr "Число хранящихся значений"
|
msgstr "Число хранящихся значений"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1483
|
#. i18n: file: ui/configwindow.ui:1596
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
|
||||||
#: rc.cpp:244
|
|
||||||
msgid "CPU color"
|
|
||||||
msgstr "Цвет CPU"
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1523
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
|
||||||
#: rc.cpp:247
|
#: rc.cpp:256
|
||||||
msgid "CPU clock color"
|
msgid "CPU clock color"
|
||||||
msgstr "Цвет частоты CPU"
|
msgstr "Цвет частоты CPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1563
|
#. i18n: file: ui/configwindow.ui:1636
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
|
||||||
#: rc.cpp:250
|
|
||||||
msgid "Memory color"
|
|
||||||
msgstr "Цвет памяти"
|
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1603
|
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_swapColor)
|
||||||
#: rc.cpp:253
|
#: rc.cpp:259
|
||||||
msgid "Swap color"
|
msgid "Swap color"
|
||||||
msgstr "Цвет swap"
|
msgstr "Цвет swap"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1643
|
#. i18n: file: ui/configwindow.ui:1676
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
|
||||||
|
#: rc.cpp:262
|
||||||
|
msgid "CPU color"
|
||||||
|
msgstr "Цвет CPU"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1716
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_downColor)
|
||||||
#: rc.cpp:256
|
#: rc.cpp:265
|
||||||
msgid "Download speed color"
|
msgid "Download speed color"
|
||||||
msgstr "Цвет скорости загрузки"
|
msgstr "Цвет скорости загрузки"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1683
|
#. i18n: file: ui/configwindow.ui:1756
|
||||||
|
#. i18n: ectx: property (text), widget (QLabel, label_memColor)
|
||||||
|
#: rc.cpp:268
|
||||||
|
msgid "Memory color"
|
||||||
|
msgstr "Цвет памяти"
|
||||||
|
|
||||||
|
#. i18n: file: ui/configwindow.ui:1796
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
#. i18n: ectx: property (text), widget (QLabel, label_upColor)
|
||||||
#: rc.cpp:259
|
#: rc.cpp:271
|
||||||
msgid "Upload speed color"
|
msgid "Upload speed color"
|
||||||
msgstr "Цвет скорости отдачи"
|
msgstr "Цвет скорости отдачи"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1729
|
#. i18n: file: ui/configwindow.ui:1846
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
#. i18n: ectx: attribute (title), widget (QWidget, appearance)
|
||||||
#: rc.cpp:262
|
#: rc.cpp:274
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Внешний вид"
|
msgstr "Внешний вид"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1743
|
#. i18n: file: ui/configwindow.ui:1875
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
#. i18n: ectx: property (text), widget (QLabel, label_interval)
|
||||||
#: rc.cpp:265
|
#: rc.cpp:277
|
||||||
msgid "Time interval"
|
msgid "Time interval"
|
||||||
msgstr "Интервал обновления"
|
msgstr "Интервал обновления"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1798
|
#. i18n: file: ui/configwindow.ui:1930
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
#. i18n: ectx: property (text), widget (QLabel, label_font)
|
||||||
#: rc.cpp:268
|
#: rc.cpp:280
|
||||||
msgid "Font"
|
msgid "Font"
|
||||||
msgstr "Шрифт"
|
msgstr "Шрифт"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1838
|
#. i18n: file: ui/configwindow.ui:1970
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
#. i18n: ectx: property (text), widget (QLabel, label_fontSize)
|
||||||
#: rc.cpp:271
|
#: rc.cpp:283
|
||||||
msgid "Font size"
|
msgid "Font size"
|
||||||
msgstr "Размер шрифта"
|
msgstr "Размер шрифта"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1893
|
#. i18n: file: ui/configwindow.ui:2025
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
#. i18n: ectx: property (text), widget (QLabel, label_color)
|
||||||
#: rc.cpp:274
|
#: rc.cpp:286
|
||||||
msgid "Font color"
|
msgid "Font color"
|
||||||
msgstr "Цвет шрифта"
|
msgstr "Цвет шрифта"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1933
|
#. i18n: file: ui/configwindow.ui:2065
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
#. i18n: ectx: property (text), widget (QLabel, label_style)
|
||||||
#: rc.cpp:277
|
#: rc.cpp:289
|
||||||
msgid "Font style"
|
msgid "Font style"
|
||||||
msgstr "Стиль шрифта"
|
msgstr "Стиль шрифта"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:1983
|
#. i18n: file: ui/configwindow.ui:2115
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
#. i18n: ectx: property (text), widget (QLabel, label_weight)
|
||||||
#: rc.cpp:280
|
#: rc.cpp:292
|
||||||
msgid "Font weight"
|
msgid "Font weight"
|
||||||
msgstr "Ширина шрифта"
|
msgstr "Ширина шрифта"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2044
|
#. i18n: file: ui/configwindow.ui:2180
|
||||||
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
#. i18n: ectx: attribute (title), widget (QWidget, dataengine)
|
||||||
#: rc.cpp:283
|
#: rc.cpp:295
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2058
|
#. i18n: file: ui/configwindow.ui:2209
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
#. i18n: ectx: property (text), widget (QLabel, label_gpudev)
|
||||||
#: rc.cpp:286
|
#: rc.cpp:298
|
||||||
msgid "GPU device"
|
msgid "GPU device"
|
||||||
msgstr "Устройство GPU"
|
msgstr "Устройство GPU"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2078
|
#. i18n: file: ui/configwindow.ui:2229
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:289
|
#: rc.cpp:301
|
||||||
msgid "auto"
|
msgid "auto"
|
||||||
msgstr "auto"
|
msgstr "auto"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2083
|
#. i18n: file: ui/configwindow.ui:2234
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:292
|
#: rc.cpp:304
|
||||||
msgid "nvidia"
|
msgid "nvidia"
|
||||||
msgstr "nvidia"
|
msgstr "nvidia"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2088
|
#. i18n: file: ui/configwindow.ui:2239
|
||||||
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
|
||||||
#: rc.cpp:295
|
#: rc.cpp:307
|
||||||
msgid "ati"
|
msgid "ati"
|
||||||
msgstr "ati"
|
msgstr "ati"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2139
|
#. i18n: file: ui/configwindow.ui:2290
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
|
||||||
#: rc.cpp:301
|
#: rc.cpp:313
|
||||||
msgid "MPD address"
|
msgid "MPD address"
|
||||||
msgstr "Адрес сервера MPD"
|
msgstr "Адрес сервера MPD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2163
|
#. i18n: file: ui/configwindow.ui:2314
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
#. i18n: ectx: property (text), widget (QLabel, label_mpdport)
|
||||||
#: rc.cpp:304
|
#: rc.cpp:316
|
||||||
msgid "MPD port"
|
msgid "MPD port"
|
||||||
msgstr "Порт сервера MPD"
|
msgstr "Порт сервера MPD"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2218
|
#. i18n: file: ui/configwindow.ui:2369
|
||||||
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
#. i18n: ectx: property (text), widget (QLabel, label_customCommand)
|
||||||
#: rc.cpp:307
|
#: rc.cpp:319
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Своя команда"
|
msgstr "Своя команда"
|
||||||
|
|
||||||
#. i18n: file: ui/configwindow.ui:2225
|
#. i18n: file: ui/configwindow.ui:2376
|
||||||
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
|
||||||
#: rc.cpp:310
|
#: rc.cpp:322
|
||||||
msgid "Custom command to run"
|
msgid "Custom command to run"
|
||||||
msgstr "Своя команда для запуска"
|
msgstr "Своя команда для запуска"
|
||||||
|
|
||||||
#: rc.cpp:311
|
#: rc.cpp:323
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: rc.cpp:312
|
#: rc.cpp:324
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
|
Loading…
Reference in New Issue
Block a user