fix(card): clarify language on card add confirmation dialog
This commit is contained in:
parent
ffa8aa39ce
commit
3266391fcf
1 changed files with 2 additions and 2 deletions
|
|
@ -27,9 +27,9 @@ angular.module('copayApp.controllers').controller('bitpayCardIntroController', f
|
||||||
popupService.showAlert(null, err);
|
popupService.showAlert(null, err);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var title = gettextCatalog.getString('Add BitPay Card?');
|
var title = gettextCatalog.getString('Add BitPay Card Account?');
|
||||||
var msg = gettextCatalog.getString('Would you like to add this account ({{email}}) to your wallet?', {email: obj.email});
|
var msg = gettextCatalog.getString('Would you like to add this account ({{email}}) to your wallet?', {email: obj.email});
|
||||||
var ok = gettextCatalog.getString('Add cards');
|
var ok = gettextCatalog.getString('Add Account');
|
||||||
var cancel = gettextCatalog.getString('Go back');
|
var cancel = gettextCatalog.getString('Go back');
|
||||||
popupService.showConfirm(title, msg, ok, cancel, function(res) {
|
popupService.showConfirm(title, msg, ok, cancel, function(res) {
|
||||||
if (res) {
|
if (res) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue