next-intl-add-language
द्वारा github
next-intl अंतर्राष्ट्रीयकरण का उपयोग करके Next.js एप्लिकेशन में एक नई भाषा जोड़ें। ./messages निर्देशिका में en.json से सभी प्रविष्टियों का नई भाषा में अनुवाद आवश्यक है। src/i18n/routing.ts में रूटिंग कॉन्फ़िगरेशन और src/middleware.ts में मिडलवेयर को नई भाषा को पहचानने के लिए अपडेट करें। src/components/language-toggle.tsx पर भाषा टॉगल घटक में भाषा पंजीकृत करें।
npx skills add https://github.com/github/awesome-copilot --skill next-intl-add-languageThis 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.tssrc/middleware.ts
When adding a new language:
- Translate all the content of
en.jsonto 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.tsandmiddleware.ts. - Add the language to
language-toggle.tsx.