-
Notifications
You must be signed in to change notification settings - Fork 8.3k
[zh-cn] update translation of 'basic shapes' #30604
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: main
Are you sure you want to change the base?
Conversation
files/zh-cn/web/svg/tutorials/svg_from_scratch/basic_shapes/index.md
Outdated
Show resolved
Hide resolved
…dex.md Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
Preview URLs (comment last updated: 2025-11-21 02:29:45) |
files/zh-cn/web/svg/tutorials/svg_from_scratch/basic_shapes/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/svg/tutorials/svg_from_scratch/basic_shapes/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/svg/tutorials/svg_from_scratch/basic_shapes/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/svg/tutorials/svg_from_scratch/basic_shapes/index.md
Outdated
Show resolved
Hide resolved
|
|
||
| - points | ||
| - : 点集数列。每个数字用空白、逗号、终止命令符或者换行符分隔开。每个点必须包含 2 个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 (0,0), (1,1) 和 (2,2) 可以写成这样:“0 0, 1 1, 2 2”。 | ||
| - : 点列表。每个数字必须用空格、逗号、换行符或回车符分隔,允许额外添加空白字符。每个点必须包含两个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 `(0,0)`、`(1,1)` 和 `(2,2)` 可以写成 `0, 0 1, 1 2, 2`。 |
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.
line feed 即指代“换行符”(回车是“carriage return”),EOL是可以指代CR+LF/LF/CR,line feed仅指代LF(LF是缩写版本)。
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.
| - : 点列表。每个数字必须用空格、逗号、换行符或回车符分隔,允许额外添加空白字符。每个点必须包含两个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 `(0,0)`、`(1,1)` 和 `(2,2)` 可以写成 `0, 0 1, 1 2, 2`。 | |
| - : 点列表。每个数字必须用空格、逗号或换行符分隔,允许额外添加空白字符。每个点必须包含两个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 `(0,0)`、`(1,1)` 和 `(2,2)` 可以写成 `0, 0 1, 1 2, 2`。 |
files/zh-cn/web/svg/tutorials/svg_from_scratch/basic_shapes/index.md
Outdated
Show resolved
Hide resolved
files/zh-cn/web/svg/tutorials/svg_from_scratch/basic_shapes/index.md
Outdated
Show resolved
Hide resolved
Co-authored-by: A1lo <[email protected]>
| - points | ||
| - : 点集数列。每个数字用空白符、逗号、终止命令或者换行符分隔开。每个点必须包含 2 个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 (0,0), (1,1) 和 (2,2) 可以写成这样:“0 0, 1 1, 2 2”。路径绘制完后闭合图形,所以最终的直线将从位置 (2,2) 连接到位置 (0,0)。 | ||
| - `points` | ||
| - : 点列表。每个数字必须用空格、逗号、换行符或回车符分隔,允许额外添加空白字符。每个点必须包含两个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 `(0,0)`、`(1,1)` 和 `(2,2)` 可以写成 `0, 0 1, 1 2, 2`。路径绘制完后闭合图形,所以最终的直线将从 `(2,2)` 连接到 `(0,0)`。 |
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.
| - : 点列表。每个数字必须用空格、逗号、换行符或回车符分隔,允许额外添加空白字符。每个点必须包含两个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 `(0,0)`、`(1,1)` 和 `(2,2)` 可以写成 `0, 0 1, 1 2, 2`。路径绘制完后闭合图形,所以最终的直线将从 `(2,2)` 连接到 `(0,0)`。 | |
| - : 点列表。每个数字必须用空格、逗号或换行符分隔,允许额外添加空白字符。每个点必须包含两个数字,一个是 x 坐标,一个是 y 坐标。所以点列表 `(0,0)`、`(1,1)` 和 `(2,2)` 可以写成 `0, 0 1, 1 2, 2`。路径绘制完后闭合图形,所以最终的直线将从 `(2,2)` 连接到 `(0,0)`。 |
Description
Motivation
Additional details
Related issues and pull requests
fixes #30083