change recording messages

This commit is contained in:
Joao Siebel 2019-06-10 11:36:33 -03:00
parent e924ea08cc
commit 36b6b5c902
3 changed files with 5 additions and 4 deletions

View File

@ -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',

View File

@ -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,

View File

@ -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",