diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2018-04-26 01:53:49 -0400 |
---|---|---|
committer | adeshkp <adeshkp@users.noreply.github.com> | 2018-04-26 01:53:49 -0400 |
commit | f506d6fcaad26464b75338630a7d3a0078029eba (patch) | |
tree | 24e06ff08bb21ebc1074c74f4bd3acad8227b5fc /toolkit/components/passwordmgr/content/passwordManager.js | |
parent | 4411befc8ed3819b1fa3bbe5954e19a537155499 (diff) | |
download | UXP-f506d6fcaad26464b75338630a7d3a0078029eba.tar UXP-f506d6fcaad26464b75338630a7d3a0078029eba.tar.gz UXP-f506d6fcaad26464b75338630a7d3a0078029eba.tar.lz UXP-f506d6fcaad26464b75338630a7d3a0078029eba.tar.xz UXP-f506d6fcaad26464b75338630a7d3a0078029eba.zip |
[Toolkit] Change button labels in password manager
Diffstat (limited to 'toolkit/components/passwordmgr/content/passwordManager.js')
-rw-r--r-- | toolkit/components/passwordmgr/content/passwordManager.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/toolkit/components/passwordmgr/content/passwordManager.js b/toolkit/components/passwordmgr/content/passwordManager.js index 333dc1d24..fcf6a0cb9 100644 --- a/toolkit/components/passwordmgr/content/passwordManager.js +++ b/toolkit/components/passwordmgr/content/passwordManager.js @@ -80,6 +80,8 @@ function Startup() { togglePasswordsButton.label = kSignonBundle.getString("showPasswords"); togglePasswordsButton.accessKey = kSignonBundle.getString("showPasswordsAccessKey"); signonsIntro.textContent = kSignonBundle.getString("loginsDescriptionAll"); + removeAllButton.setAttribute("label", kSignonBundle.getString("removeAll.label")); + removeAllButton.setAttribute("accesskey", kSignonBundle.getString("removeAll.accesskey")); document.getElementsByTagName("treecols")[0].addEventListener("click", (event) => { let { target, button } = event; let sortField = target.getAttribute("data-field-name"); @@ -555,6 +557,8 @@ function SignonClearFilter() { signonsTreeView._lastSelectedRanges = []; signonsIntro.textContent = kSignonBundle.getString("loginsDescriptionAll"); + removeAllButton.setAttribute("label", kSignonBundle.getString("removeAll.label")); + removeAllButton.setAttribute("accesskey", kSignonBundle.getString("removeAll.accesskey")); } function FocusFilterBox() { @@ -623,6 +627,8 @@ function FilterPasswords() { signonsTreeView.selection.select(0); signonsIntro.textContent = kSignonBundle.getString("loginsDescriptionFiltered"); + removeAllButton.setAttribute("label", kSignonBundle.getString("removeAllShown.label")); + removeAllButton.setAttribute("accesskey", kSignonBundle.getString("removeAllShown.accesskey")); } function CopyPassword() { |