Fixed translate variable in ArchiveRoom Modal (#16310)

pull/16210/head^2
Ashwani Yadav 5 years ago committed by GitHub
parent cf69e43236
commit 285837634c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/channel-settings/client/views/channelSettings.js

@ -481,7 +481,7 @@ Template.channelSettingsEditing.onCreated(function() {
const action = value ? 'archiveRoom' : 'unarchiveRoom';
return resolve(call(action, room._id).then(() => {
modal.open({
title: value ? t('Room_archived') : t('Room_has_been_archived'),
title: value ? t('Room_archived') : t('Room_unarchived'),
text: value ? t('Room_has_been_archived') : t('Room_has_been_unarchived'),
type: 'success',
timer: 2000,

Loading…
Cancel
Save