diff --git a/beta/src/components/Layout/MarkdownPage.tsx b/beta/src/components/Layout/MarkdownPage.tsx index 78badc8e2..23f640076 100644 --- a/beta/src/components/Layout/MarkdownPage.tsx +++ b/beta/src/components/Layout/MarkdownPage.tsx @@ -44,21 +44,21 @@ export function MarkdownPage< return { url: '#challenges', depth: 0, - text: 'Challenges', + text: '도전', }; } if (child.props.mdxType === 'Recipes') { return { url: '#recipes', depth: 0, - text: 'Recipes', + text: '레시피', }; } if (child.props.mdxType === 'Recap') { return { url: '#recap', depth: 0, - text: 'Recap', + text: '요약', }; } return { @@ -73,7 +73,7 @@ export function MarkdownPage< if (anchors.length > 0) { anchors.unshift({ depth: 1, - text: 'Overview', + text: '개요', url: '#', }); } diff --git a/beta/src/components/Layout/Toc.tsx b/beta/src/components/Layout/Toc.tsx index 2fe40c7d8..c21810df6 100644 --- a/beta/src/components/Layout/Toc.tsx +++ b/beta/src/components/Layout/Toc.tsx @@ -26,7 +26,7 @@ export function Toc({ maxWidth: 'inherit', }}>

- On this page + 목차

) : ( @@ -162,7 +164,7 @@ export function Challenges({children, isRecipes}: ChallengesProps) { onClick={toggleSolution} active={showSolution}> {' '} - {showSolution ? 'Hide solution' : 'Show solution'} + {showSolution ? '해결책 숨기기' : '해결책 보기'} ) )} @@ -179,7 +181,7 @@ export function Challenges({children, isRecipes}: ChallengesProps) { setShowSolution(false); }} active> - Next {isRecipes ? 'Recipe' : 'Challenge'} + 다음 {isRecipes ? '레시피' : '도전'}

- Solution + 해결책

{currentChallenge?.solution}
{nextChallenge && (

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

{children} {path ? ( - Read More + 더 읽어보기 ) : null} @@ -136,7 +136,7 @@ function MathI({children}: {children: any}) { } function YouWillLearn({children}: {children: any}) { - return {children}; + return {children}; } // TODO: typing. diff --git a/beta/src/components/MDX/Recap.tsx b/beta/src/components/MDX/Recap.tsx index d91ed48b4..9c5b08c8d 100644 --- a/beta/src/components/MDX/Recap.tsx +++ b/beta/src/components/MDX/Recap.tsx @@ -13,7 +13,7 @@ function Recap({children}: RecapProps) { return (

- Recap + 요약

{children}
diff --git a/beta/src/components/MDX/Sandpack/CustomPreset.tsx b/beta/src/components/MDX/Sandpack/CustomPreset.tsx index c4b72601f..98df49e00 100644 --- a/beta/src/components/MDX/Sandpack/CustomPreset.tsx +++ b/beta/src/components/MDX/Sandpack/CustomPreset.tsx @@ -99,7 +99,7 @@ export function CustomPreset({ className="inline mr-1.5 text-xl" displayDirection={isExpanded ? 'up' : 'down'} /> - {isExpanded ? 'Show less' : 'Show more'} + {isExpanded ? '숨기기' : '더 보기'} )} diff --git a/beta/src/components/MDX/YouWillLearnCard.tsx b/beta/src/components/MDX/YouWillLearnCard.tsx index b8b1261aa..926ecf184 100644 --- a/beta/src/components/MDX/YouWillLearnCard.tsx +++ b/beta/src/components/MDX/YouWillLearnCard.tsx @@ -28,7 +28,7 @@ function YouWillLearnCard({title, path, children}: YouWillLearnCardProps) { type="primary" size="md" label={title}> - Read More + 더 읽어보기
diff --git a/beta/src/components/Tag.tsx b/beta/src/components/Tag.tsx index d5687c86a..215ea52b4 100644 --- a/beta/src/components/Tag.tsx +++ b/beta/src/components/Tag.tsx @@ -8,23 +8,23 @@ import {RouteTag} from './Layout/useRouteMeta'; 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', }, };