aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-typed-msg.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/pending-typed-msg.js')
-rw-r--r--ui/app/components/pending-typed-msg.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/pending-typed-msg.js b/ui/app/components/pending-typed-msg.js
index f8926d0a3..73702d0f8 100644
--- a/ui/app/components/pending-typed-msg.js
+++ b/ui/app/components/pending-typed-msg.js
@@ -26,7 +26,7 @@ PendingMsg.prototype.render = function () {
fontWeight: 'bold',
textAlign: 'center',
},
- }, 'Sign Message'),
+ }, t('signMessage')),
// message details
h(PendingTxDetails, state),
@@ -35,10 +35,10 @@ PendingMsg.prototype.render = function () {
h('.flex-row.flex-space-around', [
h('button', {
onClick: state.cancelTypedMessage,
- }, 'Cancel'),
+ }, t('cancelButton')),
h('button', {
onClick: state.signTypedMessage,
- }, 'Sign'),
+ }, t('signButton')),
]),
])