diff --git a/lang/main.json b/lang/main.json index 88e115a9b..7bb49fdb5 100644 --- a/lang/main.json +++ b/lang/main.json @@ -50,7 +50,7 @@ }, "chat": { "error": "Error: your message \"__originalText__\" was not sent. Reason: __error__", - "messagebox": "Enter text...", + "messagebox": "Type a message", "nickname": { "popover": "Choose a nickname", "title": "Enter a nickname to use chat" diff --git a/react/features/chat/components/web/ChatInput.js b/react/features/chat/components/web/ChatInput.js index e71dd5304..7d4800bdf 100644 --- a/react/features/chat/components/web/ChatInput.js +++ b/react/features/chat/components/web/ChatInput.js @@ -4,6 +4,7 @@ import React, { Component } from 'react'; import Emoji from 'react-emoji-render'; import type { Dispatch } from 'redux'; +import { translate } from '../../../base/i18n'; import { connect } from '../../../base/redux'; import { sendMessage } from '../../actions'; @@ -23,7 +24,12 @@ type Props = { /** * Optional callback to get a reference to the chat input element. */ - getChatInputRef?: Function + getChatInputRef?: Function, + + /** + * Invoked to obtain translated strings. + */ + t: Function }; /** @@ -114,11 +120,10 @@ class ChatInput extends Component {