- Replace 'codebase' with 'search/codebase' - Replace 'searchResults' with 'search/searchResults' - Replace 'terminalLastCommand' with 'runCommands/terminalLastCommand' - Replace 'terminalSelection' with 'runCommands/terminalSelection' Updated files: - 13 chatmode files in chatmodes/ - 41 prompt files in prompts/ This update aligns with VS Code's latest tool naming conventions that organize tools into logical namespaces.
21 lines
830 B
Markdown
21 lines
830 B
Markdown
---
|
|
mode: 'agent'
|
|
tools: ['changes','search/codebase', 'edit/editFiles', 'findTestFiles', 'search', 'writeTest']
|
|
description: 'Add new language to a Next.js + next-intl application'
|
|
---
|
|
|
|
This is a guide to add a new language to a Next.js project using next-intl for internationalization,
|
|
|
|
- For i18n, the application uses next-intl.
|
|
- All translations are in the directory `./messages`.
|
|
- The UI component is `src/components/language-toggle.tsx`.
|
|
- Routing and middleware configuration are handled in:
|
|
- `src/i18n/routing.ts`
|
|
- `src/middleware.ts`
|
|
|
|
When adding a new language:
|
|
|
|
- Translate all the content of `en.json` to the new language. The goal is to have all the JSON entries in the new language for a complete translation.
|
|
- Add the path in `routing.ts` and `middleware.ts`.
|
|
- Add the language to `language-toggle.tsx`.
|