From 50577b5b4881b833f4cb98e09eb11d38ec20084e Mon Sep 17 00:00:00 2001 From: Cy Rossignol Date: Thu, 13 May 2021 08:47:32 -0500 Subject: [PATCH 1/2] Refresh GUI transaction history page design This updates the GUI transaction history page to match the proposed redesign: - Add a header bar with address/label filter input - Update colors, layout, sizing, and spacing --- src/qt/bitcoingui.cpp | 8 +- src/qt/bitcoingui.h | 3 +- src/qt/res/stylesheets/dark_stylesheet.qss | 13 +- src/qt/res/stylesheets/light_stylesheet.qss | 13 +- src/qt/transactionview.cpp | 125 ++++++++++++-------- src/qt/transactionview.h | 4 +- 6 files changed, 102 insertions(+), 64 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index d8b22407d9..6ff58bf6df 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -183,11 +183,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): // Create tabs overviewPage = new OverviewPage(); - transactionsPage = new QWidget(this); - QVBoxLayout *vbox = new QVBoxLayout(); transactionView = new TransactionView(this); - vbox->addWidget(transactionView); - transactionsPage->setLayout(vbox); addressBookPage = new QWidget(this); addressBook = new AddressBookPage(AddressBookPage::ForEditing, AddressBookPage::SendingTab); @@ -205,7 +201,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent): centralWidget = new QStackedWidget(this); centralWidget->addWidget(overviewPage); - centralWidget->addWidget(transactionsPage); + centralWidget->addWidget(transactionView); centralWidget->addWidget(addressBookPage); centralWidget->addWidget(receiveCoinsPage); centralWidget->addWidget(sendCoinsPage); @@ -1277,7 +1273,7 @@ void BitcoinGUI::gotoOverviewPage() void BitcoinGUI::gotoHistoryPage() { historyAction->setChecked(true); - centralWidget->setCurrentWidget(transactionsPage); + centralWidget->setCurrentWidget(transactionView); exportAction->setEnabled(true); disconnect(exportAction, SIGNAL(triggered()), 0, 0); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 6913a6f4d8..41771acf41 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -79,10 +79,10 @@ class BitcoinGUI : public QMainWindow QStackedWidget *centralWidget; OverviewPage *overviewPage; - QWidget *transactionsPage; QWidget *addressBookPage; ReceiveCoinsPage *receiveCoinsPage; SendCoinsDialog *sendCoinsPage; + TransactionView *transactionView; VotingDialog *votingPage; SignVerifyMessageDialog *signVerifyMessageDialog; std::unique_ptr updateMessageDialog; @@ -135,7 +135,6 @@ class BitcoinGUI : public QMainWindow QSystemTrayIcon *trayIcon; QMenu *trayIconMenu; Notificator *notificator; - TransactionView *transactionView; AddressBookPage *addressBook; RPCConsole *rpcConsole; DiagnosticsDialog *diagnosticsDialog; diff --git a/src/qt/res/stylesheets/dark_stylesheet.qss b/src/qt/res/stylesheets/dark_stylesheet.qss index cd102fe68a..ae25e67fdd 100644 --- a/src/qt/res/stylesheets/dark_stylesheet.qss +++ b/src/qt/res/stylesheets/dark_stylesheet.qss @@ -37,8 +37,7 @@ QTreeWidget { .QFrame, QGroupBox, QTabWidget::pane, -#SendCoinsEntry, -TransactionView { +#SendCoinsEntry { background: rgb(23, 30, 40); border: none; border-radius: 0.26em; @@ -613,6 +612,7 @@ QStatusBar QToolTip { } #currentPollsFrame, +#historyTableFrame, #recentTransactionsFrame, #researcherFrame, #SendCoinsEntry, @@ -772,6 +772,15 @@ QStatusBar QToolTip { font-weight:bold; } +/* History page */ + +TransactionView #filterFrame { + background: rgba(0, 0, 0, 0.1); + border-bottom: 0.065em solid rgba(0, 0, 0, 0.3); + border-radius: 0; + padding: 0.5em 1em; +} + /* options dialog */ #OptionsDialog #statusLabel{ diff --git a/src/qt/res/stylesheets/light_stylesheet.qss b/src/qt/res/stylesheets/light_stylesheet.qss index 5e32010ac3..a7bc914c6b 100644 --- a/src/qt/res/stylesheets/light_stylesheet.qss +++ b/src/qt/res/stylesheets/light_stylesheet.qss @@ -33,8 +33,7 @@ QTreeWidget { .QFrame, QGroupBox, QTabWidget::pane, -#SendCoinsEntry, -TransactionView { +#SendCoinsEntry { background: white; border: none; border-radius: 0.26em; @@ -616,6 +615,7 @@ QStatusBar .QFrame QLabel { } #currentPollsFrame, +#historyTableFrame, #recentTransactionsFrame, #researcherFrame, #SendCoinsEntry, @@ -769,6 +769,15 @@ QStatusBar .QFrame QLabel { font-weight:bold; } +/* History page */ + +TransactionView #filterFrame { + background: rgb(244, 247, 249); + border-bottom: 0.065em solid rgba(0, 0, 0, 0.1); + border-radius: 0; + padding: 0.5em 1em; +} + /* options dialog */ #OptionsDialog #statusLabel{ diff --git a/src/qt/transactionview.cpp b/src/qt/transactionview.cpp index 429ad9b6f6..1fae11f68b 100644 --- a/src/qt/transactionview.cpp +++ b/src/qt/transactionview.cpp @@ -11,6 +11,7 @@ #include "editaddressdialog.h" #include "optionsmodel.h" #include "guiutil.h" +#include "qt/decoration.h" #include #include @@ -29,24 +30,43 @@ #include #include -TransactionView::TransactionView(QWidget *parent) : - QFrame(parent), model(0), transactionProxyModel(0), - transactionView(0) +TransactionView::TransactionView(QWidget *parent) + : QFrame(parent) + , model(nullptr) + , transactionProxyModel(nullptr) + , transactionView(nullptr) + , searchWidgetIconAction(new QAction()) { - // Build filter row - setContentsMargins(0,0,0,0); + setContentsMargins(0, 0, 0, 0); + + // Build header + QHBoxLayout *headerFrameLayout = new QHBoxLayout(); + headerFrameLayout->setContentsMargins(0, 0, 0, 0); + headerFrameLayout->setSpacing(15); + + QLabel *headerTitleLabel = new QLabel(tr("Transaction History")); + headerTitleLabel->setObjectName("headerTitleLabel"); + GRC::ScaleFontPointSize(headerTitleLabel, 15); + headerFrameLayout->addWidget(headerTitleLabel); - QHBoxLayout *hlayout = new QHBoxLayout(); - hlayout->setContentsMargins(0,0,0,0); - hlayout->setSpacing(5); - hlayout->addSpacing(26); + headerFrameLayout->addStretch(); + + searchWidget = new QLineEdit(this); + searchWidget->setPlaceholderText(tr("Search by address or label")); + searchWidget->addAction(searchWidgetIconAction, QLineEdit::LeadingPosition); + searchWidget->setClearButtonEnabled(true); + headerFrameLayout->addWidget(searchWidget); + + QFrame *headerFrame = new QFrame(this); + headerFrame->setObjectName("headerFrame"); + headerFrame->setLayout(headerFrameLayout); + + // Build filter row + QHBoxLayout *filterFrameLayout = new QHBoxLayout(); + filterFrameLayout->setContentsMargins(0, 0, 0, 0); + filterFrameLayout->setSpacing(6); dateWidget = new QComboBox(this); -#ifdef Q_OS_MAC - dateWidget->setFixedWidth(121); -#else - dateWidget->setFixedWidth(120); -#endif dateWidget->addItem(tr("All Time"), All); dateWidget->addItem(tr("Today"), Today); dateWidget->addItem(tr("This week"), ThisWeek); @@ -54,15 +74,9 @@ TransactionView::TransactionView(QWidget *parent) : dateWidget->addItem(tr("Last month"), LastMonth); dateWidget->addItem(tr("This year"), ThisYear); dateWidget->addItem(tr("Range..."), Range); - hlayout->addWidget(dateWidget); + filterFrameLayout->addWidget(dateWidget); typeWidget = new QComboBox(this); -#ifdef Q_OS_MAC - typeWidget->setFixedWidth(121); -#else - typeWidget->setFixedWidth(120); -#endif - typeWidget->addItem(tr("All Types"), TransactionFilterProxy::ALL_TYPES); typeWidget->addItem(tr("Received with"), TransactionFilterProxy::TYPE(TransactionRecord::RecvWithAddress) | TransactionFilterProxy::TYPE(TransactionRecord::RecvFromOther)); @@ -71,49 +85,46 @@ TransactionView::TransactionView(QWidget *parent) : typeWidget->addItem(tr("To yourself"), TransactionFilterProxy::TYPE(TransactionRecord::SendToSelf)); typeWidget->addItem(tr("Mined"), TransactionFilterProxy::TYPE(TransactionRecord::Generated)); typeWidget->addItem(tr("Other"), TransactionFilterProxy::TYPE(TransactionRecord::Other)); + filterFrameLayout->addWidget(typeWidget); - hlayout->addWidget(typeWidget); - - addressWidget = new QLineEdit(this); - /* TODO: Move this to the XML file */ - addressWidget->setPlaceholderText(tr("Enter address or label to search")); - hlayout->addWidget(addressWidget); + filterFrameLayout->addStretch(); amountWidget = new QLineEdit(this); - /* TODO: Move this to the XML file */ amountWidget->setPlaceholderText(tr("Min amount")); - -#ifdef Q_OS_MAC - amountWidget->setFixedWidth(97); -#else - amountWidget->setFixedWidth(100); -#endif amountWidget->setValidator(new QDoubleValidator(0, 1e20, 8, this)); - hlayout->addWidget(amountWidget); + QSizePolicy amountWidgetSizePolicy = amountWidget->sizePolicy(); + amountWidgetSizePolicy.setHorizontalPolicy(QSizePolicy::Minimum); + amountWidget->setSizePolicy(amountWidgetSizePolicy); + filterFrameLayout->addWidget(amountWidget); - QVBoxLayout *vlayout = new QVBoxLayout(this); - vlayout->setContentsMargins(0,0,0,0); + QFrame *filterFrame = new QFrame(this); + filterFrame->setObjectName("filterFrame"); + filterFrame->setLayout(filterFrameLayout); QTableView *view = new QTableView(this); - vlayout->addLayout(hlayout); - vlayout->addWidget(createDateRangeWidget()); - vlayout->addWidget(view); - vlayout->setSpacing(5); - int width = view->verticalScrollBar()->sizeHint().width(); - // Cover scroll bar width with spacing -#ifdef Q_OS_MAC - hlayout->addSpacing(width+2); -#else - hlayout->addSpacing(width); -#endif - // Always show scroll bar view->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); view->setTabKeyNavigation(false); view->setContextMenuPolicy(Qt::CustomContextMenu); view->setShowGrid(false); - + view->horizontalHeader()->setHighlightSections(false); transactionView = view; + QVBoxLayout *tableViewLayout = new QVBoxLayout(); + tableViewLayout->setContentsMargins(9, 9, 9, 9); + QFrame *tableViewFrame = new QFrame(this); + tableViewFrame->setLayout(new QVBoxLayout()); + tableViewFrame->layout()->setContentsMargins(0, 0, 0, 0); + tableViewFrame->layout()->addWidget(view); + tableViewLayout->addWidget(tableViewFrame); + + QVBoxLayout *vlayout = new QVBoxLayout(this); + vlayout->setContentsMargins(0, 0, 0, 0); + vlayout->setSpacing(0); + vlayout->addWidget(headerFrame); + vlayout->addWidget(filterFrame); + vlayout->addWidget(createDateRangeWidget()); + vlayout->addLayout(tableViewLayout); + // Actions QAction *copyAddressAction = new QAction(tr("Copy address"), this); QAction *copyLabelAction = new QAction(tr("Copy label"), this); @@ -133,7 +144,7 @@ TransactionView::TransactionView(QWidget *parent) : // Connect actions connect(dateWidget, SIGNAL(activated(int)), this, SLOT(chooseDate(int))); connect(typeWidget, SIGNAL(activated(int)), this, SLOT(chooseType(int))); - connect(addressWidget, SIGNAL(textChanged(QString)), this, SLOT(changedPrefix(QString))); + connect(searchWidget, SIGNAL(textChanged(QString)), this, SLOT(changedPrefix(QString))); connect(amountWidget, SIGNAL(textChanged(QString)), this, SLOT(changedAmount(QString))); connect(view, SIGNAL(doubleClicked(QModelIndex)), this, SIGNAL(doubleClicked(QModelIndex))); @@ -179,6 +190,13 @@ void TransactionView::setModel(WalletModel *model) transactionView->horizontalHeader()->resizeSection( TransactionTableModel::Amount, 100); } + + if (model && model->getOptionsModel()) { + connect( + model->getOptionsModel(), SIGNAL(walletStylesheetChanged(QString)), + this, SLOT(updateIcons(QString))); + updateIcons(model->getOptionsModel()->getCurrentStyle()); + } } void TransactionView::chooseDate(int idx) @@ -429,3 +447,8 @@ void TransactionView::focusTransaction(const QModelIndex &idx) transactionView->setCurrentIndex(targetIdx); transactionView->setFocus(); } + +void TransactionView::updateIcons(const QString& theme) +{ + searchWidgetIconAction->setIcon(QIcon(":/icons/" + theme + "_search")); +} diff --git a/src/qt/transactionview.h b/src/qt/transactionview.h index a256c8c63e..7f1bead3e4 100644 --- a/src/qt/transactionview.h +++ b/src/qt/transactionview.h @@ -46,7 +46,8 @@ class TransactionView : public QFrame QComboBox *dateWidget; QComboBox *typeWidget; - QLineEdit *addressWidget; + QLineEdit *searchWidget; + QAction *searchWidgetIconAction; QLineEdit *amountWidget; QMenu *contextMenu; @@ -66,6 +67,7 @@ private slots: void copyLabel(); void copyAmount(); void copyTxID(); + void updateIcons(const QString& theme); signals: void doubleClicked(const QModelIndex&); From a5e773c8a993f43bfbcd55696bf2b54e55cd57bb Mon Sep 17 00:00:00 2001 From: Cy Rossignol Date: Thu, 13 May 2021 08:49:11 -0500 Subject: [PATCH 2/2] Reword history page address search field placeholder This updates the GUI localizations for the address/label search field placeholder on the transaction history page to match proposed text in the new design. The placeholder now contains the same text as that in the address book filter fields, so we can reuse existing translations for this text in three places: - The "receive payment" page - The "transaction history" page - The "favorites" (address book) page --- src/qt/locale/bitcoin_af_ZA.ts | 2 +- src/qt/locale/bitcoin_ar.ts | 2 +- src/qt/locale/bitcoin_be_BY.ts | 2 +- src/qt/locale/bitcoin_bg.ts | 2 +- src/qt/locale/bitcoin_bs.ts | 2 +- src/qt/locale/bitcoin_ca.ts | 2 +- src/qt/locale/bitcoin_ca@valencia.ts | 2 +- src/qt/locale/bitcoin_ca_ES.ts | 2 +- src/qt/locale/bitcoin_cs.ts | 2 +- src/qt/locale/bitcoin_cy.ts | 2 +- src/qt/locale/bitcoin_da.ts | 2 +- src/qt/locale/bitcoin_de.ts | 2 +- src/qt/locale/bitcoin_el_GR.ts | 2 +- src/qt/locale/bitcoin_en.ts | 2 +- src/qt/locale/bitcoin_eo.ts | 2 +- src/qt/locale/bitcoin_es.ts | 2 +- src/qt/locale/bitcoin_es_CL.ts | 2 +- src/qt/locale/bitcoin_es_DO.ts | 2 +- src/qt/locale/bitcoin_es_MX.ts | 2 +- src/qt/locale/bitcoin_es_UY.ts | 2 +- src/qt/locale/bitcoin_et.ts | 2 +- src/qt/locale/bitcoin_eu_ES.ts | 2 +- src/qt/locale/bitcoin_fa.ts | 2 +- src/qt/locale/bitcoin_fa_IR.ts | 2 +- src/qt/locale/bitcoin_fi.ts | 2 +- src/qt/locale/bitcoin_fr.ts | 2 +- src/qt/locale/bitcoin_fr_CA.ts | 2 +- src/qt/locale/bitcoin_gl.ts | 2 +- src/qt/locale/bitcoin_he.ts | 2 +- src/qt/locale/bitcoin_hi_IN.ts | 2 +- src/qt/locale/bitcoin_hr.ts | 2 +- src/qt/locale/bitcoin_hu.ts | 2 +- src/qt/locale/bitcoin_id_ID.ts | 2 +- src/qt/locale/bitcoin_it.ts | 2 +- src/qt/locale/bitcoin_ja.ts | 2 +- src/qt/locale/bitcoin_ka.ts | 2 +- src/qt/locale/bitcoin_kk_KZ.ts | 2 +- src/qt/locale/bitcoin_ko_KR.ts | 2 +- src/qt/locale/bitcoin_ky.ts | 2 +- src/qt/locale/bitcoin_la.ts | 2 +- src/qt/locale/bitcoin_lt.ts | 2 +- src/qt/locale/bitcoin_lv_LV.ts | 2 +- src/qt/locale/bitcoin_ms_MY.ts | 2 +- src/qt/locale/bitcoin_nb.ts | 2 +- src/qt/locale/bitcoin_nl.ts | 2 +- src/qt/locale/bitcoin_pam.ts | 2 +- src/qt/locale/bitcoin_pl.ts | 2 +- src/qt/locale/bitcoin_pt_BR.ts | 2 +- src/qt/locale/bitcoin_pt_PT.ts | 2 +- src/qt/locale/bitcoin_ro_RO.ts | 2 +- src/qt/locale/bitcoin_ru.ts | 2 +- src/qt/locale/bitcoin_sk.ts | 2 +- src/qt/locale/bitcoin_sl_SI.ts | 2 +- src/qt/locale/bitcoin_sq.ts | 2 +- src/qt/locale/bitcoin_sr.ts | 2 +- src/qt/locale/bitcoin_sv.ts | 2 +- src/qt/locale/bitcoin_th_TH.ts | 2 +- src/qt/locale/bitcoin_tr.ts | 2 +- src/qt/locale/bitcoin_uk.ts | 2 +- src/qt/locale/bitcoin_ur_PK.ts | 2 +- src/qt/locale/bitcoin_vi.ts | 2 +- src/qt/locale/bitcoin_vi_VN.ts | 2 +- src/qt/locale/bitcoin_zh_CN.ts | 2 +- src/qt/locale/bitcoin_zh_TW.ts | 2 +- 64 files changed, 64 insertions(+), 64 deletions(-) diff --git a/src/qt/locale/bitcoin_af_ZA.ts b/src/qt/locale/bitcoin_af_ZA.ts index c00933b8c8..1e4f6bb02a 100644 --- a/src/qt/locale/bitcoin_af_ZA.ts +++ b/src/qt/locale/bitcoin_af_ZA.ts @@ -4250,7 +4250,7 @@ Dit beteken dat 'n fooi van ten minste %2 word benodig. - Enter address or label to search + Search by address or label Voer adres of etiket om te soek diff --git a/src/qt/locale/bitcoin_ar.ts b/src/qt/locale/bitcoin_ar.ts index 9648dcb00e..a83bc9d61c 100644 --- a/src/qt/locale/bitcoin_ar.ts +++ b/src/qt/locale/bitcoin_ar.ts @@ -4218,7 +4218,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label ادخل عنوان أووصف للبحث diff --git a/src/qt/locale/bitcoin_be_BY.ts b/src/qt/locale/bitcoin_be_BY.ts index 9bd68e60a2..8e0f516c94 100644 --- a/src/qt/locale/bitcoin_be_BY.ts +++ b/src/qt/locale/bitcoin_be_BY.ts @@ -4188,7 +4188,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Увядзіце адрас ці пазнаку для пошуку diff --git a/src/qt/locale/bitcoin_bg.ts b/src/qt/locale/bitcoin_bg.ts index 27a1f371b9..77a904a492 100644 --- a/src/qt/locale/bitcoin_bg.ts +++ b/src/qt/locale/bitcoin_bg.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Търсене по адрес или име diff --git a/src/qt/locale/bitcoin_bs.ts b/src/qt/locale/bitcoin_bs.ts index fdca0f383e..2987ac8812 100644 --- a/src/qt/locale/bitcoin_bs.ts +++ b/src/qt/locale/bitcoin_bs.ts @@ -4188,7 +4188,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_ca.ts b/src/qt/locale/bitcoin_ca.ts index 1bfa06ae81..8f66ca17eb 100644 --- a/src/qt/locale/bitcoin_ca.ts +++ b/src/qt/locale/bitcoin_ca.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Introduïu una adreça o una etiqueta per cercar diff --git a/src/qt/locale/bitcoin_ca@valencia.ts b/src/qt/locale/bitcoin_ca@valencia.ts index fcedcc9657..9918c1b120 100644 --- a/src/qt/locale/bitcoin_ca@valencia.ts +++ b/src/qt/locale/bitcoin_ca@valencia.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Introduïu una adreça o una etiqueta per cercar diff --git a/src/qt/locale/bitcoin_ca_ES.ts b/src/qt/locale/bitcoin_ca_ES.ts index 896f8dc78c..5a803d628f 100644 --- a/src/qt/locale/bitcoin_ca_ES.ts +++ b/src/qt/locale/bitcoin_ca_ES.ts @@ -4192,7 +4192,7 @@ En aquest cas es requereix una comisió d'almenys 2%. - Enter address or label to search + Search by address or label Introduïu una adreça o una etiqueta per cercar diff --git a/src/qt/locale/bitcoin_cs.ts b/src/qt/locale/bitcoin_cs.ts index 9b1d7416d7..c7777775d7 100644 --- a/src/qt/locale/bitcoin_cs.ts +++ b/src/qt/locale/bitcoin_cs.ts @@ -4191,7 +4191,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Zadej adresu nebo označení pro její vyhledání diff --git a/src/qt/locale/bitcoin_cy.ts b/src/qt/locale/bitcoin_cy.ts index ce84a08612..1d2adc6c69 100644 --- a/src/qt/locale/bitcoin_cy.ts +++ b/src/qt/locale/bitcoin_cy.ts @@ -4208,7 +4208,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_da.ts b/src/qt/locale/bitcoin_da.ts index b5596163ac..2c997c5710 100644 --- a/src/qt/locale/bitcoin_da.ts +++ b/src/qt/locale/bitcoin_da.ts @@ -4195,7 +4195,7 @@ Det betyder, at et gebyr på mindst %2 er påkrævet. - Enter address or label to search + Search by address or label Indtast adresse eller mærkat for at søge diff --git a/src/qt/locale/bitcoin_de.ts b/src/qt/locale/bitcoin_de.ts index bdcbf5609e..1522671673 100644 --- a/src/qt/locale/bitcoin_de.ts +++ b/src/qt/locale/bitcoin_de.ts @@ -4197,7 +4197,7 @@ Dieses Label wird rot, wenn die Priorität kleiner ist als Mittel. - Enter address or label to search + Search by address or label Zu suchende Adresse oder Bezeichnung eingeben diff --git a/src/qt/locale/bitcoin_el_GR.ts b/src/qt/locale/bitcoin_el_GR.ts index 2e8cf17d58..358033c1e1 100644 --- a/src/qt/locale/bitcoin_el_GR.ts +++ b/src/qt/locale/bitcoin_el_GR.ts @@ -4224,7 +4224,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_en.ts b/src/qt/locale/bitcoin_en.ts index cc69ea1861..36dcc0e738 100644 --- a/src/qt/locale/bitcoin_en.ts +++ b/src/qt/locale/bitcoin_en.ts @@ -4181,7 +4181,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_eo.ts b/src/qt/locale/bitcoin_eo.ts index 2138e45e44..c15dc9798b 100644 --- a/src/qt/locale/bitcoin_eo.ts +++ b/src/qt/locale/bitcoin_eo.ts @@ -4196,7 +4196,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Tajpu adreson a? etikedon por ser?i diff --git a/src/qt/locale/bitcoin_es.ts b/src/qt/locale/bitcoin_es.ts index 610663bb9f..2a19a549c3 100644 --- a/src/qt/locale/bitcoin_es.ts +++ b/src/qt/locale/bitcoin_es.ts @@ -4197,7 +4197,7 @@ Esto significa que se requiere una cuota de al menos %2. - Enter address or label to search + Search by address or label Introduzca una dirección o etiqueta que buscar diff --git a/src/qt/locale/bitcoin_es_CL.ts b/src/qt/locale/bitcoin_es_CL.ts index 030bbcdd14..1e6bd7b74c 100644 --- a/src/qt/locale/bitcoin_es_CL.ts +++ b/src/qt/locale/bitcoin_es_CL.ts @@ -4184,7 +4184,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Introduce una dirección o etiqueta para buscar diff --git a/src/qt/locale/bitcoin_es_DO.ts b/src/qt/locale/bitcoin_es_DO.ts index 0702b3e2d4..2e222a7d5e 100644 --- a/src/qt/locale/bitcoin_es_DO.ts +++ b/src/qt/locale/bitcoin_es_DO.ts @@ -4181,7 +4181,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Introduzca una dirección o etiqueta que buscar diff --git a/src/qt/locale/bitcoin_es_MX.ts b/src/qt/locale/bitcoin_es_MX.ts index 13b75c0479..6c8fc62110 100644 --- a/src/qt/locale/bitcoin_es_MX.ts +++ b/src/qt/locale/bitcoin_es_MX.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Ingrese dirección o capa a buscar diff --git a/src/qt/locale/bitcoin_es_UY.ts b/src/qt/locale/bitcoin_es_UY.ts index 2cfab5c0c7..353f829584 100644 --- a/src/qt/locale/bitcoin_es_UY.ts +++ b/src/qt/locale/bitcoin_es_UY.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_et.ts b/src/qt/locale/bitcoin_et.ts index 0db8da6558..55f6ae0145 100644 --- a/src/qt/locale/bitcoin_et.ts +++ b/src/qt/locale/bitcoin_et.ts @@ -4181,7 +4181,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Otsimiseks sisesta märgis või aadress diff --git a/src/qt/locale/bitcoin_eu_ES.ts b/src/qt/locale/bitcoin_eu_ES.ts index 77799e0e52..5ffe5e700b 100644 --- a/src/qt/locale/bitcoin_eu_ES.ts +++ b/src/qt/locale/bitcoin_eu_ES.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Sartu bilatzeko helbide edo etiketa diff --git a/src/qt/locale/bitcoin_fa.ts b/src/qt/locale/bitcoin_fa.ts index d52986a214..c61e1909f6 100644 --- a/src/qt/locale/bitcoin_fa.ts +++ b/src/qt/locale/bitcoin_fa.ts @@ -4173,7 +4173,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_fa_IR.ts b/src/qt/locale/bitcoin_fa_IR.ts index 938bf7b12f..5a78668afb 100644 --- a/src/qt/locale/bitcoin_fa_IR.ts +++ b/src/qt/locale/bitcoin_fa_IR.ts @@ -4198,7 +4198,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_fi.ts b/src/qt/locale/bitcoin_fi.ts index 0786350cb2..eaeaf0a559 100644 --- a/src/qt/locale/bitcoin_fi.ts +++ b/src/qt/locale/bitcoin_fi.ts @@ -4215,7 +4215,7 @@ Tämä tarkoittaa, että ainakin %2 rahansiirtopalkkio tarvitaan. - Enter address or label to search + Search by address or label Anna etsittävä osoite tai tunniste diff --git a/src/qt/locale/bitcoin_fr.ts b/src/qt/locale/bitcoin_fr.ts index f9ce7def5c..6536b11f66 100644 --- a/src/qt/locale/bitcoin_fr.ts +++ b/src/qt/locale/bitcoin_fr.ts @@ -4195,7 +4195,7 @@ Cela implique que des frais à hauteur d'au moins %2 seront nécessaires. - Enter address or label to search + Search by address or label Saisir une adresse ou une étiquette à rechercher diff --git a/src/qt/locale/bitcoin_fr_CA.ts b/src/qt/locale/bitcoin_fr_CA.ts index 71f2c1f0fe..9a478144a2 100644 --- a/src/qt/locale/bitcoin_fr_CA.ts +++ b/src/qt/locale/bitcoin_fr_CA.ts @@ -4195,7 +4195,7 @@ Les montants inférieurs à 0.546 fois les frais minimum de relais apparaissent - Enter address or label to search + Search by address or label Saisir une adresse ou une étiquette à rechercher diff --git a/src/qt/locale/bitcoin_gl.ts b/src/qt/locale/bitcoin_gl.ts index 8207dd7a96..57f29929f6 100644 --- a/src/qt/locale/bitcoin_gl.ts +++ b/src/qt/locale/bitcoin_gl.ts @@ -4181,7 +4181,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Introduce dirección ou etiqueta para buscar diff --git a/src/qt/locale/bitcoin_he.ts b/src/qt/locale/bitcoin_he.ts index 5a79eed0a1..2b8c55ca65 100644 --- a/src/qt/locale/bitcoin_he.ts +++ b/src/qt/locale/bitcoin_he.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_hi_IN.ts b/src/qt/locale/bitcoin_hi_IN.ts index 2249448329..f52ca4c8bc 100644 --- a/src/qt/locale/bitcoin_hi_IN.ts +++ b/src/qt/locale/bitcoin_hi_IN.ts @@ -4182,7 +4182,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_hr.ts b/src/qt/locale/bitcoin_hr.ts index 85d161b74e..4d67fb5b46 100644 --- a/src/qt/locale/bitcoin_hr.ts +++ b/src/qt/locale/bitcoin_hr.ts @@ -4191,7 +4191,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Unesite adresu ili oznaku za pretraživanje diff --git a/src/qt/locale/bitcoin_hu.ts b/src/qt/locale/bitcoin_hu.ts index f169ef731c..b24e1d68d7 100644 --- a/src/qt/locale/bitcoin_hu.ts +++ b/src/qt/locale/bitcoin_hu.ts @@ -4177,7 +4177,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Írd be a keresendő címet vagy címkét diff --git a/src/qt/locale/bitcoin_id_ID.ts b/src/qt/locale/bitcoin_id_ID.ts index ba894a15be..53f124cec3 100644 --- a/src/qt/locale/bitcoin_id_ID.ts +++ b/src/qt/locale/bitcoin_id_ID.ts @@ -4206,7 +4206,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Masukkan alamat atau label untuk mencari diff --git a/src/qt/locale/bitcoin_it.ts b/src/qt/locale/bitcoin_it.ts index a935366080..2db3436ac3 100644 --- a/src/qt/locale/bitcoin_it.ts +++ b/src/qt/locale/bitcoin_it.ts @@ -4195,7 +4195,7 @@ Questa etichetta diventa rossa se la priorità è minore di "media". - Enter address or label to search + Search by address or label Inserisci un indirizzo o un'etichetta da cercare diff --git a/src/qt/locale/bitcoin_ja.ts b/src/qt/locale/bitcoin_ja.ts index 1e984803b6..1a77b651c1 100644 --- a/src/qt/locale/bitcoin_ja.ts +++ b/src/qt/locale/bitcoin_ja.ts @@ -4168,7 +4168,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label 検索するアドレスまたはラベルを入力 diff --git a/src/qt/locale/bitcoin_ka.ts b/src/qt/locale/bitcoin_ka.ts index 09a2f3ceae..4291462b7f 100644 --- a/src/qt/locale/bitcoin_ka.ts +++ b/src/qt/locale/bitcoin_ka.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_kk_KZ.ts b/src/qt/locale/bitcoin_kk_KZ.ts index f91970881c..47b542c7de 100644 --- a/src/qt/locale/bitcoin_kk_KZ.ts +++ b/src/qt/locale/bitcoin_kk_KZ.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_ko_KR.ts b/src/qt/locale/bitcoin_ko_KR.ts index 07d45f2a2f..7594992ffd 100644 --- a/src/qt/locale/bitcoin_ko_KR.ts +++ b/src/qt/locale/bitcoin_ko_KR.ts @@ -4168,7 +4168,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_ky.ts b/src/qt/locale/bitcoin_ky.ts index 79727f93a1..c50b6c679c 100644 --- a/src/qt/locale/bitcoin_ky.ts +++ b/src/qt/locale/bitcoin_ky.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_la.ts b/src/qt/locale/bitcoin_la.ts index 35a617ca86..c612d05950 100644 --- a/src/qt/locale/bitcoin_la.ts +++ b/src/qt/locale/bitcoin_la.ts @@ -4181,7 +4181,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Insere inscriptionem vel titulum ut quaeras diff --git a/src/qt/locale/bitcoin_lt.ts b/src/qt/locale/bitcoin_lt.ts index 6e310734c7..8d4ed5d853 100644 --- a/src/qt/locale/bitcoin_lt.ts +++ b/src/qt/locale/bitcoin_lt.ts @@ -4191,7 +4191,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Įveskite adresą ar žymę į paiešką diff --git a/src/qt/locale/bitcoin_lv_LV.ts b/src/qt/locale/bitcoin_lv_LV.ts index 4b35e4b95a..01e8dd35ce 100644 --- a/src/qt/locale/bitcoin_lv_LV.ts +++ b/src/qt/locale/bitcoin_lv_LV.ts @@ -4191,7 +4191,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Ierakstiet mekl?jamo nosaukumu vai adresi diff --git a/src/qt/locale/bitcoin_ms_MY.ts b/src/qt/locale/bitcoin_ms_MY.ts index 4a3efe37e6..624d09a484 100644 --- a/src/qt/locale/bitcoin_ms_MY.ts +++ b/src/qt/locale/bitcoin_ms_MY.ts @@ -4184,7 +4184,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_nb.ts b/src/qt/locale/bitcoin_nb.ts index 7ae4755f10..2a95b08980 100644 --- a/src/qt/locale/bitcoin_nb.ts +++ b/src/qt/locale/bitcoin_nb.ts @@ -4183,7 +4183,7 @@ Dette betyr at det trengs en avgift på minimum %2. - Enter address or label to search + Search by address or label Skriv inn adresse eller merkelapp for søk diff --git a/src/qt/locale/bitcoin_nl.ts b/src/qt/locale/bitcoin_nl.ts index f50094d337..a39654f030 100644 --- a/src/qt/locale/bitcoin_nl.ts +++ b/src/qt/locale/bitcoin_nl.ts @@ -4195,7 +4195,7 @@ Dit betekend dat een fee van %2 is vereist. - Enter address or label to search + Search by address or label Vul adres of label in om te zoeken diff --git a/src/qt/locale/bitcoin_pam.ts b/src/qt/locale/bitcoin_pam.ts index f27e5581e8..a340adc33f 100644 --- a/src/qt/locale/bitcoin_pam.ts +++ b/src/qt/locale/bitcoin_pam.ts @@ -3297,7 +3297,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Magpalub kang address o label para pantunan diff --git a/src/qt/locale/bitcoin_pl.ts b/src/qt/locale/bitcoin_pl.ts index 663c7ded98..d451aa67ea 100644 --- a/src/qt/locale/bitcoin_pl.ts +++ b/src/qt/locale/bitcoin_pl.ts @@ -4209,7 +4209,7 @@ Wartości poniżej 0.546*minimalna wartość przekazu. są traktowane jako " - Enter address or label to search + Search by address or label Wprowadź adres albo etykietę żeby wyszukał diff --git a/src/qt/locale/bitcoin_pt_BR.ts b/src/qt/locale/bitcoin_pt_BR.ts index db92c34fab..3ceda1e9c5 100644 --- a/src/qt/locale/bitcoin_pt_BR.ts +++ b/src/qt/locale/bitcoin_pt_BR.ts @@ -4181,7 +4181,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Procure um endereço ou rótulo diff --git a/src/qt/locale/bitcoin_pt_PT.ts b/src/qt/locale/bitcoin_pt_PT.ts index ce569a3762..86fe47f52f 100644 --- a/src/qt/locale/bitcoin_pt_PT.ts +++ b/src/qt/locale/bitcoin_pt_PT.ts @@ -4194,7 +4194,7 @@ Isto significa que uma taxa de pelo menos %2 é necessária. - Enter address or label to search + Search by address or label Insira endereço ou etiqueta a pesquisar diff --git a/src/qt/locale/bitcoin_ro_RO.ts b/src/qt/locale/bitcoin_ro_RO.ts index 682476a54a..a8a2695d46 100644 --- a/src/qt/locale/bitcoin_ro_RO.ts +++ b/src/qt/locale/bitcoin_ro_RO.ts @@ -4205,7 +4205,7 @@ Acest lucru înseamn? c? o tax? de cel pu?in %2 este necesar? - Enter address or label to search + Search by address or label Introdu adresa sau eticheta pentru c?utare diff --git a/src/qt/locale/bitcoin_ru.ts b/src/qt/locale/bitcoin_ru.ts index a135ef7d87..31a97178f2 100644 --- a/src/qt/locale/bitcoin_ru.ts +++ b/src/qt/locale/bitcoin_ru.ts @@ -4207,7 +4207,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Введите адрес или метку для поиска diff --git a/src/qt/locale/bitcoin_sk.ts b/src/qt/locale/bitcoin_sk.ts index 5d4ff9b563..baecb3d8bc 100644 --- a/src/qt/locale/bitcoin_sk.ts +++ b/src/qt/locale/bitcoin_sk.ts @@ -4205,7 +4205,7 @@ To znamená, že je potrebný poplatok aspoň %2. - Enter address or label to search + Search by address or label Vložte adresu alebo popis pre vyh?adávanie diff --git a/src/qt/locale/bitcoin_sl_SI.ts b/src/qt/locale/bitcoin_sl_SI.ts index 1900971145..f7e0d12175 100644 --- a/src/qt/locale/bitcoin_sl_SI.ts +++ b/src/qt/locale/bitcoin_sl_SI.ts @@ -4225,7 +4225,7 @@ Ta oznaka se obarva rde?e, ?e je prioriteta manjša kot "srednja". - Enter address or label to search + Search by address or label Vnesite naslov ali oznako za iskanje diff --git a/src/qt/locale/bitcoin_sq.ts b/src/qt/locale/bitcoin_sq.ts index 642206e640..660669e4bf 100644 --- a/src/qt/locale/bitcoin_sq.ts +++ b/src/qt/locale/bitcoin_sq.ts @@ -4178,7 +4178,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_sr.ts b/src/qt/locale/bitcoin_sr.ts index ccdbd3fedf..752581cd83 100644 --- a/src/qt/locale/bitcoin_sr.ts +++ b/src/qt/locale/bitcoin_sr.ts @@ -4188,7 +4188,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_sv.ts b/src/qt/locale/bitcoin_sv.ts index 52d538c977..bfdea92bb2 100644 --- a/src/qt/locale/bitcoin_sv.ts +++ b/src/qt/locale/bitcoin_sv.ts @@ -4196,7 +4196,7 @@ Detta betyder att en avgift på minst %2 krävs. - Enter address or label to search + Search by address or label Sök efter adress eller etikett diff --git a/src/qt/locale/bitcoin_th_TH.ts b/src/qt/locale/bitcoin_th_TH.ts index cef25c38de..16c4ee0e4d 100644 --- a/src/qt/locale/bitcoin_th_TH.ts +++ b/src/qt/locale/bitcoin_th_TH.ts @@ -4168,7 +4168,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_tr.ts b/src/qt/locale/bitcoin_tr.ts index 3a9ae78a2a..63d8331669 100644 --- a/src/qt/locale/bitcoin_tr.ts +++ b/src/qt/locale/bitcoin_tr.ts @@ -4185,7 +4185,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label Aranacak adres ya da etiket giriniz diff --git a/src/qt/locale/bitcoin_uk.ts b/src/qt/locale/bitcoin_uk.ts index ccdbd974b4..14d605a012 100644 --- a/src/qt/locale/bitcoin_uk.ts +++ b/src/qt/locale/bitcoin_uk.ts @@ -4198,7 +4198,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_ur_PK.ts b/src/qt/locale/bitcoin_ur_PK.ts index ab3088e506..5df6882c91 100644 --- a/src/qt/locale/bitcoin_ur_PK.ts +++ b/src/qt/locale/bitcoin_ur_PK.ts @@ -4183,7 +4183,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_vi.ts b/src/qt/locale/bitcoin_vi.ts index 0b8d5123e2..c4e0856831 100644 --- a/src/qt/locale/bitcoin_vi.ts +++ b/src/qt/locale/bitcoin_vi.ts @@ -4168,7 +4168,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_vi_VN.ts b/src/qt/locale/bitcoin_vi_VN.ts index 7739f04490..f095a57c86 100644 --- a/src/qt/locale/bitcoin_vi_VN.ts +++ b/src/qt/locale/bitcoin_vi_VN.ts @@ -4168,7 +4168,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label diff --git a/src/qt/locale/bitcoin_zh_CN.ts b/src/qt/locale/bitcoin_zh_CN.ts index 3bbdab3643..f57d8822e7 100644 --- a/src/qt/locale/bitcoin_zh_CN.ts +++ b/src/qt/locale/bitcoin_zh_CN.ts @@ -4180,7 +4180,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label 输入地址或标签进行搜索 diff --git a/src/qt/locale/bitcoin_zh_TW.ts b/src/qt/locale/bitcoin_zh_TW.ts index 9113a13713..7acf8f79ed 100644 --- a/src/qt/locale/bitcoin_zh_TW.ts +++ b/src/qt/locale/bitcoin_zh_TW.ts @@ -4168,7 +4168,7 @@ This label turns red, if the priority is smaller than "medium". - Enter address or label to search + Search by address or label 請輸入要搜尋的位址或標記