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