diff --git a/src/components/DocsFooter.tsx b/src/components/DocsFooter.tsx index a5c7324e2..c75914a6a 100644 --- a/src/components/DocsFooter.tsx +++ b/src/components/DocsFooter.tsx @@ -80,7 +80,7 @@ function FooterLink({ /> - {type} + {type === 'Previous' ? '이전' : '다음'} {title} diff --git a/src/components/Layout/Feedback.tsx b/src/components/Layout/Feedback.tsx index 6bb8a4aac..5c0482771 100644 --- a/src/components/Layout/Feedback.tsx +++ b/src/components/Layout/Feedback.tsx @@ -63,7 +63,9 @@ function SendFeedback({onSubmit}: {onSubmit: () => void}) { return (

- {isSubmitted ? 'Thank you for your feedback!' : 'Is this page useful?'} + {isSubmitted + ? '피드백을 보내주셔서 감사합니다!' + : '이 페이지가 도움이 되었나요?'}

{!isSubmitted && (
) : ( @@ -80,7 +80,7 @@ export function Challenge({ onClick={toggleSolution} active={showSolution}> {' '} - {showSolution ? 'Hide solution' : 'Show solution'} + {showSolution ? '정답 숨기기' : '정답 보기'} ) )} @@ -94,7 +94,7 @@ export function Challenge({ )} onClick={handleClickNextChallenge} active> - Next {isRecipes ? 'Example' : 'Challenge'} + 다음 {isRecipes ? '예제' : '챌린지'} )} @@ -104,13 +104,11 @@ export function Challenge({ {showSolution && (

- Solution + 해설

{currentChallenge.solution}
- + {hasNextChallenge && (

- Ready to learn this topic? + 이 주제를 배울 준비가 되셨나요?

{children} {path ? ( @@ -122,7 +122,7 @@ function LearnMore({ label="Read More" href={path} type="primary"> - Read More + 더 보기 ) : null} @@ -173,7 +173,7 @@ function YouWillLearn({ children: any; isChapter?: boolean; }) { - let title = isChapter ? 'In this chapter' : 'You will learn'; + let title = isChapter ? '이 장에서는' : '학습 내용'; return {children}; } diff --git a/src/components/MDX/Recap.tsx b/src/components/MDX/Recap.tsx index d91ed48b4..9c5b08c8d 100644 --- a/src/components/MDX/Recap.tsx +++ b/src/components/MDX/Recap.tsx @@ -13,7 +13,7 @@ function Recap({children}: RecapProps) { return (

- Recap + 요약

{children}
diff --git a/src/components/Tag.tsx b/src/components/Tag.tsx index 7033e030a..844273755 100644 --- a/src/components/Tag.tsx +++ b/src/components/Tag.tsx @@ -7,23 +7,23 @@ import type {RouteTag} from './Layout/getRouteMeta'; const variantMap = { foundation: { - name: 'Foundation', + name: '기초', classes: 'bg-yellow-50 text-white', }, intermediate: { - name: 'Intermediate', + name: '중급', classes: 'bg-purple-40 text-white', }, advanced: { - name: 'Advanced', + name: '심화', classes: 'bg-green-40 text-white', }, experimental: { - name: 'Experimental', + name: '실험적', classes: 'bg-ui-orange text-white', }, deprecated: { - name: 'Deprecated', + name: '더 이상 사용되지 않음', classes: 'bg-red-40 text-white', }, };