Skip to content

Commit debdff8

Browse files
committed
예제 번역: /examples/GUIs
- 의미없는 번역
1 parent 1cb2561 commit debdff8

File tree

11 files changed

+35
-35
lines changed

11 files changed

+35
-35
lines changed

ko-KR/.vitepress/config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -491,31 +491,31 @@ export const sidebar = {
491491
text: '7 GUIs',
492492
items: [
493493
{
494-
text: 'Counter',
494+
text: '숫자세기',
495495
link: '/examples/#counter'
496496
},
497497
{
498-
text: 'Temperature Converter',
498+
text: '온도 단위 변환',
499499
link: '/examples/#temperature-converter'
500500
},
501501
{
502-
text: 'Flight Booker',
502+
text: '항공편 예약',
503503
link: '/examples/#flight-booker'
504504
},
505505
{
506-
text: 'Timer',
506+
text: '타이머',
507507
link: '/examples/#timer'
508508
},
509509
{
510510
text: 'CRUD',
511511
link: '/examples/#crud'
512512
},
513513
{
514-
text: 'Circle Drawer',
514+
text: '원 그리기',
515515
link: '/examples/#circle-drawer'
516516
},
517517
{
518-
text: 'Cells',
518+
text: '셀(스프레드시트)',
519519
link: '/examples/#cells'
520520
}
521521
]

ko-KR/src/examples/src/circle-drawer/App/template.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<svg @click="onClick">
22
<foreignObject x="0" y="40%" width="100%" height="200">
33
<p class="tip">
4-
Click on the canvas to draw a circle. Click on a circle to select it.
5-
Right-click on the canvas to adjust the radius of the selected circle.
4+
캔버스 클릭 시 원이 그려지며, 원 클릭 시 선택됩니다.
5+
캔버스 우클릭 시 원의 반경을 조정할 수 있습니다.
66
</p>
77
</foreignObject>
88
<circle
@@ -17,11 +17,11 @@
1717
</svg>
1818

1919
<div class="controls">
20-
<button @click="undo" :disabled="index <= 0">Undo</button>
21-
<button @click="redo" :disabled="index >= history.length - 1">Redo</button>
20+
<button @click="undo" :disabled="index <= 0">실행 취소</button>
21+
<button @click="redo" :disabled="index >= history.length - 1">다시 실행</button>
2222
</div>
2323

2424
<div class="dialog" v-if="adjusting" @click.stop>
25-
<p>Adjust radius of circle at ({{ selected.cx }}, {{ selected.cy }})</p>
25+
<p>({{ selected.cx }}, {{ selected.cy }})위치에 있는 원의 반지름을 조정합니다.</p>
2626
<input type="range" v-model="selected.r" min="1" max="300">
2727
</div>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
{{ count }}
2-
<button @click="count++">Count</button>
2+
<button @click="count++">숫자세기</button>

ko-KR/src/examples/src/crud/App/composition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ref, reactive, computed, watch } from 'vue'
22

33
export default {
44
setup() {
5-
const names = reactive(['Emil, Hans', 'Mustermann, Max', 'Tisch, Roman'])
5+
const names = reactive(['봉, 미선', '신, 형만', '신, 노스케'])
66
const selected = ref('')
77
const prefix = ref('')
88
const first = ref('')

ko-KR/src/examples/src/crud/App/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
22
data() {
33
return {
4-
names: ['Emil, Hans', 'Mustermann, Max', 'Tisch, Roman'],
4+
names: ['봉, 미선', '신, 형만', '신, 노스케'],
55
selected: '',
66
prefix: '',
77
first: '',
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
<div><input v-model="prefix" placeholder="Filter prefix"></div>
1+
<div><input v-model="prefix" placeholder="시작 문자열 필터"></div>
22

33
<select size="5" v-model="selected">
44
<option v-for="name in filteredNames">{{ name }}</option>
55
</select>
66

7-
<label>Name: <input v-model="first"></label>
8-
<label>Surname: <input v-model="last"></label>
7+
<label>: <input v-model="last"></label>
8+
<label>이름: <input v-model="first"></label>
99

1010
<div class="buttons">
11-
<button @click="create">Create</button>
12-
<button @click="update">Update</button>
13-
<button @click="del">Delete</button>
11+
<button @click="create">생성</button>
12+
<button @click="update">수정</button>
13+
<button @click="del">삭제</button>
1414
</div>

ko-KR/src/examples/src/flight-booker/App/composition.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export default {
1717
function book() {
1818
alert(
1919
isReturn.value
20-
? `You have booked a return flight leaving on ${departureDate.value} and returning on ${returnDate.value}.`
21-
: `You have booked a one-way flight leaving on ${departureDate.value}.`
20+
? `${departureDate.value}에 출발하여 ${returnDate.value}에 돌아오는 왕복 항공편을 예약하셨습니다.`
21+
: `${departureDate.value}에 출발하는 편도 항공편을 예약하셨습니다.`
2222
)
2323
}
2424

ko-KR/src/examples/src/flight-booker/App/options.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export default {
4040
book() {
4141
alert(
4242
this.isReturn
43-
? `You have booked a return flight leaving on ${this.departureDate} and returning on ${this.returnDate}.`
44-
: `You have booked a one-way flight leaving on ${this.departureDate}.`
43+
? `${this.departureDate}에 출발하여 ${this.returnDate}에 돌아오는 왕복 항공편을 예약하셨습니다.`
44+
: `${this.departureDate}에 출발하는 편도 항공편을 예약하셨습니다.`
4545
)
4646
}
4747
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<select v-model="flightType">
2-
<option value="one-way flight">One-way Flight</option>
3-
<option value="return flight">Return Flight</option>
2+
<option value="one-way flight">편도</option>
3+
<option value="return flight">왕복</option>
44
</select>
55

66
<input type="date" v-model="departureDate">
77
<input type="date" v-model="returnDate" :disabled="!isReturn">
88

9-
<button :disabled="!canBook" @click="book">Book</button>
9+
<button :disabled="!canBook" @click="book">예약</button>
1010

11-
<p>{{ canBook ? '' : 'Return date must be after departure date.' }}</p>
11+
<p>{{ canBook ? '' : '오는 편 날짜는 가는 편 날짜 이후여야 합니다.' }}</p>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
<input type="number" :value="c" @change="setC"> Celsius =
2-
<input type="number" :value="f" @change="setF"> Fahrenheit
1+
<input type="number" :value="c" @change="setC"> 섭씨 =
2+
<input type="number" :value="f" @change="setF"> 화씨

0 commit comments

Comments
 (0)