import { html } from "lit-html"; import { __ } from '@converse/headless/i18n'; import tpl_occupant from "./occupant.js"; const PRETTY_CHAT_STATUS = { 'offline': 'Offline', 'unavailable': 'Unavailable', 'xa': 'Extended Away', 'away': 'Away', 'dnd': 'Do not disturb', 'chat': 'Chattty', 'online': 'Online' }; const i18n_occupant_hint = (occupant) => __('Click to mention %1$s in your message.', occupant.get('nick')) const i18n_participants = __('Participants'); export default (o) => html`
${i18n_participants}
`;