commit f1822a960322dd49f2678edbc7b4a9203c55336a
parent 4db45ac7890191f349a61eeb9dcb7b0d4b795c12
Author: ThomasV <thomasv@electrum.org>
Date: Mon, 15 Feb 2016 19:50:44 +0100
pending->unconfirmed
Diffstat:
5 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/gui/kivy/uix/screens.py b/gui/kivy/uix/screens.py
@@ -127,10 +127,10 @@ class HistoryScreen(CScreen):
except Exception:
time_str = _("error")
if conf == -1:
- time_str = _('unverified')
+ time_str = _('Not Verified')
icon = "atlas://gui/kivy/theming/light/close"
elif conf == 0:
- time_str = _('pending')
+ time_str = _('Unconfirmed')
icon = "atlas://gui/kivy/theming/light/unconfirmed"
elif conf < 6:
conf = max(1, conf)
diff --git a/gui/qt/history_widget.py b/gui/qt/history_widget.py
@@ -44,10 +44,10 @@ class HistoryWidget(MyTreeWidget):
if conf > 0:
time_str = format_time(timestamp)
if conf == -1:
- time_str = 'unverified'
+ time_str = _('Not Verified')
icon = QIcon(":icons/unconfirmed.png")
elif conf == 0:
- time_str = 'pending'
+ time_str = _('Unconfirmed')
icon = QIcon(":icons/unconfirmed.png")
elif conf < 6:
icon = QIcon(":icons/clock%d.png"%conf)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
@@ -2477,7 +2477,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
else:
time_string = "unknown"
else:
- time_string = "pending"
+ time_string = "unconfirmed"
if value is not None:
value_string = format_satoshis(value, True)
diff --git a/gui/stdio.py b/gui/stdio.py
@@ -94,7 +94,7 @@ class ElectrumGui:
except Exception:
time_str = "unknown"
else:
- time_str = 'pending'
+ time_str = 'unconfirmed'
label = self.wallet.get_label(tx_hash)
messages.append( format_str%( time_str, label, format_satoshis(value, whitespaces=True), format_satoshis(balance, whitespaces=True) ) )
diff --git a/gui/text.py b/gui/text.py
@@ -115,7 +115,7 @@ class ElectrumGui:
except Exception:
time_str = "------"
else:
- time_str = 'pending'
+ time_str = 'unconfirmed'
label = self.wallet.get_label(tx_hash)
if len(label) > 40: