Updating intro text for channels

Этот коммит содержится в:
Asaad Mahmood
2015-08-21 00:34:49 +05:00
родитель 2c97e4a5d3
Коммит fd7efdb768

Просмотреть файл

@@ -419,7 +419,7 @@ module.exports = React.createClass({
<p className='channel-intro__content'> <p className='channel-intro__content'>
Welcome to <strong>{uiName}</strong>! Welcome to <strong>{uiName}</strong>!
<br/><br/> <br/><br/>
This is the first channel {strings.Team} mates see when they This is the first channel {strings.Team}mates see when they
<br/> <br/>
sign up - use it for posting updates everyone needs to know. sign up - use it for posting updates everyone needs to know.
<br/><br/> <br/><br/>
@@ -454,7 +454,7 @@ module.exports = React.createClass({
var createMessage; var createMessage;
if (creatorName !== '') { if (creatorName !== '') {
createMessage = (<span>This is the start of the <strong>{uiName}</strong> {uiType} created by <strong>{creatorName}</strong> on <strong>{utils.displayDate(channel.create_at)}</strong></span>); createMessage = (<span>This is the start of the <strong>{uiName}</strong> {uiType}, created by <strong>{creatorName}</strong> on <strong>{utils.displayDate(channel.create_at)}</strong></span>);
} else { } else {
createMessage = 'This is the start of the ' + uiName + ' ' + uiType + ', created on ' + utils.displayDate(channel.create_at) + '.'; createMessage = 'This is the start of the ' + uiName + ' ' + uiType + ', created on ' + utils.displayDate(channel.create_at) + '.';
} }