no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / security / manager / pki / resources / content / resetpassword.js
blob30db349794dd88ac9702ec4ce175ef11d7b48209
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 /* import-globals-from pippki.js */
5 "use strict";
7 document.addEventListener("dialogaccept", resetPassword);
9 function resetPassword() {
10   var pk11db = Cc["@mozilla.org/security/pk11tokendb;1"].getService(
11     Ci.nsIPK11TokenDB
12   );
13   var token = pk11db.getInternalKeyToken();
14   token.reset();
16   try {
17     Services.logins.removeAllUserFacingLogins();
18   } catch (e) {}
20   let l10n = new Localization(["security/pippki/pippki.ftl"], true);
21   if (l10n) {
22     Services.prompt.alert(
23       window,
24       l10n.formatValueSync("pippki-reset-password-confirmation-title"),
25       l10n.formatValueSync("pippki-reset-password-confirmation-message")
26     );
27   }