Skip to content

Commit a08c2c1

Browse files
committed
Update part 1 title and links in Chinese Translation
1 parent a78cfac commit a08c2c1

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/content/1/zh/part1a.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ export default [
476476
```
477477

478478
<!-- We will get to know ESLint in more detail [in part 3](/en/part3/validation_and_es_lint#lint). -->
479-
我们将在[第3章节](/zh/part3/validation_and_es_lint#lint)详细介绍到ESLint
479+
我们将在[第3章节](/zh/part3/es_lint与代码检查#lint)详细介绍ESLint
480480

481481
<!-- ### Some notes -->
482482
### 一些注意事项
@@ -706,7 +706,7 @@ const App = () => {
706706
练习是**一次上交一个章节**的。当你上交了课程中某一章节的练习,你就不能再上交同一章节的未完成的练习。
707707

708708
<!-- Note that in this part, there are [more exercises](/en/part1/a_more_complex_state_debugging_react_apps#exercises-1-6-1-14) besides those found below. <i>Do not submit your work</i> until you have completed all of the exercises you want to submit for the part. -->
709-
请注意,在这一章节,除了下面的练习,还有[更多的练习](/zh/part1/深入_react_应用调试#练习-1-6-1-14)。在你完成该章节的所有练习之前,<i>请不要上交你的作品</i>。
709+
请注意,在这一章节,除了下面的练习,还有[更多的练习](/zh/part1/复杂状态,调试_react应用#练习-1-6-1-14)。在你完成该章节的所有练习之前,<i>请不要上交你的作品</i>。
710710

711711
<!-- You may submit all the exercises of this course into the same repository, or use multiple repositories. If you submit exercises of different parts into the same repository, please use a sensible naming scheme for the directories.-->
712712
你可以将本课程的所有练习上交到同一个仓库,也可以使用多个仓库。如果你将不同章节的练习上交到同一个仓库,请使用合理的目录命名方案。

src/content/1/zh/part1b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ const Header = (props) => {
313313
> <i>Objects are not valid as a React child</i>
314314
315315
<!-- keep in mind the things told [here](/en/part1/introduction_to_react#do-not-render-objects). -->
316-
记住[这里](/zh/part1/introduction_to_react#do-not-render-objects)提到的内容。
316+
记住[这里](/zh/part1/react简介#不要渲染对象)提到的内容。
317317

318318
<!-- <h4>1.3: Course Information step 3</h4> -->
319319
<h4>1.3:课程信息 第3步</h4>

src/content/1/zh/part1c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ const Display = (props) => {
803803
<!-- The component only uses the _counter_ field of its <i>props</i>.-->
804804
该组件只使用其<i>props</i>的_counter_字段。
805805
<!-- This means we can simplify the component by using [destructuring](/en/part1/component_state_event_handlers#destructuring), like so:-->
806-
这意味着我们可以通过使用[解构](/zh/part1/component_state_event_handlers#destructuring)来简化组件,像这样:
806+
这意味着我们可以通过使用[解构](/zh/part1/组件状态,事件处理#解构)来简化组件,像这样:
807807
808808
```js
809809
const Display = ({ counter }) => {

src/content/1/zh/part1d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1396,7 +1396,7 @@ rm -rf node_modules/ && npm i
13961396
> <i>Objects are not valid as a React child</i>
13971397
13981398
<!-- keep in mind the things told [here](/en/part1/introduction_to_react#do-not-render-objects). -->
1399-
记住[这里](/zh/part1/introduction_to_react#do-not-render-objects)讲过的内容。
1399+
记住[这里](/zh/part1/react简介#不要渲染对象)讲过的内容。
14001400

14011401
<!-- <h4> 1.6: unicafe step 1</h4> -->
14021402
<h4> 1.6:unicafe 第1步</h4>

src/content/partnavigation/partnavigation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,10 @@ module.exports = {
162162
b: 'Web 应用的基础设施',
163163
},
164164
1: {
165-
a: 'React 简介',
165+
a: 'React简介',
166166
b: 'JavaScript',
167167
c: '组件状态,事件处理',
168-
d: '深入React 应用调试',
168+
d: '复杂状态,调试React应用',
169169
},
170170
2: {
171171
a: '从渲染集合到模块学习',

0 commit comments

Comments
 (0)