diff --git a/UI/SubstitutedTranslation.ts b/UI/SubstitutedTranslation.ts index 2a51d15e4..c99699dda 100644 --- a/UI/SubstitutedTranslation.ts +++ b/UI/SubstitutedTranslation.ts @@ -60,7 +60,7 @@ export class SubstitutedTranslation extends VariableUiElement { element = knownSpecial.constr(State.state, tags, args); }catch(e){ console.error("SPECIALRENDERING FAILED for", tags.data.id, e) - element = new FixedUiElement(`Could not generate special renering for ${knownSpecial}(${args.join(", ")}) ${e}`).SetClass("alert") + element = new FixedUiElement(`Could not generate special rendering for ${knownSpecial}(${args.join(", ")}) ${e}`).SetClass("alert") } return [...partBefore, element, ...partAfter] diff --git a/UI/i18n/Translations.ts b/UI/i18n/Translations.ts index d530c8261..5a0c81459 100644 --- a/UI/i18n/Translations.ts +++ b/UI/i18n/Translations.ts @@ -1,4 +1,3 @@ -import {UIElement} from "../UIElement"; import {FixedUiElement} from "../Base/FixedUiElement"; import AllTranslationAssets from "../../AllTranslationAssets"; import {Translation} from "./Translation";