mirror of
https://github.com/l10n-dev/obsidian-plugin-ai-translator.git
synced 2026-07-22 06:56:27 +00:00
- Introduced French, Indonesian, Italian, Japanese, Korean, Portuguese, Simplified Chinese, and Traditional Chinese language files for user interface localization. - Updated translation registry to include new languages. - Refactored translation functions to utilize localized strings for various UI elements, including ribbon tooltips, commands, and settings. - Enhanced settings tab to display localized text for API key, balance, output behavior, and glossary management. - Improved user notifications for translation processes, errors, and API key requirements with localized messages. - Added CSS class for inline links to improve UI consistency. - Updated TypeScript configuration to support JSON module imports. - Incremented version in versions.json to reflect new features.
23 lines
567 B
JSON
23 lines
567 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "bundler",
|
|
"importHelpers": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"strictBindCallApply": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"lib": ["DOM", "ES2017"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|