Add additional column to configuraion ui to better tag selection

This commit is contained in:
arcan1s 2015-08-25 00:07:23 +03:00
parent 07305d7578
commit 37726370ee
13 changed files with 408 additions and 95 deletions

View File

@ -19,5 +19,8 @@ Name=GCC
Path=gcc Path=gcc
Type=GCC Type=GCC
[Launch]
Launch Configurations=
[Project] [Project]
VersionControlSupport=kdevgit VersionControlSupport=kdevgit

View File

@ -231,15 +231,78 @@ Item {
Row { Row {
height: implicitHeight height: implicitHeight
width: parent.width 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 { QtControls.ComboBox {
id: tags id: tags
width: parent.width - addTagButton.width - showValueButton.width - addLambdaButton.width width: (parent.width - addTagButton.width - showValueButton.width - addLambdaButton.width) / 2
} }
QtControls.Button { QtControls.Button {
id: addTagButton id: addTagButton
text: i18n("Add") text: i18n("Add")
onClicked: { onClicked: {
if (!tags.currentText) return
if (debug) console.log("[widget::onClicked] : Add tag button") if (debug) console.log("[widget::onClicked] : Add tag button")
var pos = textPattern.cursorPosition var pos = textPattern.cursorPosition
@ -253,6 +316,7 @@ Item {
text: i18n("Show value") text: i18n("Show value")
onClicked: { onClicked: {
if (!tags.currentText) return
if (debug) console.log("[widget::onClicked] : Show tag button") if (debug) console.log("[widget::onClicked] : Show tag button")
var message = i18n("Tag: %1", tags.currentText) var message = i18n("Tag: %1", tags.currentText)
@ -273,7 +337,7 @@ Item {
var pos = textPattern.cursorPosition var pos = textPattern.cursorPosition
var selected = textPattern.selectedText var selected = textPattern.selectedText
textPattern.remove(textPattern.selectionStart, textPattern.selectionEnd) textPattern.remove(textPattern.selectionStart, textPattern.selectionEnd)
textPattern.insert(pos, selected + "${{}}") textPattern.insert(pos, selected + "${{\n\n}}")
} }
} }
} }
@ -343,6 +407,5 @@ Item {
// init submodule // init submodule
awKeys.initKeys(plasmoid.configuration.text) awKeys.initKeys(plasmoid.configuration.text)
tags.model = awKeys.dictKeys(true)
} }
} }

View File

@ -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 diskRegexp = QRegExp(QString("disk/(?:md|sd|hd)[a-z|0-9]_.*/Rate/(?:rblk)"));
QRegExp mountRegexp = QRegExp(QString("partitions/.*/filllevel")); QRegExp mountRegexp = QRegExp(QString("partitions/.*/filllevel"));
QRegExp tempRegexp = QRegExp(QString("lmsensors/.*"));
if (diskRegexp.indexIn(source) > -1) { if (source.contains(diskRegexp)) {
QString device = source; QString device = source;
device.remove(QString("/Rate/rblk")); device.remove(QString("/Rate/rblk"));
addKeyToCache(QString("Disk"), device); addKeyToCache(QString("Disk"), device);
} else if (mountRegexp.indexIn(source) > -1) { } else if (source.contains(mountRegexp)) {
QString device = source; QString device = source;
device.remove(QString("partitions")).remove(QString("/filllevel")); device.remove(QString("partitions")).remove(QString("/filllevel"));
addKeyToCache(QString("Mount"), device); addKeyToCache(QString("Mount"), device);
} else if (tempRegexp.indexIn(source) > -1) { } else if (source.startsWith(QString("lmsensors"))) {
addKeyToCache(QString("Temp"), source); 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;
if (debug) qDebug() << PDEBUG << ":" << "Should be sorted" << sorted;
if (debug) qDebug() << PDEBUG << ":" << "Filter" << regexp;
QStringList allKeys; QStringList allKeys;
// time // time
@ -339,7 +340,7 @@ QStringList AWKeys::dictKeys(const bool sorted) const
// sort if required // sort if required
if (sorted) allKeys.sort(); 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 mountFreeRegExp = QRegExp(QString("partitions/.*/freespace"));
QRegExp mountUsedRegExp = QRegExp(QString("partitions/.*/usedspace")); QRegExp mountUsedRegExp = QRegExp(QString("partitions/.*/usedspace"));
QRegExp netRegExp = QRegExp(QString("network/interfaces/.*/(receiver|transmitter)/data$")); QRegExp netRegExp = QRegExp(QString("network/interfaces/.*/(receiver|transmitter)/data$"));
QRegExp tempRegExp = QRegExp(QString("lmsensors/.*"));
if (sourceName == QString("battery")) { if (sourceName == QString("battery")) {
// battery // battery
@ -611,7 +611,7 @@ void AWKeys::setDataBySource(const QString sourceName, const QVariantMap data,
AWActions::sendNotification(QString("event"), i18n("Swap is used"), enablePopup); AWActions::sendNotification(QString("event"), i18n("Swap is used"), enablePopup);
// value // value
values[QString("swap")] = QString("%1").arg(value, 5, 'f', 1); values[QString("swap")] = QString("%1").arg(value, 5, 'f', 1);
} else if (sourceName.contains(tempRegExp)) { } else if (sourceName.startsWith(QString("lmsensors/"))) {
// temperature devices // temperature devices
for (int i=0; i<tempDevices.count(); i++) { for (int i=0; i<tempDevices.count(); i++) {
if (sourceName != tempDevices.at(i)) continue; if (sourceName != tempDevices.at(i)) continue;

View File

@ -52,7 +52,8 @@ public:
Q_INVOKABLE QSize toolTipSize() const; Q_INVOKABLE QSize toolTipSize() const;
// keys // keys
Q_INVOKABLE void addDevice(const QString source); Q_INVOKABLE void addDevice(const QString source);
Q_INVOKABLE QStringList dictKeys(const bool sorted = false) const; Q_INVOKABLE QStringList dictKeys(const bool sorted = false,
const QString regexp = QString()) const;
Q_INVOKABLE QStringList getHddDevices() const; Q_INVOKABLE QStringList getHddDevices() const;
Q_INVOKABLE void setDataBySource(const QString sourceName, const QVariantMap data, Q_INVOKABLE void setDataBySource(const QString sourceName, const QVariantMap data,
const QVariantMap params); const QVariantMap params);

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: https://github.com/arcan1s/awesome-widgets/issues\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: 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"
@ -237,6 +237,39 @@ msgid ""
"awesome-widgets/\">project homepage</a>" "awesome-widgets/\">project homepage</a>"
msgstr "" 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" msgid "Add"
msgstr "" msgstr ""

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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-22 14:08+0300\n" "PO-Revision-Date: 2015-08-24 21:55+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: English <kde-russian@lists.kde.ru>\n" "Language-Team: English <kde-russian@lists.kde.ru>\n"
"Language: ru\n" "Language: ru\n"
@ -242,6 +242,39 @@ msgstr ""
"Detailed information may be found on <a href=\"http://arcanis.name/projects/" "Detailed information may be found on <a href=\"http://arcanis.name/projects/"
"awesome-widgets/\">project homepage</a>" "awesome-widgets/\">project homepage</a>"
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" msgid "Add"
msgstr "Add" msgstr "Add"
@ -534,9 +567,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "Edit" #~ msgid "Edit"
#~ msgstr "Edit" #~ msgstr "Edit"
#~ msgid "Bars"
#~ msgstr "Bars"
#~ msgid "Enable popup on mouse click" #~ msgid "Enable popup on mouse click"
#~ msgstr "Enable popup on mouse click" #~ msgstr "Enable popup on mouse click"
@ -710,9 +740,6 @@ msgstr "esalexeev@gmail.com"
#~ "$uptime - system uptime\n" #~ "$uptime - system uptime\n"
#~ "$custom - custom format" #~ "$custom - custom format"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "" #~ msgid ""
#~ "$cpu - total load CPU, %\n" #~ "$cpu - total load CPU, %\n"
#~ "$cpu0 - load CPU for core 0, %\n" #~ "$cpu0 - load CPU for core 0, %\n"
@ -764,9 +791,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "$gputemp - physical temperature on GPU" #~ msgid "$gputemp - physical temperature on GPU"
#~ msgstr "$gputemp - physical temperature on GPU" #~ msgstr "$gputemp - physical temperature on GPU"
#~ msgid "Memory"
#~ msgstr "Memory"
#~ msgid "" #~ msgid ""
#~ "$mem - RAM usage, %\n" #~ "$mem - RAM usage, %\n"
#~ "$memmb - RAM usage, MB\n" #~ "$memmb - RAM usage, MB\n"
@ -829,9 +853,6 @@ msgstr "esalexeev@gmail.com"
#~ msgstr "" #~ msgstr ""
#~ "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" #~ "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
#~ msgid "Network"
#~ msgstr "Network"
#~ msgid "" #~ msgid ""
#~ "$down - download speed, KB/s\n" #~ "$down - download speed, KB/s\n"
#~ "$up - upload speed, KB/s\n" #~ "$up - upload speed, KB/s\n"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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" "PO-Revision-Date: 2015-07-31 22:13+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Spanish <kde-russian@lists.kde.ru>\n" "Language-Team: Spanish <kde-russian@lists.kde.ru>\n"
@ -246,6 +246,43 @@ msgstr ""
"Puedes encontrar información detallada en el <a href=\"http://arcanis.name/" "Puedes encontrar información detallada en el <a href=\"http://arcanis.name/"
"projects/awesome-widgets/\">sitio del proyecto</a>" "projects/awesome-widgets/\">sitio del proyecto</a>"
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" msgid "Add"
msgstr "Añadir" msgstr "Añadir"
@ -538,9 +575,6 @@ msgstr "Tu correo electrónico"
#~ msgid "Edit" #~ msgid "Edit"
#~ msgstr "Editar" #~ msgstr "Editar"
#~ msgid "Bars"
#~ msgstr "Barras"
#~ msgid "Enable popup on mouse click" #~ msgid "Enable popup on mouse click"
#~ msgstr "Habilitar ventana emergente al hacer clic" #~ msgstr "Habilitar ventana emergente al hacer clic"
@ -701,9 +735,6 @@ msgstr "Tu correo electrónico"
#~ "$uptime - tiempo de actividad del sistema\n" #~ "$uptime - tiempo de actividad del sistema\n"
#~ "$custom - formato personalizado" #~ "$custom - formato personalizado"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "" #~ msgid ""
#~ "$cpu - total load CPU, %\n" #~ "$cpu - total load CPU, %\n"
#~ "$cpu0 - load CPU for core 0, %\n" #~ "$cpu0 - load CPU for core 0, %\n"
@ -757,9 +788,6 @@ msgstr "Tu correo electrónico"
#~ msgid "$gputemp - physical temperature on GPU" #~ msgid "$gputemp - physical temperature on GPU"
#~ msgstr "$gputemp - temperatura física de la GPU" #~ msgstr "$gputemp - temperatura física de la GPU"
#~ msgid "Memory"
#~ msgstr "Memoria"
#~ msgid "" #~ msgid ""
#~ "$mem - RAM usage, %\n" #~ "$mem - RAM usage, %\n"
#~ "$memmb - RAM usage, MB\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). " #~ "$hddtempN - temperatura física en el dispositivo N (a partir de 0). "
#~ "Ejemplo: $hddtemp0" #~ "Ejemplo: $hddtemp0"
#~ msgid "Network"
#~ msgstr "Red"
#~ msgid "" #~ msgid ""
#~ "$down - download speed, KB/s\n" #~ "$down - download speed, KB/s\n"
#~ "$up - upload speed, KB/s\n" #~ "$up - upload speed, KB/s\n"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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" "PO-Revision-Date: 2015-07-31 22:16+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: French <kde-russian@lists.kde.ru>\n" "Language-Team: French <kde-russian@lists.kde.ru>\n"
@ -248,6 +248,43 @@ msgstr ""
"D'avantage d'informations se trouvent sur <a href=\"http://arcanis.name/" "D'avantage d'informations se trouvent sur <a href=\"http://arcanis.name/"
"projects/awesome-widgets/\">la page du projet</a>" "projects/awesome-widgets/\">la page du projet</a>"
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" msgid "Add"
msgstr "Ajouter" msgstr "Ajouter"
@ -702,9 +739,6 @@ msgstr "esalexeev@gmail.com mermouy@gmail.com"
#~ "$uptime - temps de fonctionnement\n" #~ "$uptime - temps de fonctionnement\n"
#~ "$custom - format personnalisé" #~ "$custom - format personnalisé"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "" #~ msgid ""
#~ "$cpu - total load CPU, %\n" #~ "$cpu - total load CPU, %\n"
#~ "$cpu0 - load CPU for core 0, %\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" #~ msgid "$gputemp - physical temperature on GPU"
#~ msgstr "$gputemp - Température physique du processeur graphique" #~ msgstr "$gputemp - Température physique du processeur graphique"
#~ msgid "Memory"
#~ msgstr "Mémoire"
#~ msgid "" #~ msgid ""
#~ "$mem - RAM usage, %\n" #~ "$mem - RAM usage, %\n"
#~ "$memmb - RAM usage, MB\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). " #~ "$hddtempN - température physique du périphérique N (à partir de 0). "
#~ "Exemple: $hddtemp0" #~ "Exemple: $hddtemp0"
#~ msgid "Network"
#~ msgstr "Réseau"
#~ msgid "" #~ msgid ""
#~ "$down - download speed, KB/s\n" #~ "$down - download speed, KB/s\n"
#~ "$up - upload speed, KB/s\n" #~ "$up - upload speed, KB/s\n"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Awesome widgets\n" "Project-Id-Version: Awesome widgets\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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" "PO-Revision-Date: 2015-08-20 22:52+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Dutch <kde-i18n-nl@kde.org>\n" "Language-Team: Dutch <kde-i18n-nl@kde.org>\n"
@ -248,6 +248,42 @@ msgstr ""
"Gedetailleerde informatie kan worden gevonden op de <a href=\"http://arcanis." "Gedetailleerde informatie kan worden gevonden op de <a href=\"http://arcanis."
"name/projects/awesome-widgets/\">projectwebsite</a>" "name/projects/awesome-widgets/\">projectwebsite</a>"
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" msgid "Add"
msgstr "Toevoegen" msgstr "Toevoegen"
@ -545,9 +581,6 @@ msgstr "vistausss@outlook.com"
#~ msgid "Select color" #~ msgid "Select color"
#~ msgstr "Kleur selecteren" #~ msgstr "Kleur selecteren"
#~ msgid "Bars"
#~ msgstr "Balken"
#~ msgid "Enable popup on mouse click" #~ msgid "Enable popup on mouse click"
#~ msgstr "Pop-up bij muisklik inschakelen" #~ msgstr "Pop-up bij muisklik inschakelen"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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" "PO-Revision-Date: 2015-07-31 22:21+0300\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"
@ -246,6 +246,43 @@ msgstr ""
"Informações detalhadas podem ser encontradas na <a href=\"http://arcanis." "Informações detalhadas podem ser encontradas na <a href=\"http://arcanis."
"name/projects/awesome-widgets/\">página do projeto</a>" "name/projects/awesome-widgets/\">página do projeto</a>"
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" msgid "Add"
msgstr "Adicionar" msgstr "Adicionar"
@ -532,9 +569,6 @@ msgstr "under@insicuri.net"
#~ msgid "Edit" #~ msgid "Edit"
#~ msgstr "Editar" #~ msgstr "Editar"
#~ msgid "Bars"
#~ msgstr "Barras"
#~ msgid "Enable popup on mouse click" #~ msgid "Enable popup on mouse click"
#~ msgstr "Ativar popup no clique do mouse" #~ msgstr "Ativar popup no clique do mouse"
@ -693,9 +727,6 @@ msgstr "under@insicuri.net"
#~ "$uptime - tempo em atividade do sistema\n" #~ "$uptime - tempo em atividade do sistema\n"
#~ "$custom - formato personalizado " #~ "$custom - formato personalizado "
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "" #~ msgid ""
#~ "$cpu - total load CPU, %\n" #~ "$cpu - total load CPU, %\n"
#~ "$cpu0 - load CPU for core 0, %\n" #~ "$cpu0 - load CPU for core 0, %\n"
@ -749,9 +780,6 @@ msgstr "under@insicuri.net"
#~ msgid "$gputemp - physical temperature on GPU" #~ msgid "$gputemp - physical temperature on GPU"
#~ msgstr "$gputemp - temperatura física da GPU" #~ msgstr "$gputemp - temperatura física da GPU"
#~ msgid "Memory"
#~ msgstr "Memória"
#~ msgid "" #~ msgid ""
#~ "$mem - RAM usage, %\n" #~ "$mem - RAM usage, %\n"
#~ "$memmb - RAM usage, MB\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). " #~ "$hddtempN - temperatura física no dispositivo N (começando por 0). "
#~ "Exemplo: $hddtemp0" #~ "Exemplo: $hddtemp0"
#~ msgid "Network"
#~ msgstr "Rede"
#~ msgid "" #~ msgid ""
#~ "$down - download speed, KB/s\n" #~ "$down - download speed, KB/s\n"
#~ "$up - upload speed, KB/s\n" #~ "$up - upload speed, KB/s\n"

View File

@ -6,8 +6,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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-22 14:08+0300\n" "PO-Revision-Date: 2015-08-24 21:55+0300\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"
@ -243,6 +243,39 @@ msgstr ""
"Подробная информация может быть найдена на <a href=\"http://arcanis.name/ru/" "Подробная информация может быть найдена на <a href=\"http://arcanis.name/ru/"
"projects/awesome-widgets/\">домашней странице проекта</a>" "projects/awesome-widgets/\">домашней странице проекта</a>"
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" msgid "Add"
msgstr "Добавить" msgstr "Добавить"
@ -535,9 +568,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "Edit" #~ msgid "Edit"
#~ msgstr "Править" #~ msgstr "Править"
#~ msgid "Bars"
#~ msgstr "Бары"
#~ msgid "Enable popup on mouse click" #~ msgid "Enable popup on mouse click"
#~ msgstr "Включить сообщения по клику мыши" #~ msgstr "Включить сообщения по клику мыши"
@ -711,9 +741,6 @@ msgstr "esalexeev@gmail.com"
#~ "$uptime - время работы\n" #~ "$uptime - время работы\n"
#~ "$custom - свой формат" #~ "$custom - свой формат"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "" #~ msgid ""
#~ "$cpu - total load CPU, %\n" #~ "$cpu - total load CPU, %\n"
#~ "$cpu0 - load CPU for core 0, %\n" #~ "$cpu0 - load CPU for core 0, %\n"
@ -766,9 +793,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "$gputemp - physical temperature on GPU" #~ msgid "$gputemp - physical temperature on GPU"
#~ msgstr "$gputemp - физическая температура на GPU" #~ msgstr "$gputemp - физическая температура на GPU"
#~ msgid "Memory"
#~ msgstr "Память"
#~ msgid "" #~ msgid ""
#~ "$mem - RAM usage, %\n" #~ "$mem - RAM usage, %\n"
#~ "$memmb - RAM usage, MB\n" #~ "$memmb - RAM usage, MB\n"
@ -829,9 +853,6 @@ msgstr "esalexeev@gmail.com"
#~ "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0" #~ "$hddtempN - physical temperature on device N (from 0). Example: $hddtemp0"
#~ msgstr "$hddtempN - температура на устройстве N (от 0). Пример: $hddtemp0" #~ msgstr "$hddtempN - температура на устройстве N (от 0). Пример: $hddtemp0"
#~ msgid "Network"
#~ msgstr "Сеть"
#~ msgid "" #~ msgid ""
#~ "$down - download speed, KB/s\n" #~ "$down - download speed, KB/s\n"
#~ "$up - upload speed, KB/s\n" #~ "$up - upload speed, KB/s\n"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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" "PO-Revision-Date: 2015-07-31 22:23+0300\n"
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n" "Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
"Language-Team: Ukrainian <kde-russian@lists.kde.ru>\n" "Language-Team: Ukrainian <kde-russian@lists.kde.ru>\n"
@ -246,6 +246,43 @@ msgstr ""
"Детальна інформація може бути знайдена на <a href=\"http://arcanis.name/" "Детальна інформація може бути знайдена на <a href=\"http://arcanis.name/"
"projects/awesome-widgets/\">домашній сторінці проекту</a>" "projects/awesome-widgets/\">домашній сторінці проекту</a>"
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" msgid "Add"
msgstr "Додати" msgstr "Додати"
@ -541,9 +578,6 @@ msgstr "sarumyan@i.ua"
#~ msgid "Edit" #~ msgid "Edit"
#~ msgstr "Редагувати" #~ msgstr "Редагувати"
#~ msgid "Bars"
#~ msgstr "Бари"
#~ msgid "Enable popup on mouse click" #~ msgid "Enable popup on mouse click"
#~ msgstr "Включити спливаючі підказки при натисканні клавіші миші" #~ msgstr "Включити спливаючі підказки при натисканні клавіші миші"
@ -704,9 +738,6 @@ msgstr "sarumyan@i.ua"
#~ "$uptime - час роботи\n" #~ "$uptime - час роботи\n"
#~ "$custom - свій формат" #~ "$custom - свій формат"
#~ msgid "CPU"
#~ msgstr "CPU"
#~ msgid "" #~ msgid ""
#~ "$cpu - total load CPU, %\n" #~ "$cpu - total load CPU, %\n"
#~ "$cpu0 - load CPU for core 0, %\n" #~ "$cpu0 - load CPU for core 0, %\n"
@ -758,9 +789,6 @@ msgstr "sarumyan@i.ua"
#~ msgid "$gputemp - physical temperature on GPU" #~ msgid "$gputemp - physical temperature on GPU"
#~ msgstr "$gputemp - фізична температура на GPU" #~ msgstr "$gputemp - фізична температура на GPU"
#~ msgid "Memory"
#~ msgstr "Пам’ять"
#~ msgid "" #~ msgid ""
#~ "$mem - RAM usage, %\n" #~ "$mem - RAM usage, %\n"
#~ "$memmb - RAM usage, MB\n" #~ "$memmb - RAM usage, MB\n"
@ -819,9 +847,6 @@ msgstr "sarumyan@i.ua"
#~ msgstr "" #~ msgstr ""
#~ "$hddtempN - фізична температура на пристрої N (від 0). Приклад: $hddtemp" #~ "$hddtempN - фізична температура на пристрої N (від 0). Приклад: $hddtemp"
#~ msgid "Network"
#~ msgstr "Мережа"
#~ msgid "" #~ msgid ""
#~ "$down - download speed, KB/s\n" #~ "$down - download speed, KB/s\n"
#~ "$up - upload speed, KB/s\n" #~ "$up - upload speed, KB/s\n"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\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" "PO-Revision-Date: 2015-07-31 22:24+0300\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"
@ -247,6 +247,41 @@ msgstr ""
"详情请参照 <a href=\"http://arcanis.name/projects/ awesome-widgets/\">项目主" "详情请参照 <a href=\"http://arcanis.name/projects/ awesome-widgets/\">项目主"
"页</a>" "页</a>"
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" msgid "Add"
msgstr "添加" msgstr "添加"