mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-25 07:57:19 +00:00
Cosmetic commit
* apply clangformat settings * update translations * rename settings
This commit is contained in:
parent
362f1fd87e
commit
95a5eec108
@ -227,7 +227,8 @@ QStringList AWKeyOperations::dictKeys() const
|
|||||||
allKeys.append(QString("la1"));
|
allKeys.append(QString("la1"));
|
||||||
// bars
|
// bars
|
||||||
for (int i = graphicalItems->activeItems().count() - 1; i >= 0; i--)
|
for (int i = graphicalItems->activeItems().count() - 1; i >= 0; i--)
|
||||||
allKeys.append(graphicalItems->activeItems().at(i)->tag(QString("bar")));
|
allKeys.append(
|
||||||
|
graphicalItems->activeItems().at(i)->tag(QString("bar")));
|
||||||
|
|
||||||
return allKeys;
|
return allKeys;
|
||||||
}
|
}
|
||||||
|
@ -210,7 +210,8 @@ void AWKeys::reinitKeys(const QStringList currentKeys)
|
|||||||
for (auto bar : m_foundBars) {
|
for (auto bar : m_foundBars) {
|
||||||
GraphicalItem *item = keyOperator->giByKey(bar);
|
GraphicalItem *item = keyOperator->giByKey(bar);
|
||||||
if (item->isCustom())
|
if (item->isCustom())
|
||||||
item->setUsedKeys(AWPatternFunctions::findKeys(item->bar(), currentKeys));
|
item->setUsedKeys(
|
||||||
|
AWPatternFunctions::findKeys(item->bar(), currentKeys));
|
||||||
else
|
else
|
||||||
item->setUsedKeys(QStringList() << item->bar());
|
item->setUsedKeys(QStringList() << item->bar());
|
||||||
barKeys.append(item->usedKeys());
|
barKeys.append(item->usedKeys());
|
||||||
@ -330,26 +331,32 @@ QString AWKeys::parsePattern(QString pattern) const
|
|||||||
GraphicalItem *item = keyOperator->giByKey(bar);
|
GraphicalItem *item = keyOperator->giByKey(bar);
|
||||||
if (item->type() == GraphicalItem::Graph)
|
if (item->type() == GraphicalItem::Graph)
|
||||||
pattern.replace(QString("$%1").arg(bar),
|
pattern.replace(QString("$%1").arg(bar),
|
||||||
item->image(QVariant::fromValue<QList<float>>(dataAggregator->getData(item->bar()))));
|
item->image(QVariant::fromValue<QList<float>>(
|
||||||
|
dataAggregator->getData(item->bar()))));
|
||||||
else {
|
else {
|
||||||
if (item->isCustom())
|
if (item->isCustom())
|
||||||
pattern.replace(QString("$%1").arg(bar),item->image([this, item](QString bar ){
|
pattern.replace(
|
||||||
|
QString("$%1").arg(bar),
|
||||||
|
item->image([this, item](QString bar) {
|
||||||
QJSEngine engine;
|
QJSEngine engine;
|
||||||
for (auto key : item->usedKeys())
|
for (auto key : item->usedKeys())
|
||||||
bar.replace(QString("$%1").arg(key), aggregator->formater(values[key], key));
|
bar.replace(QString("$%1").arg(key),
|
||||||
|
aggregator->formater(values[key], key));
|
||||||
qCInfo(LOG_AW) << "Expression" << bar;
|
qCInfo(LOG_AW) << "Expression" << bar;
|
||||||
QJSValue result = engine.evaluate(bar);
|
QJSValue result = engine.evaluate(bar);
|
||||||
if (result.isError()) {
|
if (result.isError()) {
|
||||||
qCWarning(LOG_AW) << "Uncaught exception at line"
|
qCWarning(LOG_AW)
|
||||||
<< result.property("lineNumber").toInt()
|
<< "Uncaught exception at line"
|
||||||
<< ":" << result.toString();
|
<< result.property("lineNumber").toInt() << ":"
|
||||||
|
<< result.toString();
|
||||||
return QString();
|
return QString();
|
||||||
} else {
|
} else {
|
||||||
return result.toString();
|
return result.toString();
|
||||||
}
|
}
|
||||||
}(item->bar())));
|
}(item->bar())));
|
||||||
else
|
else
|
||||||
pattern.replace(QString("$%1").arg(bar),item->image(values[item->bar()]));
|
pattern.replace(QString("$%1").arg(bar),
|
||||||
|
item->image(values[item->bar()]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ AWUpdateHelper::AWUpdateHelper(QObject *parent)
|
|||||||
qCDebug(LOG_AW) << __PRETTY_FUNCTION__;
|
qCDebug(LOG_AW) << __PRETTY_FUNCTION__;
|
||||||
|
|
||||||
m_foundVersion = QString(VERSION);
|
m_foundVersion = QString(VERSION);
|
||||||
m_genericConfig = QString("%1/awesomewidgets/generic.ini")
|
m_genericConfig = QString("%1/awesomewidgets/general.ini")
|
||||||
.arg(QStandardPaths::writableLocation(
|
.arg(QStandardPaths::writableLocation(
|
||||||
QStandardPaths::GenericDataLocation));
|
QStandardPaths::GenericDataLocation));
|
||||||
}
|
}
|
||||||
|
@ -40,7 +40,8 @@ public:
|
|||||||
const QString desktopName = QString(),
|
const QString desktopName = QString(),
|
||||||
const QStringList directories = QStringList());
|
const QStringList directories = QStringList());
|
||||||
virtual ~AbstractExtItem();
|
virtual ~AbstractExtItem();
|
||||||
virtual AbstractExtItem *copy(const QString _fileName, const int _number) = 0;
|
virtual AbstractExtItem *copy(const QString _fileName, const int _number)
|
||||||
|
= 0;
|
||||||
void copyDefaults(AbstractExtItem *_other) const;
|
void copyDefaults(AbstractExtItem *_other) const;
|
||||||
// get methods
|
// get methods
|
||||||
int apiVersion() const;
|
int apiVersion() const;
|
||||||
|
@ -447,7 +447,8 @@ int GraphicalItem::showConfiguration(const QVariant args)
|
|||||||
setComment(ui->lineEdit_comment->text());
|
setComment(ui->lineEdit_comment->text());
|
||||||
setApiVersion(AWGIAPI);
|
setApiVersion(AWGIAPI);
|
||||||
setCustom(ui->checkBox_custom->isChecked());
|
setCustom(ui->checkBox_custom->isChecked());
|
||||||
setBar(m_custom ? ui->lineEdit_customValue->text() : ui->comboBox_value->currentText());
|
setBar(m_custom ? ui->lineEdit_customValue->text()
|
||||||
|
: ui->comboBox_value->currentText());
|
||||||
setMaxValue(ui->doubleSpinBox_max->value());
|
setMaxValue(ui->doubleSpinBox_max->value());
|
||||||
setMinValue(ui->doubleSpinBox_min->value());
|
setMinValue(ui->doubleSpinBox_min->value());
|
||||||
setActiveColor(ui->pushButton_activeColor->text().remove(QChar('&')));
|
setActiveColor(ui->pushButton_activeColor->text().remove(QChar('&')));
|
||||||
|
@ -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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+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"
|
||||||
@ -547,9 +547,18 @@ msgstr ""
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Active color"
|
msgid "Active 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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+0300\n"
|
||||||
"PO-Revision-Date: 2016-02-03 23:03+0700\n"
|
"PO-Revision-Date: 2016-02-15 11:43+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"
|
||||||
@ -556,9 +556,18 @@ msgstr "Timestamp"
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr "Use images"
|
msgstr "Use images"
|
||||||
|
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "Use custom formula"
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Value"
|
msgstr "Value"
|
||||||
|
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr "Max value"
|
||||||
|
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr "Min value"
|
||||||
|
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
msgstr "Active color"
|
msgstr "Active color"
|
||||||
|
|
||||||
|
@ -9,7 +9,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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+0300\n"
|
||||||
"PO-Revision-Date: 2015-09-26 22:07+0000\n"
|
"PO-Revision-Date: 2015-09-26 22:07+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-Team: Spanish (http://www.transifex.com/arcanis/awesome-widgets/"
|
||||||
@ -561,9 +561,21 @@ msgstr "Marca de tiempo"
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr "Usar imágenes"
|
msgstr "Usar imágenes"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "Formato personalizado de hora"
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valor"
|
msgstr "Valor"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr "Mostrar valor"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr "Mostrar valor"
|
||||||
|
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
msgstr "Color de activo"
|
msgstr "Color de activo"
|
||||||
|
|
||||||
|
@ -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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+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"
|
||||||
@ -579,10 +579,22 @@ msgstr "Durée"
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "Format de l'heure personnalisé"
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valeur: %1"
|
msgstr "Valeur: %1"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr "Afficher la valeur"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr "Afficher la valeur"
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
msgstr "Batterie"
|
msgstr "Batterie"
|
||||||
|
@ -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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+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"
|
||||||
@ -579,9 +579,21 @@ msgstr ""
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "Aangepaste tijdsopmaak"
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Waarde"
|
msgstr "Waarde"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr "Waarde weergeven"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr "Waarde weergeven"
|
||||||
|
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
msgstr "Actieve kleur"
|
msgstr "Actieve kleur"
|
||||||
|
|
||||||
|
@ -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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+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"
|
||||||
@ -570,9 +570,21 @@ msgstr "Hora"
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "Formato de hora personalizado"
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Valor"
|
msgstr "Valor"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr "Mostrar valor"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr "Mostrar valor"
|
||||||
|
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
msgstr "Cor ativa"
|
msgstr "Cor ativa"
|
||||||
|
|
||||||
|
@ -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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+0300\n"
|
||||||
"PO-Revision-Date: 2016-02-03 23:04+0700\n"
|
"PO-Revision-Date: 2016-02-15 11:44+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"
|
||||||
@ -556,9 +556,18 @@ msgstr "Таймштамп"
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr "Использовать изображения"
|
msgstr "Использовать изображения"
|
||||||
|
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "Использовать свою формулу"
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Значение"
|
msgstr "Значение"
|
||||||
|
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr "Максимальное значение"
|
||||||
|
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr "Минимальное значение"
|
||||||
|
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+0300\n"
|
||||||
"PO-Revision-Date: 2015-09-27 12:37+0300\n"
|
"PO-Revision-Date: 2015-09-27 12:37+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"
|
||||||
@ -582,9 +582,21 @@ msgstr "Відмітка часу"
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr "Використовувати зображення"
|
msgstr "Використовувати зображення"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "Свій формат часу"
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Значення"
|
msgstr "Значення"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr "Показати значення"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr "Показати значення"
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
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-02-03 23:02+0700\n"
|
"POT-Creation-Date: 2016-02-15 11:43+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"
|
||||||
@ -573,9 +573,19 @@ msgstr ""
|
|||||||
msgid "Use images"
|
msgid "Use images"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
msgid "Use custom formula"
|
||||||
|
msgstr "自定义时间格式"
|
||||||
|
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Max value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Min value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Active color"
|
msgid "Active color"
|
||||||
msgstr "电池使用状态提示颜色"
|
msgstr "电池使用状态提示颜色"
|
||||||
|
Loading…
Reference in New Issue
Block a user