change recording messages
This commit is contained in:
parent
e924ea08cc
commit
36b6b5c902
@ -284,7 +284,7 @@ const BaseContainer = withTracker(() => {
|
||||
if (oldDocument.recordProp.recording && !newDocument.recordProp.recording) {
|
||||
notify(
|
||||
<FormattedMessage
|
||||
id="app.notification.recordingStop"
|
||||
id="app.notification.recordingPaused"
|
||||
description="Notification for when the recording stops"
|
||||
/>,
|
||||
'error',
|
||||
|
@ -1,4 +1,4 @@
|
||||
import React from 'react';
|
||||
import React, { PureComponent } from 'react';
|
||||
import RecordingContainer from '/imports/ui/components/recording/container';
|
||||
import humanizeSeconds from '/imports/utils/humanizeSeconds';
|
||||
import Tooltip from '/imports/ui/components/tooltip/component';
|
||||
@ -41,7 +41,7 @@ const defaultProps = {
|
||||
time: 0,
|
||||
};
|
||||
|
||||
class RecordingIndicator extends React.PureComponent {
|
||||
class RecordingIndicator extends PureComponent {
|
||||
render() {
|
||||
const {
|
||||
record,
|
||||
|
@ -459,7 +459,8 @@
|
||||
"app.toast.chat.private": "New Private Chat message",
|
||||
"app.toast.chat.system": "System",
|
||||
"app.notification.recordingStart": "This session is now being recorded",
|
||||
"app.notification.recordingStop": "This session is not being recorded anymore",
|
||||
"app.notification.recordingStop": "This session is not being recorded",
|
||||
"app.notification.recordingPaused": "This session is not being recorded anymore",
|
||||
"app.notification.recordingAriaLabel": "Recorded time ",
|
||||
"app.shortcut-help.title": "Keyboard shortcuts",
|
||||
"app.shortcut-help.accessKeyNotAvailable": "Access keys not available",
|
||||
|
Loading…
Reference in New Issue
Block a user