-
|
Hello I am using Github action with Crowdin to translate the website. When I set the command As for French and German translations, it's working, and the github action log is OK: But the Chinese translation and Korean translation is not working, and the Github action log shows this: I think it is an error relating to Blogs, but the Blogs this website using is the default blogs in Docusaurus. The website is https://casdoor.org Any answers is appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Please make sure that you are able to build your localized site locally before using any CI tool. That only complicates the debugging.
I don't know what "is not working" means for you. Have you translated content in Crowdin, and this translation does not appear after building your website in some languages? Have you verified that the downloaded crowdin translations are at the correct location?
This error log is not a blocker issue: Each language has its own plural rules and chinese/korean only have one. The translated string should only contain one plural form like This warning should not prevent your site from displaying your chinese/korean markdown content. Normally those strings are from the classic template, and we provide default translations for those elements, but when using Crowdin somehow you have to retranslate those strings using the Crowdin UI. I'd like to improve the DX regarding this problem, not sure yet how, as it's a bit annoying to have to provide translations for strings that are already translated by default |
Beta Was this translation helpful? Give feedback.




Please make sure that you are able to build your localized site locally before using any CI tool. That only complicates the debugging.
I don't know what "is not working" means for you. Have you translated content in Crowdin, and this translation does not appear after building your website in some languages? Have you verified that the downloaded crowdin translations are at the correct location?
This error log is not a blocker issue:
Each language has its own plural rules and chinese/korean only have one. The translate…