diff options
| author | Tim L <timo614@gmail.com> | 2017-11-29 13:05:43 -0500 |
|---|---|---|
| committer | Tim L <timo614@gmail.com> | 2017-12-07 09:08:26 -0500 |
| commit | a1164275671428b28026178ccc91db31a27bfa70 (patch) | |
| tree | ae9649e0f37891096bdaa53f6ef15c8e7f18e600 /components | |
| parent | d9d2050f2924322ff6f2895addcb6961a49132f9 (diff) | |
| download | monzero-gui-a1164275671428b28026178ccc91db31a27bfa70.tar.gz monzero-gui-a1164275671428b28026178ccc91db31a27bfa70.tar.xz monzero-gui-a1164275671428b28026178ccc91db31a27bfa70.zip | |
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 } |
