Update CompatibilityPage to match officially supported browsers

See https://github.com/vector-im/riot-web/pull/9177
pull/21833/head
Travis Ralston 2019-03-14 13:03:32 -06:00
parent 5409db418c
commit 278b2ab633
1 changed files with 2 additions and 8 deletions

View File

@ -48,19 +48,13 @@ module.exports = React.createClass({
</p> </p>
<p> <p>
{ _t( { _t(
'Please install <chromeLink>Chrome</chromeLink> or <firefoxLink>Firefox</firefoxLink> ' + 'Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ' +
'for the best experience.', 'or <safariLink>Safari</safariLink> for the best experience.',
{}, {},
{ {
'chromeLink': (sub) => <a href="https://www.google.com/chrome">{sub}</a>, 'chromeLink': (sub) => <a href="https://www.google.com/chrome">{sub}</a>,
'firefoxLink': (sub) => <a href="https://getfirefox.com">{sub}</a>, 'firefoxLink': (sub) => <a href="https://getfirefox.com">{sub}</a>,
},
)}
{ _t('<safariLink>Safari</safariLink> and <operaLink>Opera</operaLink> work too.',
{},
{
'safariLink': (sub) => <a href="http://apple.com/safari">{sub}</a>, 'safariLink': (sub) => <a href="http://apple.com/safari">{sub}</a>,
'operaLink': (sub) => <a href="http://opera.com">{sub}</a>,
}, },
)} )}
</p> </p>