Files
claude-hud/src/i18n/types.ts

25 lines
475 B
TypeScript
Raw Normal View History

export type MessageKey =
// Labels
| "label.context"
| "label.usage"
| "label.approxRam"
| "label.rules"
| "label.hooks"
// Status
| "status.limitReached"
| "status.allTodosComplete"
// Format
| "format.resets"
| "format.resetsIn"
| "format.in"
| "format.cache"
| "format.out"
| "format.tokPerSec"
// Init
| "init.initializing"
| "init.macosNote";
export type Messages = Record<MessageKey, string>;
export type Language = "en" | "zh";