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.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/pending-typed-msg.js b/ui/app/components/pending-typed-msg.js
index ccde5e8af..91fa5f052 100644
--- a/ui/app/components/pending-typed-msg.js
+++ b/ui/app/components/pending-typed-msg.js
@@ -2,7 +2,7 @@ const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
const PendingTxDetails = require('./pending-typed-msg-details')
-const t = require('../../i18n')
+const t = require('../../i18n-helper').getMessage
module.exports = PendingMsg
@@ -27,7 +27,7 @@ PendingMsg.prototype.render = function () {
fontWeight: 'bold',
textAlign: 'center',
},
- }, t('signMessage')),
+ }, t(this.props.localeMessages, 'signMessage')),
// message details
h(PendingTxDetails, state),
@@ -36,10 +36,10 @@ PendingMsg.prototype.render = function () {
h('.flex-row.flex-space-around', [
h('button.allcaps', {
onClick: state.cancelTypedMessage,
- }, t('cancel')),
+ }, t(this.props.localeMessages, 'cancel')),
h('button.allcaps', {
onClick: state.signTypedMessage,
- }, t('sign')),
+ }, t(this.props.localeMessages, 'sign')),
]),
])