From 906ad56c46192d80d0f137cd11382a7ddadd8c06 Mon Sep 17 00:00:00 2001
From: arcan1s
Date: Tue, 17 May 2016 14:22:12 +0300
Subject: [PATCH] Rename some properties in GI.
Actually properties height and width are QDialog ones, just rename them
to ones with `item` prefix. No configuration keys were changed.
Update translations as well.
---
.../plugin/awformatterhelper.cpp | 4 +-
.../awesome-widget/plugin/awformatterhelper.h | 2 +-
sources/awesomewidgets/awabstractformatter.h | 2 +-
sources/awesomewidgets/graphicalitem.cpp | 88 +++++++++----------
sources/awesomewidgets/graphicalitem.h | 14 +--
sources/translations/awesome-widgets.pot | 47 ++++++++--
sources/translations/en.po | 55 +++++++++---
sources/translations/es.po | 82 +++++++++++++----
sources/translations/fr.po | 54 +++++++++---
sources/translations/nl_NL.po | 52 +++++++++--
sources/translations/pl.po | 52 +++++++++--
sources/translations/pt_BR.po | 55 +++++++++---
sources/translations/ru.po | 55 +++++++++---
sources/translations/uk.po | 55 +++++++++---
sources/translations/zh.po | 52 +++++++++--
15 files changed, 510 insertions(+), 159 deletions(-)
diff --git a/sources/awesome-widget/plugin/awformatterhelper.cpp b/sources/awesome-widget/plugin/awformatterhelper.cpp
index 7dccc84..a0349b8 100644
--- a/sources/awesome-widget/plugin/awformatterhelper.cpp
+++ b/sources/awesome-widget/plugin/awformatterhelper.cpp
@@ -35,9 +35,7 @@ AWFormatterHelper::AWFormatterHelper(QWidget *parent)
{
qCDebug(LOG_AW) << __PRETTY_FUNCTION__;
-#ifdef BUILD_FUTURE
initItems();
-#endif /* BUILD_FUTURE */
}
@@ -51,7 +49,7 @@ AWFormatterHelper::~AWFormatterHelper()
QString AWFormatterHelper::convert(const QVariant &value,
- const QString name) const
+ const QString &name) const
{
qCDebug(LOG_AW) << "Convert value" << value << "for" << name;
diff --git a/sources/awesome-widget/plugin/awformatterhelper.h b/sources/awesome-widget/plugin/awformatterhelper.h
index 81eb324..657871e 100644
--- a/sources/awesome-widget/plugin/awformatterhelper.h
+++ b/sources/awesome-widget/plugin/awformatterhelper.h
@@ -33,7 +33,7 @@ public:
explicit AWFormatterHelper(QWidget *parent = nullptr);
virtual ~AWFormatterHelper();
- QString convert(const QVariant &value, const QString name) const;
+ QString convert(const QVariant &value, const QString &name) const;
QStringList definedFormatters() const;
QHash getFormatters() const;
QList items() const;
diff --git a/sources/awesomewidgets/awabstractformatter.h b/sources/awesomewidgets/awabstractformatter.h
index 519d5fb..b91bef6 100644
--- a/sources/awesomewidgets/awabstractformatter.h
+++ b/sources/awesomewidgets/awabstractformatter.h
@@ -30,8 +30,8 @@ public:
explicit AWAbstractFormatter(QWidget *parent = nullptr,
const QString filePath = QString());
virtual ~AWAbstractFormatter();
- void copyDefaults(AbstractExtItem *_other) const;
virtual QString convert(const QVariant &_value) const = 0;
+ void copyDefaults(AbstractExtItem *_other) const;
QString uniq() const;
// properties
QString type() const;
diff --git a/sources/awesomewidgets/graphicalitem.cpp b/sources/awesomewidgets/graphicalitem.cpp
index 1095932..886e495 100644
--- a/sources/awesomewidgets/graphicalitem.cpp
+++ b/sources/awesomewidgets/graphicalitem.cpp
@@ -77,13 +77,13 @@ GraphicalItem *GraphicalItem::copy(const QString _fileName, const int _number)
item->setCount(m_count);
item->setCustom(m_custom);
item->setDirection(m_direction);
- item->setHeight(m_height);
+ item->setItemHeight(m_height);
item->setInactiveColor(m_inactiveColor);
item->setMaxValue(m_maxValue);
item->setMinValue(m_minValue);
item->setNumber(_number);
item->setType(m_type);
- item->setWidth(m_width);
+ item->setItemWidth(m_width);
return item;
}
@@ -152,24 +152,36 @@ QString GraphicalItem::activeColor() const
}
-QString GraphicalItem::inactiveColor() const
-{
- return m_inactiveColor;
-}
-
-
int GraphicalItem::count() const
{
return m_count;
}
+QString GraphicalItem::inactiveColor() const
+{
+ return m_inactiveColor;
+}
+
+
bool GraphicalItem::isCustom() const
{
return m_custom;
}
+int GraphicalItem::itemHeight() const
+{
+ return m_height;
+}
+
+
+int GraphicalItem::itemWidth() const
+{
+ return m_width;
+}
+
+
float GraphicalItem::maxValue() const
{
return m_maxValue;
@@ -235,24 +247,12 @@ QString GraphicalItem::strDirection() const
}
-int GraphicalItem::height() const
-{
- return m_height;
-}
-
-
QStringList GraphicalItem::usedKeys() const
{
return m_usedKeys;
}
-int GraphicalItem::width() const
-{
- return m_width;
-}
-
-
QString GraphicalItem::uniq() const
{
return m_bar;
@@ -301,6 +301,26 @@ void GraphicalItem::setInactiveColor(const QString _color)
}
+void GraphicalItem::setItemHeight(const int _height)
+{
+ qCDebug(LOG_LIB) << "Height" << _height;
+ if (_height <= 0)
+ return;
+
+ m_height = _height;
+}
+
+
+void GraphicalItem::setItemWidth(const int _width)
+{
+ qCDebug(LOG_LIB) << "Width" << _width;
+ if (_width <= 0)
+ return;
+
+ m_width = _width;
+}
+
+
void GraphicalItem::setMaxValue(const float _value)
{
qCDebug(LOG_LIB) << "Max value" << _value;
@@ -361,16 +381,6 @@ void GraphicalItem::setStrDirection(const QString _direction)
}
-void GraphicalItem::setHeight(const int _height)
-{
- qCDebug(LOG_LIB) << "Height" << _height;
- if (_height <= 0)
- return;
-
- m_height = _height;
-}
-
-
void GraphicalItem::setUsedKeys(const QStringList _usedKeys)
{
qCDebug(LOG_LIB) << "Used keys" << _usedKeys;
@@ -386,16 +396,6 @@ void GraphicalItem::setUsedKeys(const QStringList _usedKeys)
}
-void GraphicalItem::setWidth(const int _width)
-{
- qCDebug(LOG_LIB) << "Width" << _width;
- if (_width <= 0)
- return;
-
- m_width = _width;
-}
-
-
void GraphicalItem::readConfiguration()
{
AbstractExtItem::readConfiguration();
@@ -416,8 +416,8 @@ void GraphicalItem::readConfiguration()
setStrType(settings.value(QString("X-AW-Type"), strType()).toString());
setStrDirection(
settings.value(QString("X-AW-Direction"), strDirection()).toString());
- setHeight(settings.value(QString("X-AW-Height"), m_height).toInt());
- setWidth(settings.value(QString("X-AW-Width"), m_width).toInt());
+ setItemHeight(settings.value(QString("X-AW-Height"), m_height).toInt());
+ setItemWidth(settings.value(QString("X-AW-Width"), m_width).toInt());
// api == 5
if (apiVersion() < 5) {
QString prefix;
@@ -490,8 +490,8 @@ int GraphicalItem::showConfiguration(const QVariant args)
setInactiveColor(ui->lineEdit_inactiveColor->text());
setStrType(ui->comboBox_type->currentText());
setStrDirection(ui->comboBox_direction->currentText());
- setHeight(ui->spinBox_height->value());
- setWidth(ui->spinBox_width->value());
+ setItemHeight(ui->spinBox_height->value());
+ setItemWidth(ui->spinBox_width->value());
writeConfiguration();
return ret;
diff --git a/sources/awesomewidgets/graphicalitem.h b/sources/awesomewidgets/graphicalitem.h
index c504996..89afaba 100644
--- a/sources/awesomewidgets/graphicalitem.h
+++ b/sources/awesomewidgets/graphicalitem.h
@@ -40,13 +40,13 @@ class GraphicalItem : public AbstractExtItem
Q_PROPERTY(int count READ count WRITE setCount)
Q_PROPERTY(bool custom READ isCustom WRITE setCustom)
Q_PROPERTY(QString inactiveColor READ inactiveColor WRITE setInactiveColor)
+ Q_PROPERTY(int itemHeight READ itemHeight WRITE setItemHeight)
+ Q_PROPERTY(int itemWidth READ itemWidth WRITE setItemWidth)
Q_PROPERTY(Type type READ type WRITE setType)
Q_PROPERTY(Direction direction READ direction WRITE setDirection)
- Q_PROPERTY(int height READ height WRITE setHeight)
Q_PROPERTY(float maxValue READ maxValue WRITE setMaxValue)
Q_PROPERTY(float minValue READ minValue WRITE setMinValue)
Q_PROPERTY(QStringList usedKeys READ usedKeys WRITE setUsedKeys)
- Q_PROPERTY(int width READ width WRITE setWidth)
public:
enum class Direction { LeftToRight = 0, RightToLeft = 1 };
@@ -60,18 +60,18 @@ public:
// get methods
QString bar() const;
QString activeColor() const;
- QString inactiveColor() const;
int count() const;
+ QString inactiveColor() const;
bool isCustom() const;
+ int itemHeight() const;
+ int itemWidth() const;
float minValue() const;
float maxValue() const;
Type type() const;
QString strType() const;
Direction direction() const;
QString strDirection() const;
- int height() const;
QStringList usedKeys() const;
- int width() const;
QString uniq() const;
// set methods
void setBar(const QString _bar = QString("cpu"));
@@ -80,15 +80,15 @@ public:
void setCustom(const bool _custom = false);
void setInactiveColor(const QString _color
= QString("color://255,255,255,130"));
+ void setItemHeight(const int _height = 100);
+ void setItemWidth(const int _width = 100);
void setMinValue(const float _value = 0.0);
void setMaxValue(const float _value = 100.0);
void setType(const Type _type = Type::Horizontal);
void setStrType(const QString _type = QString("Horizontal"));
void setDirection(const Direction _direction = Direction::LeftToRight);
void setStrDirection(const QString _direction = QString("LeftToRight"));
- void setHeight(const int _height = 100);
void setUsedKeys(const QStringList _usedKeys = QStringList());
- void setWidth(const int _width = 100);
public slots:
void readConfiguration();
diff --git a/sources/translations/awesome-widgets.pot b/sources/translations/awesome-widgets.pot
index fb8cc48..d2da3a6 100644
--- a/sources/translations/awesome-widgets.pot
+++ b/sources/translations/awesome-widgets.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
-"POT-Creation-Date: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -369,6 +369,9 @@ msgstr ""
msgid "Edit bars"
msgstr ""
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr ""
@@ -438,6 +441,12 @@ msgstr ""
msgid "Network device has been changed to %1"
msgstr ""
+msgid "Select type"
+msgstr ""
+
+msgid "Type:"
+msgstr ""
+
msgid "MB/s"
msgstr ""
@@ -495,6 +504,36 @@ msgstr ""
msgid "Comment"
msgstr ""
+msgid "Type"
+msgstr ""
+
+msgid "Format"
+msgstr ""
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+msgid "Summand"
+msgstr ""
+
+msgid "Append code"
+msgstr ""
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr ""
@@ -568,9 +607,6 @@ msgstr ""
msgid "Inctive filling type"
msgstr ""
-msgid "Type"
-msgstr ""
-
msgid "Points count"
msgstr ""
@@ -580,9 +616,6 @@ msgstr ""
msgid "Height"
msgstr ""
-msgid "Width"
-msgstr ""
-
msgid "color"
msgstr ""
diff --git a/sources/translations/en.po b/sources/translations/en.po
index 6b43fff..4d8602a 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: 2016-04-29 12:21+0300\n"
-"PO-Revision-Date: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
+"PO-Revision-Date: 2016-05-16 14:14+0300\n"
"Last-Translator: Evgeniy Alekseev \n"
"Language-Team: English \n"
"Language: ru\n"
@@ -374,6 +374,9 @@ msgstr "Show value"
msgid "Edit bars"
msgstr "Edit bars"
+msgid "Formatters"
+msgstr "Formatters"
+
msgid "Preview"
msgstr "Preview"
@@ -443,6 +446,12 @@ msgstr "High GPU load"
msgid "Network device has been changed to %1"
msgstr "Network device has been changed to %1"
+msgid "Select type"
+msgstr "Select type"
+
+msgid "Type:"
+msgstr "Type:"
+
msgid "MB/s"
msgstr "MB/s"
@@ -500,6 +509,36 @@ msgstr "Name"
msgid "Comment"
msgstr "Comment"
+msgid "Type"
+msgstr "Type"
+
+msgid "Format"
+msgstr "Format"
+
+msgid "Precision"
+msgstr "Precision"
+
+msgid "Width"
+msgstr "Width"
+
+msgid "Fill char"
+msgstr "Fill char"
+
+msgid "Multiplier"
+msgstr "Multiplier"
+
+msgid "Summand"
+msgstr "Summand"
+
+msgid "Append code"
+msgstr "Append code"
+
+msgid "Has return"
+msgstr "Has return"
+
+msgid "Code"
+msgstr "Code"
+
msgid "Tag"
msgstr "Tag"
@@ -577,9 +616,6 @@ msgstr "Active filling type"
msgid "Inctive filling type"
msgstr "Inctive filling type"
-msgid "Type"
-msgstr "Type"
-
msgid "Points count"
msgstr "Points count"
@@ -589,9 +625,6 @@ msgstr "Direction"
msgid "Height"
msgstr "Height"
-msgid "Width"
-msgstr "Width"
-
msgid "color"
msgstr "color"
@@ -657,9 +690,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "Free space on %1 less than 10%"
#~ msgstr "Free space on %1 less than 10%"
-#~ msgid "Has output"
-#~ msgstr "Has output"
-
#~ msgid "Top Edge"
#~ msgstr "Top Edge"
@@ -828,9 +858,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "Widget configuration"
#~ msgstr "Widget configuration"
-#~ msgid "Form"
-#~ msgstr "Form"
-
#~ msgid "Network directory"
#~ msgstr "Network directory"
diff --git a/sources/translations/es.po b/sources/translations/es.po
index c0686ff..3a43ac6 100644
--- a/sources/translations/es.po
+++ b/sources/translations/es.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Ernesto Avilés Vázquez , 2014-2016
# Evgeniy Alekseev , 2014-2015
@@ -9,14 +9,15 @@ msgid ""
msgstr ""
"Project-Id-Version: Awesome widgets\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
-"POT-Creation-Date: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: 2016-05-03 06:47+0000\n"
"Last-Translator: Ernesto Avilés Vázquez \n"
-"Language-Team: Spanish (http://www.transifex.com/arcanis/awesome-widgets/language/es/)\n"
+"Language-Team: Spanish (http://www.transifex.com/arcanis/awesome-widgets/"
+"language/es/)\n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgid "Widget"
@@ -274,7 +275,10 @@ msgstr "Comprobar actualizaciones"
msgid ""
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
"To enable them just make needed checkbox checked."
-msgstr "Las etiquetas para CPU, reloj de CPU, memoria, swap y red soportan ventanas emergentes. Para habilitarlas, simplemente marca las casillas correspondientes."
+msgstr ""
+"Las etiquetas para CPU, reloj de CPU, memoria, swap y red soportan ventanas "
+"emergentes. Para habilitarlas, simplemente marca las casillas "
+"correspondientes."
msgid "Number of values for tooltips"
msgstr "Número de valores para las ventanas emergentes"
@@ -328,9 +332,11 @@ msgid "Battery inactive color"
msgstr "Color de la batería inactiva"
msgid ""
-"Detailed information may be found on project homepage"
-msgstr "Puedes encontrar información detallada en el sitio del proyecto"
+"Detailed information may be found on project homepage"
+msgstr ""
+"Puedes encontrar información detallada en el sitio del proyecto"
msgid "Bgcolor"
msgstr "Color de fondo"
@@ -371,6 +377,9 @@ msgstr "Mostrar valor"
msgid "Edit bars"
msgstr "Editar barras"
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr "Vista previa"
@@ -440,6 +449,14 @@ msgstr "Carga alta de GPU"
msgid "Network device has been changed to %1"
msgstr "El dispositivo de red ha sido cambiado a %1"
+#, fuzzy
+msgid "Select type"
+msgstr "Elegir etiqueta"
+
+#, fuzzy
+msgid "Type:"
+msgstr "Tipo"
+
msgid "MB/s"
msgstr "MB/s"
@@ -497,15 +514,52 @@ msgstr "Nombre"
msgid "Comment"
msgstr "Comentario"
+msgid "Type"
+msgstr "Tipo"
+
+#, fuzzy
+msgid "Format"
+msgstr "normal"
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr "Ancho"
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+#, fuzzy
+msgid "Summand"
+msgstr "Orden"
+
+#, fuzzy
+msgid "Append code"
+msgstr "Apariencia"
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr "Etiqueta"
msgid ""
"Use YAHOO! finance ticker to get quotes for the "
"instrument. Refer to http://finance.yahoo.com/
"
-msgstr "Usa el tablero electrónico de YAHOO! para obtener la cotización del medio. Dirígete a http://finance.yahoo.com/
"
+"text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/"
+"span>
"
+msgstr ""
+"Usa el tablero electrónico de YAHOO! para obtener la "
+"cotización del medio. Dirígete a http://finance.yahoo."
+"com/
"
msgid "Ticker"
msgstr "Tablero"
@@ -570,9 +624,6 @@ msgstr "Activar tipo de relleno"
msgid "Inctive filling type"
msgstr "Inhabilitar tipo de relleno"
-msgid "Type"
-msgstr "Tipo"
-
msgid "Points count"
msgstr "Conteo de puntos"
@@ -582,9 +633,6 @@ msgstr "Dirección"
msgid "Height"
msgstr "Alto"
-msgid "Width"
-msgstr "Ancho"
-
msgid "color"
msgstr "color"
diff --git a/sources/translations/fr.po b/sources/translations/fr.po
index 4652220..8e53115 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: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: 2015-07-31 22:16+0300\n"
"Last-Translator: Evgeniy Alekseev \n"
"Language-Team: French \n"
@@ -390,6 +390,9 @@ msgstr "Afficher la valeur"
msgid "Edit bars"
msgstr "Modifier les barres"
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr ""
@@ -459,6 +462,13 @@ msgstr "Haute charge GPU"
msgid "Network device has been changed to %1"
msgstr "L'interface réseau à été changée en %1"
+#, fuzzy
+msgid "Select type"
+msgstr "Sélectionner l'étiquette"
+
+msgid "Type:"
+msgstr ""
+
msgid "MB/s"
msgstr ""
@@ -522,6 +532,39 @@ msgstr "Nom: %1"
msgid "Comment"
msgstr "Commentaire: %1"
+msgid "Type"
+msgstr ""
+
+#, fuzzy
+msgid "Format"
+msgstr "Entrées"
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr ""
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+#, fuzzy
+msgid "Summand"
+msgstr "Commande personnalisée"
+
+#, fuzzy
+msgid "Append code"
+msgstr "Apparence"
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr "Étiquette"
@@ -607,9 +650,6 @@ msgstr "Batterie"
msgid "Inctive filling type"
msgstr "Bureau inactif"
-msgid "Type"
-msgstr ""
-
msgid "Points count"
msgstr ""
@@ -620,9 +660,6 @@ msgstr ""
msgid "Height"
msgstr "léger"
-msgid "Width"
-msgstr ""
-
#, fuzzy
msgid "color"
msgstr "Couleur processeur"
@@ -834,9 +871,6 @@ msgstr "esalexeev@gmail.com mermouy@gmail.com"
#~ msgid "Add stretch to right/bottom of the layout"
#~ msgstr "Étirer le positionnement vers bas/droite"
-#~ msgid "Form"
-#~ msgstr "Entrées"
-
#~ msgid "Network directory"
#~ msgstr "Voisinage réseau"
diff --git a/sources/translations/nl_NL.po b/sources/translations/nl_NL.po
index 60e8781..eef4dba 100644
--- a/sources/translations/nl_NL.po
+++ b/sources/translations/nl_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: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: 2015-08-20 22:52+0300\n"
"Last-Translator: Evgeniy Alekseev \n"
"Language-Team: Dutch \n"
@@ -392,6 +392,9 @@ msgstr "Waarde weergeven"
msgid "Edit bars"
msgstr "Balken bewerken"
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr ""
@@ -465,6 +468,14 @@ msgstr "Hoog CPU-verbruik"
msgid "Network device has been changed to %1"
msgstr "Het netwerkapparaat is gewijzigd naar %1"
+#, fuzzy
+msgid "Select type"
+msgstr "Sleutelwoord selecteren"
+
+#, fuzzy
+msgid "Type:"
+msgstr "Type"
+
msgid "MB/s"
msgstr ""
@@ -524,6 +535,39 @@ msgstr "Naam"
msgid "Comment"
msgstr "Commentaar"
+msgid "Type"
+msgstr "Type"
+
+#, fuzzy
+msgid "Format"
+msgstr "normaal"
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr "Breedte"
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+#, fuzzy
+msgid "Summand"
+msgstr "Commentaar"
+
+#, fuzzy
+msgid "Append code"
+msgstr "Uiterlijk"
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr "Sleutelwoord"
@@ -606,9 +650,6 @@ msgstr "Actieve kleur"
msgid "Inctive filling type"
msgstr "Inactieve kleur"
-msgid "Type"
-msgstr "Type"
-
msgid "Points count"
msgstr ""
@@ -618,9 +659,6 @@ msgstr "Richting"
msgid "Height"
msgstr "Hoogte"
-msgid "Width"
-msgstr "Breedte"
-
#, fuzzy
msgid "color"
msgstr "CPU-kleur"
diff --git a/sources/translations/pl.po b/sources/translations/pl.po
index 8562705..ad911ee 100644
--- a/sources/translations/pl.po
+++ b/sources/translations/pl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://github.com/arcan1s/awesome-widgets/issues\n"
-"POT-Creation-Date: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -375,6 +375,9 @@ msgstr "Pokaż wartość"
msgid "Edit bars"
msgstr "Edytuj paski postępu"
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr "Przegląd"
@@ -444,6 +447,14 @@ msgstr "Wysokie obciążenie procesora graficznego"
msgid "Network device has been changed to %1"
msgstr "Urządznie sieciowe zamienione na %1"
+#, fuzzy
+msgid "Select type"
+msgstr "Wybierz znacznik"
+
+#, fuzzy
+msgid "Type:"
+msgstr "Typ"
+
msgid "MB/s"
msgstr "MB/s"
@@ -501,6 +512,39 @@ msgstr "Nazwa"
msgid "Comment"
msgstr "Komentarz"
+msgid "Type"
+msgstr "Typ"
+
+#, fuzzy
+msgid "Format"
+msgstr "normalna"
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr "Szerokość"
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+#, fuzzy
+msgid "Summand"
+msgstr "Polecenie"
+
+#, fuzzy
+msgid "Append code"
+msgstr "Wygląd"
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr "Znacznik"
@@ -582,9 +626,6 @@ msgstr "Aktywny"
msgid "Inctive filling type"
msgstr "Nie aktywny pulpit"
-msgid "Type"
-msgstr "Typ"
-
msgid "Points count"
msgstr ""
@@ -594,9 +635,6 @@ msgstr "Kierunek"
msgid "Height"
msgstr "Wysokość"
-msgid "Width"
-msgstr "Szerokość"
-
#, fuzzy
msgid "color"
msgstr "Kolor procesora"
diff --git a/sources/translations/pt_BR.po b/sources/translations/pt_BR.po
index 61fb011..b84f23e 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: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: 2015-07-31 22:21+0300\n"
"Last-Translator: Evgeniy Alekseev \n"
"Language-Team: Russian \n"
@@ -391,6 +391,9 @@ msgstr "Mostrar valor"
msgid "Edit bars"
msgstr "Editar barras"
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr ""
@@ -460,6 +463,14 @@ msgstr "Alta carga da GPU"
msgid "Network device has been changed to %1"
msgstr "O dispositivo de rede mudou para %1"
+#, fuzzy
+msgid "Select type"
+msgstr "Selecionar tag"
+
+#, fuzzy
+msgid "Type:"
+msgstr "Tipo"
+
msgid "MB/s"
msgstr ""
@@ -518,6 +529,39 @@ msgstr "NOme"
msgid "Comment"
msgstr "Comentário"
+msgid "Type"
+msgstr "Tipo"
+
+#, fuzzy
+msgid "Format"
+msgstr "Forma"
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr "Largura"
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+#, fuzzy
+msgid "Summand"
+msgstr "Comentário"
+
+#, fuzzy
+msgid "Append code"
+msgstr "Aparência"
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr "Tag"
@@ -597,9 +641,6 @@ msgstr "Cor ativa"
msgid "Inctive filling type"
msgstr "Desktop inativo"
-msgid "Type"
-msgstr "Tipo"
-
msgid "Points count"
msgstr ""
@@ -609,9 +650,6 @@ msgstr "Direção"
msgid "Height"
msgstr "Altura"
-msgid "Width"
-msgstr "Largura"
-
#, fuzzy
msgid "color"
msgstr "Cor da CPU"
@@ -822,9 +860,6 @@ msgstr "under@insicuri.net"
#~ msgid "Add stretch to right/bottom of the layout"
#~ msgstr "Adicionar esticamento à direita/inferior do layout"
-#~ msgid "Form"
-#~ msgstr "Forma"
-
#~ msgid "Network directory"
#~ msgstr "Diretório de rede"
diff --git a/sources/translations/ru.po b/sources/translations/ru.po
index d762281..7b72394 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: 2016-04-29 12:21+0300\n"
-"PO-Revision-Date: 2016-04-29 12:22+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
+"PO-Revision-Date: 2016-05-16 14:15+0300\n"
"Last-Translator: Evgeniy Alekseev \n"
"Language-Team: Russian \n"
"Language: ru\n"
@@ -374,6 +374,9 @@ msgstr "Показать значение"
msgid "Edit bars"
msgstr "Редактировать бары"
+msgid "Formatters"
+msgstr "Форматеры"
+
msgid "Preview"
msgstr "Предварительный просмотр"
@@ -443,6 +446,12 @@ msgstr "Высокая загрузка GPU"
msgid "Network device has been changed to %1"
msgstr "Сетевое устройство было изменено на %1"
+msgid "Select type"
+msgstr "Выберете тип"
+
+msgid "Type:"
+msgstr "Тип:"
+
msgid "MB/s"
msgstr "МБ/с"
@@ -500,6 +509,36 @@ msgstr "Имя"
msgid "Comment"
msgstr "Комментарий"
+msgid "Type"
+msgstr "Тип"
+
+msgid "Format"
+msgstr "Формат"
+
+msgid "Precision"
+msgstr "Точность"
+
+msgid "Width"
+msgstr "Ширина"
+
+msgid "Fill char"
+msgstr "Заполнение"
+
+msgid "Multiplier"
+msgstr "Множитель"
+
+msgid "Summand"
+msgstr "Слагаемое"
+
+msgid "Append code"
+msgstr "Дополнить код"
+
+msgid "Has return"
+msgstr "Имеет return"
+
+msgid "Code"
+msgstr "Код"
+
msgid "Tag"
msgstr "Тег"
@@ -577,9 +616,6 @@ msgstr "Тип активного наполнения"
msgid "Inctive filling type"
msgstr "Тип неактивного наполнения"
-msgid "Type"
-msgstr "Тип"
-
msgid "Points count"
msgstr "Количество точек"
@@ -589,9 +625,6 @@ msgstr "Направление"
msgid "Height"
msgstr "Высота"
-msgid "Width"
-msgstr "Ширина"
-
msgid "color"
msgstr "цвет"
@@ -657,9 +690,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "Free space on %1 less than 10%"
#~ msgstr "Свободное место на диске %1 меньше 10%"
-#~ msgid "Has output"
-#~ msgstr "Имеет сообщения"
-
#~ msgid "Top Edge"
#~ msgstr "Верхняя грань"
@@ -828,9 +858,6 @@ msgstr "esalexeev@gmail.com"
#~ msgid "Widget configuration"
#~ msgstr "Настройка виджета"
-#~ msgid "Form"
-#~ msgstr "Form"
-
#~ msgid "Network directory"
#~ msgstr "Путь к интерфейсам"
diff --git a/sources/translations/uk.po b/sources/translations/uk.po
index ce87bfe..5f53381 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: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: 2016-05-05 17:18+0300\n"
"Last-Translator: Evgeniy Alekseev \n"
"Language-Team: Ukrainian \n"
@@ -375,6 +375,9 @@ msgstr "Показати значення"
msgid "Edit bars"
msgstr "Редагувати бари"
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr "Попередній перегляд"
@@ -444,6 +447,14 @@ msgstr "Високе завантаження GPU"
msgid "Network device has been changed to %1"
msgstr "Мережевий пристрій було змінено на %1"
+#, fuzzy
+msgid "Select type"
+msgstr "Оберіть тег"
+
+#, fuzzy
+msgid "Type:"
+msgstr "Тип"
+
msgid "MB/s"
msgstr "МБ/с"
@@ -501,6 +512,39 @@ msgstr "Ім’я"
msgid "Comment"
msgstr "Коментар"
+msgid "Type"
+msgstr "Тип"
+
+#, fuzzy
+msgid "Format"
+msgstr "Form"
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr "Ширина"
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+#, fuzzy
+msgid "Summand"
+msgstr "Команда"
+
+#, fuzzy
+msgid "Append code"
+msgstr "Зовнішній вигляд"
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr "Тег"
@@ -578,9 +622,6 @@ msgstr "Тип активного заповнення"
msgid "Inctive filling type"
msgstr "Тип неактивного заповнення"
-msgid "Type"
-msgstr "Тип"
-
msgid "Points count"
msgstr "Кількість точок"
@@ -590,9 +631,6 @@ msgstr "Напрямок"
msgid "Height"
msgstr "Висота"
-msgid "Width"
-msgstr "Ширина"
-
msgid "color"
msgstr "колір"
@@ -814,9 +852,6 @@ msgstr "sarumyan@i.ua"
#~ msgid "Add stretch to right/bottom of the layout"
#~ msgstr "Додати порожнє місце праворуч/внизу віджету"
-#~ msgid "Form"
-#~ msgstr "Form"
-
#~ msgid "Network directory"
#~ msgstr "Шлях до інтерфейсів"
diff --git a/sources/translations/zh.po b/sources/translations/zh.po
index 5d0e961..08a45e8 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: 2016-04-29 12:21+0300\n"
+"POT-Creation-Date: 2016-05-16 14:13+0300\n"
"PO-Revision-Date: 2015-07-31 22:24+0300\n"
"Last-Translator: Evgeniy Alekseev \n"
"Language-Team: Russian \n"
@@ -376,6 +376,9 @@ msgstr "显示值"
msgid "Edit bars"
msgstr "编辑工具栏"
+msgid "Formatters"
+msgstr ""
+
msgid "Preview"
msgstr "预览"
@@ -445,6 +448,14 @@ msgstr "高 GPU 使用"
msgid "Network device has been changed to %1"
msgstr "网络设备变更为 %1"
+#, fuzzy
+msgid "Select type"
+msgstr "选择标签"
+
+#, fuzzy
+msgid "Type:"
+msgstr "类型"
+
msgid "MB/s"
msgstr "MB/s"
@@ -502,6 +513,39 @@ msgstr "命名"
msgid "Comment"
msgstr "评论"
+msgid "Type"
+msgstr "类型"
+
+#, fuzzy
+msgid "Format"
+msgstr "正常"
+
+msgid "Precision"
+msgstr ""
+
+msgid "Width"
+msgstr "宽度"
+
+msgid "Fill char"
+msgstr ""
+
+msgid "Multiplier"
+msgstr ""
+
+#, fuzzy
+msgid "Summand"
+msgstr "命令"
+
+#, fuzzy
+msgid "Append code"
+msgstr "外观"
+
+msgid "Has return"
+msgstr ""
+
+msgid "Code"
+msgstr ""
+
msgid "Tag"
msgstr "标签"
@@ -584,9 +628,6 @@ msgstr "使用"
msgid "Inctive filling type"
msgstr "未激活桌面"
-msgid "Type"
-msgstr "类型"
-
msgid "Points count"
msgstr ""
@@ -596,9 +637,6 @@ msgstr "方向"
msgid "Height"
msgstr "高度"
-msgid "Width"
-msgstr "宽度"
-
#, fuzzy
msgid "color"
msgstr "CPU 颜色"