Merged
Conversation
Update fuzzy and minor modification.
adrianliaw
reviewed
Jun 29, 2021
Collaborator
adrianliaw
left a comment
There was a problem hiding this comment.
大部分都是原本翻譯就怪怪的,我留了一些建議,麻煩了!
tutorial/stdlib.po
Outdated
| msgstr "" | ||
| "常見的解壓縮以及壓縮格式都有直接支援。 包括: :mod:`zlib` , :mod:" | ||
| "`gzip` , :mod:`bz2`, :mod:`lzma` ,:mod:`zipfile` 以及 :mod:`tarfile` 。\n" | ||
| "常見的解壓縮以及壓縮格式都有直接支援的模組。包括:\\ :mod:`zlib`\\ ,\\ :mod:" |
Collaborator
There was a problem hiding this comment.
既然改到這邊了,能不能麻煩幫我把逗點改成頓點? 🙏
tutorial/stdlib.po
Outdated
| "有一些 Python 使用者很想了解同個問題的不同實作方法的效能差異。 Python 提供評" | ||
| "估了效能差異的工具。" | ||
| "有一些 Python 使用者很想了解同個問題的不同實作方法的效能差異。Python 提供評估" | ||
| "了效能差異的工具。" |
Collaborator
There was a problem hiding this comment.
s/提供評估了效能差異的工具/提供了評估效能差異的工具
tutorial/stdlib.po
Outdated
| "`pstats` 模組則提供了一些在大型的程式碼識別關鍵臨界區間(Critical Section)的" | ||
| "工具。" | ||
| "相對於 :mod:`timeit` 模組提供這麼細的粒度,\\ :mod:`profile` 模組以及 :mod:" | ||
| "`pstats` 模組則提供了一些在大型的程式碼識別時間臨界區間 (time critical " |
Collaborator
There was a problem hiding this comment.
識別時間使用上關鍵的區塊(這邊的 critical section 和同步問題裡面講的那個 critical section 是沒有關係的,這個必須不被混淆)
tutorial/stdlib.po
Outdated
| "測試。測試構造如同簡單的將它的輸出結果剪下並貼上到文件字符串中。 通過用戶提供" | ||
| "的例子, 它強化了文件, 允許 doctest 模塊組認代碼的結果是否與文件一致:\n" | ||
| ":mod:`doctest` 模組提供了一個工具,掃描模組並根據程式中內嵌的文件字串執行測" | ||
| "試。測試結構如同簡單地將它的呼叫及輸出結果剪下並貼上到文件字串中。透過提供範" |
tutorial/stdlib.po
Outdated
| msgstr "" | ||
| ":mod:`unittest` 模組不像 :mod:`doctest` 模組這般容易, 但是它提供了更完整的測" | ||
| "試集並且可以整合在不同的檔案間。" | ||
| ":mod:`unittest` 模組不像 :mod:`doctest` 模組這般容易,但是它提供了更完整的測" |
Collaborator
There was a problem hiding this comment.
但是它讓你可以在另外一個檔案裡撰寫更完整的測試集
tutorial/stdlib.po
Outdated
| "有, 這些模組和套件都簡化了 Python 應用程式與其他工具之間的資料交換。 " | ||
| ":mod:`json` 套件對 JSON 資料交換格式的解析,提供強大的支援。\\ :mod:`csv` 模" | ||
| "組則提供直接讀寫以逗號分隔值的檔案格式,支援一般資料庫與電子表格。\\ :mod:" | ||
| "`xml.etree.ElementTree`\\ ,\\ :mod:`xml.dom` 與 :mod:`xml.sax` 套件則支援 " |
tutorial/stdlib.po
Outdated
| ":mod:`json` 套件對 JSON 資料交換格式的解析,提供強大的支援。\\ :mod:`csv` 模" | ||
| "組則提供直接讀寫以逗號分隔值的檔案格式,支援一般資料庫與電子表格。\\ :mod:" | ||
| "`xml.etree.ElementTree`\\ ,\\ :mod:`xml.dom` 與 :mod:`xml.sax` 套件則支援 " | ||
| "XML 流程。綜觀所有,這些模組和套件都簡化了 Python 應用程式與其他工具之間的資" |
tutorial/stdlib.po
Outdated
| msgstr "" | ||
| ":mod:`sqllite3` 套件作為包覆 SQLite 資料庫的函式庫, 提供一個一致性的資料庫用" | ||
| "來更新與操作使用些微非標準的 SQL 語法。 " | ||
| ":mod:`sqllite3` 模組是 SQLite 資料庫函式庫的一個包裹器 (wrapper),提供一個具" |
Collaborator
There was a problem hiding this comment.
sqlite3 模組是 SQLite 資料庫函式庫的一層包裝
tutorial/stdlib.po
Outdated
| ":mod:`sqllite3` 套件作為包覆 SQLite 資料庫的函式庫, 提供一個一致性的資料庫用" | ||
| "來更新與操作使用些微非標準的 SQL 語法。 " | ||
| ":mod:`sqllite3` 模組是 SQLite 資料庫函式庫的一個包裹器 (wrapper),提供一個具" | ||
| "一致性的資料庫,可以使用稍微非標準的 SQL 語法來對它進行更新與存取。" |
tutorial/stdlib.po
Outdated
| msgstr "" | ||
| "有數種支援國際化模組 :mod:`gettext`\\ ,\\ :mod:`locale`\\ ,和 :mod:" | ||
| "`codecs` 等套件。 " | ||
| "有數種支援國際化的模組,包括 :mod:`gettext`\\ ,\\ :mod:`locale`\\ ,和 :mod:" |
All suggestions were applied.
Contributor
Author
|
All suggestions above were applied. |
StevenHsuYL
added a commit
to StevenHsuYL/python-docs-zh-tw
that referenced
this pull request
Jul 6, 2021
Apply all suggestion in python#78
adrianliaw
pushed a commit
that referenced
this pull request
Aug 16, 2021
* Update tutorial/stdlib.po Update fuzzy and minor modification. * Update stdlib.po All suggestions were applied. * Update tutorial/stdlib.po Apply all suggestion in #78 * Apply suggestions from review. Apply all suggestions. Thanks! Co-authored-by: Wei-Hsiang (Matt) Wang <mattwang44@gmail.com> * Update tutorial/stdlib.po Procedure: "程序" Co-authored-by: Wei-Hsiang (Matt) Wang <mattwang44@gmail.com>
beccalzh
pushed a commit
to beccalzh/python-docs-zh-tw
that referenced
this pull request
Sep 4, 2024
* Update tutorial/stdlib.po Update fuzzy and minor modification. * Update stdlib.po All suggestions were applied.
beccalzh
pushed a commit
to beccalzh/python-docs-zh-tw
that referenced
this pull request
Sep 4, 2024
* Update tutorial/stdlib.po Update fuzzy and minor modification. * Update stdlib.po All suggestions were applied. * Update tutorial/stdlib.po Apply all suggestion in python#78 * Apply suggestions from review. Apply all suggestions. Thanks! Co-authored-by: Wei-Hsiang (Matt) Wang <mattwang44@gmail.com> * Update tutorial/stdlib.po Procedure: "程序" Co-authored-by: Wei-Hsiang (Matt) Wang <mattwang44@gmail.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is a small PR and could be reviewed easily.