diff --git a/app.json b/app.json
index 6c85e3cc2..9f245105f 100644
--- a/app.json
+++ b/app.json
@@ -18,6 +18,10 @@
"value": "",
"required": true
},
+ "MAILGUN_SMTP_PASSWORD": {
+ "value": "",
+ "required": true
+ },
"NODE_ENV": "production",
"REWRITE_ENV": "TALK_MONGO_URL:MONGO_URI,TALK_REDIS_URL:REDIS_URL,TALK_SMTP_HOST:MAILGUN_SMTP_SERVER,TALK_SMTP_PORT:MAILGUN_SMTP_PORT,TALK_SMTP_USERNAME:MAILGUN_SMTP_LOGIN,TALK_SMTP_PASSWORD:MAILGUN_SMTP_PASSWORD",
"NPM_CONFIG_PRODUCTION": "false"
diff --git a/client/coral-admin/src/components/AdminLogin.js b/client/coral-admin/src/components/AdminLogin.js
index 99bd61696..e6bcb3b89 100644
--- a/client/coral-admin/src/components/AdminLogin.js
+++ b/client/coral-admin/src/components/AdminLogin.js
@@ -5,6 +5,7 @@ import styles from './NotFound.css';
import { Button, TextField, Alert, Success } from 'coral-ui';
import Recaptcha from 'react-recaptcha';
import cn from 'classnames';
+import t from 'coral-framework/services/i18n';
class AdminLogin extends React.Component {
constructor(props) {
@@ -41,13 +42,13 @@ class AdminLogin extends React.Component {
{errorMessage &&
- Forgot your password?{' '}
+ {t('login.forgot_password')}{' '}
- Request a new one.
+ {t('login.request_passowrd')}
- Sign in to interact with your community. -
+{t('login.sign_in_message')}
{this.state.requestPassword ? requestPasswordForm : signInForm}{t('configure.copy_and_paste')}