diff --git a/sources/.kdev4/awesomewidgets.kdev4 b/sources/.kdev4/awesomewidgets.kdev4 index b97529b..06b7657 100644 --- a/sources/.kdev4/awesomewidgets.kdev4 +++ b/sources/.kdev4/awesomewidgets.kdev4 @@ -19,5 +19,8 @@ Name=GCC Path=gcc Type=GCC +[Launch] +Launch Configurations= + [Project] VersionControlSupport=kdevgit diff --git a/sources/awesome-widget/package/contents/ui/widget.qml b/sources/awesome-widget/package/contents/ui/widget.qml index f9fe007..a43987f 100644 --- a/sources/awesome-widget/package/contents/ui/widget.qml +++ b/sources/awesome-widget/package/contents/ui/widget.qml @@ -231,15 +231,78 @@ Item { Row { height: implicitHeight width: parent.width + QtControls.ComboBox { + width: (parent.width - addTagButton.width - showValueButton.width - addLambdaButton.width) / 2 + textRole: "label" + model: [ + { + 'label': i18n("AC"), + 'regexp': "^(ac|bat).*" + }, + { + 'label': i18n("Bars"), + 'regexp': "^bar.*" + }, + { + 'label': i18n("CPU"), + 'regexp': "^(cpu|gpu|la|ps|temp(?!erature)).*" + }, + { + 'label': i18n("Desktops"), + 'regexp': "^(n|t)?desktop(s)?" + }, + { + 'label': i18n("HDD"), + 'regexp': "^hdd.*" + }, + { + 'label': i18n("Memory"), + 'regexp': "^(mem|swap).*" + }, + { + 'label': i18n("Network"), + 'regexp': "^(netdev|(down|up(?!time)).*)" + }, + { + 'label': i18n("Music player"), + 'regexp': "^(album|artist|duration|progress|title)" + }, + { + 'label': i18n("Scripts"), + 'regexp': "^custom.*" + }, + { + 'label': i18n("Time"), + 'regexp': ".*time$" + }, + { + 'label': i18n("Quotes"), + 'regexp': "^(perc)?(ask|bid|price)(chg)?.*" + }, + { + 'label': i18n("Upgrades"), + 'regexp': "^pkgcount.*" + }, + { + 'label': i18n("Weathers"), + 'regexp': "^(weather(Id)?|humidity|pressure|temperature|timestamp)" + } + ] + onCurrentIndexChanged: { + tags.model = awKeys.dictKeys(true, model[currentIndex]["regexp"]) + tags.currentIndex = -1 + } + } QtControls.ComboBox { id: tags - width: parent.width - addTagButton.width - showValueButton.width - addLambdaButton.width + width: (parent.width - addTagButton.width - showValueButton.width - addLambdaButton.width) / 2 } QtControls.Button { id: addTagButton text: i18n("Add") onClicked: { + if (!tags.currentText) return if (debug) console.log("[widget::onClicked] : Add tag button") var pos = textPattern.cursorPosition @@ -253,6 +316,7 @@ Item { text: i18n("Show value") onClicked: { + if (!tags.currentText) return if (debug) console.log("[widget::onClicked] : Show tag button") var message = i18n("Tag: %1", tags.currentText) @@ -273,7 +337,7 @@ Item { var pos = textPattern.cursorPosition var selected = textPattern.selectedText textPattern.remove(textPattern.selectionStart, textPattern.selectionEnd) - textPattern.insert(pos, selected + "${{}}") + textPattern.insert(pos, selected + "${{\n\n}}") } } } @@ -343,6 +407,5 @@ Item { // init submodule awKeys.initKeys(plasmoid.configuration.text) - tags.model = awKeys.dictKeys(true) } } diff --git a/sources/awesome-widget/plugin/awkeys.cpp b/sources/awesome-widget/plugin/awkeys.cpp index e134870..89f4077 100644 --- a/sources/awesome-widget/plugin/awkeys.cpp +++ b/sources/awesome-widget/plugin/awkeys.cpp @@ -171,25 +171,26 @@ void AWKeys::addDevice(const QString source) QRegExp diskRegexp = QRegExp(QString("disk/(?:md|sd|hd)[a-z|0-9]_.*/Rate/(?:rblk)")); QRegExp mountRegexp = QRegExp(QString("partitions/.*/filllevel")); - QRegExp tempRegexp = QRegExp(QString("lmsensors/.*")); - if (diskRegexp.indexIn(source) > -1) { + if (source.contains(diskRegexp)) { QString device = source; device.remove(QString("/Rate/rblk")); addKeyToCache(QString("Disk"), device); - } else if (mountRegexp.indexIn(source) > -1) { + } else if (source.contains(mountRegexp)) { QString device = source; device.remove(QString("partitions")).remove(QString("/filllevel")); addKeyToCache(QString("Mount"), device); - } else if (tempRegexp.indexIn(source) > -1) { + } else if (source.startsWith(QString("lmsensors"))) { addKeyToCache(QString("Temp"), source); } } -QStringList AWKeys::dictKeys(const bool sorted) const +QStringList AWKeys::dictKeys(const bool sorted, const QString regexp) const { if (debug) qDebug() << PDEBUG; + if (debug) qDebug() << PDEBUG << ":" << "Should be sorted" << sorted; + if (debug) qDebug() << PDEBUG << ":" << "Filter" << regexp; QStringList allKeys; // time @@ -339,7 +340,7 @@ QStringList AWKeys::dictKeys(const bool sorted) const // sort if required if (sorted) allKeys.sort(); - return allKeys; + return allKeys.filter(QRegExp(regexp)); } @@ -377,7 +378,6 @@ void AWKeys::setDataBySource(const QString sourceName, const QVariantMap data, QRegExp mountFreeRegExp = QRegExp(QString("partitions/.*/freespace")); QRegExp mountUsedRegExp = QRegExp(QString("partitions/.*/usedspace")); QRegExp netRegExp = QRegExp(QString("network/interfaces/.*/(receiver|transmitter)/data$")); - QRegExp tempRegExp = QRegExp(QString("lmsensors/.*")); if (sourceName == QString("battery")) { // battery @@ -611,7 +611,7 @@ void AWKeys::setDataBySource(const QString sourceName, const QVariantMap data, AWActions::sendNotification(QString("event"), i18n("Swap is used"), enablePopup); // value values[QString("swap")] = QString("%1").arg(value, 5, 'f', 1); - } else if (sourceName.contains(tempRegExp)) { + } else if (sourceName.startsWith(QString("lmsensors/"))) { // temperature devices for (int i=0; i\n" "Language-Team: LANGUAGE \n" @@ -237,6 +237,39 @@ msgid "" "awesome-widgets/\">project homepage" msgstr "" +msgid "AC" +msgstr "" + +msgid "Bars" +msgstr "" + +msgid "CPU" +msgstr "" + +msgid "Desktops" +msgstr "" + +msgid "Memory" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "Scripts" +msgstr "" + +msgid "Time" +msgstr "" + +msgid "Quotes" +msgstr "" + +msgid "Upgrades" +msgstr "" + +msgid "Weathers" +msgstr "" + msgid "Add" msgstr "" diff --git a/sources/translations/en.po b/sources/translations/en.po index 4387379..25a5b55 100644 --- a/sources/translations/en.po +++ b/sources/translations/en.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" -"PO-Revision-Date: 2015-08-22 14:08+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" +"PO-Revision-Date: 2015-08-24 21:55+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: English \n" "Language: ru\n" @@ -242,6 +242,39 @@ msgstr "" "Detailed information may be found on project homepage" +msgid "AC" +msgstr "AC" + +msgid "Bars" +msgstr "Bars" + +msgid "CPU" +msgstr "CPU" + +msgid "Desktops" +msgstr "Desktops" + +msgid "Memory" +msgstr "Memory" + +msgid "Network" +msgstr "Network" + +msgid "Scripts" +msgstr "Scripts" + +msgid "Time" +msgstr "Time" + +msgid "Quotes" +msgstr "Quotes" + +msgid "Upgrades" +msgstr "Upgrades" + +msgid "Weathers" +msgstr "Weathers" + msgid "Add" msgstr "Add" @@ -534,9 +567,6 @@ msgstr "esalexeev@gmail.com" #~ msgid "Edit" #~ msgstr "Edit" -#~ msgid "Bars" -#~ msgstr "Bars" - #~ msgid "Enable popup on mouse click" #~ msgstr "Enable popup on mouse click" @@ -710,9 +740,6 @@ msgstr "esalexeev@gmail.com" #~ "$uptime - system uptime\n" #~ "$custom - custom format" -#~ msgid "CPU" -#~ msgstr "CPU" - #~ msgid "" #~ "$cpu - total load CPU, %\n" #~ "$cpu0 - load CPU for core 0, %\n" @@ -764,9 +791,6 @@ msgstr "esalexeev@gmail.com" #~ msgid "$gputemp - physical temperature on GPU" #~ msgstr "$gputemp - physical temperature on GPU" -#~ msgid "Memory" -#~ msgstr "Memory" - #~ msgid "" #~ "$mem - RAM usage, %\n" #~ "$memmb - RAM usage, MB\n" @@ -829,9 +853,6 @@ msgstr "esalexeev@gmail.com" #~ msgstr "" #~ "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" -#~ msgid "Network" -#~ msgstr "Network" - #~ msgid "" #~ "$down - download speed, KB/s\n" #~ "$up - upload speed, KB/s\n" diff --git a/sources/translations/es.po b/sources/translations/es.po index cd20610..cd4e8a5 100644 --- a/sources/translations/es.po +++ b/sources/translations/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" "PO-Revision-Date: 2015-07-31 22:13+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Spanish \n" @@ -246,6 +246,43 @@ msgstr "" "Puedes encontrar información detallada en el sitio del proyecto" +msgid "AC" +msgstr "" + +msgid "Bars" +msgstr "Barras" + +msgid "CPU" +msgstr "CPU" + +msgid "Desktops" +msgstr "" + +msgid "Memory" +msgstr "Memoria" + +msgid "Network" +msgstr "Red" + +#, fuzzy +msgid "Scripts" +msgstr "Editar scripts" + +#, fuzzy +msgid "Time" +msgstr "Hora" + +#, fuzzy +msgid "Quotes" +msgstr "Monitor de citas" + +msgid "Upgrades" +msgstr "" + +#, fuzzy +msgid "Weathers" +msgstr "Editar tickets" + msgid "Add" msgstr "Añadir" @@ -538,9 +575,6 @@ msgstr "Tu correo electrónico" #~ msgid "Edit" #~ msgstr "Editar" -#~ msgid "Bars" -#~ msgstr "Barras" - #~ msgid "Enable popup on mouse click" #~ msgstr "Habilitar ventana emergente al hacer clic" @@ -701,9 +735,6 @@ msgstr "Tu correo electrónico" #~ "$uptime - tiempo de actividad del sistema\n" #~ "$custom - formato personalizado" -#~ msgid "CPU" -#~ msgstr "CPU" - #~ msgid "" #~ "$cpu - total load CPU, %\n" #~ "$cpu0 - load CPU for core 0, %\n" @@ -757,9 +788,6 @@ msgstr "Tu correo electrónico" #~ msgid "$gputemp - physical temperature on GPU" #~ msgstr "$gputemp - temperatura física de la GPU" -#~ msgid "Memory" -#~ msgstr "Memoria" - #~ msgid "" #~ "$mem - RAM usage, %\n" #~ "$memmb - RAM usage, MB\n" @@ -829,9 +857,6 @@ msgstr "Tu correo electrónico" #~ "$hddtempN - temperatura física en el dispositivo N (a partir de 0). " #~ "Ejemplo: $hddtemp0" -#~ msgid "Network" -#~ msgstr "Red" - #~ msgid "" #~ "$down - download speed, KB/s\n" #~ "$up - upload speed, KB/s\n" diff --git a/sources/translations/fr.po b/sources/translations/fr.po index a4b5472..d2bd10d 100644 --- a/sources/translations/fr.po +++ b/sources/translations/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" "PO-Revision-Date: 2015-07-31 22:16+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: French \n" @@ -248,6 +248,43 @@ msgstr "" "D'avantage d'informations se trouvent sur la page du projet" +msgid "AC" +msgstr "" + +msgid "Bars" +msgstr "" + +msgid "CPU" +msgstr "CPU" + +msgid "Desktops" +msgstr "" + +msgid "Memory" +msgstr "Mémoire" + +msgid "Network" +msgstr "Réseau" + +#, fuzzy +msgid "Scripts" +msgstr "Modifier les scripts" + +#, fuzzy +msgid "Time" +msgstr "Durée" + +#, fuzzy +msgid "Quotes" +msgstr "Moniteur de citations" + +msgid "Upgrades" +msgstr "" + +#, fuzzy +msgid "Weathers" +msgstr "Modifier les tickers" + msgid "Add" msgstr "Ajouter" @@ -702,9 +739,6 @@ msgstr "esalexeev@gmail.com mermouy@gmail.com" #~ "$uptime - temps de fonctionnement\n" #~ "$custom - format personnalisé" -#~ msgid "CPU" -#~ msgstr "CPU" - #~ msgid "" #~ "$cpu - total load CPU, %\n" #~ "$cpu0 - load CPU for core 0, %\n" @@ -754,9 +788,6 @@ msgstr "esalexeev@gmail.com mermouy@gmail.com" #~ msgid "$gputemp - physical temperature on GPU" #~ msgstr "$gputemp - Température physique du processeur graphique" -#~ msgid "Memory" -#~ msgstr "Mémoire" - #~ msgid "" #~ "$mem - RAM usage, %\n" #~ "$memmb - RAM usage, MB\n" @@ -824,9 +855,6 @@ msgstr "esalexeev@gmail.com mermouy@gmail.com" #~ "$hddtempN - température physique du périphérique N (à partir de 0). " #~ "Exemple: $hddtemp0" -#~ msgid "Network" -#~ msgstr "Réseau" - #~ msgid "" #~ "$down - download speed, KB/s\n" #~ "$up - upload speed, KB/s\n" diff --git a/sources/translations/nl.po b/sources/translations/nl.po index 79c92e8..c795875 100644 --- a/sources/translations/nl.po +++ b/sources/translations/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Awesome widgets\n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" "PO-Revision-Date: 2015-08-20 22:52+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Dutch \n" @@ -248,6 +248,42 @@ msgstr "" "Gedetailleerde informatie kan worden gevonden op de projectwebsite" +msgid "AC" +msgstr "" + +msgid "Bars" +msgstr "Balken" + +msgid "CPU" +msgstr "" + +msgid "Desktops" +msgstr "" + +#, fuzzy +msgid "Memory" +msgstr "Geheugenkleur" + +msgid "Network" +msgstr "" + +#, fuzzy +msgid "Scripts" +msgstr "Scripts bewerken" + +msgid "Time" +msgstr "" + +msgid "Quotes" +msgstr "" + +msgid "Upgrades" +msgstr "" + +#, fuzzy +msgid "Weathers" +msgstr "Balken bewerken" + msgid "Add" msgstr "Toevoegen" @@ -545,9 +581,6 @@ msgstr "vistausss@outlook.com" #~ msgid "Select color" #~ msgstr "Kleur selecteren" -#~ msgid "Bars" -#~ msgstr "Balken" - #~ msgid "Enable popup on mouse click" #~ msgstr "Pop-up bij muisklik inschakelen" diff --git a/sources/translations/pt_BR.po b/sources/translations/pt_BR.po index 98c072d..667930a 100644 --- a/sources/translations/pt_BR.po +++ b/sources/translations/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" "PO-Revision-Date: 2015-07-31 22:21+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Russian \n" @@ -246,6 +246,43 @@ msgstr "" "Informações detalhadas podem ser encontradas na página do projeto" +msgid "AC" +msgstr "" + +msgid "Bars" +msgstr "Barras" + +msgid "CPU" +msgstr "CPU" + +msgid "Desktops" +msgstr "" + +msgid "Memory" +msgstr "Memória" + +msgid "Network" +msgstr "Rede" + +#, fuzzy +msgid "Scripts" +msgstr "Editar scripts" + +#, fuzzy +msgid "Time" +msgstr "Hora" + +#, fuzzy +msgid "Quotes" +msgstr "Monitor de citações" + +msgid "Upgrades" +msgstr "" + +#, fuzzy +msgid "Weathers" +msgstr "Editar relógios" + msgid "Add" msgstr "Adicionar" @@ -532,9 +569,6 @@ msgstr "under@insicuri.net" #~ msgid "Edit" #~ msgstr "Editar" -#~ msgid "Bars" -#~ msgstr "Barras" - #~ msgid "Enable popup on mouse click" #~ msgstr "Ativar popup no clique do mouse" @@ -693,9 +727,6 @@ msgstr "under@insicuri.net" #~ "$uptime - tempo em atividade do sistema\n" #~ "$custom - formato personalizado " -#~ msgid "CPU" -#~ msgstr "CPU" - #~ msgid "" #~ "$cpu - total load CPU, %\n" #~ "$cpu0 - load CPU for core 0, %\n" @@ -749,9 +780,6 @@ msgstr "under@insicuri.net" #~ msgid "$gputemp - physical temperature on GPU" #~ msgstr "$gputemp - temperatura física da GPU" -#~ msgid "Memory" -#~ msgstr "Memória" - #~ msgid "" #~ "$mem - RAM usage, %\n" #~ "$memmb - RAM usage, MB\n" @@ -820,9 +848,6 @@ msgstr "under@insicuri.net" #~ "$hddtempN - temperatura física no dispositivo N (começando por 0). " #~ "Exemplo: $hddtemp0" -#~ msgid "Network" -#~ msgstr "Rede" - #~ msgid "" #~ "$down - download speed, KB/s\n" #~ "$up - upload speed, KB/s\n" diff --git a/sources/translations/ru.po b/sources/translations/ru.po index 3d8670c..1a24570 100644 --- a/sources/translations/ru.po +++ b/sources/translations/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" -"PO-Revision-Date: 2015-08-22 14:08+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" +"PO-Revision-Date: 2015-08-24 21:55+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Russian \n" "Language: ru\n" @@ -243,6 +243,39 @@ msgstr "" "Подробная информация может быть найдена на домашней странице проекта" +msgid "AC" +msgstr "Адаптор питания" + +msgid "Bars" +msgstr "Бары" + +msgid "CPU" +msgstr "CPU" + +msgid "Desktops" +msgstr "Рабочие столы" + +msgid "Memory" +msgstr "Память" + +msgid "Network" +msgstr "Сеть" + +msgid "Scripts" +msgstr "Скрипты" + +msgid "Time" +msgstr "Время" + +msgid "Quotes" +msgstr "Котировоки" + +msgid "Upgrades" +msgstr "Обновления" + +msgid "Weathers" +msgstr "Погода" + msgid "Add" msgstr "Добавить" @@ -535,9 +568,6 @@ msgstr "esalexeev@gmail.com" #~ msgid "Edit" #~ msgstr "Править" -#~ msgid "Bars" -#~ msgstr "Бары" - #~ msgid "Enable popup on mouse click" #~ msgstr "Включить сообщения по клику мыши" @@ -711,9 +741,6 @@ msgstr "esalexeev@gmail.com" #~ "$uptime - время работы\n" #~ "$custom - свой формат" -#~ msgid "CPU" -#~ msgstr "CPU" - #~ msgid "" #~ "$cpu - total load CPU, %\n" #~ "$cpu0 - load CPU for core 0, %\n" @@ -766,9 +793,6 @@ msgstr "esalexeev@gmail.com" #~ msgid "$gputemp - physical temperature on GPU" #~ msgstr "$gputemp - физическая температура на GPU" -#~ msgid "Memory" -#~ msgstr "Память" - #~ msgid "" #~ "$mem - RAM usage, %\n" #~ "$memmb - RAM usage, MB\n" @@ -829,9 +853,6 @@ msgstr "esalexeev@gmail.com" #~ "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" #~ msgstr "$hddtempN - температура на устройстве N (от 0). Пример: $hddtemp0" -#~ msgid "Network" -#~ msgstr "Сеть" - #~ msgid "" #~ "$down - download speed, KB/s\n" #~ "$up - upload speed, KB/s\n" diff --git a/sources/translations/uk.po b/sources/translations/uk.po index 7a82a42..e61feb4 100644 --- a/sources/translations/uk.po +++ b/sources/translations/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" "PO-Revision-Date: 2015-07-31 22:23+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Ukrainian \n" @@ -246,6 +246,43 @@ msgstr "" "Детальна інформація може бути знайдена на домашній сторінці проекту" +msgid "AC" +msgstr "" + +msgid "Bars" +msgstr "Бари" + +msgid "CPU" +msgstr "CPU" + +msgid "Desktops" +msgstr "" + +msgid "Memory" +msgstr "Пам’ять" + +msgid "Network" +msgstr "Мережа" + +#, fuzzy +msgid "Scripts" +msgstr "Редагувати скрипти" + +#, fuzzy +msgid "Time" +msgstr "Час" + +#, fuzzy +msgid "Quotes" +msgstr "Монітор котирувань" + +msgid "Upgrades" +msgstr "" + +#, fuzzy +msgid "Weathers" +msgstr "Редагувати тікети" + msgid "Add" msgstr "Додати" @@ -541,9 +578,6 @@ msgstr "sarumyan@i.ua" #~ msgid "Edit" #~ msgstr "Редагувати" -#~ msgid "Bars" -#~ msgstr "Бари" - #~ msgid "Enable popup on mouse click" #~ msgstr "Включити спливаючі підказки при натисканні клавіші миші" @@ -704,9 +738,6 @@ msgstr "sarumyan@i.ua" #~ "$uptime - час роботи\n" #~ "$custom - свій формат" -#~ msgid "CPU" -#~ msgstr "CPU" - #~ msgid "" #~ "$cpu - total load CPU, %\n" #~ "$cpu0 - load CPU for core 0, %\n" @@ -758,9 +789,6 @@ msgstr "sarumyan@i.ua" #~ msgid "$gputemp - physical temperature on GPU" #~ msgstr "$gputemp - фізична температура на GPU" -#~ msgid "Memory" -#~ msgstr "Пам’ять" - #~ msgid "" #~ "$mem - RAM usage, %\n" #~ "$memmb - RAM usage, MB\n" @@ -819,9 +847,6 @@ msgstr "sarumyan@i.ua" #~ msgstr "" #~ "$hddtempN - фізична температура на пристрої N (від 0). Приклад: $hddtemp" -#~ msgid "Network" -#~ msgstr "Мережа" - #~ msgid "" #~ "$down - download speed, KB/s\n" #~ "$up - upload speed, KB/s\n" diff --git a/sources/translations/zh.po b/sources/translations/zh.po index 1823a05..9db10ba 100644 --- a/sources/translations/zh.po +++ b/sources/translations/zh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n" -"POT-Creation-Date: 2015-08-22 14:06+0300\n" +"POT-Creation-Date: 2015-08-24 21:54+0300\n" "PO-Revision-Date: 2015-07-31 22:24+0300\n" "Last-Translator: Evgeniy Alekseev \n" "Language-Team: Russian \n" @@ -247,6 +247,41 @@ msgstr "" "详情请参照 项目主" "页" +msgid "AC" +msgstr "" + +msgid "Bars" +msgstr "" + +msgid "CPU" +msgstr "" + +msgid "Desktops" +msgstr "" + +#, fuzzy +msgid "Memory" +msgstr "内存显示颜色" + +msgid "Network" +msgstr "" + +msgid "Scripts" +msgstr "" + +msgid "Time" +msgstr "" + +msgid "Quotes" +msgstr "" + +msgid "Upgrades" +msgstr "" + +#, fuzzy +msgid "Weathers" +msgstr "可编辑的" + msgid "Add" msgstr "添加"