-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add Chinese Translation. #45
Conversation
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.
Hi @mathutopia, thanks for your contribution!
We had a simultaneous contribution of a Russian translation in #44, which has since been merged. Could you resolve the dependency conflicts by merging main
into your branch or rebasing it?
PlutoTeachingTools.yays(lang::Lang) where {Lang <: Chinese} = [md"Great!", md"Yay ❤", md"Great! 🎉", md"Well done!", md"Keep it up!", md"Good job!", md"Awesome!", md"You got the right answer!", md"Let's move on to the next part."] | ||
PlutoTeachingTools.correct_str(lang::Lang) where {Lang <: Chinese} = "Got it!" | ||
PlutoTeachingTools.todo_str(lang::Lang) where {Lang <: Chinese} = "TODO" |
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.
Looks like these are still missing translations.
|
||
abstract type German <: AbstractLanguage end | ||
struct GermanGermanyFormal <: German end | ||
struct GermanGermanyColloquial <: German end | ||
GermanGermany = GermanGermanyFormal | ||
|
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.
These should be removed. They are imported in L59 and unrelated to the Chinese translation.
abstract type German <: AbstractLanguage end | |
struct GermanGermanyFormal <: German end | |
struct GermanGermanyColloquial <: German end | |
GermanGermany = GermanGermanyFormal |
Closed in favor of #46. |
Add Chinese Translation.