aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-06-30 06:58:31 +0800
committerDan Finlay <dan@danfinlay.com>2016-06-30 06:58:31 +0800
commit2b5c42d27f49a642a2441ad77f3cfba5ada071cb (patch)
tree1af29ff4d9a23b3621f76052353ee29ab0e9badf
parent78e6ed22befcb09b4d5c5e10862b8bfdf1d5fb1a (diff)
parent3ae479f5ac3a569eb3840f119148bc4db626a295 (diff)
downloadtangerine-wallet-browser-2b5c42d27f49a642a2441ad77f3cfba5ada071cb.tar.gz
tangerine-wallet-browser-2b5c42d27f49a642a2441ad77f3cfba5ada071cb.tar.zst
tangerine-wallet-browser-2b5c42d27f49a642a2441ad77f3cfba5ada071cb.zip
Merge branch 'master' into CopyTxHash
-rw-r--r--CHANGELOG.md1
-rw-r--r--app/scripts/lib/notifications.js4
-rw-r--r--ui/app/components/pending-tx.js6
3 files changed, 6 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 48ace019e..509449375 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,7 @@
## Current Master
- Add copy transaction hash button to completed transaction list items.
+- Unify wording for transaction approve/reject options on notifications and the extension.
## 2.4.5 2016-06-29
diff --git a/app/scripts/lib/notifications.js b/app/scripts/lib/notifications.js
index 3d1177735..b9d7b79da 100644
--- a/app/scripts/lib/notifications.js
+++ b/app/scripts/lib/notifications.js
@@ -96,9 +96,9 @@ function showNotification (state) {
title: state.title,
message: '',
buttons: [{
- title: 'confirm',
+ title: 'Approve',
}, {
- title: 'cancel',
+ title: 'Reject',
}],
})
notificationHandlers[id] = {
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index 197e0436c..5d1fd4c16 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -36,14 +36,14 @@ PendingTx.prototype.render = function () {
h('.flex-row.flex-space-around', [
h('button', {
onClick: state.cancelTransaction,
- }, 'Cancel'),
+ }, 'Reject'),
h('button', {
onClick: state.sendTransaction,
- }, 'Send'),
+ }, 'Approve'),
]),
])
-
+
)
}