diff --git a/src/ui/component/firstRun/view.jsx b/src/ui/component/firstRun/view.jsx index 5e83528c9..6da33786e 100644 --- a/src/ui/component/firstRun/view.jsx +++ b/src/ui/component/firstRun/view.jsx @@ -62,7 +62,7 @@ export default class FirstRun extends PureComponent {

{__('Thanks for trying out lbry.tv')}

{__( - "Some things still don't work they way they are supposed to, but we are working hard to make that better." + 'Some features are only available on our desktop app. We are working hard to add them here. Check back later or download the app.' )}

diff --git a/src/ui/page/help/view.jsx b/src/ui/page/help/view.jsx index e53db93b5..3b03bef83 100644 --- a/src/ui/page/help/view.jsx +++ b/src/ui/page/help/view.jsx @@ -2,6 +2,7 @@ // @flow import * as icons from 'constants/icons'; import * as React from 'react'; +import classnames from 'classnames'; // @if TARGET='app' import { shell } from 'electron'; // @endif @@ -160,8 +161,35 @@ class HelpPage extends React.PureComponent { -
+
+

{__('Report a Bug or Suggest a New Feature')}

+ +

+ {__('Did you find something wrong? Think LBRY could add something useful and cool?')}{' '} +

+ +
+
+
+ +
{__('Thanks! LBRY is made by its users.')}
+
+
+ +

{__('View your Log')}

@@ -187,31 +215,11 @@ class HelpPage extends React.PureComponent {
-
-
-

{__('Report a Bug or Suggest a New Feature')}

- -

- {__('Did you find something wrong? Think LBRY could add something useful and cool?')}{' '} -

- -
-
-
- -
{__('Thanks! LBRY is made by its users.')}
-
-
- -
+

{__('About')}

diff --git a/src/ui/page/rewards/view.jsx b/src/ui/page/rewards/view.jsx index aa4ac906e..65aab22ae 100644 --- a/src/ui/page/rewards/view.jsx +++ b/src/ui/page/rewards/view.jsx @@ -8,6 +8,7 @@ import Page from 'component/page'; import classnames from 'classnames'; import type { Reward } from 'types/reward'; import { rewards as REWARD_TYPES } from 'lbryinc'; +import UnsupportedOnWeb from 'component/common/unsupported-on-web'; type Props = { doAuth: () => void, @@ -32,19 +33,25 @@ class RewardsPage extends PureComponent { if (user && !user.is_reward_approved && daemonSettings && daemonSettings.share_usage_data) { if (!user.primary_email || !user.has_verified_email || !user.is_identity_verified) { return ( -
-
-

{__('Humans Only')}

-

- {__('Rewards are for human beings only.')}{' '} - {__("You'll have to prove you're one of us before you can claim any rewards.")} -

-
+ !IS_WEB && ( +
+
+

{__('Humans Only')}

+

+ {__('Rewards are for human beings only.')}{' '} + {__("You'll have to prove you're one of us before you can claim any rewards.")} +

+
-
-
-
+
+
+
+ ) ); } return ( @@ -131,8 +138,8 @@ class RewardsPage extends PureComponent {

{claimed && claimed.length ? __( - "You have claimed all available rewards! We're regularly adding more so be sure to check back later." - ) + "You have claimed all available rewards! We're regularly adding more so be sure to check back later." + ) : __('There are no rewards available at this time, please check back later.')}

@@ -162,6 +169,7 @@ class RewardsPage extends PureComponent { render() { return ( + {IS_WEB && } {this.renderPageHeader()} {this.renderUnclaimedRewards()} {} diff --git a/src/ui/page/settings/view.jsx b/src/ui/page/settings/view.jsx index fee72b638..87bbea2b3 100644 --- a/src/ui/page/settings/view.jsx +++ b/src/ui/page/settings/view.jsx @@ -155,7 +155,7 @@ class SettingsPage extends React.PureComponent {
{__('Failed to load settings.')}
) : ( -
+

{__('Download Directory')}

diff --git a/src/ui/page/transactionHistory/view.jsx b/src/ui/page/transactionHistory/view.jsx index 06ed0fe83..ca64ee9b2 100644 --- a/src/ui/page/transactionHistory/view.jsx +++ b/src/ui/page/transactionHistory/view.jsx @@ -1,9 +1,11 @@ // @flow import React from 'react'; +import classnames from 'classnames'; import BusyIndicator from 'component/common/busy-indicator'; import TransactionList from 'component/transactionList'; import Page from 'component/page'; import RefreshTransactionButton from 'component/transactionRefreshButton'; +import UnsupportedOnWeb from 'component/common/unsupported-on-web'; type Props = { fetchMyClaims: () => void, @@ -25,7 +27,12 @@ class TransactionHistoryPage extends React.PureComponent { return ( -
+ {IS_WEB && } +

{__('Transaction History')}