Files
opencode/packages/app/src/pages/session/session-prompt-helpers.ts

5 lines
204 B
TypeScript

export const questionSubtitle = (count: number, t: (key: string) => string) => {
if (count === 0) return ""
return `${count} ${t(count > 1 ? "ui.common.question.other" : "ui.common.question.one")}`
}