import { html } from "lit"; import { __ } from 'i18n'; import tpl_occupant from "./occupant.js"; export default (o) => { const i18n_participants = o.occupants.length === 1 ? __('Participant') : __('Participants'); return html`
${o.occupants.length} ${i18n_participants}
`; }