mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
[Qt] rename "amount" to "requested amount" in receive coins table
This commit is contained in:
parent
82429d0861
commit
df6e8e17e4
@ -82,6 +82,7 @@ void ReceiveCoinsDialog::setModel(WalletModel *model)
|
|||||||
tableView->setSelectionMode(QAbstractItemView::ContiguousSelection);
|
tableView->setSelectionMode(QAbstractItemView::ContiguousSelection);
|
||||||
tableView->setColumnWidth(RecentRequestsTableModel::Date, DATE_COLUMN_WIDTH);
|
tableView->setColumnWidth(RecentRequestsTableModel::Date, DATE_COLUMN_WIDTH);
|
||||||
tableView->setColumnWidth(RecentRequestsTableModel::Label, LABEL_COLUMN_WIDTH);
|
tableView->setColumnWidth(RecentRequestsTableModel::Label, LABEL_COLUMN_WIDTH);
|
||||||
|
tableView->setColumnWidth(RecentRequestsTableModel::Amount, AMOUNT_MINIMUM_COLUMN_WIDTH);
|
||||||
|
|
||||||
connect(tableView->selectionModel(),
|
connect(tableView->selectionModel(),
|
||||||
SIGNAL(selectionChanged(QItemSelection, QItemSelection)), this,
|
SIGNAL(selectionChanged(QItemSelection, QItemSelection)), this,
|
||||||
|
@ -36,7 +36,7 @@ public:
|
|||||||
enum ColumnWidths {
|
enum ColumnWidths {
|
||||||
DATE_COLUMN_WIDTH = 130,
|
DATE_COLUMN_WIDTH = 130,
|
||||||
LABEL_COLUMN_WIDTH = 120,
|
LABEL_COLUMN_WIDTH = 120,
|
||||||
AMOUNT_MINIMUM_COLUMN_WIDTH = 160,
|
AMOUNT_MINIMUM_COLUMN_WIDTH = 180,
|
||||||
MINIMUM_COLUMN_WIDTH = 130
|
MINIMUM_COLUMN_WIDTH = 130
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ QVariant RecentRequestsTableModel::data(const QModelIndex &index, int role) cons
|
|||||||
}
|
}
|
||||||
case Amount:
|
case Amount:
|
||||||
if (rec->recipient.amount == 0 && role == Qt::DisplayRole)
|
if (rec->recipient.amount == 0 && role == Qt::DisplayRole)
|
||||||
return tr("(no amount)");
|
return tr("(no amount requested)");
|
||||||
else if (role == Qt::EditRole)
|
else if (role == Qt::EditRole)
|
||||||
return BitcoinUnits::format(walletModel->getOptionsModel()->getDisplayUnit(), rec->recipient.amount, false, BitcoinUnits::separatorNever);
|
return BitcoinUnits::format(walletModel->getOptionsModel()->getDisplayUnit(), rec->recipient.amount, false, BitcoinUnits::separatorNever);
|
||||||
else
|
else
|
||||||
@ -125,12 +125,7 @@ void RecentRequestsTableModel::updateAmountColumnTitle()
|
|||||||
/** Gets title for amount column including current display unit if optionsModel reference available. */
|
/** Gets title for amount column including current display unit if optionsModel reference available. */
|
||||||
QString RecentRequestsTableModel::getAmountTitle()
|
QString RecentRequestsTableModel::getAmountTitle()
|
||||||
{
|
{
|
||||||
QString amountTitle = tr("Amount");
|
return (this->walletModel->getOptionsModel() != NULL) ? tr("Requested") + " ("+BitcoinUnits::name(this->walletModel->getOptionsModel()->getDisplayUnit()) + ")" : "";
|
||||||
if (this->walletModel->getOptionsModel() != NULL)
|
|
||||||
{
|
|
||||||
amountTitle += " ("+BitcoinUnits::name(this->walletModel->getOptionsModel()->getDisplayUnit()) + ")";
|
|
||||||
}
|
|
||||||
return amountTitle;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QModelIndex RecentRequestsTableModel::index(int row, int column, const QModelIndex &parent) const
|
QModelIndex RecentRequestsTableModel::index(int row, int column, const QModelIndex &parent) const
|
||||||
|
Loading…
Reference in New Issue
Block a user