- {claimIsMine
- ? __('This will increase your overall bid amount for ')
+ {claimIsMine || isSupport
+ ? __('This will increase the overall bid amount for ')
: __('This will appear as a tip for ')}
{`"${title}" which will boost its ability to be discovered while active.`}{' '}
-
+ .
diff --git a/src/ui/page/settings/index.js b/src/ui/page/settings/index.js
index c534b125d..d712b8264 100644
--- a/src/ui/page/settings/index.js
+++ b/src/ui/page/settings/index.js
@@ -25,6 +25,7 @@ const select = state => ({
walletEncrypted: selectWalletIsEncrypted(state),
osNotificationsEnabled: selectosNotificationsEnabled(state),
autoDownload: makeSelectClientSetting(settings.AUTO_DOWNLOAD)(state),
+ supportOption: makeSelectClientSetting(settings.SUPPORT_OPTION)(state),
});
const perform = dispatch => ({
diff --git a/src/ui/page/settings/view.jsx b/src/ui/page/settings/view.jsx
index 81f8411df..b269d7fec 100644
--- a/src/ui/page/settings/view.jsx
+++ b/src/ui/page/settings/view.jsx
@@ -44,6 +44,7 @@ type Props = {
updateWalletStatus: () => void,
walletEncrypted: boolean,
osNotificationsEnabled: boolean,
+ supportOption: boolean,
};
type State = {
@@ -150,6 +151,7 @@ class SettingsPage extends React.PureComponent {
autoDownload,
setDaemonSetting,
setClientSetting,
+ supportOption,
} = this.props;
const noDaemonSettings = !daemonSettings || Object.keys(daemonSettings).length === 0;
@@ -276,9 +278,9 @@ class SettingsPage extends React.PureComponent {
name="show_nsfw"
onChange={() => setClientSetting(SETTINGS.SHOW_NSFW, !showNsfw)}
checked={showNsfw}
- label={__('Show NSFW content')}
+ label={__('Show mature content')}
helper={__(
- 'NSFW content may include nudity, intense sexuality, profanity, or other adult content. By displaying NSFW content, you are affirming you are of legal age to view mature content in your country or jurisdiction. '
+ 'Mature content may include nudity, intense sexuality, profanity, or other adult content. By displaying mature content, you are affirming you are of legal age to view mature content in your country or jurisdiction. '
)}
/>
@@ -368,7 +370,7 @@ class SettingsPage extends React.PureComponent {
name="encrypt_wallet"
onChange={() => this.onChangeEncryptWallet()}
checked={walletEncrypted}
- label={__('Encrypt my wallet with a custom password.')}
+ label={__('Encrypt my wallet with a custom password')}
helper={
{__('Secure your local wallet data with a custom password.')}{' '}
@@ -386,6 +388,23 @@ class SettingsPage extends React.PureComponent {