mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-24 23:47:20 +00:00
update translations, implement copy method
This commit is contained in:
parent
bae34ba898
commit
695a85be29
@ -480,7 +480,7 @@ void AwesomeWidget::showUpdates(QString version)
|
||||
|
||||
QString text;
|
||||
text += i18n("Current version : %1", QString(VERSION)) + QString("\n");
|
||||
text += i18n("New version : %2", version) + QString("\n");
|
||||
text += i18n("New version : %1", version) + QString("\n\n");
|
||||
text += i18n("Click \"Ok\" to download");
|
||||
int select = QMessageBox::information(0, i18n("There are updates"), text, QMessageBox::Ok | QMessageBox::Cancel);
|
||||
switch(select) {
|
||||
|
@ -85,6 +85,8 @@ private slots:
|
||||
void contextMenuBars(const QPoint pos);
|
||||
void contextMenuCustomCommand(const QPoint pos);
|
||||
void contextMenuPkgCommand(const QPoint pos);
|
||||
void copyBar(const QString original);
|
||||
void copyCustomCommand(const QString original);
|
||||
void editBar(QListWidgetItem *item);
|
||||
void editCustomCommand(QListWidgetItem *item);
|
||||
void editFanItem(QListWidgetItem *item);
|
||||
|
@ -746,6 +746,7 @@ void AwesomeWidget::addBar()
|
||||
|
||||
GraphicalItem *item = new GraphicalItem(0, name, dirs, debug);
|
||||
item->setName(QString("bar%1").arg(number));
|
||||
|
||||
item->showConfiguration(bars);
|
||||
}
|
||||
|
||||
@ -763,6 +764,7 @@ void AwesomeWidget::addCustomScript()
|
||||
if (!name.endsWith(QString(".desktop"))) name += QString(".desktop");
|
||||
|
||||
ExtScript *script = new ExtScript(0, name, dirs, debug);
|
||||
|
||||
script->showConfiguration();
|
||||
}
|
||||
|
||||
@ -789,10 +791,13 @@ void AwesomeWidget::contextMenuBars(const QPoint pos)
|
||||
|
||||
QMenu menu(uiAdvancedConfig.listWidget_bars);
|
||||
QAction *edit = menu.addAction(QIcon::fromTheme("document-edit"), i18n("Edit"));
|
||||
QAction *copy = menu.addAction(QIcon::fromTheme("edit-copy"), i18n("Copy"));
|
||||
QAction *remove = menu.addAction(QIcon::fromTheme("edit-delete"), i18n("Remove"));
|
||||
QAction *action = menu.exec(uiAdvancedConfig.listWidget_bars->viewport()->mapToGlobal(pos));
|
||||
if (action == edit)
|
||||
editBar(uiAdvancedConfig.listWidget_bars->currentItem());
|
||||
else if (action == copy)
|
||||
copyBar(uiAdvancedConfig.listWidget_bars->currentItem()->text());
|
||||
else if (action == remove)
|
||||
for (int i=0; i<graphicalItems.count(); i++) {
|
||||
if (graphicalItems[i]->getFileName() != uiAdvancedConfig.listWidget_bars->currentItem()->text())
|
||||
@ -812,10 +817,13 @@ void AwesomeWidget::contextMenuCustomCommand(const QPoint pos)
|
||||
|
||||
QMenu menu(uiDEConfig.listWidget_custom);
|
||||
QAction *edit = menu.addAction(QIcon::fromTheme("document-edit"), i18n("Edit"));
|
||||
QAction *copy = menu.addAction(QIcon::fromTheme("edit-copy"), i18n("Copy"));
|
||||
QAction *remove = menu.addAction(QIcon::fromTheme("edit-delete"), i18n("Remove"));
|
||||
QAction *action = menu.exec(uiDEConfig.listWidget_custom->viewport()->mapToGlobal(pos));
|
||||
if (action == edit)
|
||||
editCustomCommand(uiDEConfig.listWidget_custom->currentItem());
|
||||
else if (action == copy)
|
||||
copyCustomCommand(uiDEConfig.listWidget_custom->currentItem()->text());
|
||||
else if (action == remove) {
|
||||
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_engine_extsysmon/scripts");
|
||||
ExtScript *script = new ExtScript(0, uiDEConfig.listWidget_custom->currentItem()->text(), dirs, debug);
|
||||
@ -840,6 +848,88 @@ void AwesomeWidget::contextMenuPkgCommand(const QPoint pos)
|
||||
}
|
||||
|
||||
|
||||
void AwesomeWidget::copyBar(const QString original)
|
||||
{
|
||||
if (debug) qDebug() << PDEBUG;
|
||||
|
||||
int number = 0;
|
||||
while (true) {
|
||||
bool exit = true;
|
||||
for (int i=0; i<graphicalItems.count(); i++)
|
||||
if (graphicalItems[i]->getName() == QString("bar%1").arg(number)) {
|
||||
number++;
|
||||
exit = false;
|
||||
break;
|
||||
}
|
||||
if (exit) break;
|
||||
}
|
||||
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_applet_awesome-widget/desktops");
|
||||
bool ok;
|
||||
QString name = QInputDialog::getText(0, i18n("Enter file name"),
|
||||
i18n("File name"), QLineEdit::Normal,
|
||||
QString(""), &ok);
|
||||
if ((!ok) || (name.isEmpty())) return;
|
||||
if (!name.endsWith(QString(".desktop"))) name += QString(".desktop");
|
||||
QStringList bars;
|
||||
bars.append(keys.filter((QRegExp(QString("cpu(?!cl).*")))));
|
||||
bars.append(keys.filter((QRegExp(QString("^gpu$")))));
|
||||
bars.append(keys.filter((QRegExp(QString("^mem$")))));
|
||||
bars.append(keys.filter((QRegExp(QString("^swap$")))));
|
||||
bars.append(keys.filter((QRegExp(QString("^hdd[0-9].*")))));
|
||||
bars.append(keys.filter((QRegExp(QString("^bat.*")))));
|
||||
|
||||
GraphicalItem *originalItem = nullptr;
|
||||
for (int i=0; i<graphicalItems.count(); i++) {
|
||||
if (graphicalItems[i]->getFileName() != original) continue;
|
||||
originalItem = graphicalItems[i];
|
||||
break;
|
||||
}
|
||||
GraphicalItem *item = new GraphicalItem(0, name, dirs, debug);
|
||||
item->setName(QString("bar%1").arg(number));
|
||||
item->setComment(originalItem->getComment());
|
||||
item->setBar(originalItem->getBar());
|
||||
item->setActiveColor(originalItem->getActiveColor());
|
||||
item->setInactiveColor(originalItem->getInactiveColor());
|
||||
item->setType(originalItem->getStrType());
|
||||
item->setDirection(originalItem->getStrDirection());
|
||||
item->setHeight(originalItem->getHeight());
|
||||
item->setWidth(originalItem->getWidth());
|
||||
delete originalItem;
|
||||
|
||||
item->showConfiguration(bars);
|
||||
delete item;
|
||||
}
|
||||
|
||||
|
||||
void AwesomeWidget::copyCustomCommand(const QString original)
|
||||
{
|
||||
if (debug) qDebug() << PDEBUG;
|
||||
|
||||
QStringList dirs = KGlobal::dirs()->findDirs("data", "plasma_applet_awesome-widget/desktops");
|
||||
bool ok;
|
||||
QString name = QInputDialog::getText(0, i18n("Enter file name"),
|
||||
i18n("File name"), QLineEdit::Normal,
|
||||
QString(""), &ok);
|
||||
if ((!ok) || (name.isEmpty())) return;
|
||||
if (!name.endsWith(QString(".desktop"))) name += QString(".desktop");
|
||||
|
||||
ExtScript *originalScript = new ExtScript(0, original, dirs, debug);
|
||||
ExtScript *script = new ExtScript(0, name, dirs, debug);
|
||||
script->setActive(originalScript->isActive());
|
||||
script->setComment(originalScript->getComment());
|
||||
script->setExec(originalScript->getExec());
|
||||
script->setHasOutput(originalScript->hasOutput());
|
||||
script->setInterval(originalScript->getInterval());
|
||||
script->setName(originalScript->getName());
|
||||
script->setPrefix(originalScript->getPrefix());
|
||||
script->setRedirect(originalScript->getStrRedirect());
|
||||
delete originalScript;
|
||||
|
||||
script->showConfiguration();
|
||||
delete script;
|
||||
}
|
||||
|
||||
|
||||
void AwesomeWidget::editBar(QListWidgetItem *item)
|
||||
{
|
||||
if (debug) qDebug() << PDEBUG;
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"PO-Revision-Date: 2014-09-21 20:19+0400\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: 2014-11-21 05:12+0300\n"
|
||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||
"Language-Team: English <kde-russian@lists.kde.ru>\n"
|
||||
"Language: ru\n"
|
||||
@ -32,40 +32,39 @@ msgstr "Update text"
|
||||
|
||||
#: awesome-widget.cpp:106 po/rc.cpp:98 rc.cpp:98
|
||||
msgid "Check for updates"
|
||||
msgstr ""
|
||||
msgstr "Check for updates"
|
||||
|
||||
#: awesome-widget.cpp:482
|
||||
#, fuzzy
|
||||
msgid "Current version : %1"
|
||||
msgstr "Current desktop"
|
||||
msgstr "Current version : %1"
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgstr ""
|
||||
msgid "New version : %1"
|
||||
msgstr "New version : %1"
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
msgid "Click \"Ok\" to download"
|
||||
msgstr ""
|
||||
msgstr "Click \"Ok\" to download"
|
||||
|
||||
#: awesome-widget.cpp:485
|
||||
msgid "There are updates"
|
||||
msgstr ""
|
||||
msgstr "There are updates"
|
||||
|
||||
#: configuration.cpp:307
|
||||
msgid "Tag: %1"
|
||||
msgstr ""
|
||||
msgstr "Tag: %1"
|
||||
|
||||
#: configuration.cpp:308 configuration.cpp:383
|
||||
msgid "Comment: %1"
|
||||
msgstr ""
|
||||
msgstr "Comment: %1"
|
||||
|
||||
#: configuration.cpp:382
|
||||
msgid "Name: %1"
|
||||
msgstr ""
|
||||
msgstr "Name: %1"
|
||||
|
||||
#: configuration.cpp:384
|
||||
msgid "Exec: %1"
|
||||
msgstr ""
|
||||
msgstr "Exec: %1"
|
||||
|
||||
#: configuration.cpp:413 po/rc.cpp:153 rc.cpp:153
|
||||
msgid "Package manager"
|
||||
@ -80,46 +79,48 @@ msgid ""
|
||||
"Version %1\n"
|
||||
"(build date %2)"
|
||||
msgstr ""
|
||||
"Version %1\n"
|
||||
"(build date %2)"
|
||||
|
||||
#: configuration.cpp:429
|
||||
msgid "A set of minimalistic plasmoid widgets"
|
||||
msgstr ""
|
||||
msgstr "A set of minimalistic plasmoid widgets"
|
||||
|
||||
#: configuration.cpp:430
|
||||
msgid "Links:"
|
||||
msgstr ""
|
||||
msgstr "Links:"
|
||||
|
||||
#: configuration.cpp:431
|
||||
msgid "Homepage"
|
||||
msgstr ""
|
||||
msgstr "Homepage"
|
||||
|
||||
#: configuration.cpp:432
|
||||
msgid "Repository"
|
||||
msgstr ""
|
||||
msgstr "Repository"
|
||||
|
||||
#: configuration.cpp:433
|
||||
msgid "Bugtracker"
|
||||
msgstr ""
|
||||
msgstr "Bugtracker"
|
||||
|
||||
#: configuration.cpp:434
|
||||
msgid "Translation issue"
|
||||
msgstr ""
|
||||
msgstr "Translation issue"
|
||||
|
||||
#: configuration.cpp:435
|
||||
msgid "AUR packages"
|
||||
msgstr ""
|
||||
msgstr "AUR packages"
|
||||
|
||||
#: configuration.cpp:437
|
||||
msgid "This software is licensed under %1"
|
||||
msgstr ""
|
||||
msgstr "This software is licensed under %1"
|
||||
|
||||
#: configuration.cpp:445
|
||||
msgid "Translators: %1"
|
||||
msgstr ""
|
||||
msgstr "Translators: %1"
|
||||
|
||||
#: configuration.cpp:446
|
||||
msgid "This software uses: %1"
|
||||
msgstr ""
|
||||
msgstr "This software uses: %1"
|
||||
|
||||
#: configuration.cpp:448
|
||||
msgid "Widget"
|
||||
@ -143,33 +144,37 @@ msgstr "DataEngine"
|
||||
|
||||
#: configuration.cpp:453
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
msgstr "About"
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr ""
|
||||
msgstr "Enter file name"
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
msgstr "File name"
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#, fuzzy
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
msgid "Edit"
|
||||
msgstr "Editable"
|
||||
msgstr "Edit"
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr "Copy"
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr "Remove"
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr "Select font"
|
||||
|
||||
#: graphicalitem.cpp:442
|
||||
#, fuzzy
|
||||
msgid "Select color"
|
||||
msgstr "Select font"
|
||||
msgstr "Select color"
|
||||
|
||||
#: po/rc.cpp:3 rc.cpp:3
|
||||
msgid "Enable popup on mouse click"
|
||||
@ -294,7 +299,7 @@ msgstr "Line, which returns when AC is offline"
|
||||
|
||||
#: po/rc.cpp:92 rc.cpp:92
|
||||
msgid "Bars"
|
||||
msgstr ""
|
||||
msgstr "Bars"
|
||||
|
||||
#: po/rc.cpp:95 po/rc.cpp:162 po/rc.cpp:243 rc.cpp:95 rc.cpp:162 rc.cpp:243
|
||||
msgid "Add"
|
||||
@ -373,52 +378,48 @@ msgstr ""
|
||||
"del - remove item"
|
||||
|
||||
#: po/rc.cpp:159 rc.cpp:159
|
||||
#, fuzzy
|
||||
msgid "Custom scripts"
|
||||
msgstr "Custom"
|
||||
msgstr "Custom scripts"
|
||||
|
||||
#: po/rc.cpp:165 rc.cpp:165
|
||||
#, fuzzy
|
||||
msgid "Configuration"
|
||||
msgstr "DE Configuration"
|
||||
msgstr "Configuration"
|
||||
|
||||
#: po/rc.cpp:168 rc.cpp:168
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
msgstr "Name"
|
||||
|
||||
#: po/rc.cpp:171 rc.cpp:171
|
||||
msgid "Comment"
|
||||
msgstr ""
|
||||
msgstr "Comment"
|
||||
|
||||
#: po/rc.cpp:174 rc.cpp:174
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
msgstr "Value"
|
||||
|
||||
#: po/rc.cpp:177 rc.cpp:177
|
||||
#, fuzzy
|
||||
msgid "Active color"
|
||||
msgstr "Battery active color"
|
||||
msgstr "Active color"
|
||||
|
||||
#: po/rc.cpp:180 rc.cpp:180
|
||||
#, fuzzy
|
||||
msgid "Inactive color"
|
||||
msgstr "Battery inactive color"
|
||||
msgstr "Inactive color"
|
||||
|
||||
#: po/rc.cpp:183 rc.cpp:183
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
msgstr "Type"
|
||||
|
||||
#: po/rc.cpp:186 rc.cpp:186
|
||||
msgid "Direction"
|
||||
msgstr ""
|
||||
msgstr "Direction"
|
||||
|
||||
#: po/rc.cpp:189 rc.cpp:189
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
msgstr "Height"
|
||||
|
||||
#: po/rc.cpp:192 rc.cpp:192
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
msgstr "Width"
|
||||
|
||||
#: po/rc.cpp:195 rc.cpp:195
|
||||
msgid ""
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: 2014-09-05 11:18+0400\n"
|
||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||
"Language-Team: Spanish <kde-russian@lists.kde.ru>\n"
|
||||
@ -39,7 +39,7 @@ msgid "Current version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgid "New version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
@ -144,24 +144,30 @@ msgstr "DataEngine"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
#, fuzzy
|
||||
msgid "Edit"
|
||||
msgstr "Editable"
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr ""
|
||||
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: 2014-09-05 11:20+0400\n"
|
||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||
"Language-Team: French <kde-russian@lists.kde.ru>\n"
|
||||
@ -40,7 +40,7 @@ msgid "Current version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgid "New version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
@ -145,24 +145,30 @@ msgstr "Moteur de données"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
#, fuzzy
|
||||
msgid "Edit"
|
||||
msgstr "Modifiable"
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr "Supprimer"
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr ""
|
||||
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -38,7 +38,7 @@ msgid "Current version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgid "New version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
@ -143,23 +143,29 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr ""
|
||||
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: 2014-09-05 11:21+0400\n"
|
||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||
"Language-Team: Brazilian Portuguese <kde-russian@lists.kde.ru>\n"
|
||||
@ -38,7 +38,7 @@ msgid "Current version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgid "New version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
@ -143,24 +143,30 @@ msgstr "Engine de dados"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
#, fuzzy
|
||||
msgid "Edit"
|
||||
msgstr "Editável"
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr "Remover"
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr ""
|
||||
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"PO-Revision-Date: 2014-11-20 17:57+0300\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: 2014-11-21 05:12+0300\n"
|
||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||
"Language-Team: Russian <kde-russian@lists.kde.ru>\n"
|
||||
"Language: ru\n"
|
||||
@ -39,8 +39,8 @@ msgid "Current version : %1"
|
||||
msgstr "Текущая версия : %1"
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgstr "Новая версия: %2"
|
||||
msgid "New version : %1"
|
||||
msgstr "Новая версия : %1"
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
msgid "Click \"Ok\" to download"
|
||||
@ -146,23 +146,29 @@ msgstr "DataEngine"
|
||||
msgid "About"
|
||||
msgstr "О программе"
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr "Введите имя файла"
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr "Имя файла"
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
msgid "Edit"
|
||||
msgstr "Править"
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr "Копировать"
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr "Удалить"
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr "Выберете шрифт"
|
||||
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: 2014-09-05 11:22+0400\n"
|
||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||
"Language-Team: Ukrainian <kde-russian@lists.kde.ru>\n"
|
||||
@ -39,7 +39,7 @@ msgid "Current version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgid "New version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
@ -144,24 +144,30 @@ msgstr "DataEngine"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
#, fuzzy
|
||||
msgid "Edit"
|
||||
msgstr "Можна редагувати"
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr "Видалити"
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr ""
|
||||
|
||||
|
@ -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: 2014-11-20 17:39+0300\n"
|
||||
"POT-Creation-Date: 2014-11-21 05:12+0300\n"
|
||||
"PO-Revision-Date: 2014-09-10 22:50+0800\n"
|
||||
"Last-Translator: Steve Lemuel <wlemuel@hotmail.com>\n"
|
||||
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
|
||||
@ -38,7 +38,7 @@ msgid "Current version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:483
|
||||
msgid "New version : %2"
|
||||
msgid "New version : %1"
|
||||
msgstr ""
|
||||
|
||||
#: awesome-widget.cpp:484
|
||||
@ -143,24 +143,30 @@ msgstr "数据引擎"
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:734 configuration.cpp:759
|
||||
#: configuration.cpp:734 configuration.cpp:760 configuration.cpp:868
|
||||
#: configuration.cpp:910
|
||||
msgid "Enter file name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:735 configuration.cpp:760
|
||||
#: configuration.cpp:735 configuration.cpp:761 configuration.cpp:869
|
||||
#: configuration.cpp:911
|
||||
msgid "File name"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:791 configuration.cpp:814
|
||||
#: configuration.cpp:793 configuration.cpp:819
|
||||
#, fuzzy
|
||||
msgid "Edit"
|
||||
msgstr "可编辑的"
|
||||
|
||||
#: configuration.cpp:792 configuration.cpp:815 configuration.cpp:835
|
||||
#: configuration.cpp:794 configuration.cpp:820
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
|
||||
#: configuration.cpp:795 configuration.cpp:821 configuration.cpp:843
|
||||
msgid "Remove"
|
||||
msgstr "移除"
|
||||
|
||||
#: configuration.cpp:947
|
||||
#: configuration.cpp:1037
|
||||
msgid "Select font"
|
||||
msgstr "选择字体"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user