import { i18n } from "jb-core/i18n"; import { dictionary } from "./i18n"; import 'jb-button'; export function renderHTML(): string { return /* html */ `
${dictionary.get(i18n, "chooseImage")}
${dictionary.get(i18n, "uploading")}
${dictionary.get(i18n, "preparing")}
${renderOverlay()}
`; } function renderOverlay() { return /* html */`
${dictionary.get(i18n, "reselectImage")}
` }