aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modals
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-20 02:53:54 +0800
committerDan <danjm.com@gmail.com>2018-03-20 03:09:37 +0800
commit09260f9c5e0b2c460a214f00b87c8fafe0470419 (patch)
tree80643438ba93a09cef581010e7d27b7feb4a09d0 /ui/app/components/modals
parent57338200247fa6520a58c9b4a9625edb0382aba1 (diff)
downloadtangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar.gz
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar.zst
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.zip
Fixed t() calls where localeMessages is missing; and fix incorrect connect reference.
Diffstat (limited to 'ui/app/components/modals')
-rw-r--r--ui/app/components/modals/deposit-ether-modal.js2
-rw-r--r--ui/app/components/modals/edit-account-name-modal.js2
-rw-r--r--ui/app/components/modals/new-account-modal.js2
-rw-r--r--ui/app/components/modals/notification-modal.js6
-rw-r--r--ui/app/components/modals/notification-modals/confirm-reset-account.js2
5 files changed, 7 insertions, 7 deletions
diff --git a/ui/app/components/modals/deposit-ether-modal.js b/ui/app/components/modals/deposit-ether-modal.js
index 500a225c7..307e89a47 100644
--- a/ui/app/components/modals/deposit-ether-modal.js
+++ b/ui/app/components/modals/deposit-ether-modal.js
@@ -123,7 +123,7 @@ DepositEtherModal.prototype.render = function () {
h('div.page-container__header', [
- h('div.page-container__title', [t('depositEther')]),
+ h('div.page-container__title', [t(this.props.localeMessages, 'depositEther')]),
h('div.page-container__subtitle', [
t(this.props.localeMessages, 'needEtherInWallet'),
diff --git a/ui/app/components/modals/edit-account-name-modal.js b/ui/app/components/modals/edit-account-name-modal.js
index 02de5b99c..a64a41b27 100644
--- a/ui/app/components/modals/edit-account-name-modal.js
+++ b/ui/app/components/modals/edit-account-name-modal.js
@@ -51,7 +51,7 @@ EditAccountNameModal.prototype.render = function () {
]),
h('div.edit-account-name-modal-title', {
- }, [t('editAccountName')]),
+ }, [t(this.props.localeMessages, 'editAccountName')]),
h('input.edit-account-name-modal-input', {
placeholder: identity.name,
diff --git a/ui/app/components/modals/new-account-modal.js b/ui/app/components/modals/new-account-modal.js
index 7f9b7a154..2744af0b3 100644
--- a/ui/app/components/modals/new-account-modal.js
+++ b/ui/app/components/modals/new-account-modal.js
@@ -1,7 +1,7 @@
const { Component } = require('react')
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
-const { connect } = require('react-redux')
+const connect = require('../../metamask-connect')
const actions = require('../../actions')
const t = require('../../../i18n-helper').getMessage
diff --git a/ui/app/components/modals/notification-modal.js b/ui/app/components/modals/notification-modal.js
index c05d80251..ba2c92c92 100644
--- a/ui/app/components/modals/notification-modal.js
+++ b/ui/app/components/modals/notification-modal.js
@@ -1,7 +1,7 @@
const { Component } = require('react')
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
-const { connect } = require('react-redux')
+const connect = require('../../metamask-connect')
const actions = require('../../actions')
const t = require('../../../i18n-helper').getMessage
@@ -23,12 +23,12 @@ class NotificationModal extends Component {
}, [
h('div.notification-modal__header', {}, [
- t(header),
+ t(this.props.localeMessages, header),
]),
h('div.notification-modal__message-wrapper', {}, [
h('div.notification-modal__message', {}, [
- t(message),
+ t(this.props.localeMessages, message),
]),
]),
diff --git a/ui/app/components/modals/notification-modals/confirm-reset-account.js b/ui/app/components/modals/notification-modals/confirm-reset-account.js
index e1bc91b24..94ee997ab 100644
--- a/ui/app/components/modals/notification-modals/confirm-reset-account.js
+++ b/ui/app/components/modals/notification-modals/confirm-reset-account.js
@@ -1,7 +1,7 @@
const { Component } = require('react')
const PropTypes = require('prop-types')
const h = require('react-hyperscript')
-const { connect } = require('react-redux')
+const connect = require('../../../metamask-connect')
const actions = require('../../../actions')
const NotifcationModal = require('../notification-modal')