Migrate i18next to Lingui Migration Checklist Step 1: Install Lingui Step 2: Create Step 3: Configure Build Tooling Vite ( ): Babel ( or ): Next.js with SWC ( ): Step 4: Replace i18n Initialization Before (i18next): After (Lingui): Dynamic locale switching: Step 5: Migrate React Components → Before: After: component Before: After: For explicit IDs (when preserving i18next keys): with interpolation Before: After: Step 6: Migrate JS/TS Strings Simple strings | i18next | Lingui | |---------|--------| | | Message text\ | | | Hello ${name}\ | | | Hi\ | Before: After: In vanilla JS (outside compone…