import { html } from "lit-html"; import { __ } from '@converse/headless/i18n'; const i18n_logout = __('Log out'); const i18n_change_status = __('Click to change your chat status'); const i18n_details = __('Show details about this chat client'); export default (o) => html`
${o.fullname} ${o._converse.api.settings.get('show_client_info') ? html`` : ''} ${o._converse.api.settings.get('allow_logout') ? html`` : ''}
${o.status_message}
`;