|
@@ -4,7 +4,7 @@ import React, { Component } from 'react';
|
4
|
4
|
import { connect } from '../../base/redux';
|
5
|
5
|
|
6
|
6
|
import { createDeepLinkingPageEvent, sendAnalytics } from '../../analytics';
|
7
|
|
-import { translate, translateToHTML } from '../../base/i18n';
|
|
7
|
+import { translate } from '../../base/i18n';
|
8
|
8
|
import { Platform } from '../../base/react';
|
9
|
9
|
import { DialInSummary } from '../../invite';
|
10
|
10
|
|
|
@@ -109,12 +109,7 @@ class DeepLinkingMobilePage extends Component<Props> {
|
109
|
109
|
: null
|
110
|
110
|
}
|
111
|
111
|
<p className = { `${_SNS}__text` }>
|
112
|
|
- {
|
113
|
|
- translateToHTML(
|
114
|
|
- t,
|
115
|
|
- `${_TNS}.appNotInstalled`,
|
116
|
|
- { app: NATIVE_APP_NAME })
|
117
|
|
- }
|
|
112
|
+ { t(`${_TNS}.appNotInstalled`, { app: NATIVE_APP_NAME }) }
|
118
|
113
|
</p>
|
119
|
114
|
<a
|
120
|
115
|
href = { this._generateDownloadURL() }
|