summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_list.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/post_list.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/post_list.jsx')
-rw-r--r--web/react/components/post_list.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/post_list.jsx b/web/react/components/post_list.jsx
index 142d7ab1c..ad8cfa20f 100644
--- a/web/react/components/post_list.jsx
+++ b/web/react/components/post_list.jsx
@@ -336,13 +336,13 @@ module.exports = React.createClass({
<div className="channel-intro-profile">
<strong><UserProfile userId={teammate.id} /></strong>
</div>
- <p className="channel-intro-text">{"This is the start of your direct message history with " + teammate_name + "." }<br/>{"Direct messages and files shared here are not shown to people outside this area."}</p>
+ <p className="channel-intro-text">{"This is the start of your private message history with " + teammate_name + "." }<br/>{"Private messages and files shared here are not shown to people outside this area."}</p>
</div>
);
} else {
more_messages = (
<div className="channel-intro">
- <p className="channel-intro-text">{"This is the start of your direct message history with this " + strings.Team + "mate. Direct messages and files shared here are not shown to people outside this area."}</p>
+ <p className="channel-intro-text">{"This is the start of your private message history with this " + strings.Team + "mate. Private messages and files shared here are not shown to people outside this area."}</p>
</div>
);
}