Skip to content
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

The new Chinese translation of 7.15.0 is not effective. #3322

Closed
5 of 8 tasks
dangehub opened this issue Feb 11, 2025 · 10 comments · Fixed by #3323
Closed
5 of 8 tasks

The new Chinese translation of 7.15.0 is not effective. #3322

dangehub opened this issue Feb 11, 2025 · 10 comments · Fixed by #3323
Labels
priority: high A high priority/important request scope: internationalisation Translations - Making the plugin work well for non-English-language users - also known as i18n type: bug Something isn't working

Comments

@dangehub
Copy link
Contributor

dangehub commented Feb 11, 2025

⚠️ Check issue is valid.

⚠️ Check that this issue hasn't been reported before.

Steps to reproduce

  1. set a sandbox vault
  2. install tasks
  3. change obsidian display language into Chinese

Expected Behavior

If the user's Obsidian language setting is set to Chinese, the tasks should also be displayed in Chinese.

Current behaviour

tasks is still in English

Image

Which Operating Systems are you using?

  • Android
  • iPhone/iPad
  • Linux
  • macOS
  • Windows

Obsidian Version

1.8.4

Tasks Plugin Version

7.15.0

Checks

  • I have tried it with all other plugins disabled and the error still occurs

Possible solution

I tried cloning the latest repository and building it myself, but locally built plugin has the same issue.

If I modify this line of code and rebuild plugin , tasks will become in Chinese and cannot be switched back to English.

original code:

                resources: {
                    en: { translation: en },
                    zh_cn: { translation: zh_cn },

modified code:

                resources: {
                    en: { translation: en },
                    'zh-CN': { translation: zh_cn },

This is also very strange, because we did not explicitly specify the language used in the code, and the fallback language is set to English.

I tried to modify the language settings of Obsidian and system, but there was no change at all.

@IrisPaoPao
Copy link

IrisPaoPao commented Feb 11, 2025

我也是,翻译无效,是什么问题???


Translation posted by @claremacrae

Me too, the translation is invalid, what's the problem? ? ?

@claremacrae
Copy link
Collaborator

Thank you for logging this here, @dangehub.

How it is supposed to work

The code that is supposed to detect the user's language is line 12 here:

await i18next
.use(LanguageDetector) // Use language detector to determine user's language
.init({
// lng: 'zh_cn', // for testing, hard-code the language and remove the `use(LanguageDetector)` line
fallbackLng: 'en', // Fallback language if detection fails or translation is missing
returnEmptyString: false, // Use fallback language if i18next-parser put in empty value for untranslated text
resources: {
en: { translation: en },
zh_cn: { translation: zh_cn },
},
interpolation: {
escapeValue: false, // Disable escaping of strings, like '&' -> '&'
},
});

LanguageDetector comes from i18next-browser-languagedetector.

What might be going wrong

So I think possible causes might be:

  • Something about the naming of languages in Tasks is not consistent with conventions in LanguageDetector
  • I don't remember where I got the zh_cn naming from, that is in the Tasks source code - perhaps that is not standard?
  • Naming of languages is not sufficient and I am not wiring up LanguageDetector correctly...

Yes, looking at i18next-browser-languagedetector it does seem that detection is not automatic...

@dangehub
Copy link
Contributor Author

dangehub commented Feb 11, 2025

According to https://www.moritzjung.dev/obsidian-stats/, the other two Obsidian plugins that use i18next-browser-languagedetector are:

With those licenses being compatible with Tasks, I can look at the code of both of them, to see how they work...

https://github.com/carlonicora/obsidian-rpg-manager/blob/2fdc0599c7f9cc15844e90dd710beaef403e48f0/src/services/InternationalisationService.ts#L11

https://github.com/JuckZ/awesome-brain-manager/blob/6c1643b7b1068ae1da1b172b5ceff8db0c32ca9e/src/i18n.ts#L40

I believe the problem is coming from the place you mentioned.

I added console code to observe the detected language code

console.log('Detected Language:', languageDetector.detect());

Image

I have made some attempts, but still failed, I hope you can solve this problem.

By the way, I kindly ask for a bit of time before you release the fix update. I've just noticed that there are still many areas in the Chinese translation that need improvement. I will strive to push out a better version within one to two hours.

@claremacrae
Copy link
Collaborator

Thank you.

There is a separate question about whether Tasks should honour the language in Obsidian's General settings. Currently, Tasks does not detect the Obsidian language setting, and from your research, it looks like LanguageDetector does not either, unsurprisingly.

I think Tasks should honour the Obsidian settings, but that it should be changed in a separate step from this issue which is about fixing the automatic language detection.

@claremacrae
Copy link
Collaborator

By the way, I kindly ask for a bit of time before you release the fix update. I've just noticed that there are still many areas in the Chinese translation that need improvement. I will strive to push out a better version within one to two hours.

I am busy for several hours anyway - I do have other things to do than working on Tasks! 😄

@claremacrae claremacrae added scope: internationalisation Translations - Making the plugin work well for non-English-language users - also known as i18n priority: high A high priority/important request labels Feb 11, 2025
@claremacrae claremacrae moved this to 🏗 In progress in Tasks (Obsidian plugin) Roadmap Feb 11, 2025
@dangehub
Copy link
Contributor Author

By the way, I kindly ask for a bit of time before you release the fix update. I've just noticed that there are still many areas in the Chinese translation that need improvement. I will strive to push out a better version within one to two hours.

I am busy for several hours anyway - I do have other things to do than working on Tasks! 😄

I have found the solution, and I will submit the fix for this issue along with the improvement of the Chinese translation.

In short, it's an issue with the language codes. Additionally, there's another problem: if you use languageDetector, when a user manually switches the language in Obsidian, due to localdata cache, tasks won't immediately switch languages. This might require more extensive changes.

For specific details, please check the PR when I submit it soon.

@claremacrae
Copy link
Collaborator

Goal for this Issue

The definition of success for this issue is that if the user's computer is set to Chinese, then the Tasks plugin should auto-detect the language and show the settings in Chinese.

Possible fix

@dangehub, if I understand correctly, the following edit does recognise the language is Chinese, so perhaps I should just go ahead and make that change? What do you think?

If I modify this line of code and rebuild plugin , tasks will become in Chinese and cannot be switched back to English.

original code:

                resources: {
                    en: { translation: en },
                    zh_cn: { translation: zh_cn },

modified code:

                resources: {
                    en: { translation: en },
                    'zh-CN': { translation: zh_cn },

@claremacrae
Copy link
Collaborator

I have found the solution, and I will submit the fix for this issue along with the improvement of the Chinese translation.

Great!

Additionally, there's another problem: if you use languageDetector, when a user manually switches the language in Obsidian, due to localdata cache, tasks won't immediately switch languages. This might require more extensive changes.

I hadn't seen that message when I wrote the reply above.

Yes you are right that the above will require more extensive changes, as the whole Tasks plugin code was not written to reload when things like settings change, so it definitely wouldn't refresh when the language changes...

Feel free to log a separate request that Tasks should honour the Obsidian language setting at start-up and override the LanguageDetector value.

claremacrae added a commit that referenced this issue Feb 11, 2025
fix: detect Chinese language and refine the translation

Fixes #3322
@github-project-automation github-project-automation bot moved this from 🏗 In progress to ✅ Done in Tasks (Obsidian plugin) Roadmap Feb 11, 2025
@claremacrae claremacrae moved this from ✅ Done to 🎉 Released in Tasks (Obsidian plugin) Roadmap Feb 11, 2025
@claremacrae
Copy link
Collaborator

This is now released in Tasks 7.15.1.

Many thanks @dangehub!


目前已在 Tasks 7.15.1 中发布。

非常感谢@dangehub

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority: high A high priority/important request scope: internationalisation Translations - Making the plugin work well for non-English-language users - also known as i18n type: bug Something isn't working
Projects
Status: 🎉 Released
Development

Successfully merging a pull request may close this issue.

3 participants