aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/keychains/hd/recover-seed/confirmation.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/keychains/hd/recover-seed/confirmation.js')
-rw-r--r--ui/app/keychains/hd/recover-seed/confirmation.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/ui/app/keychains/hd/recover-seed/confirmation.js b/ui/app/keychains/hd/recover-seed/confirmation.js
index bc5339549..02183f096 100644
--- a/ui/app/keychains/hd/recover-seed/confirmation.js
+++ b/ui/app/keychains/hd/recover-seed/confirmation.js
@@ -1,13 +1,17 @@
const inherits = require('util').inherits
-
const Component = require('react').Component
+const PropTypes = require('prop-types')
const connect = require('react-redux').connect
const h = require('react-hyperscript')
const actions = require('../../../actions')
-const t = require('../../../../i18n')
+
+RevealSeedConfirmation.contextTypes = {
+ t: PropTypes.func,
+}
module.exports = connect(mapStateToProps)(RevealSeedConfirmation)
+
inherits(RevealSeedConfirmation, Component)
function RevealSeedConfirmation () {
Component.call(this)
@@ -50,13 +54,13 @@ RevealSeedConfirmation.prototype.render = function () {
},
}, [
- h('h4', t('revealSeedWordsWarning')),
+ h('h4', this.context.t('revealSeedWordsWarning')),
// confirmation
h('input.large-input.letter-spacey', {
type: 'password',
id: 'password-box',
- placeholder: t('enterPasswordConfirm'),
+ placeholder: this.context.t('enterPasswordConfirm'),
onKeyPress: this.checkConfirmation.bind(this),
style: {
width: 260,
@@ -92,7 +96,7 @@ RevealSeedConfirmation.prototype.render = function () {
),
props.inProgress && (
- h('span.in-progress-notification', t('generatingSeed'))
+ h('span.in-progress-notification', this.context.t('generatingSeed'))
),
]),
])