Skip to content

Commit 15320e0

Browse files
authored
Merge branch 'main' into src/change_words
2 parents b6df8eb + d2fda5e commit 15320e0

File tree

13 files changed

+21
-53
lines changed

13 files changed

+21
-53
lines changed

ko-KR/.vitepress/config.ts

Lines changed: 16 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ const nav = [
4141
{
4242
text: 'Resources',
4343
items: [
44-
{ text: 'Partners', link: '/partners/' },
45-
{ text: 'Themes', link: '/ecosystem/themes' },
44+
{ text: 'Sponsor', link: 'https://vuejs.org/sponsor/' },
45+
{ text: 'Partners', link: 'https://vuejs.org/partners/' },
46+
{ text: 'Themes', link: 'https://vuejs.org/ecosystem/themes/' },
4647
{ text: 'Jobs', link: 'https://vuejobs.com/?ref=vuejs' },
4748
{ text: 'T-Shirt Shop', link: 'https://vue.threadless.com/' }
4849
]
@@ -97,7 +98,7 @@ const nav = [
9798
text: 'About',
9899
activeMatch: `^/about/`,
99100
items: [
100-
{ text: 'FAQ', link: '/about/faq' },
101+
{ text: 'FAQ', link: 'https://vuejs.org/about/faq/' },
101102
{ text: 'Team', link: 'https://vuejs.org/about/team' },
102103
{ text: 'Releases', link: 'https://vuejs.org/about/releases' },
103104
{
@@ -110,15 +111,6 @@ const nav = [
110111
link: 'https://www.youtube.com/watch?v=OrxmtDw4pVI'
111112
}
112113
]
113-
},
114-
{
115-
text: 'Sponsor',
116-
link: '/sponsor/'
117-
},
118-
{
119-
text: 'Partners',
120-
link: '/partners/',
121-
activeMatch: `^/partners/`
122114
}
123115
]
124116

@@ -271,13 +263,13 @@ export const sidebar = {
271263
{
272264
text: '타입스크립트',
273265
items: [
274-
{ text: '개요', link: '/guide/typescript/overview' },
266+
{ text: '개요 (미완료)', link: '/guide/typescript/overview' },
275267
{
276-
text: '컴포지션 API와 타입스크립트',
268+
text: '⚠️컴포지션 API & TS (미완료)',
277269
link: '/guide/typescript/composition-api'
278270
},
279271
{
280-
text: '옵션 API와 타입스크립트',
272+
text: '⚠️옵션 API & TS (미완료)',
281273
link: '/guide/typescript/options-api'
282274
}
283275
]
@@ -302,19 +294,19 @@ export const sidebar = {
302294
link: '/guide/extras/rendering-mechanism'
303295
},
304296
{
305-
text: 'Render Functions & JSX',
297+
text: '⚠️렌더 함수 & JSX (영문)',
306298
link: '/guide/extras/render-function'
307299
},
308300
{
309-
text: 'Vue 와 웹 컴포넌트',
301+
text: '⚠️Vue와 웹 컴포넌트 (영문)',
310302
link: '/guide/extras/web-components'
311303
},
312304
{
313305
text: '애니메이션 기법',
314306
link: '/guide/extras/animation'
315307
},
316308
{
317-
text: '반응형 변환',
309+
text: '⚠️반응형 변환 (영문)',
318310
link: '/guide/extras/reactivity-transform'
319311
}
320312
// {
@@ -412,10 +404,10 @@ export const sidebar = {
412404
{
413405
text: '고급 APIs',
414406
items: [
415-
{ text: 'Render 함수', link: '/api/render-function' },
416-
{ text: 'Server-Side Rendering', link: '/api/ssr' },
417-
{ text: 'TypeScript Utility Types', link: '/api/utility-types' },
418-
{ text: 'Custom Renderer', link: '/api/custom-renderer' }
407+
{ text: '⚠️렌더 함수 (영문)', link: '/api/render-function' },
408+
{ text: '⚠️서버 사이드 렌더링 (영문)', link: '/api/ssr' },
409+
{ text: '⚠️TypeScript 유틸리티 타입 (영문)', link: '/api/utility-types' },
410+
{ text: '⚠️커스텀 렌더러 (영문)', link: '/api/custom-renderer' }
419411
]
420412
}
421413
],
@@ -555,7 +547,7 @@ export default defineConfigWithTheme<ThemeConfig>({
555547

556548
lang: 'ko-KR',
557549
title: 'Vue.js',
558-
description: 'Vue.js - The Progressive JavaScript Framework',
550+
description: 'Vue.js - 프로그래시브 자바스크립트 프레임워크',
559551
srcDir: 'src',
560552
// base: '/docs-next/',
561553
srcExclude: ['tutorial/**/description.md'],
@@ -617,7 +609,7 @@ export default defineConfigWithTheme<ThemeConfig>({
617609

618610
socialLinks: [
619611
{ icon: 'languages', link: '/translations/' },
620-
{ icon: 'github', link: 'https://github.com/vuejs/' },
612+
{ icon: 'github', link: 'https://github.com/vuejs-kr/docs-next' },
621613
{ icon: 'twitter', link: 'https://twitter.com/vuejs' },
622614
{ icon: 'discord', link: 'https://discord.com/invite/HBherRA' }
623615
],

ko-KR/src/api/ApiIndex.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ function slugify(text: string): string {
6868
<template>
6969
<div id="api-index">
7070
<div class="header">
71-
<h1>API Reference</h1>
71+
<h1>API 레퍼런스</h1>
7272
<div class="api-filter">
73-
<label for="api-filter">Filter</label>
73+
<label for="api-filter">필터</label>
7474
<input
7575
type="search"
76-
placeholder="Enter keyword"
76+
placeholder="키워드를 입력하세요"
7777
id="api-filter"
7878
v-model="query"
7979
/>
@@ -103,7 +103,7 @@ function slugify(text: string): string {
103103
</div>
104104

105105
<div v-if="!filtered.length" class="no-match">
106-
No API matching "{{ query }}" found.
106+
"{{ query }}"와 매칭되는 API를 찾지 못했습니다.
107107
</div>
108108
</div>
109109
</template>

ko-KR/src/api/index.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,5 @@ footer: false
88
<script setup>
99
import ApiIndex from './ApiIndex.vue'
1010
</script>
11-
:::warning 현재 이 문서는 번역 작업이 진행중입니다
12-
:::
13-
1411

1512
<ApiIndex />

ko-KR/src/guide/best-practices/performance.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Vue는 수동 최적화가 크게 필요하지 않은 가장 일반적인 사용
2727

2828
- Vue를 다양한 방식으로 활용하는 방법을 보려면 [Vue 사용 방법](/guide/extras/ways-of-using-vue.html)을 참고하세요.
2929

30-
[comment]: <> (/guide/extras/ways-of-using-vue.md 번역 후 링크 수정 필요)
31-
3230
- Jason Miller의 블로그 [Application Holotypes](https://jasonformat.com/application-holotypes/)(앱 유형)에서 웹 앱의 유형과 이상적인 구현 및 제공에 대해 논의합니다.
3331

3432
## 프로파일링 옵션 (profiling options) {#profiling-options}

ko-KR/src/guide/built-ins/transition-group.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,6 @@ import ListStagger from './transition-demos/ListStagger.vue'
8484

8585
[전체 예제](/examples/#list-transition)
8686

87-
[comment]: <> (/examples 문서 번역 후 링크 수정 필요)
88-
8987
## 시차가 있는 목록 트랜지션 {#staggering-list-transitions}
9088

9189
데이터 속성을 통해 JavaScript 트랜지션과 통신함으로써 목록에서 트랜지션을 시차가 있게 할 수도 있습니다.

ko-KR/src/guide/components/props.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,6 @@ prop 유효성 검사에 실패하면 Vue는 콘솔에 경고를 출력합니다
517517
[타입 기반 props 선언](/api/sfc-script-setup.html#typescript-only-features) 시, Vue는 타입 문법을 적절한 prop 선언으로 컴파일하기 위해 최선을 다할 것입니다.
518518
예를 들어 `defineProps<{ msg: string }>``{ msg: { type: String, required: true }}`로 컴파일됩니다.
519519

520-
[comment]: <> (api 문서 번역 후 링크 확인 필요)
521-
522520
</div>
523521
<div class="options-api">
524522

ko-KR/src/guide/components/slots.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -404,8 +404,6 @@ function MyComponent(slots) {
404404

405405
사실 이것은 범위가 지정된 슬롯이 컴파일되는 방법과 수동 [렌더 함수](/guide/extras/render-function.html)에서 범위가 지정된 슬롯을 사용하는 방법에 매우 유사합니다.
406406

407-
[comment]: <> (/guide/extras/render-function.md 번역 후 링크 수정 필요)
408-
409407
`v-slot="slotProps"`가 슬롯 함수 특징과 어떻게 일치하는지 주목하십시오.
410408
함수의 인자와 마찬가지로 `v-slot`에서 분해 할당을 사용할 수 있습니다:
411409

ko-KR/src/guide/essentials/list.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,6 @@ data() {
227227

228228
:::warning 참고
229229
`v-if``v-for`를 함께 사용하는 것은 **권장되지 않습니다**.
230-
231-
[comment]: <> (자세한 내용은 [스타일 가이드]&#40;/style-guide/rules-essential.html#avoid-v-if-with-v-for&#41;를 참조하세요.)
232230
:::
233231

234232
이것들이 같은 노드에 존재할 때 `v-if``v-for`보다 우선순위가 높기 때문에 `v-if` 조건문에서 `v-for` 변수에 접근할 수 없습니다:

ko-KR/src/guide/extras/composition-api-faq.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ Vue를 컴포지션 API와 함께 사용하는 방법을 배우고 싶다면 왼
6565
컴포지션 API의 로직 재사용 기능은 구성화 유틸리티의 계속 성장하는 컬렉션인 [VueUse](https://vueuse.org/)와 같은 인상적인 커뮤니티 프로젝트를 탄생시켰습니다.
6666
또한 상태 저장 타사 서비스 또는 라이브러리를 [불변 데이터](/guide/extras/reactivity-in-depth.html#immutable-data), [상태 머신](/guide/extras/reactivity-in-depth.html#state-machines)[RxJS](https://vueuse.org/rxjs/readme.html#vueuse-rxjs)와 같은 Vue의 반응형 시스템에 쉽게 통합하기 위한 깔끔한 메커니즘 역할을 합니다.
6767

68-
[comment]: <> (/guide/extras/reactivity-in-depth.md 번역 후 링크 수정 필요)
69-
[comment]: <> (/guide/extras/reactivity-in-depth.md 번역 후 링크 수정 필요)
70-
7168
### 보다 유연한 코드 구성
7269

7370
많은 사용자는 기본적으로 옵션 API를 사용하여 조직화된 코드를 작성하는 것을 좋아합니다.

ko-KR/src/guide/extras/custom-renderer.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)