This commit is contained in:
arcan1s 2014-03-31 01:05:05 +04:00
parent d66bafa816
commit 3545b9c1f1
11 changed files with 328 additions and 291 deletions

View File

@ -2,7 +2,7 @@
# Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com> # Maintainer: Evgeniy "arcanis" Alexeev <esalexeev@gmail.com>
pkgname=kdeplasma-applets-pytextmonitor pkgname=kdeplasma-applets-pytextmonitor
_pkgname=py-text-monitor _pkgname=pytextmonitor
pkgver=1.6.0 pkgver=1.6.0
pkgrel=1 pkgrel=1
pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in awesome-wm" pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in awesome-wm"
@ -17,9 +17,9 @@ optdepends=("hddtemp: for HDD temperature monitor"
"mpd: for music player monitor" "mpd: for music player monitor"
"qmmp: for music player monitor") "qmmp: for music player monitor")
makedepends=('automoc4' 'cmake') makedepends=('automoc4' 'cmake')
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}.tar.xz) source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install install=${pkgname}.install
md5sums=('335940e39c41ed7d81a251d1d04c18c4') md5sums=('5941cde214f5f93c3ec8963622ef1fdf')
backup=('usr/share/config/extsysmon.conf') backup=('usr/share/config/extsysmon.conf')
build () { build () {

View File

@ -15,7 +15,7 @@ tar cJf "${ARCHIVE}-${VERSION}-src.tar.xz" "${ARCHIVE}"
rm -rf "${ARCHIVE}" rm -rf "${ARCHIVE}"
# build widget # build widget
ARCHIVE="py-text-monitor" ARCHIVE="pytextmonitor"
FILES="README.md" FILES="README.md"
IGNORELIST="build usr" IGNORELIST="build usr"
# create archive # create archive

View File

@ -1,5 +1,5 @@
# set project name # set project name
set (SUBPROJECT py-text-monitor) set (SUBPROJECT pytextmonitor)
# for notifications # for notifications
set (PLUGIN_NAME plasma_applet_pytextmonitor) set (PLUGIN_NAME plasma_applet_pytextmonitor)
message (STATUS "Subproject ${SUBPROJECT}") message (STATUS "Subproject ${SUBPROJECT}")
@ -28,6 +28,6 @@ configure_file (${SUBPROJECT_DESKTOP_IN} ${CMAKE_CURRENT_BINARY_DIR}/${SUBPROJEC
# install # install
install (FILES ${SUBPROJECT_SOURCE} DESTINATION "share/apps/plasma/plasmoids/${SUBPROJECT}/${SUBPROJECT_CODE_DIR}") install (FILES ${SUBPROJECT_SOURCE} DESTINATION "share/apps/plasma/plasmoids/${SUBPROJECT}/${SUBPROJECT_CODE_DIR}")
install (FILES ${SUBPROJECT_UI} DESTINATION "share/apps/plasma/plasmoids/${SUBPROJECT}/${SUBPROJECT_UI_DIR}") install (FILES ${SUBPROJECT_UI} DESTINATION "share/apps/plasma/plasmoids/${SUBPROJECT}/${SUBPROJECT_UI_DIR}")
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${SUBPROJECT_DESKTOP} DESTINATION ${SERVICES_INSTALL_DIR} RENAME ${SUBPROJECT}.desktop) install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${SUBPROJECT_DESKTOP} DESTINATION ${SERVICES_INSTALL_DIR} RENAME "plasma-applet-${SUBPROJECT}.desktop")
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${SUBPROJECT_DESKTOP} DESTINATION "share/apps/plasma/plasmoids/${SUBPROJECT}") install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${SUBPROJECT_DESKTOP} DESTINATION "share/apps/plasma/plasmoids/${SUBPROJECT}")
install (FILES ${SUBPROJECT_NOTIFY} DESTINATION ${DATA_INSTALL_DIR}/${PLUGIN_NAME}) install (FILES ${SUBPROJECT_NOTIFY} DESTINATION ${DATA_INSTALL_DIR}/${PLUGIN_NAME})

View File

@ -324,7 +324,7 @@ class Reinit():
self.parent.label_time.setText(text) self.parent.label_time.setText(text)
self.parent.layout.addItem(self.parent.label_time) self.parent.layout.addItem(self.parent.label_time)
if not confAccept: if not confAccept:
self.parent.layout.setContentsMargins(0, 0, 0, 0) self.parent.layout.setContentsMargins(1, 1, 1, 1)
self.parent.applet.setLayout(self.parent.layout) self.parent.applet.setLayout(self.parent.layout)
self.parent.theme = Plasma.Svg(self.parent) self.parent.theme = Plasma.Svg(self.parent)
self.parent.theme.setImagePath("widgets/background") self.parent.theme.setImagePath("widgets/background")

View File

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>575</width> <width>575</width>
<height>561</height> <height>588</height>
</rect> </rect>
</property> </property>
<property name="sizePolicy"> <property name="sizePolicy">
@ -42,6 +42,16 @@
<string>Widget settings</string> <string>Widget settings</string>
</attribute> </attribute>
<layout class="QVBoxLayout" name="verticalLayout_2"> <layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Detailed information may be found on &lt;a href=&quot;http://arcanis.name/projects/pytextmonitor/&quot;&gt;project homepage&lt;/a&gt;</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item> <item>
<layout class="QHBoxLayout" name="layout_time"> <layout class="QHBoxLayout" name="layout_time">
<item> <item>

View File

@ -11,7 +11,7 @@ X-Plasma-RequiredExtensions=LaunchApp,LocalIO,FileDialog
X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis X-KDE-PluginInfo-Author=Evgeniy Alekseev aka arcanis
X-KDE-PluginInfo-Email=esalexeev@gmail.com X-KDE-PluginInfo-Email=esalexeev@gmail.com
X-KDE-PluginInfo-Name=py-text-monitor X-KDE-PluginInfo-Name=pytextmonitor
X-KDE-PluginInfo-Version=@PROJECT_VERSION@ X-KDE-PluginInfo-Version=@PROJECT_VERSION@
X-KDE-PluginInfo-Website=http://kde-look.org/ X-KDE-PluginInfo-Website=http://kde-look.org/
X-KDE-PluginInfo-Category=System Information X-KDE-PluginInfo-Category=System Information

View File

@ -2,7 +2,7 @@ find_package(KDE4 REQUIRED)
find_package(Gettext REQUIRED) find_package(Gettext REQUIRED)
if (NOT GETTEXT_MSGFMT_EXECUTABLE) if (NOT GETTEXT_MSGFMT_EXECUTABLE)
message(FATAL_ERROR "Please install the msgfmt binary") message(FATAL_ERROR "Please install the msgfmt binary")
endif (NOT GETTEXT_MSGFMT_EXECUTABLE) endif (NOT GETTEXT_MSGFMT_EXECUTABLE)
file (GLOB _po_files *.po) file (GLOB _po_files *.po)
@ -11,14 +11,13 @@ set (_gmoFiles)
foreach (_current_PO_FILE ${_po_files}) foreach (_current_PO_FILE ${_po_files})
get_filename_component (_lang ${_current_PO_FILE} NAME_WE) get_filename_component (_lang ${_current_PO_FILE} NAME_WE)
set (_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo) set (_gmoFile ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo)
add_custom_command (OUTPUT ${_gmoFile} add_custom_command (OUTPUT ${_gmoFile}
COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} -o ${_gmoFile} ${_current_PO_FILE} COMMAND ${GETTEXT_MSGFMT_EXECUTABLE} -o ${_gmoFile} ${_current_PO_FILE}
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
DEPENDS ${_current_PO_FILE} DEPENDS ${_current_PO_FILE})
)
install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo DESTINATION ${LOCALE_INSTALL_DIR}/${_lang}/LC_MESSAGES/ RENAME py-text-monitor.mo) install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${_lang}.gmo DESTINATION ${LOCALE_INSTALL_DIR}/${_lang}/LC_MESSAGES/ RENAME plasma_applet_pytextmonitor.mo)
list (APPEND _gmoFiles ${_gmoFile}) list (APPEND _gmoFiles ${_gmoFile})
endforeach (_current_PO_FILE) endforeach (_current_PO_FILE)
add_custom_target (pofiles ALL DEPENDS ${_gmoFiles}) add_custom_target (pofiles ALL DEPENDS ${_gmoFiles})

View File

@ -6,16 +6,16 @@ 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-03-30 13:27+0400\n" "POT-Creation-Date: 2014-03-31 00:58+0400\n"
"PO-Revision-Date: 2014-03-30 13:28+0400\n" "PO-Revision-Date: 2014-03-31 01:01+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"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.5\n" "X-Generator: Lokalize 1.5\n"
#. i18n: file: ui/configwindow.ui:32 #. i18n: file: ui/configwindow.ui:32
@ -30,15 +30,25 @@ msgstr "Form"
msgid "Widget settings" msgid "Widget settings"
msgstr "Widget settings" msgstr "Widget settings"
#. i18n: file: ui/configwindow.ui:56 #. i18n: file: ui/configwindow.ui:48
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time) #. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:9 #: rc.cpp:9
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"pytextmonitor/\">project homepage</a>"
msgstr ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"pytextmonitor/\">project homepage</a>"
#. i18n: file: ui/configwindow.ui:66
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
#: rc.cpp:12
msgid "Time" msgid "Time"
msgstr "Time" msgstr "Time"
#. i18n: file: ui/configwindow.ui:75 #. i18n: file: ui/configwindow.ui:85
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
#: rc.cpp:12 #: rc.cpp:15
msgid "" msgid ""
"$time - time in default format\n" "$time - time in default format\n"
"$isotime - time in ISO format\n" "$isotime - time in ISO format\n"
@ -66,15 +76,15 @@ msgstr ""
"\t$mm - minutes; $m - minutes w\\o zero;\n" "\t$mm - minutes; $m - minutes w\\o zero;\n"
"\t$ss - seconds; $s - seconds w\\o zero" "\t$ss - seconds; $s - seconds w\\o zero"
#. i18n: file: ui/configwindow.ui:120 #. i18n: file: ui/configwindow.ui:130
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
#: rc.cpp:24 #: rc.cpp:27
msgid "Uptime" msgid "Uptime"
msgstr "Uptime" msgstr "Uptime"
#. i18n: file: ui/configwindow.ui:131 #. i18n: file: ui/configwindow.ui:141
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
#: rc.cpp:27 #: rc.cpp:30
msgid "" msgid ""
"$uptime - system uptime\n" "$uptime - system uptime\n"
"$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes" "$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes"
@ -82,15 +92,15 @@ msgstr ""
"$uptime - system uptime\n" "$uptime - system uptime\n"
"$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes" "$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes"
#. i18n: file: ui/configwindow.ui:179 #. i18n: file: ui/configwindow.ui:189
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
#: rc.cpp:31 #: rc.cpp:34
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#. i18n: file: ui/configwindow.ui:190 #. i18n: file: ui/configwindow.ui:200
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
#: rc.cpp:35 #: rc.cpp:38
#, no-c-format #, no-c-format
msgid "" msgid ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
@ -99,15 +109,15 @@ msgstr ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
"$ccpu - load CPU for each core, %" "$ccpu - load CPU for each core, %"
#. i18n: file: ui/configwindow.ui:238 #. i18n: file: ui/configwindow.ui:248
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
#: rc.cpp:39 #: rc.cpp:42
msgid "CPU Clock" msgid "CPU Clock"
msgstr "CPU Clock" msgstr "CPU Clock"
#. i18n: file: ui/configwindow.ui:249 #. i18n: file: ui/configwindow.ui:259
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
#: rc.cpp:42 #: rc.cpp:45
msgid "" msgid ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$ccpucl - CPU clock for each core, MHz" "$ccpucl - CPU clock for each core, MHz"
@ -115,52 +125,52 @@ msgstr ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$ccpucl - CPU clock for each core, MHz" "$ccpucl - CPU clock for each core, MHz"
#. i18n: file: ui/configwindow.ui:297 #. i18n: file: ui/configwindow.ui:307
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
#: rc.cpp:46 #: rc.cpp:49
msgid "Temperature" msgid "Temperature"
msgstr "Temperature" msgstr "Temperature"
#. i18n: file: ui/configwindow.ui:320 #. i18n: file: ui/configwindow.ui:330
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
#: rc.cpp:49 #: rc.cpp:52
msgid "$temp - physical temperature on CPU" msgid "$temp - physical temperature on CPU"
msgstr "$temp - physical temperature on CPU" msgstr "$temp - physical temperature on CPU"
#. i18n: file: ui/configwindow.ui:368 #. i18n: file: ui/configwindow.ui:378
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
#: rc.cpp:52 #: rc.cpp:55
msgid "GPU" msgid "GPU"
msgstr "GPU" msgstr "GPU"
#. i18n: file: ui/configwindow.ui:378 #. i18n: file: ui/configwindow.ui:388
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
#: rc.cpp:56 #: rc.cpp:59
#, 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:426 #. i18n: file: ui/configwindow.ui:436
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
#: rc.cpp:59 #: rc.cpp:62
msgid "GPU Temp" msgid "GPU Temp"
msgstr "GPU Temp" msgstr "GPU Temp"
#. i18n: file: ui/configwindow.ui:436 #. i18n: file: ui/configwindow.ui:446
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
#: rc.cpp:62 #: rc.cpp:65
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:484 #. i18n: file: ui/configwindow.ui:494
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
#: rc.cpp:65 #: rc.cpp:68
msgid "Memory" msgid "Memory"
msgstr "Memory" msgstr "Memory"
#. i18n: file: ui/configwindow.ui:495 #. i18n: file: ui/configwindow.ui:505
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:69 #: rc.cpp:72
#, no-c-format #, no-c-format
msgid "" msgid ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
@ -169,15 +179,15 @@ msgstr ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB"
#. i18n: file: ui/configwindow.ui:543 #. i18n: file: ui/configwindow.ui:553
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:73 #: rc.cpp:76
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#. i18n: file: ui/configwindow.ui:554 #. i18n: file: ui/configwindow.ui:564
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:77 #: rc.cpp:80
#, no-c-format #, no-c-format
msgid "" msgid ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
@ -186,40 +196,40 @@ msgstr ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB"
#. i18n: file: ui/configwindow.ui:602 #. i18n: file: ui/configwindow.ui:612
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#: rc.cpp:81 #: rc.cpp:84
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:612 #. i18n: file: ui/configwindow.ui:622
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:85 #: rc.cpp:88
#, no-c-format #, no-c-format
msgid "@@/;@@ - mount point usage, %" msgid "@@/;@@ - mount point usage, %"
msgstr "@@/;@@ - mount point usage, %" msgstr "@@/;@@ - mount point usage, %"
#. i18n: file: ui/configwindow.ui:660 #. i18n: file: ui/configwindow.ui:670
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:88 #: rc.cpp:91
msgid "HDD Temp" msgid "HDD Temp"
msgstr "HDD Temp" msgstr "HDD Temp"
#. i18n: file: ui/configwindow.ui:670 #. i18n: file: ui/configwindow.ui:680
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:91 #: rc.cpp:94
msgid "@@/dev/sda@@ - physical temperature on /dev/sda" msgid "@@/dev/sda@@ - physical temperature on /dev/sda"
msgstr "@@/dev/sda@@ - physical temperature on /dev/sda" msgstr "@@/dev/sda@@ - physical temperature on /dev/sda"
#. i18n: file: ui/configwindow.ui:718 #. i18n: file: ui/configwindow.ui:728
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:94 #: rc.cpp:97
msgid "Network" msgid "Network"
msgstr "Network" msgstr "Network"
#. i18n: file: ui/configwindow.ui:730 #. i18n: file: ui/configwindow.ui:740
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:97 #: rc.cpp:100
msgid "" msgid ""
"$net - network speed, down/up, KB/s\n" "$net - network speed, down/up, KB/s\n"
"$netdev - current network device\n" "$netdev - current network device\n"
@ -229,15 +239,15 @@ msgstr ""
"$netdev - current network device\n" "$netdev - current network device\n"
"@@eth0@@ - disable auto select device and set specified device" "@@eth0@@ - disable auto select device and set specified device"
#. i18n: file: ui/configwindow.ui:778 #. i18n: file: ui/configwindow.ui:788
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:102 #: rc.cpp:105
msgid "Battery" msgid "Battery"
msgstr "Battery" msgstr "Battery"
#. i18n: file: ui/configwindow.ui:789 #. i18n: file: ui/configwindow.ui:799
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:106 #: rc.cpp:109
#, no-c-format #, no-c-format
msgid "" msgid ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
@ -246,57 +256,57 @@ msgstr ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
"$ac - AC status" "$ac - AC status"
#. i18n: file: ui/configwindow.ui:853 #. i18n: file: ui/configwindow.ui:863
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:110 #: rc.cpp:113
msgid "Battery device" msgid "Battery device"
msgstr "Battery device" msgstr "Battery device"
#. i18n: file: ui/configwindow.ui:860 #. i18n: file: ui/configwindow.ui:870
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:113 #: rc.cpp:116
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:896 #. i18n: file: ui/configwindow.ui:906
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:116 #: rc.cpp:119
msgid "AC device" msgid "AC device"
msgstr "AC device" msgstr "AC device"
#. i18n: file: ui/configwindow.ui:903 #. i18n: file: ui/configwindow.ui:913
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:119 #: rc.cpp:122
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:923 #. i18n: file: ui/configwindow.ui:933
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#: rc.cpp:122 #: rc.cpp:125
msgid "Music player" msgid "Music player"
msgstr "Music player" msgstr "Music player"
#. i18n: file: ui/configwindow.ui:940 #. i18n: file: ui/configwindow.ui:950
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:125 #: rc.cpp:128
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:945 #. i18n: file: ui/configwindow.ui:955
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:128 #: rc.cpp:131
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:950 #. i18n: file: ui/configwindow.ui:960
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:131 #: rc.cpp:134
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:962 #. i18n: file: ui/configwindow.ui:972
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:134 #: rc.cpp:137
msgid "" msgid ""
"$album - song album\n" "$album - song album\n"
"$artist - song artist\n" "$artist - song artist\n"
@ -310,54 +320,54 @@ msgstr ""
"$time - song duration\n" "$time - song duration\n"
"$title - song title" "$title - song title"
#. i18n: file: ui/configwindow.ui:1016 #. i18n: file: ui/configwindow.ui:1026
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:141 #: rc.cpp:144
msgid "Appearance" msgid "Appearance"
msgstr "Appearance" msgstr "Appearance"
#. i18n: file: ui/configwindow.ui:1030 #. i18n: file: ui/configwindow.ui:1040
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:144 #: rc.cpp:147
msgid "Time interval" msgid "Time interval"
msgstr "Time interval" msgstr "Time interval"
#. i18n: file: ui/configwindow.ui:1085 #. i18n: file: ui/configwindow.ui:1095
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:147 #: rc.cpp:150
msgid "Font" msgid "Font"
msgstr "Font" msgstr "Font"
#. i18n: file: ui/configwindow.ui:1125 #. i18n: file: ui/configwindow.ui:1135
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:150 #: rc.cpp:153
msgid "Font size" msgid "Font size"
msgstr "Font size" msgstr "Font size"
#. i18n: file: ui/configwindow.ui:1180 #. i18n: file: ui/configwindow.ui:1190
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:153 #: rc.cpp:156
msgid "Font color" msgid "Font color"
msgstr "Font color" msgstr "Font color"
#. i18n: file: ui/configwindow.ui:1220 #. i18n: file: ui/configwindow.ui:1230
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:156 #: rc.cpp:159
msgid "Font style" msgid "Font style"
msgstr "Font style" msgstr "Font style"
#. i18n: file: ui/configwindow.ui:1270 #. i18n: file: ui/configwindow.ui:1280
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:159 #: rc.cpp:162
msgid "Font weight" msgid "Font weight"
msgstr "Font weight" msgstr "Font weight"
#: rc.cpp:160 #: rc.cpp:163
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:161 #: rc.cpp:164
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
BASEDIR="../contents" # root of translatable sources BASEDIR="../contents" # root of translatable sources
PROJECT="py-text-monitor" # project name PROJECT="pytextmonitor" # project name
BUGADDR="http://kde-look.org/content/show.php?content=157124" # MSGID-Bugs BUGADDR="http://kde-look.org/content/show.php?content=157124" # MSGID-Bugs
WDIR=`pwd` # working dir WDIR=`pwd` # working dir
SATELLITE_LIST=satellite.list SATELLITE_LIST=satellite.list

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-03-30 13:27+0400\n" "POT-Creation-Date: 2014-03-31 00:58+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"
@ -29,15 +29,23 @@ msgstr ""
msgid "Widget settings" msgid "Widget settings"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:56 #. i18n: file: ui/configwindow.ui:48
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time) #. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:9 #: rc.cpp:9
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"pytextmonitor/\">project homepage</a>"
msgstr ""
#. i18n: file: ui/configwindow.ui:66
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
#: rc.cpp:12
msgid "Time" msgid "Time"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:75 #. i18n: file: ui/configwindow.ui:85
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
#: rc.cpp:12 #: rc.cpp:15
msgid "" msgid ""
"$time - time in default format\n" "$time - time in default format\n"
"$isotime - time in ISO format\n" "$isotime - time in ISO format\n"
@ -53,222 +61,222 @@ msgid ""
"\t$ss - seconds; $s - seconds w\\o zero" "\t$ss - seconds; $s - seconds w\\o zero"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:120 #. i18n: file: ui/configwindow.ui:130
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
#: rc.cpp:24 #: rc.cpp:27
msgid "Uptime" msgid "Uptime"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:131 #. i18n: file: ui/configwindow.ui:141
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
#: rc.cpp:27 #: rc.cpp:30
msgid "" msgid ""
"$uptime - system uptime\n" "$uptime - system uptime\n"
"$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes" "$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:179 #. i18n: file: ui/configwindow.ui:189
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
#: rc.cpp:31 #: rc.cpp:34
msgid "CPU" msgid "CPU"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:190 #. i18n: file: ui/configwindow.ui:200
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
#: rc.cpp:35 #: rc.cpp:38
#, no-c-format #, no-c-format
msgid "" msgid ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
"$ccpu - load CPU for each core, %" "$ccpu - load CPU for each core, %"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:238 #. i18n: file: ui/configwindow.ui:248
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
#: rc.cpp:39 #: rc.cpp:42
msgid "CPU Clock" msgid "CPU Clock"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:249 #. i18n: file: ui/configwindow.ui:259
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
#: rc.cpp:42 #: rc.cpp:45
msgid "" msgid ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$ccpucl - CPU clock for each core, MHz" "$ccpucl - CPU clock for each core, MHz"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:297 #. i18n: file: ui/configwindow.ui:307
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
#: rc.cpp:46 #: rc.cpp:49
msgid "Temperature" msgid "Temperature"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:320 #. i18n: file: ui/configwindow.ui:330
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
#: rc.cpp:49 #: rc.cpp:52
msgid "$temp - physical temperature on CPU" msgid "$temp - physical temperature on CPU"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:368 #. i18n: file: ui/configwindow.ui:378
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
#: rc.cpp:52 #: rc.cpp:55
msgid "GPU" msgid "GPU"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:378 #. i18n: file: ui/configwindow.ui:388
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
#: rc.cpp:56 #: rc.cpp:59
#, no-c-format #, no-c-format
msgid "$gpu - gpu usage, %" msgid "$gpu - gpu usage, %"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:426 #. i18n: file: ui/configwindow.ui:436
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
#: rc.cpp:59 #: rc.cpp:62
msgid "GPU Temp" msgid "GPU Temp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:436 #. i18n: file: ui/configwindow.ui:446
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
#: rc.cpp:62 #: rc.cpp:65
msgid "$gputemp - physical temperature on GPU" msgid "$gputemp - physical temperature on GPU"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:484 #. i18n: file: ui/configwindow.ui:494
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
#: rc.cpp:65 #: rc.cpp:68
msgid "Memory" msgid "Memory"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:495 #. i18n: file: ui/configwindow.ui:505
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:69 #: rc.cpp:72
#, no-c-format #, no-c-format
msgid "" msgid ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
"$memmb - RAM usage, MB" "$memmb - RAM usage, MB"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:543 #. i18n: file: ui/configwindow.ui:553
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:73 #: rc.cpp:76
msgid "Swap" msgid "Swap"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:554 #. i18n: file: ui/configwindow.ui:564
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:77 #: rc.cpp:80
#, no-c-format #, no-c-format
msgid "" msgid ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
"$swapmb - swap usage, MB" "$swapmb - swap usage, MB"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:602 #. i18n: file: ui/configwindow.ui:612
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#: rc.cpp:81 #: rc.cpp:84
msgid "HDD" msgid "HDD"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:612 #. i18n: file: ui/configwindow.ui:622
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:85 #: rc.cpp:88
#, no-c-format #, no-c-format
msgid "@@/;@@ - mount point usage, %" msgid "@@/;@@ - mount point usage, %"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:660 #. i18n: file: ui/configwindow.ui:670
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:88 #: rc.cpp:91
msgid "HDD Temp" msgid "HDD Temp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:670 #. i18n: file: ui/configwindow.ui:680
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:91 #: rc.cpp:94
msgid "@@/dev/sda@@ - physical temperature on /dev/sda" msgid "@@/dev/sda@@ - physical temperature on /dev/sda"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:718 #. i18n: file: ui/configwindow.ui:728
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:94 #: rc.cpp:97
msgid "Network" msgid "Network"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:730 #. i18n: file: ui/configwindow.ui:740
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:97 #: rc.cpp:100
msgid "" msgid ""
"$net - network speed, down/up, KB/s\n" "$net - network speed, down/up, KB/s\n"
"$netdev - current network device\n" "$netdev - current network device\n"
"@@eth0@@ - disable auto select device and set specified device" "@@eth0@@ - disable auto select device and set specified device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:778 #. i18n: file: ui/configwindow.ui:788
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:102 #: rc.cpp:105
msgid "Battery" msgid "Battery"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:789 #. i18n: file: ui/configwindow.ui:799
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:106 #: rc.cpp:109
#, no-c-format #, no-c-format
msgid "" msgid ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
"$ac - AC status" "$ac - AC status"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:853 #. i18n: file: ui/configwindow.ui:863
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:110 #: rc.cpp:113
msgid "Battery device" msgid "Battery device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:860 #. i18n: file: ui/configwindow.ui:870
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:113 #: rc.cpp:116
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:896 #. i18n: file: ui/configwindow.ui:906
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:116 #: rc.cpp:119
msgid "AC device" msgid "AC device"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:903 #. i18n: file: ui/configwindow.ui:913
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:119 #: rc.cpp:122
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:923 #. i18n: file: ui/configwindow.ui:933
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#: rc.cpp:122
msgid "Music player"
msgstr ""
#. i18n: file: ui/configwindow.ui:940
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:125 #: rc.cpp:125
msgid "amarok" msgid "Music player"
msgstr ""
#. i18n: file: ui/configwindow.ui:945
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:128
msgid "mpd"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:950 #. i18n: file: ui/configwindow.ui:950
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:128
msgid "amarok"
msgstr ""
#. i18n: file: ui/configwindow.ui:955
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:131 #: rc.cpp:131
msgid "mpd"
msgstr ""
#. i18n: file: ui/configwindow.ui:960
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:134
msgid "qmmp" msgid "qmmp"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:962 #. i18n: file: ui/configwindow.ui:972
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:134 #: rc.cpp:137
msgid "" msgid ""
"$album - song album\n" "$album - song album\n"
"$artist - song artist\n" "$artist - song artist\n"
@ -277,54 +285,54 @@ msgid ""
"$title - song title" "$title - song title"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1016 #. i18n: file: ui/configwindow.ui:1026
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:141 #: rc.cpp:144
msgid "Appearance" msgid "Appearance"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1030 #. i18n: file: ui/configwindow.ui:1040
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:144 #: rc.cpp:147
msgid "Time interval" msgid "Time interval"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1085 #. i18n: file: ui/configwindow.ui:1095
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:147 #: rc.cpp:150
msgid "Font" msgid "Font"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1125 #. i18n: file: ui/configwindow.ui:1135
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:150 #: rc.cpp:153
msgid "Font size" msgid "Font size"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1180 #. i18n: file: ui/configwindow.ui:1190
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:153 #: rc.cpp:156
msgid "Font color" msgid "Font color"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1220 #. i18n: file: ui/configwindow.ui:1230
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:156 #: rc.cpp:159
msgid "Font style" msgid "Font style"
msgstr "" msgstr ""
#. i18n: file: ui/configwindow.ui:1270 #. i18n: file: ui/configwindow.ui:1280
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:159 #: rc.cpp:162
msgid "Font weight" msgid "Font weight"
msgstr "" msgstr ""
#: rc.cpp:160 #: rc.cpp:163
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "" msgstr ""
#: rc.cpp:161 #: rc.cpp:164
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "" msgstr ""

View File

@ -6,16 +6,16 @@ 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-03-30 13:27+0400\n" "POT-Creation-Date: 2014-03-31 00:58+0400\n"
"PO-Revision-Date: 2014-03-30 13:40+0400\n" "PO-Revision-Date: 2014-03-31 01:01+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"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Lokalize 1.5\n" "X-Generator: Lokalize 1.5\n"
#. i18n: file: ui/configwindow.ui:32 #. i18n: file: ui/configwindow.ui:32
@ -30,15 +30,26 @@ msgstr "Form"
msgid "Widget settings" msgid "Widget settings"
msgstr "Настройки виджета" msgstr "Настройки виджета"
#. i18n: file: ui/configwindow.ui:56 #. i18n: file: ui/configwindow.ui:48
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time) #. i18n: ectx: property (text), widget (QLabel, label)
#: rc.cpp:9 #: rc.cpp:9
msgid ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"pytextmonitor/\">project homepage</a>"
msgstr ""
"Подробная информация может быть найдена на <a "
"href=\"http://arcanis.name/ru/projects/"
"pytextmonitor/\">домашней странице проекта</a>"
#. i18n: file: ui/configwindow.ui:66
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_time)
#: rc.cpp:12
msgid "Time" msgid "Time"
msgstr "Время" msgstr "Время"
#. i18n: file: ui/configwindow.ui:75 #. i18n: file: ui/configwindow.ui:85
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_time)
#: rc.cpp:12 #: rc.cpp:15
msgid "" msgid ""
"$time - time in default format\n" "$time - time in default format\n"
"$isotime - time in ISO format\n" "$isotime - time in ISO format\n"
@ -66,15 +77,15 @@ msgstr ""
"\t$mm - минуты; $m - минуты без 0;\n" "\t$mm - минуты; $m - минуты без 0;\n"
"\t$ss - секунды; $s - секунды без 0" "\t$ss - секунды; $s - секунды без 0"
#. i18n: file: ui/configwindow.ui:120 #. i18n: file: ui/configwindow.ui:130
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_uptime)
#: rc.cpp:24 #: rc.cpp:27
msgid "Uptime" msgid "Uptime"
msgstr "Аптайм" msgstr "Аптайм"
#. i18n: file: ui/configwindow.ui:131 #. i18n: file: ui/configwindow.ui:141
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_uptime)
#: rc.cpp:27 #: rc.cpp:30
msgid "" msgid ""
"$uptime - system uptime\n" "$uptime - system uptime\n"
"$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes" "$custom: $ds - uptime days; $hs - uptime hours; $ms - uptime minutes"
@ -82,15 +93,15 @@ msgstr ""
"$uptime - аптайм системы\n" "$uptime - аптайм системы\n"
"$custom: $ds - дни аптайма; $hs - часы аптайма; $ms - минуты аптайма" "$custom: $ds - дни аптайма; $hs - часы аптайма; $ms - минуты аптайма"
#. i18n: file: ui/configwindow.ui:179 #. i18n: file: ui/configwindow.ui:189
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpu)
#: rc.cpp:31 #: rc.cpp:34
msgid "CPU" msgid "CPU"
msgstr "CPU" msgstr "CPU"
#. i18n: file: ui/configwindow.ui:190 #. i18n: file: ui/configwindow.ui:200
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpu)
#: rc.cpp:35 #: rc.cpp:38
#, no-c-format #, no-c-format
msgid "" msgid ""
"$cpu - total load CPU, %\n" "$cpu - total load CPU, %\n"
@ -99,15 +110,15 @@ msgstr ""
"$cpu - общая загрузка CPU, %\n" "$cpu - общая загрузка CPU, %\n"
"$ccpu - загрузка CPU для каждого ядра, %" "$ccpu - загрузка CPU для каждого ядра, %"
#. i18n: file: ui/configwindow.ui:238 #. i18n: file: ui/configwindow.ui:248
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_cpuclock)
#: rc.cpp:39 #: rc.cpp:42
msgid "CPU Clock" msgid "CPU Clock"
msgstr "Частота CPU" msgstr "Частота CPU"
#. i18n: file: ui/configwindow.ui:249 #. i18n: file: ui/configwindow.ui:259
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_cpuclock)
#: rc.cpp:42 #: rc.cpp:45
msgid "" msgid ""
"$cpucl - average CPU clock, MHz\n" "$cpucl - average CPU clock, MHz\n"
"$ccpucl - CPU clock for each core, MHz" "$ccpucl - CPU clock for each core, MHz"
@ -115,52 +126,52 @@ msgstr ""
"$cpucl - средняя частота CPU, MHz\n" "$cpucl - средняя частота CPU, MHz\n"
"$ccpucl - частота CPU для каждого ядра, MHz" "$ccpucl - частота CPU для каждого ядра, MHz"
#. i18n: file: ui/configwindow.ui:297 #. i18n: file: ui/configwindow.ui:307
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_temp)
#: rc.cpp:46 #: rc.cpp:49
msgid "Temperature" msgid "Temperature"
msgstr "Температура" msgstr "Температура"
#. i18n: file: ui/configwindow.ui:320 #. i18n: file: ui/configwindow.ui:330
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_temp)
#: rc.cpp:49 #: rc.cpp:52
msgid "$temp - physical temperature on CPU" msgid "$temp - physical temperature on CPU"
msgstr "$temp - физическая температура на CPU" msgstr "$temp - физическая температура на CPU"
#. i18n: file: ui/configwindow.ui:368 #. i18n: file: ui/configwindow.ui:378
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpu)
#: rc.cpp:52 #: rc.cpp:55
msgid "GPU" msgid "GPU"
msgstr "GPU" msgstr "GPU"
#. i18n: file: ui/configwindow.ui:378 #. i18n: file: ui/configwindow.ui:388
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpu)
#: rc.cpp:56 #: rc.cpp:59
#, 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:426 #. i18n: file: ui/configwindow.ui:436
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_gpuTemp)
#: rc.cpp:59 #: rc.cpp:62
msgid "GPU Temp" msgid "GPU Temp"
msgstr "Температура GPU" msgstr "Температура GPU"
#. i18n: file: ui/configwindow.ui:436 #. i18n: file: ui/configwindow.ui:446
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_gpuTemp)
#: rc.cpp:62 #: rc.cpp:65
msgid "$gputemp - physical temperature on GPU" msgid "$gputemp - physical temperature on GPU"
msgstr "$gputemp - физическая температура на GPU" msgstr "$gputemp - физическая температура на GPU"
#. i18n: file: ui/configwindow.ui:484 #. i18n: file: ui/configwindow.ui:494
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_mem)
#: rc.cpp:65 #: rc.cpp:68
msgid "Memory" msgid "Memory"
msgstr "Память" msgstr "Память"
#. i18n: file: ui/configwindow.ui:495 #. i18n: file: ui/configwindow.ui:505
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_mem)
#: rc.cpp:69 #: rc.cpp:72
#, no-c-format #, no-c-format
msgid "" msgid ""
"$mem - RAM usage, %\n" "$mem - RAM usage, %\n"
@ -169,15 +180,15 @@ msgstr ""
"$mem - использование RAM, %\n" "$mem - использование RAM, %\n"
"$memmb - использование RAM, MB" "$memmb - использование RAM, MB"
#. i18n: file: ui/configwindow.ui:543 #. i18n: file: ui/configwindow.ui:553
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_swap)
#: rc.cpp:73 #: rc.cpp:76
msgid "Swap" msgid "Swap"
msgstr "Swap" msgstr "Swap"
#. i18n: file: ui/configwindow.ui:554 #. i18n: file: ui/configwindow.ui:564
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_swap)
#: rc.cpp:77 #: rc.cpp:80
#, no-c-format #, no-c-format
msgid "" msgid ""
"$swap - swap usage, %\n" "$swap - swap usage, %\n"
@ -186,40 +197,40 @@ msgstr ""
"$swap - использование swap, %\n" "$swap - использование swap, %\n"
"$swapmb - использование swap, MB" "$swapmb - использование swap, MB"
#. i18n: file: ui/configwindow.ui:602 #. i18n: file: ui/configwindow.ui:612
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hdd)
#: rc.cpp:81 #: rc.cpp:84
msgid "HDD" msgid "HDD"
msgstr "HDD" msgstr "HDD"
#. i18n: file: ui/configwindow.ui:612 #. i18n: file: ui/configwindow.ui:622
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hdd)
#: rc.cpp:85 #: rc.cpp:88
#, no-c-format #, no-c-format
msgid "@@/;@@ - mount point usage, %" msgid "@@/;@@ - mount point usage, %"
msgstr "@@/;@@ - использование точки монтирование, %" msgstr "@@/;@@ - использование точки монтирование, %"
#. i18n: file: ui/configwindow.ui:660 #. i18n: file: ui/configwindow.ui:670
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_hddTemp)
#: rc.cpp:88 #: rc.cpp:91
msgid "HDD Temp" msgid "HDD Temp"
msgstr "Температура HDD" msgstr "Температура HDD"
#. i18n: file: ui/configwindow.ui:670 #. i18n: file: ui/configwindow.ui:680
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_hddTemp)
#: rc.cpp:91 #: rc.cpp:94
msgid "@@/dev/sda@@ - physical temperature on /dev/sda" msgid "@@/dev/sda@@ - physical temperature on /dev/sda"
msgstr "@@/dev/sda@@ - физическая температура /dev/sda" msgstr "@@/dev/sda@@ - физическая температура /dev/sda"
#. i18n: file: ui/configwindow.ui:718 #. i18n: file: ui/configwindow.ui:728
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_net) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_net)
#: rc.cpp:94 #: rc.cpp:97
msgid "Network" msgid "Network"
msgstr "Сеть" msgstr "Сеть"
#. i18n: file: ui/configwindow.ui:730 #. i18n: file: ui/configwindow.ui:740
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_net)
#: rc.cpp:97 #: rc.cpp:100
msgid "" msgid ""
"$net - network speed, down/up, KB/s\n" "$net - network speed, down/up, KB/s\n"
"$netdev - current network device\n" "$netdev - current network device\n"
@ -229,15 +240,15 @@ msgstr ""
"$netdev - используемое устройство\n" "$netdev - используемое устройство\n"
"@@eth0@@ - отключить автовыбор устройства и установить указанное" "@@eth0@@ - отключить автовыбор устройства и установить указанное"
#. i18n: file: ui/configwindow.ui:778 #. i18n: file: ui/configwindow.ui:788
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_bat)
#: rc.cpp:102 #: rc.cpp:105
msgid "Battery" msgid "Battery"
msgstr "Батарея" msgstr "Батарея"
#. i18n: file: ui/configwindow.ui:789 #. i18n: file: ui/configwindow.ui:799
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_bat)
#: rc.cpp:106 #: rc.cpp:109
#, no-c-format #, no-c-format
msgid "" msgid ""
"$bat - battery charge, %\n" "$bat - battery charge, %\n"
@ -246,57 +257,57 @@ msgstr ""
"$bat - заряд батареи, %\n" "$bat - заряд батареи, %\n"
"$ac - статус адаптора питания" "$ac - статус адаптора питания"
#. i18n: file: ui/configwindow.ui:853 #. i18n: file: ui/configwindow.ui:863
#. i18n: ectx: property (text), widget (QLabel, label_batdev) #. i18n: ectx: property (text), widget (QLabel, label_batdev)
#: rc.cpp:110 #: rc.cpp:113
msgid "Battery device" msgid "Battery device"
msgstr "Устройство батареи" msgstr "Устройство батареи"
#. i18n: file: ui/configwindow.ui:860 #. i18n: file: ui/configwindow.ui:870
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_batdev)
#: rc.cpp:113 #: rc.cpp:116
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:896 #. i18n: file: ui/configwindow.ui:906
#. i18n: ectx: property (text), widget (QLabel, label_acdev) #. i18n: ectx: property (text), widget (QLabel, label_acdev)
#: rc.cpp:116 #: rc.cpp:119
msgid "AC device" msgid "AC device"
msgstr "Устройство AC" msgstr "Устройство AC"
#. i18n: file: ui/configwindow.ui:903 #. i18n: file: ui/configwindow.ui:913
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_acdev)
#: rc.cpp:119 #: rc.cpp:122
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:923 #. i18n: file: ui/configwindow.ui:933
#. i18n: ectx: property (text), widget (QCheckBox, checkBox_player) #. i18n: ectx: property (text), widget (QCheckBox, checkBox_player)
#: rc.cpp:122 #: rc.cpp:125
msgid "Music player" msgid "Music player"
msgstr "Музыкальный плеер" msgstr "Музыкальный плеер"
#. i18n: file: ui/configwindow.ui:940 #. i18n: file: ui/configwindow.ui:950
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:125 #: rc.cpp:128
msgid "amarok" msgid "amarok"
msgstr "amarok" msgstr "amarok"
#. i18n: file: ui/configwindow.ui:945 #. i18n: file: ui/configwindow.ui:955
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:128 #: rc.cpp:131
msgid "mpd" msgid "mpd"
msgstr "mpd" msgstr "mpd"
#. i18n: file: ui/configwindow.ui:950 #. i18n: file: ui/configwindow.ui:960
#. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player) #. i18n: ectx: property (text), item, widget (QComboBox, comboBox_player)
#: rc.cpp:131 #: rc.cpp:134
msgid "qmmp" msgid "qmmp"
msgstr "qmmp" msgstr "qmmp"
#. i18n: file: ui/configwindow.ui:962 #. i18n: file: ui/configwindow.ui:972
#. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player) #. i18n: ectx: property (toolTip), widget (QLineEdit, lineEdit_player)
#: rc.cpp:134 #: rc.cpp:137
msgid "" msgid ""
"$album - song album\n" "$album - song album\n"
"$artist - song artist\n" "$artist - song artist\n"
@ -310,56 +321,55 @@ msgstr ""
"$time - продолжительность\n" "$time - продолжительность\n"
"$title - название" "$title - название"
#. i18n: file: ui/configwindow.ui:1016 #. i18n: file: ui/configwindow.ui:1026
#. i18n: ectx: attribute (title), widget (QWidget, appearance) #. i18n: ectx: attribute (title), widget (QWidget, appearance)
#: rc.cpp:141 #: rc.cpp:144
msgid "Appearance" msgid "Appearance"
msgstr "Внешний вид" msgstr "Внешний вид"
#. i18n: file: ui/configwindow.ui:1030 #. i18n: file: ui/configwindow.ui:1040
#. i18n: ectx: property (text), widget (QLabel, label_interval) #. i18n: ectx: property (text), widget (QLabel, label_interval)
#: rc.cpp:144 #: rc.cpp:147
msgid "Time interval" msgid "Time interval"
msgstr "Интервал обновления" msgstr "Интервал обновления"
#. i18n: file: ui/configwindow.ui:1085 #. i18n: file: ui/configwindow.ui:1095
#. i18n: ectx: property (text), widget (QLabel, label_font) #. i18n: ectx: property (text), widget (QLabel, label_font)
#: rc.cpp:147 #: rc.cpp:150
msgid "Font" msgid "Font"
msgstr "Шрифт" msgstr "Шрифт"
#. i18n: file: ui/configwindow.ui:1125 #. i18n: file: ui/configwindow.ui:1135
#. i18n: ectx: property (text), widget (QLabel, label_fontSize) #. i18n: ectx: property (text), widget (QLabel, label_fontSize)
#: rc.cpp:150 #: rc.cpp:153
msgid "Font size" msgid "Font size"
msgstr "Размер шрифта" msgstr "Размер шрифта"
#. i18n: file: ui/configwindow.ui:1180 #. i18n: file: ui/configwindow.ui:1190
#. i18n: ectx: property (text), widget (QLabel, label_color) #. i18n: ectx: property (text), widget (QLabel, label_color)
#: rc.cpp:153 #: rc.cpp:156
msgid "Font color" msgid "Font color"
msgstr "Цвет шрифта" msgstr "Цвет шрифта"
#. i18n: file: ui/configwindow.ui:1220 #. i18n: file: ui/configwindow.ui:1230
#. i18n: ectx: property (text), widget (QLabel, label_style) #. i18n: ectx: property (text), widget (QLabel, label_style)
#: rc.cpp:156 #: rc.cpp:159
msgid "Font style" msgid "Font style"
msgstr "Стиль шрифта" msgstr "Стиль шрифта"
#. i18n: file: ui/configwindow.ui:1270 #. i18n: file: ui/configwindow.ui:1280
#. i18n: ectx: property (text), widget (QLabel, label_weight) #. i18n: ectx: property (text), widget (QLabel, label_weight)
#: rc.cpp:159 #: rc.cpp:162
msgid "Font weight" msgid "Font weight"
msgstr "Ширина шрифта" msgstr "Ширина шрифта"
#: rc.cpp:160 #: rc.cpp:163
msgctxt "NAME OF TRANSLATORS" msgctxt "NAME OF TRANSLATORS"
msgid "Your names" msgid "Your names"
msgstr "Evgeniy Alekseev" msgstr "Evgeniy Alekseev"
#: rc.cpp:161 #: rc.cpp:164
msgctxt "EMAIL OF TRANSLATORS" msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails" msgid "Your emails"
msgstr "esalexeev@gmail.com" msgstr "esalexeev@gmail.com"