diff --git a/i18n/po/template.pot b/i18n/po/template.pot index ab3c64520..e3cfef575 100644 --- a/i18n/po/template.pot +++ b/i18n/po/template.pot @@ -12,6 +12,10 @@ msgstr "" msgid "* A payment proposal can be deleted if 1) you are the creator, and no other copayer has signed, or 2) 24 hours have passed since the proposal was created." msgstr "" +#: public/views/disclaimer.html +msgid "IF YOU LOSE ACCESS TO YOUR COPAY WALLET OR YOUR ENCRYPTED PRIVATE KEYS AND YOU HAVE NOT SEPARATELY STORED A BACKUP OF YOUR WALLET AND CORRESPONDING PASSWORD, YOU ACKNOWLEDGE AND AGREE THAT ANY BITCOIN YOU HAVE ASSOCIATED WITH THAT COPAY WALLET WILL BECOME INACCESSIBLE." +msgstr "" + #: public/views/backup.html msgid "OR 1 wallet export file and the remaining quorum of wallet seeds (e.g. in a 3-5 wallet: 1 wallet export file + 2 wallet seeds of any of the other copayers)." msgstr "" @@ -24,22 +28,6 @@ msgstr "" msgid "OR the wallet seeds of all copayers in the wallet" msgstr "" -#: public/views/disclaimer.html -msgid "" -"
-
+ Official English Disclaimer +
I affirm that I have read, understood, and agree with these terms.
diff --git a/src/js/controllers/disclaimer.js b/src/js/controllers/disclaimer.js index 1251e42bc..88533fd31 100644 --- a/src/js/controllers/disclaimer.js +++ b/src/js/controllers/disclaimer.js @@ -1,7 +1,7 @@ 'use strict'; angular.module('copayApp.controllers').controller('disclaimerController', - function($scope, $timeout, storageService, applicationService, gettextCatalog, isCordova) { + function($scope, $timeout, storageService, applicationService, gettextCatalog, isCordova, uxLanguage) { $scope.agree = function() { if (isCordova) { @@ -22,6 +22,7 @@ angular.module('copayApp.controllers').controller('disclaimerController', $scope.init = function() { storageService.getCopayDisclaimerFlag(function(err, val) { + $scope.lang = uxLanguage.currentLanguage; $scope.agreed = val; $timeout(function() { $scope.$digest();