feat: add localization editor and ide extension (#786)

* feat: add localization editor and ide extension

* feat: add markdown status translation badge
This commit is contained in:
Nils Jacobsen
2024-01-29 11:14:02 +01:00
committed by GitHub
parent 72d1503fa3
commit 6b40062504
4 changed files with 33 additions and 0 deletions

5
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"recommendations": [
"inlang.vs-code-extension"
]
}

View File

@@ -208,6 +208,10 @@ https://github.com/labring/FastGPT/assets/15308462/7d3a38df-eb0e-4388-9250-2409b
<img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right"> <img src="https://img.shields.io/badge/-返回顶部-7d09f1.svg" alt="#" align="right">
</a> </a>
## Translations
[![inlang status badge](https://badge.inlang.com/?url=github.com/NilsJacobsen/FastGPT)](https://fink.inlang.com/github.com/NilsJacobsen/FastGPT?ref=badge)
## 使用协议 ## 使用协议
本仓库遵循 [FastGPT Open Source License](./LICENSE) 开源协议。 本仓库遵循 [FastGPT Open Source License](./LICENSE) 开源协议。

View File

@@ -0,0 +1 @@
82dc3f099ca89165c3415d2ba96d195d3a1805b98373e8eb3d814b6994e62489

View File

@@ -0,0 +1,23 @@
{
"$schema": "https://inlang.com/schema/project-settings",
"sourceLanguageTag": "en",
"languageTags": [
"en",
"zh"
],
"modules": [
"https://cdn.jsdelivr.net/npm/@inlang/plugin-i18next@4/dist/index.js",
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-empty-pattern@1/dist/index.js",
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-identical-pattern@1/dist/index.js",
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-without-source@1/dist/index.js",
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-missing-translation@1/dist/index.js"
],
"plugin.inlang.i18next": {
"pathPattern": {
"common": "./projects/app/public/locales/{languageTag}/common.json"
},
"variableReferencePattern": [
"{{", "}}"
]
}
}