Community-maintained translations for LibreCode.
src/
app/ App-level strings (dialogs, settings, commands)
ui/ UI component strings (session review, tooltips, prompts)
Each locale is a .ts file exporting dict — a flat Record<string, string> of translation keys.
- Copy
src/app/en.ts→src/app/<lang>.ts - Copy
src/ui/en.ts→src/ui/<lang>.ts - Translate all values (keys stay the same)
- Submit a PR
English (en.ts) is the reference locale. All other locales should have the same keys.
Add keys to src/app/en.ts or src/ui/en.ts first, then update other locales.
MIT