Skip to content

Commit b3b1a70

Browse files
authored
Translate: CodeEditor and CodeExample (#361)
* Translate: CodeEditor and CodeExample * Prettier CodeEditor.js
1 parent 630f00e commit b3b1a70

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/components/CodeEditor/CodeEditor.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ class CodeEditor extends Component {
6262
if (showBabelErrorMessage) {
6363
errorMessage = (
6464
<span>
65-
Babel could not be loaded.
65+
Babel을 로드할 수 없습니다.
6666
<br />
6767
<br />
68-
This can be caused by an ad blocker. If you're using one, consider
69-
adding reactjs.org to the whitelist so the live code examples will
70-
work.
68+
광고 차단기가 문제의 원인일 수 있습니다. 광고 차단기를 사용하고 있다면
69+
라이브 코드 예제가 잘 동작할 수 있도록 reactjs.org를 화이트 리스트에
70+
추가해주세요.
7171
</span>
7272
);
7373
} else if (error != null) {
@@ -105,7 +105,7 @@ class CodeEditor extends Component {
105105
color: colors.white,
106106
}}>
107107
<MetaTitle onDark={true}>
108-
Live JSX Editor
108+
라이브 JSX 에디터
109109
<label
110110
css={{
111111
fontSize: 14,
@@ -175,7 +175,7 @@ class CodeEditor extends Component {
175175
cssProps={{
176176
color: colors.white,
177177
}}>
178-
Error
178+
에러
179179
</MetaTitle>
180180
</div>
181181
<pre
@@ -206,7 +206,7 @@ class CodeEditor extends Component {
206206
padding: '0 10px',
207207
backgroundColor: colors.divider,
208208
}}>
209-
<MetaTitle>Result</MetaTitle>
209+
<MetaTitle>결과</MetaTitle>
210210
</div>
211211
<div
212212
id={containerNodeID}

src/components/CodeExample/CodeExample.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class CodeExample extends Component<Props> {
7474
{loaded ? (
7575
<CodeEditor code={code} containerNodeID={containerNodeID} />
7676
) : (
77-
<h4>Loading code example...</h4>
77+
<h4>코드 예제를 읽어 들이는 중...</h4>
7878
)}
7979
</div>
8080
);

0 commit comments

Comments
 (0)