diff --git a/.gitignore b/.gitignore
index e8cb92653..0cab02aeb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -50,7 +50,6 @@ plugins/*
!plugins/talk-plugin-notifications-digest-hourly
!plugins/talk-plugin-offtopic
!plugins/talk-plugin-permalink
-!plugins/talk-plugin-profile-settings
!plugins/talk-plugin-profile-data
!plugins/talk-plugin-remember-sort
!plugins/talk-plugin-respect
diff --git a/README.md b/README.md
index 6bdb7fda0..b0bc6e497 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ You’ve installed Talk on your server, and you’re preparing to launch it on y
## End-to-End Testing
-Talk uses [Nightwatch](https://nightwatchjs.org/) as our e2e testing framework. The testing infrastructure that allows us to run our tests in real browsers is provided with love by our friends at [Browserstack](https://browserstack.com).
+Talk uses [Nightwatch](http://nightwatchjs.org/) as our e2e testing framework. The testing infrastructure that allows us to run our tests in real browsers is provided with love by our friends at [Browserstack](https://browserstack.com).
[](https://browserstack.com)
diff --git a/docs/source/api/slots.md b/docs/source/api/slots.md
index da57c0ad6..a2e7cc04d 100644
--- a/docs/source/api/slots.md
+++ b/docs/source/api/slots.md
@@ -33,8 +33,7 @@ By default, Talk has various plugins provided by default. We can see this in `pl
"talk-plugin-sort-most-respected",
"talk-plugin-sort-newest",
"talk-plugin-sort-oldest",
- "talk-plugin-viewing-options",
- "talk-plugin-profile-settings"
+ "talk-plugin-viewing-options"
]
}
```
diff --git a/docs/source/integrating/configuring-comment-stream.md b/docs/source/integrating/configuring-comment-stream.md
index 110560de0..613535a13 100644
--- a/docs/source/integrating/configuring-comment-stream.md
+++ b/docs/source/integrating/configuring-comment-stream.md
@@ -65,10 +65,6 @@ First, you'll enable `talk-plugin-author-menu`, as this houses the Ignore button
And then we will enable the Ignore User plugin: `talk-plugin-ignore-user`.
-And finally, we will need to enable Profile Settings; this is the tab on My Profile > Settings where commenters can manage their Ignored Users list.
-
-`talk-plugin-profile-settings`
-
### Featured Comments
To enable the featuring of comments, you'll need to activate `talk-plugin-featured-comments`. If you would like the Featured Comments tab to be the default tab you land on for the stream, you will need to set the default tab ENV variable:
diff --git a/docs/source/integrating/notifications.md b/docs/source/integrating/notifications.md
index 470632907..a5f625083 100644
--- a/docs/source/integrating/notifications.md
+++ b/docs/source/integrating/notifications.md
@@ -36,10 +36,6 @@ Adding the `talk-plugin-notifications` plugin will also enable the `notification
See https://github.com/coralproject/talk/blob/8b669a31c551a042f0f079d8cfc16825673eb8f0/plugins/talk-plugin-notifications-reply/index.js for an example.
-### Commenter Notification Settings
-
-Note that notifications REQUIRE the `talk-plugin-profile-settings` plugin; this is where on My Profile commenters will enable and manage their notification settings.
-
### Notification Categories
Talk currently supports the following Notifications options out of the box:
diff --git a/locales/en.yml b/locales/en.yml
index d7ad006cb..a7ff51dfc 100644
--- a/locales/en.yml
+++ b/locales/en.yml
@@ -164,7 +164,7 @@ en:
tech_settings: "Tech Settings"
organization_information: "Organization information"
organization_info_copy: "We use this information in email notifications generated by Talk. This connects the messages to your organization, and provides a way for users to contact you if they have an issue with their account."
- organization_info_copy_2: "We recommend creating a generic email account (eg. community@yournewsroom.com) for this purpuse. This means it can remain consistent over time, and doesn't expose a name that users could target if their account were blocked."
+ organization_info_copy_2: "We recommend creating a generic email account (eg. community@yournewsroom.com) for this purpose. This means it can remain consistent over time, and doesn't expose a name that users could target if their account were blocked."
organization_details: "Organization Details"
organization_name: "Organization Name"
organization_contact_email: "Organization Contact Email"
@@ -218,6 +218,7 @@ en:
we_received_a_request: "We received a request to reset your password. If you did not request this change, you can ignore this email."
if_you_did: "If you did,"
please_click: "please click here to reset password"
+ subject: "Password reset"
password_change:
subject: "{0} password change"
body: "The password on your account has been changed.\n\nIf you did not request this change, please contact us at {0}."
diff --git a/locales/es.yml b/locales/es.yml
index f5cade3f3..2cbb1b107 100644
--- a/locales/es.yml
+++ b/locales/es.yml
@@ -215,6 +215,7 @@ es:
we_received_a_request: "Recibimos un pedido para resetear su contraseña. Si no ha pedido ese cambio, por favor ignorar el correo. "
if_you_did: "Si lo hizo,"
please_click: "por favor cliquea aqui para resetear la contraseña."
+ subject: "Recuperar contraseña"
embedlink:
copy: "Copiar al portapapeles"
error:
diff --git a/plugins/talk-plugin-auth/client/login/components/SignUp.js b/plugins/talk-plugin-auth/client/login/components/SignUp.js
index 83f81f81d..96dadcd67 100644
--- a/plugins/talk-plugin-auth/client/login/components/SignUp.js
+++ b/plugins/talk-plugin-auth/client/login/components/SignUp.js
@@ -103,8 +103,7 @@ class SignUp extends React.Component {
/>
{passwordError && (
- {' '}
- Password must be at least 8 characters.{' '}
+ {t('talk-plugin-auth.login.password_error')}
)}
{
locals: {
token,
},
- subject: 'Password Reset',
+ subject: res.locals.t('email.password_reset.subject'),
email,
});
}