chore(i18n,curriculum): update translations (#43332)

This commit is contained in:
camperbot
2021-08-31 09:47:25 -07:00
committed by GitHub
parent 61b390d075
commit 374876325e
62 changed files with 232 additions and 238 deletions

View File

@@ -1,6 +1,6 @@
---
id: 561add10cb82ac38a17523bc
title: API 和微服务证书
title: 后端开发和API证书
challengeType: 7
isPrivate: true
tests:

View File

@@ -1,6 +1,6 @@
---
id: 5a553ca864b52e1d8bceea14
title: 数据可视化证书
title: Data Visualization Certificate
challengeType: 7
isPrivate: true
tests:

View File

@@ -1,6 +1,6 @@
---
id: 561acd10cb82ac38a17513bc
title: 前端库证书
title: 前端开发库证书
challengeType: 7
isPrivate: true
tests:

View File

@@ -18,4 +18,4 @@ tests:
title: 电话号码验证器
-
id: aa2e6f85cab2ab736c9a9b24
title: 计算找零
title: 现金登记

View File

@@ -24,7 +24,7 @@ tests:
title: 编写一个投票程序
-
id: bd7158d8c443eddfaeb5bdff
title: 建立一个夜生活协调程序
title: 建立一个夜生活协调程序
-
id: bd7158d8c443eddfaeb5bd0e
title: 绘制股市图

View File

@@ -1,6 +1,6 @@
---
id: 5e46fc95ac417301a38fb935
title: Python 与机器学习证书
title: Machine Learning with Python Certificate
challengeType: 7
isPrivate: true
tests:

View File

@@ -6,10 +6,10 @@ isPrivate: true
tests:
-
id: 587d8249367417b2b2512c41
title: 制 - 英制转换器
title: 公英制转换器
-
id: 587d8249367417b2b2512c42
title: 问题踪器
title: 问题踪器
-
id: 587d824a367417b2b2512c43
title: 个人图书馆

View File

@@ -18,4 +18,4 @@ tests:
title: 元素周期表数据库
-
id: 602da04c22201c65d2a019f4
title: 终极挑战
title: 猜数字游戏

View File

@@ -11,8 +11,6 @@ dashedName: move-a-relatively-positioned-element-with-css-offsets
CSS 里面的 `top``bottom``left``right` 定义了元素在相应方位的偏移距离。 元素将从当前位置向属性相反的方向偏移。 就像你在上一个挑战看到的,`top` 属性使 `h2` 向下移动。 同样,使用 `left` 将项目移动到右边。
<img src='https://i.imgur.com/eWWi3gZ.gif' alt='' />
# --instructions--
请通过 CSS 属性把 `h2` 向上移动 10 像素,向右移动 15 像素。

View File

@@ -46,7 +46,7 @@ Here's a <a href="https://www.freecodecamp.org" target="_blank">link to www.free
# --instructions--
创建一个新的段落 `p` 元素来包裹 `a` 元素。 新段落应有文本 `View more cat photos`,其中 `cat photos` 是一个链接,其余是纯文本。
创建一个新的段落 `p` 元素来包裹 `a` 元素。 不要创建一个新的锚点标签。 新段落应有文本 `View more cat photos`,其中 `cat photos` 是一个链接,其余是纯文本。
# --hints--

View File

@@ -27,7 +27,7 @@ dashedName: use-the-value-attribute-with-radio-buttons-and-checkboxes
# --instructions--
给每一个 `radio``checkbox` 输入框添加 `value` 属性。 使用输入标签文本,小写形式,作为属性值。
给每一个 `radio``checkbox` 输入框添加 `value` 属性。 不要创建任何新的 radio 或 checkbox 元素。 输入标签文本使用小写字母作为属性值。
# --hints--

View File

@@ -43,7 +43,7 @@ assert.deepEqual(
);
```
第一个数组中的所有元素都应按原始顺序添加到第二个数组中。
第一个数组中的所有元素都应按原始顺序添加到第二个数组中。 `frankenSplice([1, 2, 3, 4], [], 0)` 应返回 `[1, 2, 3, 4]`
```js
assert.deepEqual(frankenSplice([1, 2, 3, 4], [], 0), [1, 2, 3, 4]);

View File

@@ -28,7 +28,7 @@ var ourStr = "I come first. " + "I come second.";
字符串 `I come first. I come second.` 将显示在控制台中。
# --instructions--
使用 `+` 操作符连接字符串`This is the start.``This is the end.` 赋值给 `myStr`
字符串 `This is the start.``This is the end.` 通过 `+` 运算符创建 `myStr`。 确保在两个字符串之间包含一个空格
# --hints--

View File

@@ -24,7 +24,7 @@ ourStr += "I come second.";
# --instructions--
使用 `+=` 操作符,多行合并字符串 `This is the first sentence.``This is the second sentence.` ,并赋值给 `myStr`像示例那样使用 `+=` 操作符。 先把第一个字符串赋值给 `myStr`,然后拼接第二个字符串。
使用 `+=` 操作符,多行合并字符串 `This is the first sentence.``This is the second sentence.` ,并赋值给 `myStr`参照示例中显示的方式使用 `+=` 操作符,并确保在两个字符串之间包含一个空格。 先把第一个字符串赋值给 `myStr`,然后拼接第二个字符串。
# --hints--

View File

@@ -28,7 +28,7 @@ dashedName: escape-sequences-in-strings
你需要使用转义字符正确地插入特殊字符。 确保间距与上面文本一致,并且单词或转义字符之间没有空格。
**注意:** `SecondLine` 是因为键入了转义字符(而不是空格),所以在那个位置
**注意:**`SecondLine` 前面的空白是制表符,而不是空格
# --hints--

View File

@@ -8,7 +8,7 @@ dashedName: iterate-over-all-properties
# --description--
现在你已经了解了两种属性: <dfn>自身属性</dfn>`prototype` 属性。 自身属性是直接在对象上定义的。 而 `prototype` 属性是定义`prototype`
现在你已经了解了两种属性: <dfn>自身属性</dfn>`prototype` 属性。 自身属性是直接在对象上定义的。 而原型属性`prototype`定义
```js
function Bird(name) {