From 57910bef5aaf75ead120f712f91c47848502b5a5 Mon Sep 17 00:00:00 2001 From: Lloyd Hilaiel <lloyd@hilaiel.com> Date: Tue, 17 Jul 2012 12:09:59 -0600 Subject: [PATCH] not BrowserID, but Persona --- resources/static/pages/js/manage_account.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/static/pages/js/manage_account.js b/resources/static/pages/js/manage_account.js index 0ff49a7d1..c5452ffa1 100644 --- a/resources/static/pages/js/manage_account.js +++ b/resources/static/pages/js/manage_account.js @@ -49,7 +49,7 @@ BrowserID.manageAccount = (function() { displayStoredEmails(oncomplete); } else if (_.size(emails) > 1) { - if (confirmAction(format(gettext("Remove %(email) from your BrowserID?"), + if (confirmAction(format(gettext("Remove %(email) from your Persona account?"), { email: email }))) { user.removeEmail(email, function() { displayStoredEmails(oncomplete); @@ -60,7 +60,7 @@ BrowserID.manageAccount = (function() { } } else { - if (confirmAction(gettext("Removing the last address will cancel your BrowserID account.\nAre you sure you want to continue?"))) { + if (confirmAction(gettext("Removing the last address will cancel your Persona account.\nAre you sure you want to continue?"))) { user.cancelUser(function() { doc.location="/"; complete(); @@ -93,7 +93,7 @@ BrowserID.manageAccount = (function() { } function cancelAccount(oncomplete) { - if (confirmAction(gettext("Are you sure you want to cancel your BrowserID account?"))) { + if (confirmAction(gettext("Are you sure you want to cancel your Persona account?"))) { user.cancelUser(function() { doc.location="/"; oncomplete && oncomplete(); -- GitLab