國際化 (i18n) 是設計應用程式的過程,使其能夠輕鬆適應不同的語言和地區,而無需進行工程更改。在本文中,您將學習如何在 Next.js 應用程式中設定 i18n 並使用 next-intl 建立語言切換器以在英語和西班牙語之間切換。
首先,您需要安裝 next-intl 函式庫,它有助於管理 Next.js 中的國際化。在終端機中執行以下命令:
npm install next-intl
專案架構如下:
├── messages │ ├── en.json │ └── es.json ├── next.config.mjs └── src ├── i18n.ts ├── middleware.ts └── app └── [locale] ├── layout.tsx └── page.tsx
在專案的根目錄下建立一個訊息目錄。在此目錄中,為您想要支援的每種語言新增 JSON 檔案。
{ "greeting": "Hello Codú", "farewell": "Goodbye Codú" }
{ "greeting": "Hola Codú", "farewell": "Adiós Codú" }
這些文件包含您的應用程式將使用的短語的翻譯。
在 next.config.mjs 中設定 Next.js 以支援國際化。
import { getRequestConfig } from 'next-intl/server'; // List of supported languages const locales = ['en', 'es']; export default getRequestConfig(async ({ locale }) => { // Validate that the incoming `locale` parameter is valid if (!locales.includes(locale)) { return { notFound: true }; } return { messages: (await import(`./messages/${locale}.json`)).default }; });
此檔案設定 Next.js 根據要求的語言載入正確的翻譯訊息。
建立中間件來處理重定向並設定預設語言。
import createMiddleware from 'next-intl/middleware'; export default createMiddleware({ // List of all supported languages locales: ['en', 'es'], // Default language defaultLocale: 'en' }); export const config = { // Only match internationalised pathnames matcher: ['/', '/(en|es)/:path*'] };
如果未指定,此中間件將處理重新導向至預設語言。
建立設定檔來管理國際化設定。
import { notFound } from 'next/navigation'; import { getRequestConfig } from 'next-intl/server'; const locales = ['en', 'es']; export default getRequestConfig(async ({ locale }) => { if (!locales.includes(locale as any)) notFound(); return { messages: (await import(`../messages/${locale}.json`)).default }; });
此文件驗證區域設定並載入對應的訊息。
配置佈局和主頁以支援國際化。
import { useLocale } from 'next-intl'; import { ReactNode } from 'react'; export default function Layout({ children }: { children: ReactNode }) { const locale = useLocale(); return ( {children} ); }
import { useTranslations } from 'next-intl'; export default function Page() { const t = useTranslations(); return (); }{t('greeting')}
{t('farewell')}
這些文件配置佈局和主頁以使用翻譯。
最後,建立語言切換器以在英語和西班牙語之間切換。
'use client'; import { useLocale } from 'next-intl'; import { useRouter } from 'next/navigation'; import { ChangeEvent, useTransition } from 'react'; export default function LocalSwitcher() { const [isPending, startTransition] = useTransition(); const router = useRouter(); const localActive = useLocale(); const onSelectChange = (e: ChangeEvent) => { const nextLocale = e.target.value; startTransition(() => { router.replace(`/${nextLocale}`); }); }; return ( ); }
此元件允許使用者更改介面語言。
透過這些步驟,您已成功在 Next.js 應用程式中設定國際化,並建立了一個語言切換器以在英語和西班牙語之間切換。這將使您的應用程式支援多種語言並提供本地化的用戶體驗。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3