-
-
Notifications
You must be signed in to change notification settings - Fork 219
Translate library/math.po rst: 87-102, 239-374 #992
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
Open
Carisa-Li
wants to merge
11
commits into
python:3.13
Choose a base branch
from
Carisa-Li:library/math
base: 3.13
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
cf82202
fix conflict
Carisa-Li ef0e053
rst: 87-102, 239-374
Carisa-Li 09b69d3
Update library/math.po
Carisa-Li 4925f1b
Update library/math.po
Carisa-Li 76d05a0
Update library/math.po
Carisa-Li 1a13886
Update library/math.po
Carisa-Li 8474f4c
Update library/math.po
Carisa-Li 9c36e2b
Update library/math.po
Carisa-Li 328299b
Update library/math.po
Carisa-Li 4488f28
Update library/math.po
Carisa-Li caad60b
Update library/math.po
Carisa-Li File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -436,7 +436,7 @@ msgstr "" | |
"回傳 *x* 對 *y* 根據 IEEE 754 定義的餘數。對有限數 *x* 及有限非零數 *y*,該餘" | ||
"數值為 ``x - n*y``,``n`` 是最接近 ``x / y`` 精確值的整數。若 ``x / y`` 剛好" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 這邊的 difference 應該不是餘數? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 因為上一句定義了x,y兩數,所以我將this翻為該餘數值與第一句的根據 IEEE 754 定義的餘數對應,此處的difference我想應該是指差(減法運算的結果),這部分我會再想一下 |
||
"位於兩個連續整數的正中間,``n`` 為最接近的 *偶* 數。因此該餘數 ``r = " | ||
"remainder(x, y)`` 必滿足 ``abs(r) <= 0.5 * abs(y)``。" | ||
"remainder(x, y)`` 總是滿足 ``abs(r) <= 0.5 * abs(y)``。" | ||
|
||
#: ../../library/math.rst:301 | ||
msgid "" | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
quotient 沒翻到,然後這句也沒有精確度歐
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.
我是將the exact value of the quotient
x / y
合翻為x / y
精確值quotient主要是擔心商可能會誤解為僅指運算結果的整數部分,這部分我會再思考一下