initial relay scaffold

This commit is contained in:
local
2026-05-11 20:03:27 -05:00
commit b9d86fa303
58 changed files with 7609 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
export const DEFAULT_LANG = 'en_US'
const dict = {
// main.ts
'Starting Recap...': 0,
'Web Interface': 1,
'Recap is ready': 2,
'Recap is not responding': 3,
// interfaces.ts
'Web UI': 4,
'The web interface for Recap — browse, search, and manage your transcript library': 5,
} as const
/**
* Plumbing. DO NOT EDIT.
*/
export type I18nKey = keyof typeof dict
export type LangDict = Record<(typeof dict)[I18nKey], string>
export default dict