Fix the human-readable text
This commit is contained in:
parent
0ed85b9d25
commit
72c267fbf3
|
@ -12,7 +12,6 @@ declare var interfaceConfig: Object;
|
|||
* @class NoMobileApp
|
||||
*/
|
||||
export default class NoMobileApp extends Component {
|
||||
|
||||
/**
|
||||
* Renders the component.
|
||||
*
|
||||
|
@ -24,12 +23,13 @@ export default class NoMobileApp extends Component {
|
|||
return (
|
||||
<div className = { ns }>
|
||||
<h2 className = { `${ns}__title` }>
|
||||
Video chat isn't available on mobile
|
||||
Video chat isn't available on mobile.
|
||||
</h2>
|
||||
<p className = { `${ns}__description` }>
|
||||
Please use {interfaceConfig.APP_NAME} on
|
||||
Desktop to join calls.
|
||||
Please use { interfaceConfig.APP_NAME } on desktop to join
|
||||
calls.
|
||||
</p>
|
||||
|
||||
<HideNotificationBarStyle />
|
||||
</div>
|
||||
);
|
||||
|
|
|
@ -26,8 +26,8 @@ export default class PluginRequiredBrowser extends Component {
|
|||
Your browser requires a plugin for this conversation.
|
||||
</h2>
|
||||
<p className = { `${ns}__description_small` }>
|
||||
Once you install the plugin, it will be possible for you
|
||||
to have your conversation here. For best experience,
|
||||
Once you install the plugin, it will be possible for you to
|
||||
have your conversation here. For the best experience,
|
||||
however, we strongly recommend that you do that using
|
||||
the
|
||||
<a
|
||||
|
|
|
@ -8,11 +8,12 @@ import { CHROME, FIREFOX, IE, SAFARI } from './browserLinks';
|
|||
import HideNotificationBarStyle from './HideNotificationBarStyle';
|
||||
|
||||
/**
|
||||
* Describes styles namespace for this component.
|
||||
* The CSS style namespace of UnsupportedDesktopBrowser.
|
||||
*
|
||||
* @private
|
||||
* @type {string}
|
||||
*/
|
||||
const NS = 'unsupported-desktop-browser';
|
||||
const _NS = 'unsupported-desktop-browser';
|
||||
|
||||
/**
|
||||
* React component representing unsupported browser page.
|
||||
|
@ -27,17 +28,17 @@ export default class UnsupportedDesktopBrowser extends Component {
|
|||
*/
|
||||
render() {
|
||||
return (
|
||||
<div className = { NS }>
|
||||
<h2 className = { `${NS}__title` }>
|
||||
<div className = { _NS }>
|
||||
<h2 className = { `${_NS}__title` }>
|
||||
It looks like you're using a browser we don't support.
|
||||
</h2>
|
||||
<p className = { `${NS}__description` }>
|
||||
<p className = { `${_NS}__description` }>
|
||||
Please try again with the latest version of
|
||||
<a
|
||||
className = { `${NS}__link` }
|
||||
className = { `${_NS}__link` }
|
||||
href = { CHROME } >Chrome</a>,
|
||||
<a
|
||||
className = { `${NS}__link` }
|
||||
className = { `${_NS}__link` }
|
||||
href = { FIREFOX }>Firefox</a> or
|
||||
{
|
||||
this._renderOSSpecificBrowserDownloadLink()
|
||||
|
@ -73,7 +74,7 @@ export default class UnsupportedDesktopBrowser extends Component {
|
|||
if (typeof link !== 'undefined') {
|
||||
return (
|
||||
<a
|
||||
className = { `${NS}__link` }
|
||||
className = { `${_NS}__link` }
|
||||
href = { link }>
|
||||
{
|
||||
text
|
||||
|
|
|
@ -83,7 +83,7 @@ class UnsupportedMobileBrowser extends Component {
|
|||
src = 'images/logo-blue.svg' />
|
||||
<p className = { `${ns}__text` }>
|
||||
You need <strong>Jitsi Meet</strong> to join a
|
||||
conversation on your mobile
|
||||
conversation on mobile
|
||||
</p>
|
||||
<a href = { _URLS[Platform.OS] }>
|
||||
<button className = { downloadButtonClassName }>
|
||||
|
|
Loading…
Reference in New Issue