Integrate inlang for easy i18n translations (#1189)

This commit is contained in:
Samuel Stroschein 2023-03-19 09:33:30 +01:00 committed by GitHub
parent 6cf82347bf
commit 4181d8a0c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

34
inlang.config.js Normal file
View file

@ -0,0 +1,34 @@
/**
* See https://inlang.com/documentation
*/
export async function defineConfig(env) {
const plugin = await env.$import(
"https://cdn.jsdelivr.net/gh/samuelstroschein/inlang-plugin-json@1/dist/index.js"
);
const pluginConfig = {
pathPattern: "./i18n/{language}.json",
};
return {
referenceLanguage: "en",
languages: await getLanguages(env),
readResources: (args) =>
plugin.readResources({ ...args, ...env, pluginConfig }),
writeResources: (args) =>
plugin.writeResources({ ...args, ...env, pluginConfig }),
};
}
/**
* Automatically derives the languages in this repository.
*/
async function getLanguages(env) {
// replace the path
const files = await env.$fs.readdir("./i18n");
// files that end with .json
// remove the .json extension to only get language name
const languages = files.filter((name) => name.endsWith(".json")).map((name) => name.replace(".json", ""));
return languages;
}