UI strings: durationNA and moderater's finish message

This commit is contained in:
Radium Zheng
2018-07-10 23:52:44 +10:00
parent f8c01646c7
commit 2dfb107c57
3 changed files with 15 additions and 5 deletions

View File

@@ -336,7 +336,7 @@ class RecordingController {
result[localId] = {
id: localId,
displayName: i18next.t('localRecording.localUser'),
displayName: i18next.t('localRecording.me'),
recordingStats: this.getLocalStats(),
isSelf: true
};
@@ -507,7 +507,9 @@ class RecordingController {
this.downloadRecordedData(token);
const message
= i18next.t('localRecording.messages.finished',
= i18next.t(this._conference.isModerator()
? 'localRecording.messages.finishedModerator'
: 'localRecording.messages.finished',
{
token
});