Skip to content

Commit

Permalink
Merge 46c6c2b into 7e2e823
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Wang committed Mar 23, 2017
2 parents 7e2e823 + 46c6c2b commit 6d66fb8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
19 changes: 16 additions & 3 deletions webapp/components/channel_info_modal.jsx
Expand Up @@ -2,6 +2,7 @@
// See License.txt for license information.

import * as Utils from 'utils/utils.jsx';
import Constants from 'utils/constants.jsx';

import {FormattedMessage} from 'react-intl';
import {Modal} from 'react-bootstrap';
Expand Down Expand Up @@ -47,17 +48,29 @@ export default class ChannelInfoModal extends React.Component {

const channelURL = TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name;

let channelPurpose = null;
let channelPurpose;
if (channel.purpose) {
channelPurpose = channel.purpose;
} else if (channel.name === Constants.DEFAULT_CHANNEL) {
channelPurpose = (
<FormattedMessage
id='default_channel.purpose'
defaultMessage='Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.'
/>
);
}

let channelPurposeElement;
if (channelPurpose) {
channelPurposeElement = (
<div className='form-group'>
<div className='info__label'>
<FormattedMessage
id='channel_info.purpose'
defaultMessage='Purpose:'
/>
</div>
<div className='info__value'>{channel.purpose}</div>
<div className='info__value'>{channelPurpose}</div>
</div>
);
}
Expand Down Expand Up @@ -97,7 +110,7 @@ export default class ChannelInfoModal extends React.Component {
</Modal.Title>
</Modal.Header>
<Modal.Body ref='modalBody'>
{channelPurpose}
{channelPurposeElement}
{channelHeader}
<div className='form-group'>
<div className='info__label'>
Expand Down
3 changes: 2 additions & 1 deletion webapp/i18n/en.json
Expand Up @@ -1227,6 +1227,7 @@
"custom_emoji.empty": "No custom emoji found",
"custom_emoji.header": "Custom Emoji",
"custom_emoji.search": "Search Custom Emoji",
"default_channel.purpose": "Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.",
"delete_channel.cancel": "Cancel",
"delete_channel.channel": "channel",
"delete_channel.confirm": "Confirm DELETE Channel",
Expand Down Expand Up @@ -1528,7 +1529,7 @@
"intro_messages.beginning": "Beginning of {name}",
"intro_messages.channel": "channel",
"intro_messages.creator": "This is the start of the {name} {type}, created by {creator} on {date}.",
"intro_messages.default": "<h4 class='channel-intro__title'>Beginning of {display_name}</h4><p class='channel-intro__content'><strong>Welcome to {display_name}!</strong><br/><br/>This is the first channel teammates see when they sign up - use it for posting updates everyone needs to know.</p>",
"intro_messages.default": "<h4 class='channel-intro__title'>Beginning of {display_name}</h4><p class='channel-intro__content'><strong>Welcome to {display_name}!</strong><br/><br/>Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.</p>",
"intro_messages.group": "private group",
"intro_messages.invite": "Invite others to this {type}",
"intro_messages.inviteOthers": "Invite others to this team",
Expand Down

0 comments on commit 6d66fb8

Please sign in to comment.