mirror of
https://github.com/arcan1s/awesome-widgets.git
synced 2025-04-25 07:57:19 +00:00
add button to insert tag
This commit is contained in:
parent
eae742c559
commit
653cc4fd84
@ -142,6 +142,8 @@ void AwesomeWidget::createConfigurationInterface(KConfigDialog *parent)
|
|||||||
|
|
||||||
//widget
|
//widget
|
||||||
uiWidConfig.textEdit_elements->setPlainText(configuration[QString("text")]);
|
uiWidConfig.textEdit_elements->setPlainText(configuration[QString("text")]);
|
||||||
|
uiWidConfig.comboBox_tags->clear();
|
||||||
|
uiWidConfig.comboBox_tags->addItems(getKeys());
|
||||||
|
|
||||||
// advanced
|
// advanced
|
||||||
if (configuration[QString("background")].toInt() == 0)
|
if (configuration[QString("background")].toInt() == 0)
|
||||||
@ -391,6 +393,7 @@ void AwesomeWidget::createConfigurationInterface(KConfigDialog *parent)
|
|||||||
this, SLOT(addNewPkgCommand(QTableWidgetItem *)));
|
this, SLOT(addNewPkgCommand(QTableWidgetItem *)));
|
||||||
connect(uiDEConfig.tableWidget_pkgCommand, SIGNAL(customContextMenuRequested(QPoint)),
|
connect(uiDEConfig.tableWidget_pkgCommand, SIGNAL(customContextMenuRequested(QPoint)),
|
||||||
this, SLOT(contextMenuPkgCommand(QPoint)));
|
this, SLOT(contextMenuPkgCommand(QPoint)));
|
||||||
|
connect(uiWidConfig.pushButton_tags, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
||||||
connect(uiWidConfig.pushButton_bold, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
connect(uiWidConfig.pushButton_bold, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
||||||
connect(uiWidConfig.pushButton_italic, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
connect(uiWidConfig.pushButton_italic, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
||||||
connect(uiWidConfig.pushButton_underline, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
connect(uiWidConfig.pushButton_underline, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
||||||
@ -401,7 +404,6 @@ void AwesomeWidget::createConfigurationInterface(KConfigDialog *parent)
|
|||||||
connect(uiWidConfig.pushButton_fill, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
connect(uiWidConfig.pushButton_fill, SIGNAL(clicked(bool)), this, SLOT(setFormating()));
|
||||||
connect(uiWidConfig.pushButton_font, SIGNAL(clicked(bool)), this, SLOT(setFontFormating()));
|
connect(uiWidConfig.pushButton_font, SIGNAL(clicked(bool)), this, SLOT(setFontFormating()));
|
||||||
|
|
||||||
|
|
||||||
connect(parent, SIGNAL(okClicked()), this, SLOT(configAccepted()));
|
connect(parent, SIGNAL(okClicked()), this, SLOT(configAccepted()));
|
||||||
connect(parent, SIGNAL(applyClicked()), this, SLOT(configAccepted()));
|
connect(parent, SIGNAL(applyClicked()), this, SLOT(configAccepted()));
|
||||||
}
|
}
|
||||||
@ -736,7 +738,11 @@ void AwesomeWidget::setFormating()
|
|||||||
if (debug) qDebug() << PDEBUG << ":" << "Sender" << sender();
|
if (debug) qDebug() << PDEBUG << ":" << "Sender" << sender();
|
||||||
|
|
||||||
QString selectedText = uiWidConfig.textEdit_elements->textCursor().selectedText();
|
QString selectedText = uiWidConfig.textEdit_elements->textCursor().selectedText();
|
||||||
if (sender() == uiWidConfig.pushButton_bold)
|
if (sender() == uiWidConfig.pushButton_tags)
|
||||||
|
uiWidConfig.textEdit_elements->insertPlainText(QString("$") +
|
||||||
|
uiWidConfig.comboBox_tags->currentText() +
|
||||||
|
QString("$"));
|
||||||
|
else if (sender() == uiWidConfig.pushButton_bold)
|
||||||
uiWidConfig.textEdit_elements->insertPlainText(QString("<b>") + selectedText + QString("</b>"));
|
uiWidConfig.textEdit_elements->insertPlainText(QString("<b>") + selectedText + QString("</b>"));
|
||||||
else if (sender() == uiWidConfig.pushButton_italic)
|
else if (sender() == uiWidConfig.pushButton_italic)
|
||||||
uiWidConfig.textEdit_elements->insertPlainText(QString("<i>") + selectedText + QString("</i>"));
|
uiWidConfig.textEdit_elements->insertPlainText(QString("<i>") + selectedText + QString("</i>"));
|
||||||
|
@ -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: 2014-09-05 11:14+0400\n"
|
"POT-Creation-Date: 2014-09-05 11:46+0400\n"
|
||||||
"PO-Revision-Date: 2014-09-05 11:14+0400\n"
|
"PO-Revision-Date: 2014-09-05 11:14+0400\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"
|
||||||
@ -30,43 +30,43 @@ msgstr "Show README"
|
|||||||
msgid "Update text"
|
msgid "Update text"
|
||||||
msgstr "Update text"
|
msgstr "Update text"
|
||||||
|
|
||||||
#: configuration.cpp:329 po/rc.cpp:163 rc.cpp:163
|
#: configuration.cpp:331 po/rc.cpp:163 rc.cpp:163
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Custom command"
|
msgstr "Custom command"
|
||||||
|
|
||||||
#: configuration.cpp:359 po/rc.cpp:153 rc.cpp:153
|
#: configuration.cpp:361 po/rc.cpp:153 rc.cpp:153
|
||||||
msgid "Package manager"
|
msgid "Package manager"
|
||||||
msgstr "Package manager"
|
msgstr "Package manager"
|
||||||
|
|
||||||
#: configuration.cpp:360 po/rc.cpp:156 rc.cpp:156
|
#: configuration.cpp:362 po/rc.cpp:156 rc.cpp:156
|
||||||
msgid "Null lines"
|
msgid "Null lines"
|
||||||
msgstr "Null lines"
|
msgstr "Null lines"
|
||||||
|
|
||||||
#: configuration.cpp:372
|
#: configuration.cpp:374
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Widget"
|
msgstr "Widget"
|
||||||
|
|
||||||
#: configuration.cpp:373
|
#: configuration.cpp:375
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Advanced"
|
msgstr "Advanced"
|
||||||
|
|
||||||
#: configuration.cpp:374
|
#: configuration.cpp:376
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Tooltip"
|
msgstr "Tooltip"
|
||||||
|
|
||||||
#: configuration.cpp:375
|
#: configuration.cpp:377
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Appearance"
|
msgstr "Appearance"
|
||||||
|
|
||||||
#: configuration.cpp:376
|
#: configuration.cpp:378
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#: configuration.cpp:661 configuration.cpp:675
|
#: configuration.cpp:663 configuration.cpp:677
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remove"
|
msgstr "Remove"
|
||||||
|
|
||||||
#: configuration.cpp:722
|
#: configuration.cpp:724
|
||||||
msgid "Select font"
|
msgid "Select font"
|
||||||
msgstr "Select font"
|
msgstr "Select font"
|
||||||
|
|
||||||
@ -371,12 +371,16 @@ msgstr "Ctrl+I"
|
|||||||
msgid "Ctrl+U"
|
msgid "Ctrl+U"
|
||||||
msgstr "Ctrl+U"
|
msgstr "Ctrl+U"
|
||||||
|
|
||||||
#: po/rc.cpp:230 rc.cpp:230
|
#: po/rc.cpp:232 rc.cpp:232
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Add"
|
||||||
|
|
||||||
|
#: po/rc.cpp:233 rc.cpp:233
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: po/rc.cpp:231 rc.cpp:231
|
#: po/rc.cpp:234 rc.cpp:234
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
@ -384,9 +388,6 @@ msgstr "esalexeev@gmail.com"
|
|||||||
#~ msgid "Form"
|
#~ msgid "Form"
|
||||||
#~ msgstr "Form"
|
#~ msgstr "Form"
|
||||||
|
|
||||||
#~ msgid "Add"
|
|
||||||
#~ msgstr "Add"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Network directory"
|
#~ msgstr "Network directory"
|
||||||
|
|
||||||
|
@ -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: 2014-09-05 11:14+0400\n"
|
"POT-Creation-Date: 2014-09-05 11:46+0400\n"
|
||||||
"PO-Revision-Date: 2014-09-05 11:18+0400\n"
|
"PO-Revision-Date: 2014-09-05 11:18+0400\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Spanish <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Spanish <kde-russian@lists.kde.ru>\n"
|
||||||
@ -30,43 +30,43 @@ msgstr "Mostrar el README"
|
|||||||
msgid "Update text"
|
msgid "Update text"
|
||||||
msgstr "Actualizar texto"
|
msgstr "Actualizar texto"
|
||||||
|
|
||||||
#: configuration.cpp:329 po/rc.cpp:163 rc.cpp:163
|
#: configuration.cpp:331 po/rc.cpp:163 rc.cpp:163
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Comando personalizado"
|
msgstr "Comando personalizado"
|
||||||
|
|
||||||
#: configuration.cpp:359 po/rc.cpp:153 rc.cpp:153
|
#: configuration.cpp:361 po/rc.cpp:153 rc.cpp:153
|
||||||
msgid "Package manager"
|
msgid "Package manager"
|
||||||
msgstr "Gestor de paquetes"
|
msgstr "Gestor de paquetes"
|
||||||
|
|
||||||
#: configuration.cpp:360 po/rc.cpp:156 rc.cpp:156
|
#: configuration.cpp:362 po/rc.cpp:156 rc.cpp:156
|
||||||
msgid "Null lines"
|
msgid "Null lines"
|
||||||
msgstr "Número de líneas nulas"
|
msgstr "Número de líneas nulas"
|
||||||
|
|
||||||
#: configuration.cpp:372
|
#: configuration.cpp:374
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Widget"
|
msgstr "Widget"
|
||||||
|
|
||||||
#: configuration.cpp:373
|
#: configuration.cpp:375
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avanzado"
|
msgstr "Avanzado"
|
||||||
|
|
||||||
#: configuration.cpp:374
|
#: configuration.cpp:376
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Ventana emergente"
|
msgstr "Ventana emergente"
|
||||||
|
|
||||||
#: configuration.cpp:375
|
#: configuration.cpp:377
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Apariencia"
|
msgstr "Apariencia"
|
||||||
|
|
||||||
#: configuration.cpp:376
|
#: configuration.cpp:378
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#: configuration.cpp:661 configuration.cpp:675
|
#: configuration.cpp:663 configuration.cpp:677
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Eliminar"
|
msgstr "Eliminar"
|
||||||
|
|
||||||
#: configuration.cpp:722
|
#: configuration.cpp:724
|
||||||
msgid "Select font"
|
msgid "Select font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -373,12 +373,16 @@ msgstr "Ctrl+I"
|
|||||||
msgid "Ctrl+U"
|
msgid "Ctrl+U"
|
||||||
msgstr "Ctrl+U"
|
msgstr "Ctrl+U"
|
||||||
|
|
||||||
#: po/rc.cpp:230 rc.cpp:230
|
#: po/rc.cpp:232 rc.cpp:232
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Añadir"
|
||||||
|
|
||||||
|
#: po/rc.cpp:233 rc.cpp:233
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Tu nombre"
|
msgstr "Tu nombre"
|
||||||
|
|
||||||
#: po/rc.cpp:231 rc.cpp:231
|
#: po/rc.cpp:234 rc.cpp:234
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "Tus correos"
|
msgstr "Tus correos"
|
||||||
@ -386,9 +390,6 @@ msgstr "Tus correos"
|
|||||||
#~ msgid "Form"
|
#~ msgid "Form"
|
||||||
#~ msgstr "Formulario"
|
#~ msgstr "Formulario"
|
||||||
|
|
||||||
#~ msgid "Add"
|
|
||||||
#~ msgstr "Añadir"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Directorio de la red"
|
#~ msgstr "Directorio de la red"
|
||||||
|
|
||||||
|
@ -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: 2014-09-05 11:14+0400\n"
|
"POT-Creation-Date: 2014-09-05 11:46+0400\n"
|
||||||
"PO-Revision-Date: 2014-09-05 11:20+0400\n"
|
"PO-Revision-Date: 2014-09-05 11:20+0400\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"
|
||||||
@ -31,43 +31,43 @@ msgstr "Voir le README"
|
|||||||
msgid "Update text"
|
msgid "Update text"
|
||||||
msgstr "Mettre à jour le texte"
|
msgstr "Mettre à jour le texte"
|
||||||
|
|
||||||
#: configuration.cpp:329 po/rc.cpp:163 rc.cpp:163
|
#: configuration.cpp:331 po/rc.cpp:163 rc.cpp:163
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Commande personnalisée"
|
msgstr "Commande personnalisée"
|
||||||
|
|
||||||
#: configuration.cpp:359 po/rc.cpp:153 rc.cpp:153
|
#: configuration.cpp:361 po/rc.cpp:153 rc.cpp:153
|
||||||
msgid "Package manager"
|
msgid "Package manager"
|
||||||
msgstr "Gestionnaire de paquets"
|
msgstr "Gestionnaire de paquets"
|
||||||
|
|
||||||
#: configuration.cpp:360 po/rc.cpp:156 rc.cpp:156
|
#: configuration.cpp:362 po/rc.cpp:156 rc.cpp:156
|
||||||
msgid "Null lines"
|
msgid "Null lines"
|
||||||
msgstr "Nombre d'éléments pour les conseils"
|
msgstr "Nombre d'éléments pour les conseils"
|
||||||
|
|
||||||
#: configuration.cpp:372
|
#: configuration.cpp:374
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Widget"
|
msgstr "Widget"
|
||||||
|
|
||||||
#: configuration.cpp:373
|
#: configuration.cpp:375
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avancé"
|
msgstr "Avancé"
|
||||||
|
|
||||||
#: configuration.cpp:374
|
#: configuration.cpp:376
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Conseil"
|
msgstr "Conseil"
|
||||||
|
|
||||||
#: configuration.cpp:375
|
#: configuration.cpp:377
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Apparence"
|
msgstr "Apparence"
|
||||||
|
|
||||||
#: configuration.cpp:376
|
#: configuration.cpp:378
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "Moteur de données"
|
msgstr "Moteur de données"
|
||||||
|
|
||||||
#: configuration.cpp:661 configuration.cpp:675
|
#: configuration.cpp:663 configuration.cpp:677
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Supprimer"
|
msgstr "Supprimer"
|
||||||
|
|
||||||
#: configuration.cpp:722
|
#: configuration.cpp:724
|
||||||
msgid "Select font"
|
msgid "Select font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -376,12 +376,16 @@ msgstr "Ctrl+I"
|
|||||||
msgid "Ctrl+U"
|
msgid "Ctrl+U"
|
||||||
msgstr "Ctrl+U"
|
msgstr "Ctrl+U"
|
||||||
|
|
||||||
#: po/rc.cpp:230 rc.cpp:230
|
#: po/rc.cpp:232 rc.cpp:232
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Ajouter"
|
||||||
|
|
||||||
|
#: po/rc.cpp:233 rc.cpp:233
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: po/rc.cpp:231 rc.cpp:231
|
#: po/rc.cpp:234 rc.cpp:234
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
@ -389,9 +393,6 @@ msgstr "esalexeev@gmail.com"
|
|||||||
#~ msgid "Form"
|
#~ msgid "Form"
|
||||||
#~ msgstr "Entrées"
|
#~ msgstr "Entrées"
|
||||||
|
|
||||||
#~ msgid "Add"
|
|
||||||
#~ msgstr "Ajouter"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Voisinage réseau"
|
#~ msgstr "Voisinage réseau"
|
||||||
|
|
||||||
|
@ -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: 2014-09-05 11:14+0400\n"
|
"POT-Creation-Date: 2014-09-05 11:46+0400\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"
|
||||||
@ -29,43 +29,43 @@ msgstr ""
|
|||||||
msgid "Update text"
|
msgid "Update text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:329 po/rc.cpp:163 rc.cpp:163
|
#: configuration.cpp:331 po/rc.cpp:163 rc.cpp:163
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:359 po/rc.cpp:153 rc.cpp:153
|
#: configuration.cpp:361 po/rc.cpp:153 rc.cpp:153
|
||||||
msgid "Package manager"
|
msgid "Package manager"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:360 po/rc.cpp:156 rc.cpp:156
|
#: configuration.cpp:362 po/rc.cpp:156 rc.cpp:156
|
||||||
msgid "Null lines"
|
msgid "Null lines"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:372
|
#: configuration.cpp:374
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:373
|
#: configuration.cpp:375
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:374
|
#: configuration.cpp:376
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:375
|
#: configuration.cpp:377
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:376
|
#: configuration.cpp:378
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:661 configuration.cpp:675
|
#: configuration.cpp:663 configuration.cpp:677
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: configuration.cpp:722
|
#: configuration.cpp:724
|
||||||
msgid "Select font"
|
msgid "Select font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -342,12 +342,16 @@ msgstr ""
|
|||||||
msgid "Ctrl+U"
|
msgid "Ctrl+U"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: po/rc.cpp:230 rc.cpp:230
|
#: po/rc.cpp:232 rc.cpp:232
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: po/rc.cpp:233 rc.cpp:233
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: po/rc.cpp:231 rc.cpp:231
|
#: po/rc.cpp:234 rc.cpp:234
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
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: 2014-09-05 11:14+0400\n"
|
"POT-Creation-Date: 2014-09-05 11:46+0400\n"
|
||||||
"PO-Revision-Date: 2014-09-05 11:21+0400\n"
|
"PO-Revision-Date: 2014-09-05 11:21+0400\n"
|
||||||
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
"Last-Translator: Evgeniy Alekseev <esalexeev@gmail.com>\n"
|
||||||
"Language-Team: Brazilian Portuguese <kde-russian@lists.kde.ru>\n"
|
"Language-Team: Brazilian Portuguese <kde-russian@lists.kde.ru>\n"
|
||||||
@ -29,43 +29,43 @@ msgstr "Mostrar README"
|
|||||||
msgid "Update text"
|
msgid "Update text"
|
||||||
msgstr "Atualizar texto"
|
msgstr "Atualizar texto"
|
||||||
|
|
||||||
#: configuration.cpp:329 po/rc.cpp:163 rc.cpp:163
|
#: configuration.cpp:331 po/rc.cpp:163 rc.cpp:163
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Comando personalizado"
|
msgstr "Comando personalizado"
|
||||||
|
|
||||||
#: configuration.cpp:359 po/rc.cpp:153 rc.cpp:153
|
#: configuration.cpp:361 po/rc.cpp:153 rc.cpp:153
|
||||||
msgid "Package manager"
|
msgid "Package manager"
|
||||||
msgstr "Gerenciador de pacotes"
|
msgstr "Gerenciador de pacotes"
|
||||||
|
|
||||||
#: configuration.cpp:360 po/rc.cpp:156 rc.cpp:156
|
#: configuration.cpp:362 po/rc.cpp:156 rc.cpp:156
|
||||||
msgid "Null lines"
|
msgid "Null lines"
|
||||||
msgstr "Número de valores para dicas de contexto"
|
msgstr "Número de valores para dicas de contexto"
|
||||||
|
|
||||||
#: configuration.cpp:372
|
#: configuration.cpp:374
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Widget"
|
msgstr "Widget"
|
||||||
|
|
||||||
#: configuration.cpp:373
|
#: configuration.cpp:375
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avançado"
|
msgstr "Avançado"
|
||||||
|
|
||||||
#: configuration.cpp:374
|
#: configuration.cpp:376
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Dica de contexto"
|
msgstr "Dica de contexto"
|
||||||
|
|
||||||
#: configuration.cpp:375
|
#: configuration.cpp:377
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Aparência"
|
msgstr "Aparência"
|
||||||
|
|
||||||
#: configuration.cpp:376
|
#: configuration.cpp:378
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "Engine de dados"
|
msgstr "Engine de dados"
|
||||||
|
|
||||||
#: configuration.cpp:661 configuration.cpp:675
|
#: configuration.cpp:663 configuration.cpp:677
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Remover"
|
msgstr "Remover"
|
||||||
|
|
||||||
#: configuration.cpp:722
|
#: configuration.cpp:724
|
||||||
msgid "Select font"
|
msgid "Select font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -370,12 +370,16 @@ msgstr "Ctrl+I"
|
|||||||
msgid "Ctrl+U"
|
msgid "Ctrl+U"
|
||||||
msgstr "Ctrl+U"
|
msgstr "Ctrl+U"
|
||||||
|
|
||||||
#: po/rc.cpp:230 rc.cpp:230
|
#: po/rc.cpp:232 rc.cpp:232
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Adicionar"
|
||||||
|
|
||||||
|
#: po/rc.cpp:233 rc.cpp:233
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "under"
|
msgstr "under"
|
||||||
|
|
||||||
#: po/rc.cpp:231 rc.cpp:231
|
#: po/rc.cpp:234 rc.cpp:234
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "dreanazous@gmail.com"
|
msgstr "dreanazous@gmail.com"
|
||||||
@ -383,9 +387,6 @@ msgstr "dreanazous@gmail.com"
|
|||||||
#~ msgid "Form"
|
#~ msgid "Form"
|
||||||
#~ msgstr "Forma"
|
#~ msgstr "Forma"
|
||||||
|
|
||||||
#~ msgid "Add"
|
|
||||||
#~ msgstr "Adicionar"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Diretório de rede"
|
#~ msgstr "Diretório de rede"
|
||||||
|
|
||||||
|
@ -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: 2014-09-05 11:14+0400\n"
|
"POT-Creation-Date: 2014-09-05 11:46+0400\n"
|
||||||
"PO-Revision-Date: 2014-09-05 11:16+0400\n"
|
"PO-Revision-Date: 2014-09-05 11:16+0400\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"
|
||||||
@ -30,43 +30,43 @@ msgstr "Показать README"
|
|||||||
msgid "Update text"
|
msgid "Update text"
|
||||||
msgstr "Обновить текст"
|
msgstr "Обновить текст"
|
||||||
|
|
||||||
#: configuration.cpp:329 po/rc.cpp:163 rc.cpp:163
|
#: configuration.cpp:331 po/rc.cpp:163 rc.cpp:163
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Своя команда"
|
msgstr "Своя команда"
|
||||||
|
|
||||||
#: configuration.cpp:359 po/rc.cpp:153 rc.cpp:153
|
#: configuration.cpp:361 po/rc.cpp:153 rc.cpp:153
|
||||||
msgid "Package manager"
|
msgid "Package manager"
|
||||||
msgstr "Пакетный менеджер"
|
msgstr "Пакетный менеджер"
|
||||||
|
|
||||||
#: configuration.cpp:360 po/rc.cpp:156 rc.cpp:156
|
#: configuration.cpp:362 po/rc.cpp:156 rc.cpp:156
|
||||||
msgid "Null lines"
|
msgid "Null lines"
|
||||||
msgstr "Число пустых линий"
|
msgstr "Число пустых линий"
|
||||||
|
|
||||||
#: configuration.cpp:372
|
#: configuration.cpp:374
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Виджет"
|
msgstr "Виджет"
|
||||||
|
|
||||||
#: configuration.cpp:373
|
#: configuration.cpp:375
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Расширенные"
|
msgstr "Расширенные"
|
||||||
|
|
||||||
#: configuration.cpp:374
|
#: configuration.cpp:376
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Тултип"
|
msgstr "Тултип"
|
||||||
|
|
||||||
#: configuration.cpp:375
|
#: configuration.cpp:377
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Внешний вид"
|
msgstr "Внешний вид"
|
||||||
|
|
||||||
#: configuration.cpp:376
|
#: configuration.cpp:378
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#: configuration.cpp:661 configuration.cpp:675
|
#: configuration.cpp:663 configuration.cpp:677
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Удалить"
|
msgstr "Удалить"
|
||||||
|
|
||||||
#: configuration.cpp:722
|
#: configuration.cpp:724
|
||||||
msgid "Select font"
|
msgid "Select font"
|
||||||
msgstr "Выберете шрифт"
|
msgstr "Выберете шрифт"
|
||||||
|
|
||||||
@ -372,12 +372,16 @@ msgstr "Ctrl+I"
|
|||||||
msgid "Ctrl+U"
|
msgid "Ctrl+U"
|
||||||
msgstr "Ctrl+U"
|
msgstr "Ctrl+U"
|
||||||
|
|
||||||
#: po/rc.cpp:230 rc.cpp:230
|
#: po/rc.cpp:232 rc.cpp:232
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Добавить"
|
||||||
|
|
||||||
|
#: po/rc.cpp:233 rc.cpp:233
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Evgeniy Alekseev"
|
msgstr "Evgeniy Alekseev"
|
||||||
|
|
||||||
#: po/rc.cpp:231 rc.cpp:231
|
#: po/rc.cpp:234 rc.cpp:234
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "esalexeev@gmail.com"
|
msgstr "esalexeev@gmail.com"
|
||||||
@ -385,9 +389,6 @@ msgstr "esalexeev@gmail.com"
|
|||||||
#~ msgid "Form"
|
#~ msgid "Form"
|
||||||
#~ msgstr "Form"
|
#~ msgstr "Form"
|
||||||
|
|
||||||
#~ msgid "Add"
|
|
||||||
#~ msgstr "Добавить"
|
|
||||||
|
|
||||||
#~ 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: 2014-09-05 11:14+0400\n"
|
"POT-Creation-Date: 2014-09-05 11:46+0400\n"
|
||||||
"PO-Revision-Date: 2014-09-05 11:22+0400\n"
|
"PO-Revision-Date: 2014-09-05 11:22+0400\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"
|
||||||
@ -30,43 +30,43 @@ msgstr "Показати README"
|
|||||||
msgid "Update text"
|
msgid "Update text"
|
||||||
msgstr "Оновити текст"
|
msgstr "Оновити текст"
|
||||||
|
|
||||||
#: configuration.cpp:329 po/rc.cpp:163 rc.cpp:163
|
#: configuration.cpp:331 po/rc.cpp:163 rc.cpp:163
|
||||||
msgid "Custom command"
|
msgid "Custom command"
|
||||||
msgstr "Своя команда"
|
msgstr "Своя команда"
|
||||||
|
|
||||||
#: configuration.cpp:359 po/rc.cpp:153 rc.cpp:153
|
#: configuration.cpp:361 po/rc.cpp:153 rc.cpp:153
|
||||||
msgid "Package manager"
|
msgid "Package manager"
|
||||||
msgstr "Пакетний менеджер"
|
msgstr "Пакетний менеджер"
|
||||||
|
|
||||||
#: configuration.cpp:360 po/rc.cpp:156 rc.cpp:156
|
#: configuration.cpp:362 po/rc.cpp:156 rc.cpp:156
|
||||||
msgid "Null lines"
|
msgid "Null lines"
|
||||||
msgstr "Кількість пустих рядків"
|
msgstr "Кількість пустих рядків"
|
||||||
|
|
||||||
#: configuration.cpp:372
|
#: configuration.cpp:374
|
||||||
msgid "Widget"
|
msgid "Widget"
|
||||||
msgstr "Віджет"
|
msgstr "Віджет"
|
||||||
|
|
||||||
#: configuration.cpp:373
|
#: configuration.cpp:375
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Розширені"
|
msgstr "Розширені"
|
||||||
|
|
||||||
#: configuration.cpp:374
|
#: configuration.cpp:376
|
||||||
msgid "Tooltip"
|
msgid "Tooltip"
|
||||||
msgstr "Тултіп"
|
msgstr "Тултіп"
|
||||||
|
|
||||||
#: configuration.cpp:375
|
#: configuration.cpp:377
|
||||||
msgid "Appearance"
|
msgid "Appearance"
|
||||||
msgstr "Зовнішній вигляд"
|
msgstr "Зовнішній вигляд"
|
||||||
|
|
||||||
#: configuration.cpp:376
|
#: configuration.cpp:378
|
||||||
msgid "DataEngine"
|
msgid "DataEngine"
|
||||||
msgstr "DataEngine"
|
msgstr "DataEngine"
|
||||||
|
|
||||||
#: configuration.cpp:661 configuration.cpp:675
|
#: configuration.cpp:663 configuration.cpp:677
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Видалити"
|
msgstr "Видалити"
|
||||||
|
|
||||||
#: configuration.cpp:722
|
#: configuration.cpp:724
|
||||||
msgid "Select font"
|
msgid "Select font"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -373,12 +373,16 @@ msgstr "Ctrl+I"
|
|||||||
msgid "Ctrl+U"
|
msgid "Ctrl+U"
|
||||||
msgstr "Ctrl+U"
|
msgstr "Ctrl+U"
|
||||||
|
|
||||||
#: po/rc.cpp:230 rc.cpp:230
|
#: po/rc.cpp:232 rc.cpp:232
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Добавити"
|
||||||
|
|
||||||
|
#: po/rc.cpp:233 rc.cpp:233
|
||||||
msgctxt "NAME OF TRANSLATORS"
|
msgctxt "NAME OF TRANSLATORS"
|
||||||
msgid "Your names"
|
msgid "Your names"
|
||||||
msgstr "Slobodyan Victor"
|
msgstr "Slobodyan Victor"
|
||||||
|
|
||||||
#: po/rc.cpp:231 rc.cpp:231
|
#: po/rc.cpp:234 rc.cpp:234
|
||||||
msgctxt "EMAIL OF TRANSLATORS"
|
msgctxt "EMAIL OF TRANSLATORS"
|
||||||
msgid "Your emails"
|
msgid "Your emails"
|
||||||
msgstr "sarumyan@i.ua"
|
msgstr "sarumyan@i.ua"
|
||||||
@ -386,9 +390,6 @@ msgstr "sarumyan@i.ua"
|
|||||||
#~ msgid "Form"
|
#~ msgid "Form"
|
||||||
#~ msgstr "Form"
|
#~ msgstr "Form"
|
||||||
|
|
||||||
#~ msgid "Add"
|
|
||||||
#~ msgstr "Добавити"
|
|
||||||
|
|
||||||
#~ msgid "Network directory"
|
#~ msgid "Network directory"
|
||||||
#~ msgstr "Шлях до інтерфейсів"
|
#~ msgstr "Шлях до інтерфейсів"
|
||||||
|
|
||||||
|
@ -47,19 +47,6 @@
|
|||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QHBoxLayout" name="layput_mainFormating">
|
<layout class="QHBoxLayout" name="layput_mainFormating">
|
||||||
<item>
|
|
||||||
<spacer name="spacer_mainFormatingLeft">
|
|
||||||
<property name="orientation">
|
|
||||||
<enum>Qt::Horizontal</enum>
|
|
||||||
</property>
|
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="pushButton_font">
|
<widget class="QPushButton" name="pushButton_font">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -181,18 +168,38 @@
|
|||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<spacer name="spacer_mainFormatingRight">
|
<spacer name="spacer_mainFormatingCenter3">
|
||||||
<property name="orientation">
|
<property name="orientation">
|
||||||
<enum>Qt::Horizontal</enum>
|
<enum>Qt::Horizontal</enum>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="sizeType">
|
||||||
|
<enum>QSizePolicy::Fixed</enum>
|
||||||
|
</property>
|
||||||
<property name="sizeHint" stdset="0">
|
<property name="sizeHint" stdset="0">
|
||||||
<size>
|
<size>
|
||||||
<width>40</width>
|
<width>20</width>
|
||||||
<height>20</height>
|
<height>20</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QComboBox" name="comboBox_tags">
|
||||||
|
<property name="sizePolicy">
|
||||||
|
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="pushButton_tags">
|
||||||
|
<property name="text">
|
||||||
|
<string>Add</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
|
Loading…
Reference in New Issue
Block a user