summaryrefslogtreecommitdiffstats
path: root/browser/components/aboutwelcome/content-src/components/AddonsPicker.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/aboutwelcome/content-src/components/AddonsPicker.jsx')
-rw-r--r--browser/components/aboutwelcome/content-src/components/AddonsPicker.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/browser/components/aboutwelcome/content-src/components/AddonsPicker.jsx b/browser/components/aboutwelcome/content-src/components/AddonsPicker.jsx
index 10c88008de..1182c785b9 100644
--- a/browser/components/aboutwelcome/content-src/components/AddonsPicker.jsx
+++ b/browser/components/aboutwelcome/content-src/components/AddonsPicker.jsx
@@ -20,7 +20,9 @@ export const InstallButton = props => {
const [installing, setInstalling] = useState(false);
const [installComplete, setInstallComplete] = useState(false);
- let buttonLabel = installComplete ? "Installed" : "Add to Firefox";
+ let buttonLabel = installComplete
+ ? { string_id: "amo-picker-install-complete-label" }
+ : { string_id: "amo-picker-install-button-label" };
function onClick(event) {
props.handleAction(event);