mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-22 17:33:23 +01:00
Unify wording for transaction options (#369)
* Unify wording for transaction options. * Modify changelog. * Fix wording and spacing.
This commit is contained in:
parent
757a3ce6be
commit
3ae479f5ac
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
- Unify wording for transaction approve/reject options on notifications and the extension.
|
||||||
|
|
||||||
## 2.4.5 2016-06-29
|
## 2.4.5 2016-06-29
|
||||||
|
|
||||||
- Fixed bug where MetaMask interfered with PDF loading.
|
- Fixed bug where MetaMask interfered with PDF loading.
|
||||||
|
@ -96,9 +96,9 @@ function showNotification (state) {
|
|||||||
title: state.title,
|
title: state.title,
|
||||||
message: '',
|
message: '',
|
||||||
buttons: [{
|
buttons: [{
|
||||||
title: 'confirm',
|
title: 'Approve',
|
||||||
}, {
|
}, {
|
||||||
title: 'cancel',
|
title: 'Reject',
|
||||||
}],
|
}],
|
||||||
})
|
})
|
||||||
notificationHandlers[id] = {
|
notificationHandlers[id] = {
|
||||||
|
@ -36,10 +36,10 @@ PendingTx.prototype.render = function () {
|
|||||||
h('.flex-row.flex-space-around', [
|
h('.flex-row.flex-space-around', [
|
||||||
h('button', {
|
h('button', {
|
||||||
onClick: state.cancelTransaction,
|
onClick: state.cancelTransaction,
|
||||||
}, 'Cancel'),
|
}, 'Reject'),
|
||||||
h('button', {
|
h('button', {
|
||||||
onClick: state.sendTransaction,
|
onClick: state.sendTransaction,
|
||||||
}, 'Send'),
|
}, 'Approve'),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
])
|
])
|
||||||
|
Loading…
Reference in New Issue
Block a user