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 && ( ) )} @@ -94,7 +94,7 @@ export function Challenge({ )} onClick={handleClickNextChallenge} active> - Next {isRecipes ? 'Example' : 'Challenge'} + 다음 {isRecipes ? '예제' : '챌린지'}