Skip to content

Commit 65c60b3

Browse files
ZaneL1uwxsms
andauthored
docs: undo translation of code blocks. (vuejs#164)
* docs: undo translation of code blocks. 根据 vuejs#35,代码部分不应翻译。 * docs: undo translation of code blocks. - 根据 vuejs#35,代码部分不应翻译,注释部分应翻译。 - 更正一些翻译不当的地方。 * Apply suggestions from code review Co-authored-by: wxsm <[email protected]>
1 parent 90e96cb commit 65c60b3

20 files changed

+112
-112
lines changed

src/guide/best-practices/accessibility.md

+23-23
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Web 无障碍访问 (也称为 a11y) 是指创建可供任何人都可以使用
1515
```vue-html
1616
<ul class="skip-links">
1717
<li>
18-
<a href="#main" ref="skipLink">跳到主内容</a>
18+
<a href="#main" ref="skipLink">Skip to main content</a>
1919
</li>
2020
</ul>
2121
```
@@ -96,17 +96,17 @@ watch(
9696

9797
```vue-html
9898
<main role="main" aria-labelledby="main-title">
99-
<h1 id="main-title">主标题</h1>
99+
<h1 id="main-title">Main title</h1>
100100
<section aria-labelledby="section-title">
101-
<h2 id="section-title"> 二级标题 </h2>
102-
<h3>章节小标题</h3>
101+
<h2 id="section-title"> Section Title </h2>
102+
<h3>Section Subtitle</h3>
103103
<!-- 内容 -->
104104
</section>
105105
<section aria-labelledby="section-title">
106-
<h2 id="section-title"> 二级标题 </h2>
107-
<h3>章节小标题</h3>
106+
<h2 id="section-title"> Section Title </h2>
107+
<h3>Section Subtitle</h3>
108108
<!-- 内容 -->
109-
<h3>章节小标题</h3>
109+
<h3>Section Subtitle</h3>
110110
<!-- 内容 -->
111111
</section>
112112
</main>
@@ -164,7 +164,7 @@ watch(
164164
提供标签来描述所有表单控件的用途;使 `for``id` 链接起来:
165165

166166
```vue-html
167-
<label for="name">名字</label>
167+
<label for="name">Name</label>
168168
<input type="text" name="name" id="name" v-model="name" />
169169
```
170170

@@ -179,7 +179,7 @@ watch(
179179

180180
```vue-html
181181
<label>
182-
名字
182+
Name
183183
<input type="text" name="name" id="name" v-model="name" />
184184
</label>
185185
```
@@ -192,7 +192,7 @@ watch(
192192
你也可以为 input 框配置一个带有 [`aria-label`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-label_attribute) 的无障碍访问名。
193193

194194
```vue-html
195-
<label for="name">名字</label>
195+
<label for="name">Name</label>
196196
<input
197197
type="text"
198198
name="name"
@@ -310,8 +310,8 @@ watch(
310310

311311
```vue-html
312312
<fieldset>
313-
<legend>使用 aria-labelledby</legend>
314-
<label id="date-label" for="date">当前日期:</label>
313+
<legend>Using aria-labelledby</legend>
314+
<label id="date-label" for="date">Current Date:</label>
315315
<input
316316
type="date"
317317
name="date"
@@ -326,8 +326,8 @@ watch(
326326

327327
```vue-html
328328
<fieldset>
329-
<legend>使用 aria-describedby</legend>
330-
<label id="dob" for="dob">生日日期:</label>
329+
<legend>Using aria-describedby</legend>
330+
<label id="dob" for="dob">Date of Birth:</label>
331331
<input type="date" name="dob" id="dob" aria-describedby="dob-instructions" />
332332
<p id="dob-instructions">MM/DD/YYYY</p>
333333
</fieldset>
@@ -343,9 +343,9 @@ watch(
343343

344344
```vue-html
345345
<form role="search">
346-
<label for="search" class="hidden-visually">搜索:</label>
346+
<label for="search" class="hidden-visually">Search: </label>
347347
<input type="text" name="search" id="search" v-model="search" />
348-
<button type="submit">搜索</button>
348+
<button type="submit">Search</button>
349349
</form>
350350
```
351351

@@ -374,8 +374,8 @@ watch(
374374
添加 `aria-hidden="true"` 在无障碍访问时被隐藏,但对其他可视用户仍然是可见的。不要在可聚焦的元素上使用它,请只在装饰性的、重复的的或屏幕外的内容上使用它。
375375

376376
```vue-html
377-
<p>这里不会在屏幕助读器上被隐藏</p>
378-
<p aria-hidden="true">这里会在屏幕助读器上被隐藏</p>
377+
<p>This is not hidden from screen readers.</p>
378+
<p aria-hidden="true">This is hidden from screen readers.</p>
379379
```
380380

381381
### 按钮 {#buttons}
@@ -385,11 +385,11 @@ watch(
385385

386386
```vue-html
387387
<form action="/dataCollectionLocation" method="post" autocomplete="on">
388-
<!-- Buttons -->
388+
<!-- 按钮 -->
389389
<button type="button">Cancel</button>
390390
<button type="submit">Submit</button>
391391
392-
<!-- Input buttons -->
392+
<!-- 输入按钮 -->
393393
<input type="button" value="Cancel" />
394394
<input type="submit" value="Submit" />
395395
</form>
@@ -407,7 +407,7 @@ watch(
407407

408408
```vue-html
409409
<form role="search">
410-
<label for="search" class="hidden-visually">搜索:</label>
410+
<label for="search" class="hidden-visually">Search: </label>
411411
<input type="text" name="search" id="search" v-model="search" />
412412
<input
413413
type="image"
@@ -422,11 +422,11 @@ watch(
422422

423423
```vue-html
424424
<form role="search">
425-
<label for="searchIcon" class="hidden-visually">搜索:</label>
425+
<label for="searchIcon" class="hidden-visually">Search: </label>
426426
<input type="text" name="searchIcon" id="searchIcon" v-model="searchIcon" />
427427
<button type="submit">
428428
<i class="fas fa-search" aria-hidden="true"></i>
429-
<span class="hidden-visually">搜索</span>
429+
<span class="hidden-visually">Search</span>
430430
</button>
431431
</form>
432432
```

src/guide/built-ins/teleport.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
```vue-html
1616
<div class="outer">
17-
<h3>Vue 传送门示例</h3>
17+
<h3>Tooltips with Vue 3 Teleport</h3>
1818
<div>
1919
<MyModal />
2020
</div>
@@ -33,11 +33,11 @@ const open = ref(false)
3333
</script>
3434
3535
<template>
36-
<button @click="open = true">打开模态框</button>
36+
<button @click="open = true">Open Modal</button>
3737
3838
<div v-if="open" class="modal">
39-
<p>你好,这里是模态框!</p>
40-
<button @click="open = false">关闭</button>
39+
<p>Hello from the modal!</p>
40+
<button @click="open = false">Close</button>
4141
</div>
4242
</template>
4343
@@ -68,11 +68,11 @@ export default {
6868
</script>
6969
7070
<template>
71-
<button @click="open = true">打开模态框</button>
71+
<button @click="open = true">Open Modal</button>
7272
7373
<div v-if="open" class="modal">
74-
<p>你好,这里是模态框!</p>
75-
<button @click="open = false">关闭</button>
74+
<p>Hello from the modal!</p>
75+
<button @click="open = false">Close</button>
7676
</div>
7777
</template>
7878
@@ -101,12 +101,12 @@ export default {
101101
`<Teleport>` 提供了一个更简洁的方式来解决此类问题,使我们无需考虑那么多层 DOM 结构的问题。让我们用 `<Teleport>` 改写一下 `<MyModal>`
102102

103103
```vue-html{3,8}
104-
<button @click="open = true">打开模态框</button>
104+
<button @click="open = true">Open Modal</button>
105105
106106
<Teleport to="body">
107107
<div v-if="open" class="modal">
108-
<p>你好!</p>
109-
<button @click="open = false">关闭</button>
108+
<p>Hello from the modal!</p>
109+
<button @click="open = false">Close</button>
110110
</div>
111111
</Teleport>
112112
```
@@ -120,12 +120,12 @@ let open = $ref(false)
120120
</script>
121121

122122
<div class="demo">
123-
<button @click="open = true">打开模态框</button>
123+
<button @click="open = true">Open Modal</button>
124124
<ClientOnly>
125125
<Teleport to="body">
126126
<div v-if="open" class="demo modal-demo">
127-
<p style="margin-bottom:20px">你好!</p>
128-
<button @click="open = false">关闭</button>
127+
<p style="margin-bottom:20px">Hello from the modal!</p>
128+
<button @click="open = false">Close</button>
129129
</div>
130130
</Teleport>
131131
</ClientOnly>

src/guide/built-ins/transition-demos/Basic.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ let show = $ref(true)
44

55
<template>
66
<div class="demo">
7-
<button @click="show = !show">切换</button>
7+
<button @click="show = !show">Toggle</button>
88
<Transition name="fade">
9-
<p style="margin-top: 20px" v-if="show">你好</p>
9+
<p style="margin-top: 20px" v-if="show">hello</p>
1010
</Transition>
1111
</div>
1212
</template>

src/guide/built-ins/transition-demos/BetweenElements.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ let docState = $ref('saved')
66

77
<template>
88
<div class="demo transition-demo">
9-
<span style="margin-right: 20px">点击这里来滚动:</span>
9+
<span style="margin-right: 20px">Click to cycle through states: </span>
1010
<div class="btn-container">
1111
<Transition name="slide-up" :mode="mode">
1212
<button v-if="docState === 'saved'" @click="docState = 'edited'">
13-
编辑
13+
Edit
1414
</button>
1515
<button v-else-if="docState === 'edited'" @click="docState = 'editing'">
16-
保存
16+
Save
1717
</button>
1818
<button v-else-if="docState === 'editing'" @click="docState = 'saved'">
19-
取消
19+
Cancel
2020
</button>
2121
</Transition>
2222
</div>

src/guide/built-ins/transition-demos/CssAnimation.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ let show = $ref(true)
44

55
<template>
66
<div class="demo">
7-
<button @click="show = !show">切换</button>
7+
<button @click="show = !show">Toggle</button>
88
<Transition name="bounce">
99
<p v-if="show" style="margin-top: 20px; text-align: center;">
10-
你好!你会看到这里正在跳跃!
10+
Hello here is some bouncy text!
1111
</p>
1212
</Transition>
1313
</div>

src/guide/built-ins/transition-demos/JsHooks.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function onLeave(el, done) {
4040

4141
<template>
4242
<div class="demo">
43-
<button @click="show = !show">切换</button>
43+
<button @click="show = !show">Toggle</button>
4444

4545
<Transition
4646
@before-enter="onBeforeEnter"

src/guide/built-ins/transition-demos/NestedTransitions.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ let show = $ref(true)
44

55
<template>
66
<div class="demo">
7-
<button @click="show = !show" style="margin-bottom: 20px">切换</button>
7+
<button @click="show = !show" style="margin-bottom: 20px">Toggle</button>
88
<Transition duration="550" name="nested">
99
<div v-if="show" class="transition-demo-outer">
10-
<div class="transition-demo-inner">你好!</div>
10+
<div class="transition-demo-inner">Hello</div>
1111
</div>
1212
</Transition>
1313
</div>

src/guide/built-ins/transition-demos/SlideFade.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ let show = $ref(true)
44

55
<template>
66
<div class="demo">
7-
<button @click="show = !show">切换淡入 / 淡出</button>
7+
<button @click="show = !show">Toggle Slide + Fade</button>
88
<Transition name="slide-fade">
9-
<p style="margin-top: 20px" v-if="show">你好!</p>
9+
<p style="margin-top: 20px" v-if="show">hello</p>
1010
</Transition>
1111
</div>
1212
</template>

src/guide/built-ins/transition.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Vue 提供了两个内置组件,可以帮助你制作基于状态变化的过
2929
以下是最基本用法的示例:
3030

3131
```vue-html
32-
<button @click="show = !show">切换</button>
32+
<button @click="show = !show">Toggle</button>
3333
<Transition>
34-
<p v-if="show">你好!</p>
34+
<p v-if="show">hello</p>
3535
</Transition>
3636
```
3737

@@ -175,7 +175,7 @@ Vue 提供了两个内置组件,可以帮助你制作基于状态变化的过
175175
```vue-html
176176
<Transition name="bounce">
177177
<p v-if="show" style="text-align: center;">
178-
你好!你会看到这里正在跳跃!
178+
Hello here is some bouncy text!
179179
</p>
180180
</Transition>
181181
```
@@ -511,9 +511,9 @@ export default {
511511

512512
```vue-html
513513
<Transition>
514-
<button v-if="docState === 'saved'">编辑</button>
515-
<button v-else-if="docState === 'edited'">保存</button>
516-
<button v-else-if="docState === 'editing'">取消</button>
514+
<button v-if="docState === 'saved'">Edit</button>
515+
<button v-else-if="docState === 'edited'">Save</button>
516+
<button v-else-if="docState === 'editing'">Cancel</button>
517517
</Transition>
518518
```
519519

@@ -569,7 +569,7 @@ export default {
569569
```vue-html
570570
<Transition :name="transitionName">
571571
<!-- ... -->
572-
</Transition>
572+
</Transition>Fallthrough
573573
```
574574

575575
当你使用 Vue 的过渡类约定规则定义了 CSS 过渡/动画,并想在它们之间切换时,这可能很有用。

src/guide/components/attrs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export default {
9999
这些透传进来的 attribute 可以在模板的表达式中直接用 `$attrs` 访问到。
100100

101101
```vue-html
102-
<span>透传 attribute: {{ $attrs }}</span>
102+
<span>Fallthrough attribute: {{ $attrs }}</span>
103103
```
104104

105105
这个 `$attrs` 对象包含了除组件的 `props``emits` 属性外的所有其他 attribute,例如 `class``style``v-on` 监听器等等。

src/guide/components/props.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ export default {
242242
return {
243243
post: {
244244
id: 1,
245-
title: '我的 Vue 学习之旅'
245+
title: 'My Journey with Vue'
246246
}
247247
}
248248
}
@@ -255,7 +255,7 @@ export default {
255255
```js
256256
const post = {
257257
id: 1,
258-
title: '我的 Vue 学习之旅'
258+
title: 'My Journey with Vue'
259259
}
260260
```
261261

@@ -578,10 +578,10 @@ export default {
578578
该组件可以被这样使用:
579579

580580
```vue-html
581-
<!-- equivalent of passing :disabled="true" -->
581+
<!-- 等同于传入 :disabled="true" -->
582582
<MyComponent disabled />
583583
584-
<!-- equivalent of passing :disabled="false" -->
584+
<!-- 等同于传入 :disabled="false" -->
585585
<MyComponent />
586586
```
587587

0 commit comments

Comments
 (0)