Skip to content

Commit

Permalink
Merge pull request #32 from NilsJacobsen/main
Browse files Browse the repository at this point in the history
feat: add localization editor and ide extension
  • Loading branch information
JacobLinCool committed Jan 26, 2024
2 parents a809f5a + 73dca49 commit 0abfbdc
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"GitHub.copilot",
"GitHub.copilot-labs",
"svelte.svelte-vscode",
"bradlc.vscode-tailwindcss",
"antfu.iconify",
"lokalise.i18n-ally"
]
}
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"GitHub.copilot",
"GitHub.copilot-labs",
"svelte.svelte-vscode",
"bradlc.vscode-tailwindcss",
"antfu.iconify",
"lokalise.i18n-ally",
"inlang.vs-code-extension"
]
}
1 change: 1 addition & 0 deletions project.inlang/project_id
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1ee0eaed580e51c9eaf903e05c8923cc7f4c14c62c10d0df91db814d86a09d26
22 changes: 22 additions & 0 deletions project.inlang/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://inlang.com/schema/project-settings",
"sourceLanguageTag": "en",
"languageTags": [
"en",
"es-ES",
"es-MX",
"ja",
"zh-CN",
"zh-TW"
],
"modules": [
"https://cdn.jsdelivr.net/npm/@inlang/plugin-json@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.json": {
"pathPattern": "./locales/{languageTag}.json"
}
}

0 comments on commit 0abfbdc

Please sign in to comment.