implement [PLT-4118] Help text on "Private Channel --> Set Channel Purpose" is incorrect (#6144)

Этот коммит содержится в:
Carlos Tadeu Panato Junior
2017-04-20 15:58:22 +02:00
коммит произвёл Joram Wilander
родитель b0e5713680
Коммит 8723f61f45
2 изменённых файлов: 17 добавлений и 4 удалений

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

@@ -110,6 +110,21 @@ export default class EditChannelPurposeModal extends React.Component {
);
}
let channelPurposeModal = (
<FormattedMessage
id='edit_channel_purpose_modal.body'
defaultMessage='Describe how this channel should be used. This text appears in the channel list in the "More..." menu and helps others decide whether to join.'
/>
);
if (this.props.channel.type === 'P') {
channelPurposeModal = (
<FormattedMessage
id='edit_channel_private_purpose_modal.body'
defaultMessage='This text appears in the \"View Info\" modal of the private channel.'
/>
);
}
return (
<Modal
className='modal-edit-channel-purpose'
@@ -125,10 +140,7 @@ export default class EditChannelPurposeModal extends React.Component {
</Modal.Header>
<Modal.Body>
<p>
<FormattedMessage
id='edit_channel_purpose_modal.body'
defaultMessage='Describe how this channel should be used. This text appears in the channel list in the "More..." menu and helps others decide whether to join.'
/>
{channelPurposeModal}
</p>
<textarea
ref='purpose'

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

@@ -1249,6 +1249,7 @@
"edit_channel_header_modal.title": "Edit Header for {channel}",
"edit_channel_header_modal.title_dm": "Edit Header",
"edit_channel_purpose_modal.body": "Describe how this channel should be used. This text appears in the channel list in the \"More...\" menu and helps others decide whether to join.",
"edit_channel_private_purpose_modal.body": "This text appears in the \"View Info\" modal of the private channel.",
"edit_channel_purpose_modal.cancel": "Cancel",
"edit_channel_purpose_modal.error": "This channel purpose is too long, please enter a shorter one",
"edit_channel_purpose_modal.save": "Save",