import { __ } from 'i18n'; import { html } from "lit"; const tplMoved = (o) => { const i18n_moved = __('The conversation has moved to a new address. Click the link below to enter.'); return html`

${i18n_moved}

`; } export default (o) => { const i18n_non_existent = __('This groupchat no longer exists'); const i18n_reason = __('The following reason was given: "%1$s"', o.reason || ''); return html`

${i18n_non_existent}

${ o.reason ? html`

${i18n_reason}

` : '' } ${ o.moved_jid ? tplMoved(o) : '' } `; }