Merge pull request #8293 from jitsi/tavram/update-jaas-rec
fix(jaas) update recording label and hide option for jaas users
This commit is contained in:
commit
8d813a499c
|
@ -601,6 +601,7 @@
|
|||
"pending": "Preparing to record the meeting...",
|
||||
"rec": "REC",
|
||||
"serviceDescription": "Your recording will be saved by the recording service",
|
||||
"serviceDescriptionCloud": "Cloud recording",
|
||||
"serviceName": "Recording service",
|
||||
"signIn": "Sign in",
|
||||
"signOut": "Sign out",
|
||||
|
|
|
@ -162,7 +162,9 @@ class StartRecordingDialogContent extends Component<Props> {
|
|||
* @returns {React$Component}
|
||||
*/
|
||||
_renderFileSharingContent() {
|
||||
if (!this.props.fileRecordingsServiceSharingEnabled) {
|
||||
const { fileRecordingsServiceSharingEnabled, isVpaas } = this.props;
|
||||
|
||||
if (!fileRecordingsServiceSharingEnabled || isVpaas) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
@ -247,6 +249,7 @@ class StartRecordingDialogContent extends Component<Props> {
|
|||
) : null;
|
||||
|
||||
const icon = isVpaas ? ICON_SHARE : JITSI_LOGO;
|
||||
const label = isVpaas ? t('recording.serviceDescriptionCloud') : t('recording.serviceDescription');
|
||||
|
||||
return (
|
||||
<Container
|
||||
|
@ -265,7 +268,7 @@ class StartRecordingDialogContent extends Component<Props> {
|
|||
..._dialogStyles.text,
|
||||
...styles.title
|
||||
}}>
|
||||
{ t('recording.serviceDescription') }
|
||||
{ label }
|
||||
</Text>
|
||||
{ switchContent }
|
||||
</Container>
|
||||
|
|
Loading…
Reference in New Issue