-
Notifications
You must be signed in to change notification settings - Fork 5.1k
; fix translation zh_CN #15806
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
base: dev
Are you sure you want to change the base?
; fix translation zh_CN #15806
Conversation
'应用程序' means 'application software' in Chinese. '`APPLY` 调用' means 'a call to `APPLY`', which is better.
✅ Deploy Preview for ethereumorg ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
@@ -86,7 +86,7 @@ APPLY({ Alice: $50, Bob: $50 },"send $70 from Alice to Bob") = ERROR | |||
2. 检查该区块的时间戳是否大于上一个区块 <sup>[fn2](注释编号)</sup>的时间戳并且在将来 2 小时以内 | |||
3. 检查区块上的工作量证明是否有效。 | |||
4. 令前一个区块末尾的态为 `S[0]`。 | |||
5. 假设 `TX` 是该区块的交易列表,其中包含 `n` 个交易。 对于 `0...n-1` 中的所有 `i`,如果有任何应用程序返回错误,退出并返回 false,请设置 `S[i+1] = APPLY(S[i],TX[i])`。 | |||
5. 假设 `TX` 是该区块的交易列表,其中包含 `n` 个交易。 对于 `0...n-1` 中的所有 `i`,如果有任何 `APPLY` 调用返回错误,退出并返回 false,请设置 `S[i+1] = APPLY(S[i],TX[i])`。 |
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 makes absolute sense! And I suggest reordering the sentence to make it even more readable:
假设 TX
是该区块的交易列表,其中包含 n
个交易。 对于 0...n-1
中的所有 i
,执行 S[i+1] = APPLY(S[i],TX[i])
,如果有任何 APPLY
调用返回错误,则退出并返回 false 。
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.
好, 已经重排序, 顺便稍微改了下措辞.
Thanks @shynur! Appreciate the suggestion... cc: @lukassim Can you remind me if we have any flow established for whitepaper translations? This looks reasonable, but we tend to not mess with this page. If we're good with it, we should upload this to Crowdin to prevent it from getting reverted when Crowdin syncs with the repo. |
Use the s 5 fiie
…On Tue, Jul 15, 2025, 4:57 PM wackerow ***@***.***> wrote:
*wackerow* left a comment (ethereum/ethereum-org-website#15806)
<#15806 (comment)>
Thanks @shynur <https://github.com/shynur>! Appreciate the suggestion...
cc: @lukassim <https://github.com/lukassim> Can you remind me if we have
any flow established for whitepaper translations? This looks reasonable,
but we tend to not mess with this page. If we're good with it, we should
upload this to Crowdin to prevent it from getting reverted when Crowdin
syncs with the repo.
—
Reply to this email directly, view it on GitHub
<#15806 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVJSV6UBM74Y57NYCFZV4LL3IWIPJAVCNFSM6AAAAACBHRVN46VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTANZWGE2DQNJZHA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
'应用程序' means 'application software' in Chinese, which is a completely wrong translation.
'
APPLY
调用' means 'a call toAPPLY
', which is better and correct.