fix: add type check for undefined, use fallback when no translation for aspect ratios was given (#3025)
This commit is contained in:
parent
dfff9b7dcf
commit
0e621ae34e
|
|
@ -81,9 +81,12 @@ function refresh_style_localization() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function refresh_aspect_ratios_label(value) {
|
function refresh_aspect_ratios_label(value) {
|
||||||
label = document.querySelector('#aspect_ratios_accordion div span[data-original-text="Aspect Ratios"]')
|
label = document.querySelector('#aspect_ratios_accordion div span[data-original-text="Aspect Ratios"]');
|
||||||
translation = getTranslation("Aspect Ratios")
|
translation = getTranslation("Aspect Ratios");
|
||||||
label.textContent = translation + " " + htmlDecode(value)
|
if (typeof translation == "undefined") {
|
||||||
|
translation = "Aspect Ratios";
|
||||||
|
}
|
||||||
|
label.textContent = translation + " " + htmlDecode(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
function localizeWholePage() {
|
function localizeWholePage() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue