瀏覽代碼

Fix the human-readable text

j8
Lyubo Marinov 8 年之前
父節點
當前提交
72c267fbf3

+ 4
- 4
react/features/unsupported-browser/components/NoMobileApp.js 查看文件

12
  * @class NoMobileApp
12
  * @class NoMobileApp
13
  */
13
  */
14
 export default class NoMobileApp extends Component {
14
 export default class NoMobileApp extends Component {
15
-
16
     /**
15
     /**
17
      * Renders the component.
16
      * Renders the component.
18
      *
17
      *
24
         return (
23
         return (
25
             <div className = { ns }>
24
             <div className = { ns }>
26
                 <h2 className = { `${ns}__title` }>
25
                 <h2 className = { `${ns}__title` }>
27
-                    Video chat isn't available on mobile
26
+                    Video chat isn't available on mobile.
28
                 </h2>
27
                 </h2>
29
                 <p className = { `${ns}__description` }>
28
                 <p className = { `${ns}__description` }>
30
-                    Please use {interfaceConfig.APP_NAME} on
31
-                    Desktop to join calls.
29
+                    Please use { interfaceConfig.APP_NAME } on desktop to join
30
+                    calls.
32
                 </p>
31
                 </p>
32
+
33
                 <HideNotificationBarStyle />
33
                 <HideNotificationBarStyle />
34
             </div>
34
             </div>
35
         );
35
         );

+ 2
- 2
react/features/unsupported-browser/components/PluginRequiredBrowser.js 查看文件

26
                     Your browser requires a plugin for this conversation.
26
                     Your browser requires a plugin for this conversation.
27
                 </h2>
27
                 </h2>
28
                 <p className = { `${ns}__description_small` }>
28
                 <p className = { `${ns}__description_small` }>
29
-                    Once you install the plugin, it will be possible for you
30
-                    to have your conversation here. For best experience,
29
+                    Once you install the plugin, it will be possible for you to
30
+                    have your conversation here. For the best experience,
31
                     however, we strongly recommend that you do that using
31
                     however, we strongly recommend that you do that using
32
                     the&nbsp;
32
                     the&nbsp;
33
                     <a
33
                     <a

+ 9
- 8
react/features/unsupported-browser/components/UnsupportedDesktopBrowser.js 查看文件

8
 import HideNotificationBarStyle from './HideNotificationBarStyle';
8
 import HideNotificationBarStyle from './HideNotificationBarStyle';
9
 
9
 
10
 /**
10
 /**
11
- * Describes styles namespace for this component.
11
+ * The CSS style namespace of UnsupportedDesktopBrowser.
12
  *
12
  *
13
+ * @private
13
  * @type {string}
14
  * @type {string}
14
  */
15
  */
15
-const NS = 'unsupported-desktop-browser';
16
+const _NS = 'unsupported-desktop-browser';
16
 
17
 
17
 /**
18
 /**
18
  * React component representing unsupported browser page.
19
  * React component representing unsupported browser page.
27
      */
28
      */
28
     render() {
29
     render() {
29
         return (
30
         return (
30
-            <div className = { NS }>
31
-                <h2 className = { `${NS}__title` }>
31
+            <div className = { _NS }>
32
+                <h2 className = { `${_NS}__title` }>
32
                     It looks like you're using a browser we don't support.
33
                     It looks like you're using a browser we don't support.
33
                 </h2>
34
                 </h2>
34
-                <p className = { `${NS}__description` }>
35
+                <p className = { `${_NS}__description` }>
35
                     Please try again with the latest version of&nbsp;
36
                     Please try again with the latest version of&nbsp;
36
                     <a
37
                     <a
37
-                        className = { `${NS}__link` }
38
+                        className = { `${_NS}__link` }
38
                         href = { CHROME } >Chrome</a>,&nbsp;
39
                         href = { CHROME } >Chrome</a>,&nbsp;
39
                     <a
40
                     <a
40
-                        className = { `${NS}__link` }
41
+                        className = { `${_NS}__link` }
41
                         href = { FIREFOX }>Firefox</a> or&nbsp;
42
                         href = { FIREFOX }>Firefox</a> or&nbsp;
42
                     {
43
                     {
43
                         this._renderOSSpecificBrowserDownloadLink()
44
                         this._renderOSSpecificBrowserDownloadLink()
73
         if (typeof link !== 'undefined') {
74
         if (typeof link !== 'undefined') {
74
             return (
75
             return (
75
                 <a
76
                 <a
76
-                    className = { `${NS}__link` }
77
+                    className = { `${_NS}__link` }
77
                     href = { link }>
78
                     href = { link }>
78
                     {
79
                     {
79
                         text
80
                         text

+ 1
- 1
react/features/unsupported-browser/components/UnsupportedMobileBrowser.js 查看文件

83
                         src = 'images/logo-blue.svg' />
83
                         src = 'images/logo-blue.svg' />
84
                     <p className = { `${ns}__text` }>
84
                     <p className = { `${ns}__text` }>
85
                         You need <strong>Jitsi Meet</strong> to join a
85
                         You need <strong>Jitsi Meet</strong> to join a
86
-                        conversation on your mobile
86
+                        conversation on mobile
87
                     </p>
87
                     </p>
88
                     <a href = { _URLS[Platform.OS] }>
88
                     <a href = { _URLS[Platform.OS] }>
89
                         <button className = { downloadButtonClassName }>
89
                         <button className = { downloadButtonClassName }>

Loading…
取消
儲存