export const DEFAULT_LANG = 'en_US' const dict = { // main.ts 'Starting Recap Relay...': 0, 'Relay Endpoint': 1, 'Relay is accepting connections': 2, 'Relay is not responding': 3, // interfaces.ts 'HTTP endpoint for Recap clients to relay transcribe + analyze calls. Also serves the operator admin dashboard at /admin/.': 4, } as const /** * Plumbing. DO NOT EDIT. */ export type I18nKey = keyof typeof dict export type LangDict = Record<(typeof dict)[I18nKey], string> export default dict