Add internationalization support with astro-i18next integration

- Implemented astro-i18next for multi-language support, including English, Dutch, and Italian.
- Configured default locale and language fallback settings.
- Defined routes for localized content in the configuration.
- Updated package.json and package-lock.json to include new dependencies for i18next and related plugins.
This commit is contained in:
becarta
2025-05-23 15:10:00 +02:00
parent 8a3507dce0
commit 3168826fa8
581 changed files with 88691 additions and 494 deletions

18
node_modules/tsm/bin.js generated vendored Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env node
"use strict";let argv=process.argv.slice(2);if(argv.includes("-h")||argv.includes("--help")){let e="";e+=`
Usage
$ tsm [options] -- <command>
`,e+=`
Options`,e+=`
--tsmconfig Configuration file path (default: tsm.js)`,e+=`
--quiet Silence all terminal messages`,e+=`
--version Displays current version`,e+=`
--help Displays this message
`,e+=`
Examples`,e+=`
$ tsm server.ts`,e+=`
$ node -r tsm input.jsx`,e+=`
$ node --loader tsm input.jsx`,e+=`
$ NO_COLOR=1 tsm input.jsx --trace-warnings`,e+=`
$ tsm server.tsx --tsmconfig tsm.mjs
`,console.log(e),process.exit(0)}(argv.includes("-v")||argv.includes("--version"))&&(console.log("tsm, v2.3.0"),process.exit(0));let{URL,pathToFileURL}=require("url");argv=["--enable-source-maps","--loader",new URL("loader.mjs",pathToFileURL(__filename)).href,...argv],require("child_process").spawn("node",argv,{stdio:"inherit"}).on("exit",process.exit);