import { html } from "lit-html"; import { __ } from 'i18n'; export default (o) => { const i18n_placeholder = __('Filter'); const title_contact_filter = __('Filter by contact name'); const title_group_filter = __('Filter by group name'); const title_status_filter = __('Filter by status'); const label_any = __('Any'); const label_unread_messages = __('Unread'); const label_online = __('Online'); const label_chatty = __('Chatty'); const label_busy = __('Busy'); const label_away = __('Away'); const label_xa = __('Extended Away'); const label_offline = __('Offline'); return html`
` };