8d839e3714
- Add redaction gateway (redaction_gateway.py, redaction/ scrub + tests) - Add embeddings proxy and spark_embed service (Dockerfile + main.py) - Expand audio_proxy with speaker-aware handling; deep_health/health/server updates - Package: configureSparks action + sparkConfig model updates, manifest/main wiring - Docs: AUDIO_API, EMBEDDINGS, REDACTION_GATEWAY; HANDOFF and runbook/known-issues refresh
29 lines
696 B
TypeScript
29 lines
696 B
TypeScript
export const DEFAULT_LANG = 'en_US'
|
|
|
|
const dict = {
|
|
// main.ts
|
|
'Starting Spark Control…': 0,
|
|
'Web Interface': 1,
|
|
'The web interface is ready': 2,
|
|
'The web interface is not ready': 3,
|
|
|
|
// interfaces.ts
|
|
'Web UI': 4,
|
|
'The Spark Control web interface': 5,
|
|
|
|
// actions
|
|
'Show Public Key': 6,
|
|
'Configure Sparks': 7,
|
|
|
|
// interfaces.ts (api)
|
|
'OpenAI-compatible API': 8,
|
|
'Service-discovery JSON at /api/endpoints. Other apps on the LAN can GET this to learn the current vLLM, Parakeet, and Kokoro URLs.': 9,
|
|
} as const
|
|
|
|
/**
|
|
* Plumbing. DO NOT EDIT.
|
|
*/
|
|
export type I18nKey = keyof typeof dict
|
|
export type LangDict = Record<(typeof dict)[I18nKey], string>
|
|
export default dict
|