edited tooltip in configuration window

This commit is contained in:
arcan1s 2014-04-03 13:17:08 +04:00
parent 4547815549
commit 975b575db5
8 changed files with 363 additions and 321 deletions

View File

@ -1,3 +1,6 @@
Ver.1.7.3:
- fix tooltip for custom uptime format
Ver.1.7.2: Ver.1.7.2:
+ added tags $dd, $d, $hh, $h, $mm, $m to custom uptime format + added tags $dd, $d, $hh, $h, $mm, $m to custom uptime format
+ added scalling to tooltips + added scalling to tooltips

View File

@ -1,3 +1,6 @@
Вер.1.7.3:
- фикс подсказки для кастомного формата аптайма
Вер.1.7.2: Вер.1.7.2:
+ добавлены тэги $dd, $d, $hh, $h, $mm, $m в кастомный формат аптайма + добавлены тэги $dd, $d, $hh, $h, $mm, $m в кастомный формат аптайма
+ добавлено масштабирование в тултипы + добавлено масштабирование в тултипы

View File

@ -10,34 +10,34 @@ PyTextMonitor is a minimalistic Plasmoid script written on Python2. It looks lik
Configuration Configuration
------------- -------------
For edited output you must open Settings window and setup output format in lines: For edited output you must open Settings window and setup output format in lines:
* tag `$time` - time in default format. For example, `fri Nov 6 04:48:01 2013` * tag `$time` - time in default format. For example, *fri Nov 6 04:48:01 2013*
* tag `$isotime` - time in iso format * tag `$isotime` - time in iso format
* tag `$shorttime` - time in short locale format * tag `$shorttime` - time in short locale format
* tag `$longtime` - time in long locale format * tag `$longtime` - time in long locale format
* tag `$custom` - custom time format * tag `$custom` - custom time format
* tag `$uptime` - uptime, <i>---d--h--m</i> * tag `$uptime` - uptime, *---d--h--m*
* tag `$custom` - custom uptime format * tag `$custom` - custom uptime format
* tag `$cpu` - total load cpu, <i>%</i> * tag `$cpu` - total load cpu, *%*
* tag `$cpuN` - load CPU for core N, <i>%</i>. N should be in range 0 to 8 * tag `$cpuN` - load CPU for core N, *%*. N should be in range 0 to 8
* tag `$cpucl` - average cpu clock, <i>MHz</i> * tag `$cpucl` - average cpu clock, *MHz*
* tag `$cpuclN` - cpu clock for core N, <i>MHz</i>. N should be in range 0 to 8 * tag `$cpuclN` - cpu clock for core N, *MHz*. N should be in range 0 to 8
* tag `$tempN` - temperature for device N. For example, `$temp0` * tag `$tempN` - temperature for device N. For example, `$temp0`
* tag `$gpu` - GPU usage, <i>%</i>. `aticonfig` or `nvidia-smi` must be installed * tag `$gpu` - GPU usage, *%*. `aticonfig` or `nvidia-smi` must be installed
* tag `$gputemp` - GPU temperature. `aticonfig` or `nvidia-smi` must be installed * tag `$gputemp` - GPU temperature. `aticonfig` or `nvidia-smi` must be installed
* tag `$mem` - usage memory, <i>%</i> * tag `$mem` - usage memory, *%*
* tag `$memmb` - usage memory, <i>MB</i> * tag `$memmb` - usage memory, *MB*
* tag `$swap` - swap, <i>%</i> * tag `$swap` - swap, *%*
* tag `$swapmb` - swap, <i>MB</i> * tag `$swapmb` - swap, *MB*
* tag `$hddN` - usage for mount point N, <i>%</i>. For example, `$hdd0` * tag `$hddN` - usage for mount point N, *%*. For example, `$hdd0`
* tag `$hddtempN` - temperature for HDD N. For example, `$hddtemp0` * tag `$hddtempN` - temperature for HDD N. For example, `$hddtemp0`
* tag `$down` - download speed, <i>KB/s</i> * tag `$down` - download speed, *KB/s*
* tag `$up` - upload speed, <i>KB/s</i> * tag `$up` - upload speed, *KB/s*
* tag `$netdev` - current network device * tag `$netdev` - current network device
* tag `$bat` - battery charge, <i>%</i> * tag `$bat` - battery charge, *%*
* tag `$ac` - status AC device. Return <i>(*)</i> if AC device is online or <i>( )</i> if offline * tag `$ac` - status AC device. Return *(\*)* if AC device is online or *( )* if offline
* tag `$album` - current song album. One of supported music players must be installed * tag `$album` - current song album. One of supported music players must be installed
* tag `$artist` - current song artist. One of supported music players must be installed * tag `$artist` - current song artist. One of supported music players must be installed
* tag `$progress` - current song progress. One of supported music players must be installed (mpd does not support yet) * tag `$progress` - current song progress. One of supported music players must be installed
* tag `$time` - current song duration. One of supported music players must be installed * tag `$time` - current song duration. One of supported music players must be installed
* tag `$title` - current song title. One of supported music players must be installed * tag `$title` - current song title. One of supported music players must be installed
* tag `$custom` - returns output for custom command * tag `$custom` - returns output for custom command
@ -70,7 +70,7 @@ Advanced settings
**Custom uptime** **Custom uptime**
* tag `$dd` - uptime days * tag `$dd` - uptime days
* tag `$dd` - uptime days without zero * tag `$d` - uptime days without zero
* tag `$hh` - uptime hours * tag `$hh` - uptime hours
* tag `$h` - uptime hours without zero * tag `$h` - uptime hours without zero
* tag `$mm` - uptime minutes * tag `$mm` - uptime minutes

View File

@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW)
project (pytextmonitor) project (pytextmonitor)
set (PROJECT_VERSION_MAJOR 1) set (PROJECT_VERSION_MAJOR 1)
set (PROJECT_VERSION_MINOR 7) set (PROJECT_VERSION_MINOR 7)
set (PROJECT_VERSION_PATCH 2) set (PROJECT_VERSION_PATCH 3)
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}) set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
message (STATUS "Version: ${PROJECT_VERSION}") message (STATUS "Version: ${PROJECT_VERSION}")

View File

@ -1037,9 +1037,12 @@ $s - seconds w\o zero</string>
<item> <item>
<widget class="QLineEdit" name="lineEdit_uptimeFormat"> <widget class="QLineEdit" name="lineEdit_uptimeFormat">
<property name="toolTip"> <property name="toolTip">
<string>$ds - uptime days <string>$dd - uptime days
$hs - uptime hours $d - uptime days without zero
$ms - uptime minutes</string> $hh - uptime hours
$h - uptime hours without zero
$mm - uptime minutes
$m - uptime minutes without zero</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n" "Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n"
"POT-Creation-Date: 2014-04-03 02:22+0400\n" "POT-Creation-Date: 2014-04-03 13:15+0400\n"
"PO-Revision-Date: 2014-04-03 02:23+0400\n" "PO-Revision-Date: 2014-04-03 13:15+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"
@ -192,9 +192,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:613 #. i18n: file: ui/configwindow.ui:613
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2097 #. i18n: file: ui/configwindow.ui:2100
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:289 #: rc.cpp:83 rc.cpp:292
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
@ -256,9 +256,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:851 #. i18n: file: ui/configwindow.ui:851
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1338 #. i18n: file: ui/configwindow.ui:1341
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:214 #: rc.cpp:112 rc.cpp:217
msgid "Music player" msgid "Music player"
msgstr "Music player" msgstr "Music player"
@ -346,41 +346,47 @@ msgstr ""
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "Custom uptime format" msgstr "Custom uptime format"
#. i18n: file: ui/configwindow.ui:1042 #. i18n: file: ui/configwindow.ui:1045
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:155
msgid "" msgid ""
"$ds - uptime days\n" "$dd - uptime days\n"
"$hs - uptime hours\n" "$d - uptime days without zero\n"
"$ms - uptime minutes" "$hh - uptime hours\n"
"$h - uptime hours without zero\n"
"$mm - uptime minutes\n"
"$m - uptime minutes without zero"
msgstr "" msgstr ""
"$ds - uptime days\n" "$dd - uptime days\n"
"$hs - uptime hours\n" "$d - uptime days without zero\n"
"$ms - uptime minutes" "$hh - uptime hours\n"
"$h - uptime hours without zero\n"
"$mm - uptime minutes\n"
"$m - uptime minutes without zero"
#. i18n: file: ui/configwindow.ui:1064 #. i18n: file: ui/configwindow.ui:1067
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:160 #: rc.cpp:163
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Temperature devices" msgstr "Temperature devices"
#. i18n: file: ui/configwindow.ui:1090 #. i18n: file: ui/configwindow.ui:1093
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1145 #. i18n: file: ui/configwindow.ui:1148
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1200 #. i18n: file: ui/configwindow.ui:1203
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:163 rc.cpp:173 rc.cpp:183 #: rc.cpp:166 rc.cpp:176 rc.cpp:186
msgid "Add" msgid "Add"
msgstr "Add" msgstr "Add"
#. i18n: file: ui/configwindow.ui:1100 #. i18n: file: ui/configwindow.ui:1103
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1155 #. i18n: file: ui/configwindow.ui:1158
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1210 #. i18n: file: ui/configwindow.ui:1213
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:169 rc.cpp:179 rc.cpp:189
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -388,93 +394,93 @@ msgstr ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
#. i18n: file: ui/configwindow.ui:1119 #. i18n: file: ui/configwindow.ui:1122
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:170 #: rc.cpp:173
msgid "Mount points" msgid "Mount points"
msgstr "Mount points" msgstr "Mount points"
#. i18n: file: ui/configwindow.ui:1174 #. i18n: file: ui/configwindow.ui:1177
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:180 #: rc.cpp:183
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD devices" msgstr "HDD devices"
#. i18n: file: ui/configwindow.ui:1227 #. i18n: file: ui/configwindow.ui:1230
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:190 #: rc.cpp:193
msgid "Network directory" msgid "Network directory"
msgstr "Network directory" msgstr "Network directory"
#. i18n: file: ui/configwindow.ui:1234 #. i18n: file: ui/configwindow.ui:1237
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:193 #: rc.cpp:196
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:1254 #. i18n: file: ui/configwindow.ui:1257
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:196 #: rc.cpp:199
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:1257 #. i18n: file: ui/configwindow.ui:1260
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:202
msgid "Set network device" msgid "Set network device"
msgstr "Set network device" msgstr "Set network device"
#. i18n: file: ui/configwindow.ui:1290 #. i18n: file: ui/configwindow.ui:1293
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:202 #: rc.cpp:205
msgid "Battery device" msgid "Battery device"
msgstr "Battery device" msgstr "Battery device"
#. i18n: file: ui/configwindow.ui:1297 #. i18n: file: ui/configwindow.ui:1300
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:205 #: rc.cpp:208
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:1314 #. i18n: file: ui/configwindow.ui:1317
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:208 #: rc.cpp:211
msgid "AC device" msgid "AC device"
msgstr "AC device" msgstr "AC device"
#. i18n: file: ui/configwindow.ui:1321 #. i18n: file: ui/configwindow.ui:1324
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:211 #: rc.cpp:214
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:1358 #. i18n: file: ui/configwindow.ui:1361
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:217 #: rc.cpp:220
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1363 #. i18n: file: ui/configwindow.ui:1366
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:220 #: rc.cpp:223
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1368 #. i18n: file: ui/configwindow.ui:1371
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223 #: rc.cpp:226
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1392 #. i18n: file: ui/configwindow.ui:1395
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:226 #: rc.cpp:229
msgid "Tooltip" msgid "Tooltip"
msgstr "Tooltip" msgstr "Tooltip"
#. i18n: file: ui/configwindow.ui:1398 #. i18n: file: ui/configwindow.ui:1401
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:229 #: rc.cpp:232
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."
@ -482,154 +488,163 @@ 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:1419 #. i18n: file: ui/configwindow.ui:1422
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:232 #: rc.cpp:235
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:1474 #. i18n: file: ui/configwindow.ui:1477
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:235 #: rc.cpp:238
msgid "CPU color" msgid "CPU color"
msgstr "CPU color" msgstr "CPU color"
#. i18n: file: ui/configwindow.ui:1514 #. i18n: file: ui/configwindow.ui:1517
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:238 #: rc.cpp:241
msgid "CPU clock color" msgid "CPU clock color"
msgstr "CPU clock color" msgstr "CPU clock color"
#. i18n: file: ui/configwindow.ui:1554 #. i18n: file: ui/configwindow.ui:1557
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:241 #: rc.cpp:244
msgid "Memory color" msgid "Memory color"
msgstr "Memory color" msgstr "Memory color"
#. i18n: file: ui/configwindow.ui:1594 #. i18n: file: ui/configwindow.ui:1597
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:244 #: rc.cpp:247
msgid "Swap color" msgid "Swap color"
msgstr "Swap color" msgstr "Swap color"
#. i18n: file: ui/configwindow.ui:1634 #. i18n: file: ui/configwindow.ui:1637
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:247 #: rc.cpp:250
msgid "Download speed color" msgid "Download speed color"
msgstr "Download speed color" msgstr "Download speed color"
#. i18n: file: ui/configwindow.ui:1674 #. i18n: file: ui/configwindow.ui:1677
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:250 #: rc.cpp:253
msgid "Upload speed color" msgid "Upload speed color"
msgstr "Upload speed color" msgstr "Upload speed color"
#. i18n: file: ui/configwindow.ui:1720 #. i18n: file: ui/configwindow.ui:1723
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:253 #: rc.cpp:256
msgid "Appearance" msgid "Appearance"
msgstr "Appearance" msgstr "Appearance"
#. i18n: file: ui/configwindow.ui:1734 #. i18n: file: ui/configwindow.ui:1737
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:256 #: rc.cpp:259
msgid "Time interval" msgid "Time interval"
msgstr "Time interval" msgstr "Time interval"
#. i18n: file: ui/configwindow.ui:1789 #. i18n: file: ui/configwindow.ui:1792
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:259 #: rc.cpp:262
msgid "Font" msgid "Font"
msgstr "Font" msgstr "Font"
#. i18n: file: ui/configwindow.ui:1829 #. i18n: file: ui/configwindow.ui:1832
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:262 #: rc.cpp:265
msgid "Font size" msgid "Font size"
msgstr "Font size" msgstr "Font size"
#. i18n: file: ui/configwindow.ui:1884 #. i18n: file: ui/configwindow.ui:1887
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:265 #: rc.cpp:268
msgid "Font color" msgid "Font color"
msgstr "Font color" msgstr "Font color"
#. i18n: file: ui/configwindow.ui:1924 #. i18n: file: ui/configwindow.ui:1927
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:268 #: rc.cpp:271
msgid "Font style" msgid "Font style"
msgstr "Font style" msgstr "Font style"
#. i18n: file: ui/configwindow.ui:1974 #. i18n: file: ui/configwindow.ui:1977
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:271 #: rc.cpp:274
msgid "Font weight" msgid "Font weight"
msgstr "Font weight" msgstr "Font weight"
#. i18n: file: ui/configwindow.ui:2035 #. i18n: file: ui/configwindow.ui:2038
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:274 #: rc.cpp:277
msgid "DataEngine" msgid "DataEngine"
msgstr "DataEngine" msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2049 #. i18n: file: ui/configwindow.ui:2052
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:277 #: rc.cpp:280
msgid "GPU device" msgid "GPU device"
msgstr "GPU device" msgstr "GPU device"
#. i18n: file: ui/configwindow.ui:2069 #. i18n: file: ui/configwindow.ui:2072
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:280 #: rc.cpp:283
msgid "auto" msgid "auto"
msgstr "auto" msgstr "auto"
#. i18n: file: ui/configwindow.ui:2074 #. i18n: file: ui/configwindow.ui:2077
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283 #: rc.cpp:286
msgid "nvidia" msgid "nvidia"
msgstr "nvidia" msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2079 #. i18n: file: ui/configwindow.ui:2082
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286 #: rc.cpp:289
msgid "ati" msgid "ati"
msgstr "ati" msgstr "ati"
#. i18n: file: ui/configwindow.ui:2130 #. i18n: file: ui/configwindow.ui:2133
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:292 #: rc.cpp:295
msgid "MPD address" msgid "MPD address"
msgstr "MPD address" msgstr "MPD address"
#. i18n: file: ui/configwindow.ui:2154 #. i18n: file: ui/configwindow.ui:2157
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:295 #: rc.cpp:298
msgid "MPD port" msgid "MPD port"
msgstr "MPD port" msgstr "MPD port"
#. i18n: file: ui/configwindow.ui:2209 #. i18n: file: ui/configwindow.ui:2212
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:298 #: rc.cpp:301
msgid "Custom command" msgid "Custom command"
msgstr "Custom command" msgstr "Custom command"
#. i18n: file: ui/configwindow.ui:2216 #. i18n: file: ui/configwindow.ui:2219
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:301 #: rc.cpp:304
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Custom command to run" msgstr "Custom command to run"
#: rc.cpp:302 #: rc.cpp:305
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:303 #: rc.cpp:306
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"
#~ msgid ""
#~ "$ds - uptime days\n"
#~ "$hs - uptime hours\n"
#~ "$ms - uptime minutes"
#~ msgstr ""
#~ "$ds - uptime days\n"
#~ "$hs - uptime hours\n"
#~ "$ms - uptime minutes"
#~ msgid "" #~ msgid ""
#~ "Command to run, example:\n" #~ "Command to run, example:\n"
#~ "wget -qO- http://ifconfig.me/ip - get external IP" #~ "wget -qO- http://ifconfig.me/ip - get external IP"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n" "Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n"
"POT-Creation-Date: 2014-04-03 02:22+0400\n" "POT-Creation-Date: 2014-04-03 13:15+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"
@ -170,9 +170,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:613 #. i18n: file: ui/configwindow.ui:613
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2097 #. i18n: file: ui/configwindow.ui:2100
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:289 #: rc.cpp:83 rc.cpp:292
msgid "HDD" msgid "HDD"
msgstr "" msgstr ""
@ -228,9 +228,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:851 #. i18n: file: ui/configwindow.ui:851
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1338 #. i18n: file: ui/configwindow.ui:1341
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:214 #: rc.cpp:112 rc.cpp:217
msgid "Music player" msgid "Music player"
msgstr "" msgstr ""
@ -297,279 +297,282 @@ msgstr ""
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1042 #. i18n: file: ui/configwindow.ui:1045
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:155
msgid "" msgid ""
"$ds - uptime days\n" "$dd - uptime days\n"
"$hs - uptime hours\n" "$d - uptime days without zero\n"
"$ms - uptime minutes" "$hh - uptime hours\n"
"$h - uptime hours without zero\n"
"$mm - uptime minutes\n"
"$m - uptime minutes without zero"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1064 #. i18n: file: ui/configwindow.ui:1067
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:160 #: rc.cpp:163
msgid "Temperature devices" msgid "Temperature devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1090 #. i18n: file: ui/configwindow.ui:1093
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1145 #. i18n: file: ui/configwindow.ui:1148
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1200 #. i18n: file: ui/configwindow.ui:1203
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:163 rc.cpp:173 rc.cpp:183 #: rc.cpp:166 rc.cpp:176 rc.cpp:186
msgid "Add" msgid "Add"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1100 #. i18n: file: ui/configwindow.ui:1103
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1155 #. i18n: file: ui/configwindow.ui:1158
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1210 #. i18n: file: ui/configwindow.ui:1213
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:169 rc.cpp:179 rc.cpp:189
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1119 #. i18n: file: ui/configwindow.ui:1122
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:170 #: rc.cpp:173
msgid "Mount points" msgid "Mount points"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1174 #. i18n: file: ui/configwindow.ui:1177
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:180 #: rc.cpp:183
msgid "HDD devices" msgid "HDD devices"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1227 #. i18n: file: ui/configwindow.ui:1230
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:190 #: rc.cpp:193
msgid "Network directory" msgid "Network directory"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1234 #. i18n: file: ui/configwindow.ui:1237
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:193 #: rc.cpp:196
msgid "\"/sys/class/net\" by default" msgid "\"/sys/class/net\" by default"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1254 #. i18n: file: ui/configwindow.ui:1257
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:196 #: rc.cpp:199
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:1257 #. i18n: file: ui/configwindow.ui:1260
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:202
msgid "Set network device" msgid "Set network device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1290 #. i18n: file: ui/configwindow.ui:1293
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:202 #: rc.cpp:205
msgid "Battery device" msgid "Battery device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1297 #. i18n: file: ui/configwindow.ui:1300
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:205 #: rc.cpp:208
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:1314 #. i18n: file: ui/configwindow.ui:1317
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:208 #: rc.cpp:211
msgid "AC device" msgid "AC device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1321 #. i18n: file: ui/configwindow.ui:1324
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:211 #: rc.cpp:214
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:1358 #. i18n: file: ui/configwindow.ui:1361
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:217 #: rc.cpp:220
msgid "amarok" msgid "amarok"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1363 #. i18n: file: ui/configwindow.ui:1366
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:220 #: rc.cpp:223
msgid "mpd" msgid "mpd"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1368 #. i18n: file: ui/configwindow.ui:1371
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223 #: rc.cpp:226
msgid "qmmp" msgid "qmmp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1392 #. i18n: file: ui/configwindow.ui:1395
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:226 #: rc.cpp:229
msgid "Tooltip" msgid "Tooltip"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1398 #. i18n: file: ui/configwindow.ui:1401
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:229 #: rc.cpp:232
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:1419 #. i18n: file: ui/configwindow.ui:1422
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:232 #: rc.cpp:235
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1474 #. i18n: file: ui/configwindow.ui:1477
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:235 #: rc.cpp:238
msgid "CPU color" msgid "CPU color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1514 #. i18n: file: ui/configwindow.ui:1517
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:238 #: rc.cpp:241
msgid "CPU clock color" msgid "CPU clock color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1554 #. i18n: file: ui/configwindow.ui:1557
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:241 #: rc.cpp:244
msgid "Memory color" msgid "Memory color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1594 #. i18n: file: ui/configwindow.ui:1597
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:244 #: rc.cpp:247
msgid "Swap color" msgid "Swap color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1634 #. i18n: file: ui/configwindow.ui:1637
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:247 #: rc.cpp:250
msgid "Download speed color" msgid "Download speed color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1674 #. i18n: file: ui/configwindow.ui:1677
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:250 #: rc.cpp:253
msgid "Upload speed color" msgid "Upload speed color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1720 #. i18n: file: ui/configwindow.ui:1723
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:253 #: rc.cpp:256
msgid "Appearance" msgid "Appearance"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1734 #. i18n: file: ui/configwindow.ui:1737
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:256 #: rc.cpp:259
msgid "Time interval" msgid "Time interval"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1789 #. i18n: file: ui/configwindow.ui:1792
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:259 #: rc.cpp:262
msgid "Font" msgid "Font"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1829 #. i18n: file: ui/configwindow.ui:1832
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:262 #: rc.cpp:265
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1884 #. i18n: file: ui/configwindow.ui:1887
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:265 #: rc.cpp:268
msgid "Font color" msgid "Font color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1924 #. i18n: file: ui/configwindow.ui:1927
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:268 #: rc.cpp:271
msgid "Font style" msgid "Font style"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1974 #. i18n: file: ui/configwindow.ui:1977
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:271 #: rc.cpp:274
msgid "Font weight" msgid "Font weight"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2035 #. i18n: file: ui/configwindow.ui:2038
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:274 #: rc.cpp:277
msgid "DataEngine" msgid "DataEngine"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2049 #. i18n: file: ui/configwindow.ui:2052
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:277 #: rc.cpp:280
msgid "GPU device" msgid "GPU device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2069 #. i18n: file: ui/configwindow.ui:2072
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:280 #: rc.cpp:283
msgid "auto" msgid "auto"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2074 #. i18n: file: ui/configwindow.ui:2077
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283 #: rc.cpp:286
msgid "nvidia" msgid "nvidia"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2079 #. i18n: file: ui/configwindow.ui:2082
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286 #: rc.cpp:289
msgid "ati" msgid "ati"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2130 #. i18n: file: ui/configwindow.ui:2133
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:292 #: rc.cpp:295
msgid "MPD address" msgid "MPD address"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2154 #. i18n: file: ui/configwindow.ui:2157
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:295 #: rc.cpp:298
msgid "MPD port" msgid "MPD port"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2209 #. i18n: file: ui/configwindow.ui:2212
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:298 #: rc.cpp:301
msgid "Custom command" msgid "Custom command"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:2216 #. i18n: file: ui/configwindow.ui:2219
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:301 #: rc.cpp:304
msgid "Custom command to run" msgid "Custom command to run"
msgstr "" msgstr ""
#: rc.cpp:302 #: rc.cpp:305
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "" msgstr ""
#: rc.cpp:303 #: rc.cpp:306
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "" msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n" "Report-Msgid-Bugs-To: http://kde-look.org/content/show.php?content=157124\n"
"POT-Creation-Date: 2014-04-03 02:22+0400\n" "POT-Creation-Date: 2014-04-03 13:15+0400\n"
"PO-Revision-Date: 2014-04-03 02:24+0400\n" "PO-Revision-Date: 2014-04-03 13:16+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"
@ -192,9 +192,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:613 #. i18n: file: ui/configwindow.ui:613
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#. i18n: file: ui/configwindow.ui:2097 #. i18n: file: ui/configwindow.ui:2100
#. i18n: ectx: property (text), widget (QLabel, label_hdddev) #. i18n: ectx: property (text), widget (QLabel, label_hdddev)
#: rc.cpp:83 rc.cpp:289 #: rc.cpp:83 rc.cpp:292
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
@ -257,9 +257,9 @@ msgstr ""
#. i18n: file: ui/configwindow.ui:851 #. i18n: file: ui/configwindow.ui:851
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#. i18n: file: ui/configwindow.ui:1338 #. i18n: file: ui/configwindow.ui:1341
#. i18n: ectx: property (text), widget (QLabel, label_playerSelect) #. i18n: ectx: property (text), widget (QLabel, label_playerSelect)
#: rc.cpp:112 rc.cpp:214 #: rc.cpp:112 rc.cpp:217
msgid "Music player" msgid "Music player"
msgstr "Музыкальный плеер" msgstr "Музыкальный плеер"
@ -347,41 +347,47 @@ msgstr ""
msgid "Custom uptime format" msgid "Custom uptime format"
msgstr "Свой формат аптайма" msgstr "Свой формат аптайма"
#. i18n: file: ui/configwindow.ui:1042 #. i18n: file: ui/configwindow.ui:1045
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptimeFormat)
#: rc.cpp:155 #: rc.cpp:155
msgid "" msgid ""
"$ds - uptime days\n" "$dd - uptime days\n"
"$hs - uptime hours\n" "$d - uptime days without zero\n"
"$ms - uptime minutes" "$hh - uptime hours\n"
"$h - uptime hours without zero\n"
"$mm - uptime minutes\n"
"$m - uptime minutes without zero"
msgstr "" msgstr ""
"$ds - дни работы\n" "$dd - дни аптайма\n"
"$hs - часы\n" "$d - дни аптайма без нулей\n"
"$ms - минуты" "$hh - часы аптайма\n"
"$h - часы аптайма без нулей\n"
"$mm - минуты аптайма\n"
"$m - минуты аптайма без нулей"
#. i18n: file: ui/configwindow.ui:1064 #. i18n: file: ui/configwindow.ui:1067
#. i18n: ectx: property (text), widget (QLabel, label_tempDevice) #. i18n: ectx: property (text), widget (QLabel, label_tempDevice)
#: rc.cpp:160 #: rc.cpp:163
msgid "Temperature devices" msgid "Temperature devices"
msgstr "Температурные устройства" msgstr "Температурные устройства"
#. i18n: file: ui/configwindow.ui:1090 #. i18n: file: ui/configwindow.ui:1093
#. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_tempDevice)
#. i18n: file: ui/configwindow.ui:1145 #. i18n: file: ui/configwindow.ui:1148
#. i18n: ectx: property (text), widget (QPushButton, pushButton_mount) #. i18n: ectx: property (text), widget (QPushButton, pushButton_mount)
#. i18n: file: ui/configwindow.ui:1200 #. i18n: file: ui/configwindow.ui:1203
#. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice) #. i18n: ectx: property (text), widget (QPushButton, pushButton_hddDevice)
#: rc.cpp:163 rc.cpp:173 rc.cpp:183 #: rc.cpp:166 rc.cpp:176 rc.cpp:186
msgid "Add" msgid "Add"
msgstr "Добавить" msgstr "Добавить"
#. i18n: file: ui/configwindow.ui:1100 #. i18n: file: ui/configwindow.ui:1103
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_tempDevice)
#. i18n: file: ui/configwindow.ui:1155 #. i18n: file: ui/configwindow.ui:1158
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_mount)
#. i18n: file: ui/configwindow.ui:1210 #. i18n: file: ui/configwindow.ui:1213
#. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice) #. i18n: ectx: property (toolTip), widget (QListWidget, listWidget_hddDevice)
#: rc.cpp:166 rc.cpp:176 rc.cpp:186 #: rc.cpp:169 rc.cpp:179 rc.cpp:189
msgid "" msgid ""
"Editable\n" "Editable\n"
"del - remove item" "del - remove item"
@ -389,93 +395,93 @@ msgstr ""
"Редактируемо\n" "Редактируемо\n"
"del - удалить строку" "del - удалить строку"
#. i18n: file: ui/configwindow.ui:1119 #. i18n: file: ui/configwindow.ui:1122
#. i18n: ectx: property (text), widget (QLabel, label_mount) #. i18n: ectx: property (text), widget (QLabel, label_mount)
#: rc.cpp:170 #: rc.cpp:173
msgid "Mount points" msgid "Mount points"
msgstr "Точки монтирования" msgstr "Точки монтирования"
#. i18n: file: ui/configwindow.ui:1174 #. i18n: file: ui/configwindow.ui:1177
#. i18n: ectx: property (text), widget (QLabel, label_hddDevice) #. i18n: ectx: property (text), widget (QLabel, label_hddDevice)
#: rc.cpp:180 #: rc.cpp:183
msgid "HDD devices" msgid "HDD devices"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:1227 #. i18n: file: ui/configwindow.ui:1230
#. i18n: ectx: property (text), widget (QLabel, label_netdir) #. i18n: ectx: property (text), widget (QLabel, label_netdir)
#: rc.cpp:190 #: rc.cpp:193
msgid "Network directory" msgid "Network directory"
msgstr "Путь к интерфейсам" msgstr "Путь к интерфейсам"
#. i18n: file: ui/configwindow.ui:1234 #. i18n: file: ui/configwindow.ui:1237
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_netdir)
#: rc.cpp:193 #: rc.cpp:196
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:1254 #. i18n: file: ui/configwindow.ui:1257
#. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (toolTip), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:196 #: rc.cpp:199
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:1257 #. i18n: file: ui/configwindow.ui:1260
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_netdev)
#: rc.cpp:199 #: rc.cpp:202
msgid "Set network device" msgid "Set network device"
msgstr "Выберете сетевое устройство" msgstr "Выберете сетевое устройство"
#. i18n: file: ui/configwindow.ui:1290 #. i18n: file: ui/configwindow.ui:1293
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:202 #: rc.cpp:205
msgid "Battery device" msgid "Battery device"
msgstr "Устройство батареи" msgstr "Устройство батареи"
#. i18n: file: ui/configwindow.ui:1297 #. i18n: file: ui/configwindow.ui:1300
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:205 #: rc.cpp:208
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:1314 #. i18n: file: ui/configwindow.ui:1317
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:208 #: rc.cpp:211
msgid "AC device" msgid "AC device"
msgstr "Устройство AC" msgstr "Устройство AC"
#. i18n: file: ui/configwindow.ui:1321 #. i18n: file: ui/configwindow.ui:1324
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:211 #: rc.cpp:214
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:1358 #. i18n: file: ui/configwindow.ui:1361
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:217 #: rc.cpp:220
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:1363 #. i18n: file: ui/configwindow.ui:1366
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:220 #: rc.cpp:223
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:1368 #. i18n: file: ui/configwindow.ui:1371
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_playerSelect)
#: rc.cpp:223 #: rc.cpp:226
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:1392 #. i18n: file: ui/configwindow.ui:1395
#. i18n: ectx: attribute (title), widget (QWidget, tooltip) #. i18n: ectx: attribute (title), widget (QWidget, tooltip)
#: rc.cpp:226 #: rc.cpp:229
msgid "Tooltip" msgid "Tooltip"
msgstr "Тултип" msgstr "Тултип"
#. i18n: file: ui/configwindow.ui:1398 #. i18n: file: ui/configwindow.ui:1401
#. i18n: ectx: property (text), widget (QLabel, label_tooltip) #. i18n: ectx: property (text), widget (QLabel, label_tooltip)
#: rc.cpp:229 #: rc.cpp:232
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."
@ -483,154 +489,163 @@ msgstr ""
"Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. " "Поля CPU, частота CPU, память, swap, сеть поддерживают графический тултип. "
"Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми." "Чтобы включить его, просто сделайте требуемые чекбоксы полностью чекнутыми."
#. i18n: file: ui/configwindow.ui:1419 #. i18n: file: ui/configwindow.ui:1422
#. i18n: ectx: property (text), widget (QLabel, label_tooltipNum) #. i18n: ectx: property (text), widget (QLabel, label_tooltipNum)
#: rc.cpp:232 #: rc.cpp:235
msgid "Number of values for tooltips" msgid "Number of values for tooltips"
msgstr "Число хранящихся значений" msgstr "Число хранящихся значений"
#. i18n: file: ui/configwindow.ui:1474 #. i18n: file: ui/configwindow.ui:1477
#. i18n: ectx: property (text), widget (QLabel, label_cpuColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuColor)
#: rc.cpp:235 #: rc.cpp:238
msgid "CPU color" msgid "CPU color"
msgstr "Цвет CPU" msgstr "Цвет CPU"
#. i18n: file: ui/configwindow.ui:1514 #. i18n: file: ui/configwindow.ui:1517
#. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor) #. i18n: ectx: property (text), widget (QLabel, label_cpuclockColor)
#: rc.cpp:238 #: rc.cpp:241
msgid "CPU clock color" msgid "CPU clock color"
msgstr "Цвет частоты CPU" msgstr "Цвет частоты CPU"
#. i18n: file: ui/configwindow.ui:1554 #. i18n: file: ui/configwindow.ui:1557
#. i18n: ectx: property (text), widget (QLabel, label_memColor) #. i18n: ectx: property (text), widget (QLabel, label_memColor)
#: rc.cpp:241 #: rc.cpp:244
msgid "Memory color" msgid "Memory color"
msgstr "Цвет памяти" msgstr "Цвет памяти"
#. i18n: file: ui/configwindow.ui:1594 #. i18n: file: ui/configwindow.ui:1597
#. i18n: ectx: property (text), widget (QLabel, label_swapColor) #. i18n: ectx: property (text), widget (QLabel, label_swapColor)
#: rc.cpp:244 #: rc.cpp:247
msgid "Swap color" msgid "Swap color"
msgstr "Цвет swap" msgstr "Цвет swap"
#. i18n: file: ui/configwindow.ui:1634 #. i18n: file: ui/configwindow.ui:1637
#. i18n: ectx: property (text), widget (QLabel, label_downColor) #. i18n: ectx: property (text), widget (QLabel, label_downColor)
#: rc.cpp:247 #: rc.cpp:250
msgid "Download speed color" msgid "Download speed color"
msgstr "Цвет скорости загрузки" msgstr "Цвет скорости загрузки"
#. i18n: file: ui/configwindow.ui:1674 #. i18n: file: ui/configwindow.ui:1677
#. i18n: ectx: property (text), widget (QLabel, label_upColor) #. i18n: ectx: property (text), widget (QLabel, label_upColor)
#: rc.cpp:250 #: rc.cpp:253
msgid "Upload speed color" msgid "Upload speed color"
msgstr "Цвет скорости отдачи" msgstr "Цвет скорости отдачи"
#. i18n: file: ui/configwindow.ui:1720 #. i18n: file: ui/configwindow.ui:1723
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:253 #: rc.cpp:256
msgid "Appearance" msgid "Appearance"
msgstr "Внешний вид" msgstr "Внешний вид"
#. i18n: file: ui/configwindow.ui:1734 #. i18n: file: ui/configwindow.ui:1737
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:256 #: rc.cpp:259
msgid "Time interval" msgid "Time interval"
msgstr "Интервал обновления" msgstr "Интервал обновления"
#. i18n: file: ui/configwindow.ui:1789 #. i18n: file: ui/configwindow.ui:1792
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:259 #: rc.cpp:262
msgid "Font" msgid "Font"
msgstr "Шрифт" msgstr "Шрифт"
#. i18n: file: ui/configwindow.ui:1829 #. i18n: file: ui/configwindow.ui:1832
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:262 #: rc.cpp:265
msgid "Font size" msgid "Font size"
msgstr "Размер шрифта" msgstr "Размер шрифта"
#. i18n: file: ui/configwindow.ui:1884 #. i18n: file: ui/configwindow.ui:1887
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:265 #: rc.cpp:268
msgid "Font color" msgid "Font color"
msgstr "Цвет шрифта" msgstr "Цвет шрифта"
#. i18n: file: ui/configwindow.ui:1924 #. i18n: file: ui/configwindow.ui:1927
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:268 #: rc.cpp:271
msgid "Font style" msgid "Font style"
msgstr "Стиль шрифта" msgstr "Стиль шрифта"
#. i18n: file: ui/configwindow.ui:1974 #. i18n: file: ui/configwindow.ui:1977
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:271 #: rc.cpp:274
msgid "Font weight" msgid "Font weight"
msgstr "Ширина шрифта" msgstr "Ширина шрифта"
#. i18n: file: ui/configwindow.ui:2035 #. i18n: file: ui/configwindow.ui:2038
#. i18n: ectx: attribute (title), widget (QWidget, dataengine) #. i18n: ectx: attribute (title), widget (QWidget, dataengine)
#: rc.cpp:274 #: rc.cpp:277
msgid "DataEngine" msgid "DataEngine"
msgstr "DataEngine" msgstr "DataEngine"
#. i18n: file: ui/configwindow.ui:2049 #. i18n: file: ui/configwindow.ui:2052
#. i18n: ectx: property (text), widget (QLabel, label_gpudev) #. i18n: ectx: property (text), widget (QLabel, label_gpudev)
#: rc.cpp:277 #: rc.cpp:280
msgid "GPU device" msgid "GPU device"
msgstr "Устройство GPU" msgstr "Устройство GPU"
#. i18n: file: ui/configwindow.ui:2069 #. i18n: file: ui/configwindow.ui:2072
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:280 #: rc.cpp:283
msgid "auto" msgid "auto"
msgstr "auto" msgstr "auto"
#. i18n: file: ui/configwindow.ui:2074 #. i18n: file: ui/configwindow.ui:2077
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:283 #: rc.cpp:286
msgid "nvidia" msgid "nvidia"
msgstr "nvidia" msgstr "nvidia"
#. i18n: file: ui/configwindow.ui:2079 #. i18n: file: ui/configwindow.ui:2082
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_gpudev)
#: rc.cpp:286 #: rc.cpp:289
msgid "ati" msgid "ati"
msgstr "ati" msgstr "ati"
#. i18n: file: ui/configwindow.ui:2130 #. i18n: file: ui/configwindow.ui:2133
#. i18n: ectx: property (text), widget (QLabel, label_mpdaddress) #. i18n: ectx: property (text), widget (QLabel, label_mpdaddress)
#: rc.cpp:292 #: rc.cpp:295
msgid "MPD address" msgid "MPD address"
msgstr "Адрес сервера MPD" msgstr "Адрес сервера MPD"
#. i18n: file: ui/configwindow.ui:2154 #. i18n: file: ui/configwindow.ui:2157
#. i18n: ectx: property (text), widget (QLabel, label_mpdport) #. i18n: ectx: property (text), widget (QLabel, label_mpdport)
#: rc.cpp:295 #: rc.cpp:298
msgid "MPD port" msgid "MPD port"
msgstr "Порт сервера MPD" msgstr "Порт сервера MPD"
#. i18n: file: ui/configwindow.ui:2209 #. i18n: file: ui/configwindow.ui:2212
#. i18n: ectx: property (text), widget (QLabel, label_customCommand) #. i18n: ectx: property (text), widget (QLabel, label_customCommand)
#: rc.cpp:298 #: rc.cpp:301
msgid "Custom command" msgid "Custom command"
msgstr "Своя команда" msgstr "Своя команда"
#. i18n: file: ui/configwindow.ui:2216 #. i18n: file: ui/configwindow.ui:2219
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_customCommand)
#: rc.cpp:301 #: rc.cpp:304
msgid "Custom command to run" msgid "Custom command to run"
msgstr "Своя команда для запуска" msgstr "Своя команда для запуска"
#: rc.cpp:302 #: rc.cpp:305
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:303 #: rc.cpp:306
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"
#~ msgid ""
#~ "$ds - uptime days\n"
#~ "$hs - uptime hours\n"
#~ "$ms - uptime minutes"
#~ msgstr ""
#~ "$ds - дни работы\n"
#~ "$hs - часы\n"
#~ "$ms - минуты"
#~ msgid "" #~ msgid ""
#~ "Command to run, example:\n" #~ "Command to run, example:\n"
#~ "wget -qO- http://ifconfig.me/ip - get external IP" #~ "wget -qO- http://ifconfig.me/ip - get external IP"