diff --git a/i18n/po/template.pot b/i18n/po/template.pot index 521970fe5..e3cfef575 100644 --- a/i18n/po/template.pot +++ b/i18n/po/template.pot @@ -845,6 +845,10 @@ msgstr "" msgid "Note" msgstr "" +#: public/views/disclaimer.html +msgid "Official English Disclaimer" +msgstr "" + #: public/views/backup.html msgid "Once you have copy your wallet seed, it is recommended to delete it from this device." msgstr "" diff --git a/public/views/disclaimer.html b/public/views/disclaimer.html index 25306cdf5..5b988b940 100644 --- a/public/views/disclaimer.html +++ b/public/views/disclaimer.html @@ -28,6 +28,9 @@
  • We reserve the right to modify this disclaimer from time to time.
  • +

    + 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();