Skip to content

Commit 3b82d8c

Browse files
authored
Merge pull request #3143 from Gao-Jun/translate_downloads
Translate downloads/{branches,releases}/index.md (zh_cn)
2 parents ceb21fe + c7b11f6 commit 3b82d8c

File tree

3 files changed

+70
-2
lines changed

3 files changed

+70
-2
lines changed

zh_cn/downloads/branches/index.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: page
3+
title: "Ruby 维护分支"
4+
lang: zh_cn
5+
---
6+
7+
本页面列出了当前各个 Ruby 分支的维护情况。
8+
{: .summary}
9+
10+
对于特定版本的详细信息,可以参考
11+
[版本页面](../releases/).
12+
13+
这是 Ruby 分支及其维护状态的初步列表。
14+
显示的日期基于 版本发布 或 EOL声明 新闻的发布时间。
15+
16+
Ruby 分支或版本 分为以下集中状态:
17+
18+
* **正常维护** (错误修复):
19+
能得到一般错误修复和安全修复。
20+
* **安全维护** (security fix):
21+
只有安全修复会向后移植。
22+
* **eol** (生命周期终止):
23+
Ruby 核心团队不再进行支持,不会得到任何修复。也不会发布新的补丁版本。
24+
25+
{% include branches-timeline.html %}
26+
27+
{% for branch in site.data.branches %}
28+
### Ruby {{ branch.name }}
29+
30+
状态: {{ branch.status }}<br>
31+
发布日期: {{ branch.date }}<br>
32+
正常维护期至: {% if branch.security_maintenance_date %}{{ branch.security_maintenance_date }}{% else %}未定{% endif %}<br>
33+
生命周期终止: {% if branch.eol_date %}{{ branch.eol_date }}{% else %}{% if branch.expected_eol_date %}{{ branch.expected_eol_date }} (预计){% else %}未定{% endif %}{% endif %}
34+
35+
{% endfor %}

zh_cn/downloads/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Ruby 源代码可从世界各地的[镜像站][mirrors]获得。请尝试离您
6363

6464
[license]: {{ site.license.url }}
6565
[installation]: /zh_cn/documentation/installation/
66-
[releases]: /en/downloads/releases/
67-
[branches]: /en/downloads/branches/
66+
[releases]: /zh_cn/downloads/releases/
67+
[branches]: /zh_cn/downloads/branches/
6868
[mirrors]: /en/downloads/mirrors/
6969
[rvm]: http://rvm.io/
7070
[rbenv]: https://github.com/rbenv/rbenv

zh_cn/downloads/releases/index.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
layout: page
3+
title: "Ruby 版本"
4+
lang: zh_cn
5+
---
6+
7+
本页面列出了各个 Ruby 发布版本。
8+
{: .summary}
9+
10+
如需了解 Ruby 各版本的当前维护状态,可以参见
11+
[分支页面](../branches/).
12+
13+
### Ruby 版本列表
14+
15+
下表列出了各 Ruby 发布版本。
16+
其中显示的日期基于对应新闻的发布日期,可能与源代码包的实际创建时间有所差别。
17+
18+
<table class="release-list">
19+
<tr>
20+
<th>发布版本</th>
21+
<th>发布日期</th>
22+
<th>下载地址</th>
23+
<th>发布文档</th>
24+
</tr>
25+
{% assign releases = site.data.releases | reverse | sort: "date" | reverse %}
26+
{% for release in releases %}
27+
<tr>
28+
<td>Ruby {{ release.version }}</td>
29+
<td>{{ release.date }}</td>
30+
<td><a href="{{ release.url.gz }}">下载</a></td>
31+
<td><a href="{{ release.post }}">查看…</a></td>
32+
</tr>{% endfor %}
33+
</table>

0 commit comments

Comments
 (0)