├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Dockerfile ├── README.md ├── app ├── entry.client.tsx ├── entry.server.tsx ├── locales │ ├── en │ │ ├── index.ts │ │ ├── not-found.ts │ │ └── translation.ts │ ├── es │ │ ├── index.ts │ │ ├── not-found.ts │ │ └── translation.ts │ └── index.ts ├── middleware │ └── i18next.ts ├── root.tsx ├── routes.ts └── routes │ ├── index.tsx │ ├── locales.ts │ └── not-found.tsx ├── bun.lock ├── package.json ├── public └── favicon.ico ├── react-router.config.ts ├── tsconfig.json └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- 1 | .react-router 2 | build 3 | node_modules 4 | README.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: sergiodxa 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/README.md -------------------------------------------------------------------------------- /app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/entry.client.tsx -------------------------------------------------------------------------------- /app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/entry.server.tsx -------------------------------------------------------------------------------- /app/locales/en/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/locales/en/index.ts -------------------------------------------------------------------------------- /app/locales/en/not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/locales/en/not-found.ts -------------------------------------------------------------------------------- /app/locales/en/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/locales/en/translation.ts -------------------------------------------------------------------------------- /app/locales/es/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/locales/es/index.ts -------------------------------------------------------------------------------- /app/locales/es/not-found.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/locales/es/not-found.ts -------------------------------------------------------------------------------- /app/locales/es/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/locales/es/translation.ts -------------------------------------------------------------------------------- /app/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/locales/index.ts -------------------------------------------------------------------------------- /app/middleware/i18next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/middleware/i18next.ts -------------------------------------------------------------------------------- /app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/root.tsx -------------------------------------------------------------------------------- /app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/routes.ts -------------------------------------------------------------------------------- /app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/routes/index.tsx -------------------------------------------------------------------------------- /app/routes/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/routes/locales.ts -------------------------------------------------------------------------------- /app/routes/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/app/routes/not-found.tsx -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/bun.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /react-router.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/react-router.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sergiodxa/react-router-i18next-example/HEAD/vite.config.ts --------------------------------------------------------------------------------