diff --git a/assets/locales/en/translation.json b/assets/locales/en/translation.json index eeb11560e..6063020f4 100644 --- a/assets/locales/en/translation.json +++ b/assets/locales/en/translation.json @@ -72,6 +72,8 @@ "DetailsForYourNew": "Details for your new wallet network", "DesktopNotifications": "Desktop notifications", "Privacy": "Privacy", + "SendEventReports": "Send event reports", + "SendEventReportsDescription": "Enable to help measure app impact and client diversity shown at https://impact.nicenode.xyz", "SendErrorReports": "Send error reports", "SendErrorReportsDescription": "Enabled by default in alpha releases to fix bugs and improve the app.", "PreReleaseUpdates": "Pre-release Updates", diff --git a/src/renderer/Presentational/Preferences/Preferences.tsx b/src/renderer/Presentational/Preferences/Preferences.tsx index 371b7b0b7..846cc7b58 100644 --- a/src/renderer/Presentational/Preferences/Preferences.tsx +++ b/src/renderer/Presentational/Preferences/Preferences.tsx @@ -225,10 +225,8 @@ const Preferences = ({ sectionTitle: '', items: [ { - label: t('SendErrorReports'), - description: `${t('SendErrorReportsDescription')} (${ - import.meta.env.MP_PROJECT_ENV - })`, + label: t('SendEventReports'), + description: `${t('SendEventReportsDescription')}`, value: ( ), + learnMoreLink: 'https://impact.nicenode.xyz', }, ], }, @@ -278,6 +277,7 @@ const Preferences = ({
{t('YouAreRunningNiceNode')} {version} {import.meta.env.NICENODE_ENV} + {import.meta.env.MP_PROJECT_ENV}
);