From 0ffd99acc5965e56d7b260075fd3c063adc3488a Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sat, 7 Sep 2024 16:38:21 +0200 Subject: [PATCH] Use "full" localization ids in the `AltText` class (PR 18674 follow-up) Apparently I missed these in PR 18674. --- src/display/editor/alt_text.js | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/src/display/editor/alt_text.js b/src/display/editor/alt_text.js index da4049598d955..cc7181d855a8c 100644 --- a/src/display/editor/alt_text.js +++ b/src/display/editor/alt_text.js @@ -38,11 +38,19 @@ class AltText { #useNewAltTextFlow = false; + static #l10nNewButton = null; + static _l10nPromise = null; constructor(editor) { this.#editor = editor; this.#useNewAltTextFlow = editor._uiManager.useNewAltTextFlow; + + AltText.#l10nNewButton ||= Object.freeze({ + added: "pdfjs-editor-new-alt-text-added-button-label", + missing: "pdfjs-editor-new-alt-text-missing-button-label", + review: "pdfjs-editor-new-alt-text-to-review-button-label", + }); } static initialize(l10nPromise) { @@ -55,9 +63,7 @@ class AltText { let msg; if (this.#useNewAltTextFlow) { altText.classList.add("new"); - msg = await AltText._l10nPromise.get( - "pdfjs-editor-new-alt-text-missing-button-label" - ); + msg = await AltText._l10nPromise.get(AltText.#l10nNewButton.missing); } else { msg = await AltText._l10nPromise.get( "pdfjs-editor-alt-text-button-label" @@ -235,16 +241,9 @@ class AltText { } if (this.#useNewAltTextFlow) { - // If we've an alt text, we get an "added". - // If we've a guessed text and the alt text has never been set, we get a - // "to-review" been set. - // Otherwise, we get a "missing". - const label = this.#label; - // TODO: Update the l10n keys to avoid this. - const type = label === "review" ? "to-review" : label; button.classList.toggle("done", !!this.#altText); AltText._l10nPromise - .get(`pdfjs-editor-new-alt-text-${type}-button-label`) + .get(AltText.#l10nNewButton[this.#label]) .then(msg => { button.setAttribute("aria-label", msg); // We can't just use button.textContent here, because it would remove