diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2017-12-17 12:33:14 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2017-12-17 12:33:14 -0600 |
| commit | d71c31e1bff9118f097980d22386f66286763adf (patch) | |
| tree | 129d2dde98714ca1f0a784617dd57898c757b612 /components | |
| parent | f9447fa4a1ef17a9145fce13e911a7e910ec02b3 (diff) | |
| parent | a1164275671428b28026178ccc91db31a27bfa70 (diff) | |
| download | monzero-gui-d71c31e1bff9118f097980d22386f66286763adf.tar.gz monzero-gui-d71c31e1bff9118f097980d22386f66286763adf.tar.xz monzero-gui-d71c31e1bff9118f097980d22386f66286763adf.zip | |
Merge pull request #996
a116427 History: Properly label failed transactions
Diffstat (limited to 'components')
| -rw-r--r-- | components/HistoryTable.qml | 2 | ||||
| -rw-r--r-- | components/HistoryTableMobile.qml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index d8024d18..ba3971b5 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -260,6 +260,8 @@ ListView { return blockHeight if (!isOut) return qsTr("UNCONFIRMED") + translationManager.emptyString + if (isFailed) + return qsTr("FAILED") + translationManager.emptyString return qsTr("PENDING") + translationManager.emptyString } diff --git a/components/HistoryTableMobile.qml b/components/HistoryTableMobile.qml index 87545755..5a073919 100644 --- a/components/HistoryTableMobile.qml +++ b/components/HistoryTableMobile.qml @@ -150,6 +150,8 @@ ListView { return qsTr("(%1/%2 confirmations)").arg(confirmations).arg(confirmationsRequired) if (!isOut) return qsTr("UNCONFIRMED") + translationManager.emptyString + if (isFailed) + return qsTr("FAILED") + translationManager.emptyString return qsTr("PENDING") + translationManager.emptyString } |
