├── .eslintrc.json ├── .gitignore ├── README.md ├── next-env.d.ts ├── next-i18next.config.mjs ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.cjs ├── prettier.config.cjs ├── public └── locales │ ├── en │ └── common.json │ └── sv │ └── common.json ├── src ├── env │ ├── client.mjs │ ├── schema.mjs │ └── server.mjs ├── pages │ ├── _app.tsx │ ├── api │ │ └── trpc │ │ │ └── [trpc].ts │ └── index.tsx ├── server │ └── trpc │ │ ├── context.ts │ │ ├── router │ │ ├── _app.ts │ │ └── example.ts │ │ └── trpc.ts ├── styles │ └── globals.css └── utils │ └── trpc.ts ├── tailwind.config.cjs └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-i18next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/next-i18next.config.mjs -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /public/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/public/locales/en/common.json -------------------------------------------------------------------------------- /public/locales/sv/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/public/locales/sv/common.json -------------------------------------------------------------------------------- /src/env/client.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/env/client.mjs -------------------------------------------------------------------------------- /src/env/schema.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/env/schema.mjs -------------------------------------------------------------------------------- /src/env/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/env/server.mjs -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/trpc/[trpc].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/pages/api/trpc/[trpc].ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/server/trpc/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/server/trpc/context.ts -------------------------------------------------------------------------------- /src/server/trpc/router/_app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/server/trpc/router/_app.ts -------------------------------------------------------------------------------- /src/server/trpc/router/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/server/trpc/router/example.ts -------------------------------------------------------------------------------- /src/server/trpc/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/server/trpc/trpc.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/src/utils/trpc.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliusmarminge/t3-i18n/HEAD/tsconfig.json --------------------------------------------------------------------------------