-
-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: detect Chinese language and refine the translation #3323
Conversation
fix: resolve bug with Chinese translation not displaying refactor: optimize Chinese translations
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great - thank you very much. This is a much better fix.
I'm going to go ahead and merge, to do the release.
If you have a chance to add any comments about the things I asked, it would be much appreciated.
@@ -12,6 +12,7 @@ module.exports = { | |||
'^.+\\.ts$': 'ts-jest', | |||
}, | |||
moduleFileExtensions: ['js', 'ts', 'svelte'], | |||
testEnvironment: 'jsdom', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For my own education, what is this for please?
import en from './locales/en.json'; | ||
import zh_cn from './locales/zh_cn.json'; | ||
|
||
let isInitialized = false; | ||
|
||
// Get Obsidian language settings | ||
const getObsidianLanguage = (): string => { | ||
return localStorage.getItem('language')?.toLowerCase() || 'en'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the thinking behind toLowerCase()?
Types of changes
Changes visible to users:
fix
- non-breaking change which fixes an issue)Internal changes:
refactor
- non-breaking change which only improves the design or structure of existing code, and making no changes to its external behaviour)Description
i18next-browser-languagedetector
dependencyMotivation and Context
The new Chinese translation of 7.15.0 is not effective. · Issue #3322 · obsidian-tasks-group/obsidian-tasks
How has this been tested?
I used version 1.8.4 of Obsidian, and tested language switching on both macOS and Windows environments, and it works well.
Screenshots (if appropriate)
Checklist
yarn run lint
.Terms