Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
156 changes: 30 additions & 126 deletions src/qt/bitcoinstrings.cpp

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/qt/coincontroldialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,11 @@ void CoinControlDialog::buttonSelectAllClicked()

if (m_ToState == Qt::Checked)
{
ui->selectAllPushButton->setText("Select All");
ui->selectAllPushButton->setText(tr("Select All"));
}
else
{
ui->selectAllPushButton->setText("Select None");
ui->selectAllPushButton->setText(tr("Select None"));
}

CoinControlDialog::updateLabels(model, coinControl, payAmounts, this);
Expand Down
4 changes: 2 additions & 2 deletions src/qt/consolidateunspentwizardselectinputspage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ void ConsolidateUnspentWizardSelectInputsPage::buttonSelectAllClicked()

if (m_ToState == Qt::Checked)
{
ui->selectAllPushButton->setText("Select All");
ui->selectAllPushButton->setText(tr("Select All"));
}
else
{
ui->selectAllPushButton->setText("Select None");
ui->selectAllPushButton->setText(tr("Select None"));
}

updateLabels();
Expand Down
2 changes: 1 addition & 1 deletion src/qt/forms/favoritespage.ui
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<item>
<widget class="QLineEdit" name="filterLineEdit">
<property name="placeholderText">
<string>Search by label or address</string>
<string>Search by address or label</string>
</property>
<property name="clearButtonEnabled">
<bool>true</bool>
Expand Down
2 changes: 1 addition & 1 deletion src/qt/forms/receivecoinspage.ui
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<item>
<widget class="QLineEdit" name="filterLineEdit">
<property name="placeholderText">
<string>Search by label or address</string>
<string>Search by address or label</string>
</property>
<property name="clearButtonEnabled">
<bool>true</bool>
Expand Down
Loading