-
-
Notifications
You must be signed in to change notification settings - Fork 125
Update zh_cn.json #739
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
Update zh_cn.json #739
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, there are some errors you need to fix:
zh_cn.json:413: translation key 'twoPlayerGame.chat.won' does not have enough format specifiers. It only has 1 while the English has 2
zh_cn.json:413: translation key 'twoPlayerGame.chat.won' contains an unescaped '%'. Try escaping it with '%%'
zh_cn.json:415: translation key 'twoPlayerGame.incoming' does not have enough format specifiers. It only has 1 while the English has 2
zh_cn.json:415: translation key 'twoPlayerGame.incoming' contains an unescaped '%'. Try escaping it with '%%'
looks like you accidentally broke some %s
format specifiers on line 413 and line 415.
See the translation guideline on string substitutions if you're confused |
Sorry, this is because there is similar content so I copied it directly but it was copied to the wrong location |
And the "use %1$s, %2$s, %3$s" is because the text was separated at the time and I had to translate it into such a word order. I actually prefer the word order of the original text |
And can you explain what "RNG call" means and what does "callback" do? It is best to have some demo video |
An "RNG call" in this context is a usage of the player RNG. Unexpected usages of the player RNG can mess up RNG manipulation because you're now in the wrong part of the RNG number sequence and will get different results.
|
well, I probably know how to translate it, but is there a demo video? what effect will it show? ccallback -> 回调 RNG back -> RNG调用 Do you think this translation is appropriate? I remember there is such a thing in programming. |
The callback has nothing to do with RNG, it's separate. It's a callback in the programming sense. Chatgpt says that how you have just translated it is good 👍 |
OK Thank you for your review
|
A piece of code is used to modify RNG. So because some behaviors in the game cause the modified RNG program to be called incorrectly, causing the RNG to change, so cannot be cracked. |
Oh, sorry I'm confused, so RNG itself is a piece of code, right? |
Yes, exactly, it's a piece of code which generates random numbers. And when you're doing RNG manipulation, you don't want to call that piece of code when you're not supposed to, and that is what this warning/error message is about. The warning says that the RNG function has been called when it wasn't supposed to have been called, and then |
OK, just like I understand, so there is no problem with this translation |
No description provided.