import { html } from "lit"; import { __ } from 'i18n'; export default (o) => { const i18n_heading = __('Bookmark this groupchat'); const i18n_autojoin = __('Would you like this groupchat to be automatically joined upon startup?'); const i18n_cancel = __('Cancel'); const i18n_name = __('The name for this bookmark:'); const i18n_nick = __('What should your nickname for this groupchat be?'); const i18n_submit = __('Save'); return html`
${i18n_heading}
`; }