diff --git a/app/extensions/brave/locales/en-US/preferences.properties b/app/extensions/brave/locales/en-US/preferences.properties index 987738fc78d..bc783e1048f 100644 --- a/app/extensions/brave/locales/en-US/preferences.properties +++ b/app/extensions/brave/locales/en-US/preferences.properties @@ -68,7 +68,7 @@ contributionStatementFooterNoteBoxHeading1=Note: contributionStatementFooterNoteBoxBody1=To protect your privacy, this Brave Payments contribution statement is not saved, recorded or logged anywhere other than on your device (this computer). It cannot be retrieved from Brave in the event of data loss on your device. contributionStatementFooterNoteBoxHeading2=About publisher distributions contributionStatementFooterNoteBoxBody2=Brave Payments uses a statistical model that removes any ability to identify Brave users based on their browsing behaviors. Anonymous contributions are first combined in the Brave vault and then redistributed into publisher wallets which are confirmed and then collected by the publisher. -contributionStatementCopyrightFooter=©2016 Brave Software. Brave is a registered trademark of Brave Software. Site names may be trademarks or registered trademarks of the site owner. +contributionStatementCopyrightFooter=©2016 - {{currentYear}} Brave Software. Brave is a registered trademark of Brave Software. Site names may be trademarks or registered trademarks of the site owner. contributionStatements=Contribution statements listOfContributionStatements=List of contribution statements bitcoinAddress=Your Brave wallet address is: diff --git a/js/about/contributionStatement.js b/js/about/contributionStatement.js index 67717fa1cf4..096026c6357 100644 --- a/js/about/contributionStatement.js +++ b/js/about/contributionStatement.js @@ -328,9 +328,13 @@ class ContributionStatement extends ImmutableComponent { } get ContributionStatementPageFooter () { + const l10nDataArgs = { + currentYear: new Date().getFullYear().toString(10) + } + return (
- +
) }