summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-07-01 22:21:09 -0800
committerCorey Hulen <corey@hulen.com>2015-07-01 22:21:09 -0800
commit3757bc85fb5699e096d59d61f572af8e6c3a6ec6 (patch)
tree1e789cb9484586f636eda089ad6b26ea7d884cf3 /web/react/components/user_settings.jsx
parentc0de5c37f0d2bc497d317e78bbb8ce8c38bc2424 (diff)
parent27eeabafe096013f1d0d368a65fe71ef230eab50 (diff)
downloadchat-3757bc85fb5699e096d59d61f572af8e6c3a6ec6.tar.gz
chat-3757bc85fb5699e096d59d61f572af8e6c3a6ec6.tar.bz2
chat-3757bc85fb5699e096d59d61f572af8e6c3a6ec6.zip
Merge pull request #115 from nickago/MM-1425
MM-1425 Facelifted "direct message" to "private message"
Diffstat (limited to 'web/react/components/user_settings.jsx')
-rw-r--r--web/react/components/user_settings.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/react/components/user_settings.jsx b/web/react/components/user_settings.jsx
index f97a06db3..0a2a8125c 100644
--- a/web/react/components/user_settings.jsx
+++ b/web/react/components/user_settings.jsx
@@ -179,7 +179,7 @@ var NotificationsTab = React.createClass({
</div>
<div className="radio">
<label>
- <input type="radio" checked={notifyActive[1]} onClick={function(){self.handleNotifyRadio("mention")}}>Only for mentions and direct messages</input>
+ <input type="radio" checked={notifyActive[1]} onClick={function(){self.handleNotifyRadio("mention")}}>Only for mentions and private messages</input>
</label>
<br/>
</div>
@@ -203,7 +203,7 @@ var NotificationsTab = React.createClass({
} else {
var describe = "";
if (this.state.notify_level === "mention") {
- describe = "Only for mentions and direct messages";
+ describe = "Only for mentions and private messages";
} else if (this.state.notify_level === "none") {
describe = "Never";
} else {
@@ -282,7 +282,7 @@ var NotificationsTab = React.createClass({
<button className={"btn btn-default "+emailActive[0]} onClick={function(){self.handleEmailRadio("true")}}>On</button>
<button className={"btn btn-default "+emailActive[1]} onClick={function(){self.handleEmailRadio("false")}}>Off</button>
</div>
- <div><br/>{"Email notifications are sent for mentions and direct messages after you have been away from " + config.SiteName + " for 5 minutes."}</div>
+ <div><br/>{"Email notifications are sent for mentions and private messages after you have been away from " + config.SiteName + " for 5 minutes."}</div>
</div>
);