Skip to content

Commit 614506b

Browse files
alexkoalataehwanno
authored andcommitted
Translate Header text (#56)
* Translate header text * Translate search placeholder
1 parent ccdb422 commit 614506b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/components/LayoutHeader/DocSearch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class DocSearch extends Component<{}, State> {
9797
}}
9898
id="algolia-doc-search"
9999
type="search"
100-
placeholder="Search"
100+
placeholder="검색"
101101
aria-label="Search docs"
102102
/>
103103
</form>

src/components/LayoutHeader/Header.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -122,22 +122,22 @@ const Header = ({location}: {location: Location}) => (
122122
}}>
123123
<HeaderLink
124124
isActive={location.pathname.includes('/docs/')}
125-
title="Docs"
125+
title="문서"
126126
to="/docs/getting-started.html"
127127
/>
128128
<HeaderLink
129129
isActive={location.pathname.includes('/tutorial/')}
130-
title="Tutorial"
130+
title="자습서"
131131
to="/tutorial/tutorial.html"
132132
/>
133133
<HeaderLink
134134
isActive={location.pathname.includes('/blog')}
135-
title="Blog"
135+
title="블로그"
136136
to="/blog/"
137137
/>
138138
<HeaderLink
139139
isActive={location.pathname.includes('/community/')}
140-
title="Community"
140+
title="커뮤니티"
141141
to="/community/support.html"
142142
/>
143143
</nav>

0 commit comments

Comments
 (0)