mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 23:47:20 +00:00
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.
This commit is contained in:
parent
301a908aed
commit
906ad56c46
@ -35,9 +35,7 @@ AWFormatterHelper::AWFormatterHelper(QWidget *parent)
|
|||||||
{
|
{
|
||||||
qCDebug(LOG_AW) << __PRETTY_FUNCTION__;
|
qCDebug(LOG_AW) << __PRETTY_FUNCTION__;
|
||||||
|
|
||||||
#ifdef BUILD_FUTURE
|
|
||||||
initItems();
|
initItems();
|
||||||
#endif /* BUILD_FUTURE */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -51,7 +49,7 @@ AWFormatterHelper::~AWFormatterHelper()
|
|||||||
|
|
||||||
|
|
||||||
QString AWFormatterHelper::convert(const QVariant &value,
|
QString AWFormatterHelper::convert(const QVariant &value,
|
||||||
const QString name) const
|
const QString &name) const
|
||||||
{
|
{
|
||||||
qCDebug(LOG_AW) << "Convert value" << value << "for" << name;
|
qCDebug(LOG_AW) << "Convert value" << value << "for" << name;
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ public:
|
|||||||
|
|
||||||
explicit AWFormatterHelper(QWidget *parent = nullptr);
|
explicit AWFormatterHelper(QWidget *parent = nullptr);
|
||||||
virtual ~AWFormatterHelper();
|
virtual ~AWFormatterHelper();
|
||||||
QString convert(const QVariant &value, const QString name) const;
|
QString convert(const QVariant &value, const QString &name) const;
|
||||||
QStringList definedFormatters() const;
|
QStringList definedFormatters() const;
|
||||||
QHash<QString, QString> getFormatters() const;
|
QHash<QString, QString> getFormatters() const;
|
||||||
QList<AbstractExtItem *> items() const;
|
QList<AbstractExtItem *> items() const;
|
||||||
|
@ -30,8 +30,8 @@ public:
|
|||||||
explicit AWAbstractFormatter(QWidget *parent = nullptr,
|
explicit AWAbstractFormatter(QWidget *parent = nullptr,
|
||||||
const QString filePath = QString());
|
const QString filePath = QString());
|
||||||
virtual ~AWAbstractFormatter();
|
virtual ~AWAbstractFormatter();
|
||||||
void copyDefaults(AbstractExtItem *_other) const;
|
|
||||||
virtual QString convert(const QVariant &_value) const = 0;
|
virtual QString convert(const QVariant &_value) const = 0;
|
||||||
|
void copyDefaults(AbstractExtItem *_other) const;
|
||||||
QString uniq() const;
|
QString uniq() const;
|
||||||
// properties
|
// properties
|
||||||
QString type() const;
|
QString type() const;
|
||||||
|
@ -77,13 +77,13 @@ GraphicalItem *GraphicalItem::copy(const QString _fileName, const int _number)
|
|||||||
item->setCount(m_count);
|
item->setCount(m_count);
|
||||||
item->setCustom(m_custom);
|
item->setCustom(m_custom);
|
||||||
item->setDirection(m_direction);
|
item->setDirection(m_direction);
|
||||||
item->setHeight(m_height);
|
item->setItemHeight(m_height);
|
||||||
item->setInactiveColor(m_inactiveColor);
|
item->setInactiveColor(m_inactiveColor);
|
||||||
item->setMaxValue(m_maxValue);
|
item->setMaxValue(m_maxValue);
|
||||||
item->setMinValue(m_minValue);
|
item->setMinValue(m_minValue);
|
||||||
item->setNumber(_number);
|
item->setNumber(_number);
|
||||||
item->setType(m_type);
|
item->setType(m_type);
|
||||||
item->setWidth(m_width);
|
item->setItemWidth(m_width);
|
||||||
|
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
@ -152,24 +152,36 @@ QString GraphicalItem::activeColor() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
QString GraphicalItem::inactiveColor() const
|
|
||||||
{
|
|
||||||
return m_inactiveColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int GraphicalItem::count() const
|
int GraphicalItem::count() const
|
||||||
{
|
{
|
||||||
return m_count;
|
return m_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
QString GraphicalItem::inactiveColor() const
|
||||||
|
{
|
||||||
|
return m_inactiveColor;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bool GraphicalItem::isCustom() const
|
bool GraphicalItem::isCustom() const
|
||||||
{
|
{
|
||||||
return m_custom;
|
return m_custom;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int GraphicalItem::itemHeight() const
|
||||||
|
{
|
||||||
|
return m_height;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int GraphicalItem::itemWidth() const
|
||||||
|
{
|
||||||
|
return m_width;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
float GraphicalItem::maxValue() const
|
float GraphicalItem::maxValue() const
|
||||||
{
|
{
|
||||||
return m_maxValue;
|
return m_maxValue;
|
||||||
@ -235,24 +247,12 @@ QString GraphicalItem::strDirection() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int GraphicalItem::height() const
|
|
||||||
{
|
|
||||||
return m_height;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QStringList GraphicalItem::usedKeys() const
|
QStringList GraphicalItem::usedKeys() const
|
||||||
{
|
{
|
||||||
return m_usedKeys;
|
return m_usedKeys;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int GraphicalItem::width() const
|
|
||||||
{
|
|
||||||
return m_width;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
QString GraphicalItem::uniq() const
|
QString GraphicalItem::uniq() const
|
||||||
{
|
{
|
||||||
return m_bar;
|
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)
|
void GraphicalItem::setMaxValue(const float _value)
|
||||||
{
|
{
|
||||||
qCDebug(LOG_LIB) << "Max value" << _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)
|
void GraphicalItem::setUsedKeys(const QStringList _usedKeys)
|
||||||
{
|
{
|
||||||
qCDebug(LOG_LIB) << "Used keys" << _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()
|
void GraphicalItem::readConfiguration()
|
||||||
{
|
{
|
||||||
AbstractExtItem::readConfiguration();
|
AbstractExtItem::readConfiguration();
|
||||||
@ -416,8 +416,8 @@ void GraphicalItem::readConfiguration()
|
|||||||
setStrType(settings.value(QString("X-AW-Type"), strType()).toString());
|
setStrType(settings.value(QString("X-AW-Type"), strType()).toString());
|
||||||
setStrDirection(
|
setStrDirection(
|
||||||
settings.value(QString("X-AW-Direction"), strDirection()).toString());
|
settings.value(QString("X-AW-Direction"), strDirection()).toString());
|
||||||
setHeight(settings.value(QString("X-AW-Height"), m_height).toInt());
|
setItemHeight(settings.value(QString("X-AW-Height"), m_height).toInt());
|
||||||
setWidth(settings.value(QString("X-AW-Width"), m_width).toInt());
|
setItemWidth(settings.value(QString("X-AW-Width"), m_width).toInt());
|
||||||
// api == 5
|
// api == 5
|
||||||
if (apiVersion() < 5) {
|
if (apiVersion() < 5) {
|
||||||
QString prefix;
|
QString prefix;
|
||||||
@ -490,8 +490,8 @@ int GraphicalItem::showConfiguration(const QVariant args)
|
|||||||
setInactiveColor(ui->lineEdit_inactiveColor->text());
|
setInactiveColor(ui->lineEdit_inactiveColor->text());
|
||||||
setStrType(ui->comboBox_type->currentText());
|
setStrType(ui->comboBox_type->currentText());
|
||||||
setStrDirection(ui->comboBox_direction->currentText());
|
setStrDirection(ui->comboBox_direction->currentText());
|
||||||
setHeight(ui->spinBox_height->value());
|
setItemHeight(ui->spinBox_height->value());
|
||||||
setWidth(ui->spinBox_width->value());
|
setItemWidth(ui->spinBox_width->value());
|
||||||
|
|
||||||
writeConfiguration();
|
writeConfiguration();
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -40,13 +40,13 @@ class GraphicalItem : public AbstractExtItem
|
|||||||
Q_PROPERTY(int count READ count WRITE setCount)
|
Q_PROPERTY(int count READ count WRITE setCount)
|
||||||
Q_PROPERTY(bool custom READ isCustom WRITE setCustom)
|
Q_PROPERTY(bool custom READ isCustom WRITE setCustom)
|
||||||
Q_PROPERTY(QString inactiveColor READ inactiveColor WRITE setInactiveColor)
|
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(Type type READ type WRITE setType)
|
||||||
Q_PROPERTY(Direction direction READ direction WRITE setDirection)
|
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 maxValue READ maxValue WRITE setMaxValue)
|
||||||
Q_PROPERTY(float minValue READ minValue WRITE setMinValue)
|
Q_PROPERTY(float minValue READ minValue WRITE setMinValue)
|
||||||
Q_PROPERTY(QStringList usedKeys READ usedKeys WRITE setUsedKeys)
|
Q_PROPERTY(QStringList usedKeys READ usedKeys WRITE setUsedKeys)
|
||||||
Q_PROPERTY(int width READ width WRITE setWidth)
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
enum class Direction { LeftToRight = 0, RightToLeft = 1 };
|
enum class Direction { LeftToRight = 0, RightToLeft = 1 };
|
||||||
@ -60,18 +60,18 @@ public:
|
|||||||
// get methods
|
// get methods
|
||||||
QString bar() const;
|
QString bar() const;
|
||||||
QString activeColor() const;
|
QString activeColor() const;
|
||||||
QString inactiveColor() const;
|
|
||||||
int count() const;
|
int count() const;
|
||||||
|
QString inactiveColor() const;
|
||||||
bool isCustom() const;
|
bool isCustom() const;
|
||||||
|
int itemHeight() const;
|
||||||
|
int itemWidth() const;
|
||||||
float minValue() const;
|
float minValue() const;
|
||||||
float maxValue() const;
|
float maxValue() const;
|
||||||
Type type() const;
|
Type type() const;
|
||||||
QString strType() const;
|
QString strType() const;
|
||||||
Direction direction() const;
|
Direction direction() const;
|
||||||
QString strDirection() const;
|
QString strDirection() const;
|
||||||
int height() const;
|
|
||||||
QStringList usedKeys() const;
|
QStringList usedKeys() const;
|
||||||
int width() const;
|
|
||||||
QString uniq() const;
|
QString uniq() const;
|
||||||
// set methods
|
// set methods
|
||||||
void setBar(const QString _bar = QString("cpu"));
|
void setBar(const QString _bar = QString("cpu"));
|
||||||
@ -80,15 +80,15 @@ public:
|
|||||||
void setCustom(const bool _custom = false);
|
void setCustom(const bool _custom = false);
|
||||||
void setInactiveColor(const QString _color
|
void setInactiveColor(const QString _color
|
||||||
= QString("color://255,255,255,130"));
|
= 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 setMinValue(const float _value = 0.0);
|
||||||
void setMaxValue(const float _value = 100.0);
|
void setMaxValue(const float _value = 100.0);
|
||||||
void setType(const Type _type = Type::Horizontal);
|
void setType(const Type _type = Type::Horizontal);
|
||||||
void setStrType(const QString _type = QString("Horizontal"));
|
void setStrType(const QString _type = QString("Horizontal"));
|
||||||
void setDirection(const Direction _direction = Direction::LeftToRight);
|
void setDirection(const Direction _direction = Direction::LeftToRight);
|
||||||
void setStrDirection(const QString _direction = QString("LeftToRight"));
|
void setStrDirection(const QString _direction = QString("LeftToRight"));
|
||||||
void setHeight(const int _height = 100);
|
|
||||||
void setUsedKeys(const QStringList _usedKeys = QStringList());
|
void setUsedKeys(const QStringList _usedKeys = QStringList());
|
||||||
void setWidth(const int _width = 100);
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void readConfiguration();
|
void readConfiguration();
|
||||||
|
@ -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: 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"
|
"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"
|
||||||
@ -369,6 +369,9 @@ msgstr ""
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -438,6 +441,12 @@ msgstr ""
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Select type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "MB/s"
|
msgid "MB/s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -495,6 +504,36 @@ msgstr ""
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr ""
|
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"
|
msgid "Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -568,9 +607,6 @@ msgstr ""
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -580,9 +616,6 @@ msgstr ""
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -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: 2016-04-29 12:21+0300\n"
|
"POT-Creation-Date: 2016-05-16 14:13+0300\n"
|
||||||
"PO-Revision-Date: 2016-04-29 12:21+0300\n"
|
"PO-Revision-Date: 2016-05-16 14:14+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"
|
||||||
@ -374,6 +374,9 @@ msgstr "Show value"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Edit bars"
|
msgstr "Edit bars"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr "Formatters"
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Preview"
|
msgstr "Preview"
|
||||||
|
|
||||||
@ -443,6 +446,12 @@ msgstr "High GPU load"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "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"
|
msgid "MB/s"
|
||||||
msgstr "MB/s"
|
msgstr "MB/s"
|
||||||
|
|
||||||
@ -500,6 +509,36 @@ msgstr "Name"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "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"
|
msgid "Tag"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
@ -577,9 +616,6 @@ msgstr "Active filling type"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Inctive filling type"
|
msgstr "Inctive filling type"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Type"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr "Points count"
|
msgstr "Points count"
|
||||||
|
|
||||||
@ -589,9 +625,6 @@ msgstr "Direction"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Height"
|
msgstr "Height"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "Width"
|
|
||||||
|
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "color"
|
msgstr "color"
|
||||||
|
|
||||||
@ -657,9 +690,6 @@ msgstr "esalexeev@gmail.com"
|
|||||||
#~ msgid "Free space on %1 less than 10%"
|
#~ msgid "Free space on %1 less than 10%"
|
||||||
#~ msgstr "Free space on %1 less than 10%"
|
#~ msgstr "Free space on %1 less than 10%"
|
||||||
|
|
||||||
#~ msgid "Has output"
|
|
||||||
#~ msgstr "Has output"
|
|
||||||
|
|
||||||
#~ msgid "Top Edge"
|
#~ msgid "Top Edge"
|
||||||
#~ msgstr "Top Edge"
|
#~ msgstr "Top Edge"
|
||||||
|
|
||||||
@ -828,9 +858,6 @@ msgstr "esalexeev@gmail.com"
|
|||||||
#~ msgid "Widget configuration"
|
#~ msgid "Widget configuration"
|
||||||
#~ msgstr "Widget configuration"
|
#~ msgstr "Widget configuration"
|
||||||
|
|
||||||
#~ msgid "Form"
|
|
||||||
#~ msgstr "Form"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Network directory"
|
#~ msgstr "Network directory"
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# SOME DESCRIPTIVE TITLE.
|
# SOME DESCRIPTIVE TITLE.
|
||||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
# Ernesto Avilés Vázquez <whippiii@gmail.com>, 2014-2016
|
# Ernesto Avilés Vázquez <whippiii@gmail.com>, 2014-2016
|
||||||
# Evgeniy Alekseev <esalexeev@gmail.com>, 2014-2015
|
# Evgeniy Alekseev <esalexeev@gmail.com>, 2014-2015
|
||||||
@ -9,14 +9,15 @@ 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: 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"
|
"PO-Revision-Date: 2016-05-03 06:47+0000\n"
|
||||||
"Last-Translator: Ernesto Avilés Vázquez <whippiii@gmail.com>\n"
|
"Last-Translator: Ernesto Avilés Vázquez <whippiii@gmail.com>\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"
|
"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"
|
||||||
"Language: es\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
@ -274,7 +275,10 @@ msgstr "Comprobar actualizaciones"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
|
"CPU, CPU clock, memory, swap and network labels support graphical tooltip. "
|
||||||
"To enable them just make needed checkbox checked."
|
"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"
|
msgid "Number of values for tooltips"
|
||||||
msgstr "Número de valores para las ventanas emergentes"
|
msgstr "Número de valores para las ventanas emergentes"
|
||||||
@ -328,9 +332,11 @@ msgid "Battery inactive color"
|
|||||||
msgstr "Color de la batería inactiva"
|
msgstr "Color de la batería inactiva"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Detailed information may be found on <a href=\"https://arcanis.me/projects"
|
"Detailed information may be found on <a href=\"https://arcanis.me/projects/"
|
||||||
"/awesome-widgets/\">project homepage</a>"
|
"awesome-widgets/\">project homepage</a>"
|
||||||
msgstr "Puedes encontrar información detallada en el <a href=\"https://arcanis.me/projects/awesome-widgets/\">sitio del proyecto</a>"
|
msgstr ""
|
||||||
|
"Puedes encontrar información detallada en el <a href=\"https://arcanis.me/"
|
||||||
|
"projects/awesome-widgets/\">sitio del proyecto</a>"
|
||||||
|
|
||||||
msgid "Bgcolor"
|
msgid "Bgcolor"
|
||||||
msgstr "Color de fondo"
|
msgstr "Color de fondo"
|
||||||
@ -371,6 +377,9 @@ msgstr "Mostrar valor"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Editar barras"
|
msgstr "Editar barras"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Vista previa"
|
msgstr "Vista previa"
|
||||||
|
|
||||||
@ -440,6 +449,14 @@ msgstr "Carga alta de GPU"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "El dispositivo de red ha sido cambiado a %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"
|
msgid "MB/s"
|
||||||
msgstr "MB/s"
|
msgstr "MB/s"
|
||||||
|
|
||||||
@ -497,15 +514,52 @@ msgstr "Nombre"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Comentario"
|
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"
|
msgid "Tag"
|
||||||
msgstr "Etiqueta"
|
msgstr "Etiqueta"
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"<html><head/><body><p>Use YAHOO! finance ticker to get quotes for the "
|
"<html><head/><body><p>Use YAHOO! finance ticker to get quotes for the "
|
||||||
"instrument. Refer to <a href=\"http://finance.yahoo.com/\"><span style=\" "
|
"instrument. Refer to <a href=\"http://finance.yahoo.com/\"><span style=\" "
|
||||||
"text-decoration: underline; "
|
"text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</"
|
||||||
"color:#0057ae;\">http://finance.yahoo.com/</span></a></p></body></html>"
|
"span></a></p></body></html>"
|
||||||
msgstr "<html><head/><body><p>Usa el tablero electrónico de YAHOO! para obtener la cotización del medio. Dirígete a <a href=\"http://finance.yahoo.com/\"><span style=\" text-decoration: underline; color:#0057ae;\">http://finance.yahoo.com/</span></a></p></body></html>"
|
msgstr ""
|
||||||
|
"<html><head/><body><p>Usa el tablero electrónico de YAHOO! para obtener la "
|
||||||
|
"cotización del medio. Dirígete a <a href=\"http://finance.yahoo.com/\"><span "
|
||||||
|
"style=\" text-decoration: underline; color:#0057ae;\">http://finance.yahoo."
|
||||||
|
"com/</span></a></p></body></html>"
|
||||||
|
|
||||||
msgid "Ticker"
|
msgid "Ticker"
|
||||||
msgstr "Tablero"
|
msgstr "Tablero"
|
||||||
@ -570,9 +624,6 @@ msgstr "Activar tipo de relleno"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Inhabilitar tipo de relleno"
|
msgstr "Inhabilitar tipo de relleno"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr "Conteo de puntos"
|
msgstr "Conteo de puntos"
|
||||||
|
|
||||||
@ -582,9 +633,6 @@ msgstr "Dirección"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Alto"
|
msgstr "Alto"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "Ancho"
|
|
||||||
|
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "color"
|
msgstr "color"
|
||||||
|
|
||||||
|
@ -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: 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"
|
"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"
|
||||||
@ -390,6 +390,9 @@ msgstr "Afficher la valeur"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Modifier les barres"
|
msgstr "Modifier les barres"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -459,6 +462,13 @@ msgstr "Haute charge GPU"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "L'interface réseau à été changée en %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"
|
msgid "MB/s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -522,6 +532,39 @@ msgstr "Nom: %1"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Commentaire: %1"
|
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"
|
msgid "Tag"
|
||||||
msgstr "Étiquette"
|
msgstr "Étiquette"
|
||||||
|
|
||||||
@ -607,9 +650,6 @@ msgstr "Batterie"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Bureau inactif"
|
msgstr "Bureau inactif"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -620,9 +660,6 @@ msgstr ""
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "léger"
|
msgstr "léger"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "Couleur processeur"
|
msgstr "Couleur processeur"
|
||||||
@ -834,9 +871,6 @@ msgstr "esalexeev@gmail.com mermouy@gmail.com"
|
|||||||
#~ msgid "Add stretch to right/bottom of the layout"
|
#~ msgid "Add stretch to right/bottom of the layout"
|
||||||
#~ msgstr "Étirer le positionnement vers bas/droite"
|
#~ msgstr "Étirer le positionnement vers bas/droite"
|
||||||
|
|
||||||
#~ msgid "Form"
|
|
||||||
#~ msgstr "Entrées"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Voisinage réseau"
|
#~ msgstr "Voisinage réseau"
|
||||||
|
|
||||||
|
@ -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: 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"
|
"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"
|
||||||
@ -392,6 +392,9 @@ msgstr "Waarde weergeven"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Balken bewerken"
|
msgstr "Balken bewerken"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -465,6 +468,14 @@ msgstr "Hoog CPU-verbruik"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "Het netwerkapparaat is gewijzigd naar %1"
|
msgstr "Het netwerkapparaat is gewijzigd naar %1"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Select type"
|
||||||
|
msgstr "Sleutelwoord selecteren"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr "Type"
|
||||||
|
|
||||||
msgid "MB/s"
|
msgid "MB/s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -524,6 +535,39 @@ msgstr "Naam"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Commentaar"
|
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"
|
msgid "Tag"
|
||||||
msgstr "Sleutelwoord"
|
msgstr "Sleutelwoord"
|
||||||
|
|
||||||
@ -606,9 +650,6 @@ msgstr "Actieve kleur"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Inactieve kleur"
|
msgstr "Inactieve kleur"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Type"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -618,9 +659,6 @@ msgstr "Richting"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Hoogte"
|
msgstr "Hoogte"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "Breedte"
|
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "CPU-kleur"
|
msgstr "CPU-kleur"
|
||||||
|
@ -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: 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"
|
"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"
|
||||||
@ -375,6 +375,9 @@ msgstr "Pokaż wartość"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Edytuj paski postępu"
|
msgstr "Edytuj paski postępu"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Przegląd"
|
msgstr "Przegląd"
|
||||||
|
|
||||||
@ -444,6 +447,14 @@ msgstr "Wysokie obciążenie procesora graficznego"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "Urządznie sieciowe zamienione na %1"
|
msgstr "Urządznie sieciowe zamienione na %1"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Select type"
|
||||||
|
msgstr "Wybierz znacznik"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr "Typ"
|
||||||
|
|
||||||
msgid "MB/s"
|
msgid "MB/s"
|
||||||
msgstr "MB/s"
|
msgstr "MB/s"
|
||||||
|
|
||||||
@ -501,6 +512,39 @@ msgstr "Nazwa"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Komentarz"
|
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"
|
msgid "Tag"
|
||||||
msgstr "Znacznik"
|
msgstr "Znacznik"
|
||||||
|
|
||||||
@ -582,9 +626,6 @@ msgstr "Aktywny"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Nie aktywny pulpit"
|
msgstr "Nie aktywny pulpit"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Typ"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -594,9 +635,6 @@ msgstr "Kierunek"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Wysokość"
|
msgstr "Wysokość"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "Szerokość"
|
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "Kolor procesora"
|
msgstr "Kolor procesora"
|
||||||
|
@ -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: 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"
|
"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"
|
||||||
@ -391,6 +391,9 @@ msgstr "Mostrar valor"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Editar barras"
|
msgstr "Editar barras"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -460,6 +463,14 @@ msgstr "Alta carga da GPU"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "O dispositivo de rede mudou para %1"
|
msgstr "O dispositivo de rede mudou para %1"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Select type"
|
||||||
|
msgstr "Selecionar tag"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr "Tipo"
|
||||||
|
|
||||||
msgid "MB/s"
|
msgid "MB/s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -518,6 +529,39 @@ msgstr "NOme"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Comentário"
|
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"
|
msgid "Tag"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
@ -597,9 +641,6 @@ msgstr "Cor ativa"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Desktop inativo"
|
msgstr "Desktop inativo"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Tipo"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -609,9 +650,6 @@ msgstr "Direção"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "Largura"
|
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "Cor da CPU"
|
msgstr "Cor da CPU"
|
||||||
@ -822,9 +860,6 @@ msgstr "under@insicuri.net"
|
|||||||
#~ msgid "Add stretch to right/bottom of the layout"
|
#~ msgid "Add stretch to right/bottom of the layout"
|
||||||
#~ msgstr "Adicionar esticamento à direita/inferior do layout"
|
#~ msgstr "Adicionar esticamento à direita/inferior do layout"
|
||||||
|
|
||||||
#~ msgid "Form"
|
|
||||||
#~ msgstr "Forma"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Diretório de rede"
|
#~ msgstr "Diretório de rede"
|
||||||
|
|
||||||
|
@ -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: 2016-04-29 12:21+0300\n"
|
"POT-Creation-Date: 2016-05-16 14:13+0300\n"
|
||||||
"PO-Revision-Date: 2016-04-29 12:22+0300\n"
|
"PO-Revision-Date: 2016-05-16 14:15+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"
|
||||||
@ -374,6 +374,9 @@ msgstr "Показать значение"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Редактировать бары"
|
msgstr "Редактировать бары"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr "Форматеры"
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Предварительный просмотр"
|
msgstr "Предварительный просмотр"
|
||||||
|
|
||||||
@ -443,6 +446,12 @@ msgstr "Высокая загрузка GPU"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "Сетевое устройство было изменено на %1"
|
msgstr "Сетевое устройство было изменено на %1"
|
||||||
|
|
||||||
|
msgid "Select type"
|
||||||
|
msgstr "Выберете тип"
|
||||||
|
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr "Тип:"
|
||||||
|
|
||||||
msgid "MB/s"
|
msgid "MB/s"
|
||||||
msgstr "МБ/с"
|
msgstr "МБ/с"
|
||||||
|
|
||||||
@ -500,6 +509,36 @@ msgstr "Имя"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Комментарий"
|
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"
|
msgid "Tag"
|
||||||
msgstr "Тег"
|
msgstr "Тег"
|
||||||
|
|
||||||
@ -577,9 +616,6 @@ msgstr "Тип активного наполнения"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Тип неактивного наполнения"
|
msgstr "Тип неактивного наполнения"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Тип"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr "Количество точек"
|
msgstr "Количество точек"
|
||||||
|
|
||||||
@ -589,9 +625,6 @@ msgstr "Направление"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Высота"
|
msgstr "Высота"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "Ширина"
|
|
||||||
|
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "цвет"
|
msgstr "цвет"
|
||||||
|
|
||||||
@ -657,9 +690,6 @@ msgstr "esalexeev@gmail.com"
|
|||||||
#~ msgid "Free space on %1 less than 10%"
|
#~ msgid "Free space on %1 less than 10%"
|
||||||
#~ msgstr "Свободное место на диске %1 меньше 10%"
|
#~ msgstr "Свободное место на диске %1 меньше 10%"
|
||||||
|
|
||||||
#~ msgid "Has output"
|
|
||||||
#~ msgstr "Имеет сообщения"
|
|
||||||
|
|
||||||
#~ msgid "Top Edge"
|
#~ msgid "Top Edge"
|
||||||
#~ msgstr "Верхняя грань"
|
#~ msgstr "Верхняя грань"
|
||||||
|
|
||||||
@ -828,9 +858,6 @@ msgstr "esalexeev@gmail.com"
|
|||||||
#~ msgid "Widget configuration"
|
#~ msgid "Widget configuration"
|
||||||
#~ msgstr "Настройка виджета"
|
#~ msgstr "Настройка виджета"
|
||||||
|
|
||||||
#~ msgid "Form"
|
|
||||||
#~ msgstr "Form"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Путь к интерфейсам"
|
#~ msgstr "Путь к интерфейсам"
|
||||||
|
|
||||||
|
@ -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: 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"
|
"PO-Revision-Date: 2016-05-05 17:18+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"
|
||||||
@ -375,6 +375,9 @@ msgstr "Показати значення"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "Редагувати бари"
|
msgstr "Редагувати бари"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Попередній перегляд"
|
msgstr "Попередній перегляд"
|
||||||
|
|
||||||
@ -444,6 +447,14 @@ msgstr "Високе завантаження GPU"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "Мережевий пристрій було змінено на %1"
|
msgstr "Мережевий пристрій було змінено на %1"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Select type"
|
||||||
|
msgstr "Оберіть тег"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr "Тип"
|
||||||
|
|
||||||
msgid "MB/s"
|
msgid "MB/s"
|
||||||
msgstr "МБ/с"
|
msgstr "МБ/с"
|
||||||
|
|
||||||
@ -501,6 +512,39 @@ msgstr "Ім’я"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Коментар"
|
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"
|
msgid "Tag"
|
||||||
msgstr "Тег"
|
msgstr "Тег"
|
||||||
|
|
||||||
@ -578,9 +622,6 @@ msgstr "Тип активного заповнення"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "Тип неактивного заповнення"
|
msgstr "Тип неактивного заповнення"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "Тип"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr "Кількість точок"
|
msgstr "Кількість точок"
|
||||||
|
|
||||||
@ -590,9 +631,6 @@ msgstr "Напрямок"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Висота"
|
msgstr "Висота"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "Ширина"
|
|
||||||
|
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "колір"
|
msgstr "колір"
|
||||||
|
|
||||||
@ -814,9 +852,6 @@ msgstr "sarumyan@i.ua"
|
|||||||
#~ msgid "Add stretch to right/bottom of the layout"
|
#~ msgid "Add stretch to right/bottom of the layout"
|
||||||
#~ msgstr "Додати порожнє місце праворуч/внизу віджету"
|
#~ msgstr "Додати порожнє місце праворуч/внизу віджету"
|
||||||
|
|
||||||
#~ msgid "Form"
|
|
||||||
#~ msgstr "Form"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Шлях до інтерфейсів"
|
#~ msgstr "Шлях до інтерфейсів"
|
||||||
|
|
||||||
|
@ -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: 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"
|
"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"
|
||||||
@ -376,6 +376,9 @@ msgstr "显示值"
|
|||||||
msgid "Edit bars"
|
msgid "Edit bars"
|
||||||
msgstr "编辑工具栏"
|
msgstr "编辑工具栏"
|
||||||
|
|
||||||
|
msgid "Formatters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "预览"
|
msgstr "预览"
|
||||||
|
|
||||||
@ -445,6 +448,14 @@ msgstr "高 GPU 使用"
|
|||||||
msgid "Network device has been changed to %1"
|
msgid "Network device has been changed to %1"
|
||||||
msgstr "网络设备变更为 %1"
|
msgstr "网络设备变更为 %1"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Select type"
|
||||||
|
msgstr "选择标签"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Type:"
|
||||||
|
msgstr "类型"
|
||||||
|
|
||||||
msgid "MB/s"
|
msgid "MB/s"
|
||||||
msgstr "MB/s"
|
msgstr "MB/s"
|
||||||
|
|
||||||
@ -502,6 +513,39 @@ msgstr "命名"
|
|||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "评论"
|
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"
|
msgid "Tag"
|
||||||
msgstr "标签"
|
msgstr "标签"
|
||||||
|
|
||||||
@ -584,9 +628,6 @@ msgstr "使用"
|
|||||||
msgid "Inctive filling type"
|
msgid "Inctive filling type"
|
||||||
msgstr "未激活桌面"
|
msgstr "未激活桌面"
|
||||||
|
|
||||||
msgid "Type"
|
|
||||||
msgstr "类型"
|
|
||||||
|
|
||||||
msgid "Points count"
|
msgid "Points count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -596,9 +637,6 @@ msgstr "方向"
|
|||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "高度"
|
msgstr "高度"
|
||||||
|
|
||||||
msgid "Width"
|
|
||||||
msgstr "宽度"
|
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "color"
|
msgid "color"
|
||||||
msgstr "CPU 颜色"
|
msgstr "CPU 颜色"
|
||||||
|
Loading…
Reference in New Issue
Block a user