${translateText("chat.category")}
${this.categories.map(
(category) => html`
`,
)}
${this.selectedCategory
? html`
${translateText("chat.phrase")}
${this.getPhrasesForCategory(this.selectedCategory).map(
(phrase) => html`
`,
)}
`
: null}
${this.requiresPlayerSelection || this.selectedPlayer
? html`
`
: null}
${this.previewText
? translateText(this.previewText)
: translateText("chat.build")}