File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,18 @@ const EnglishTranslation = {
216
216
"영어" : "English" ,
217
217
"한국어" : "Korean" ,
218
218
"일본어" : "Japanese" ,
219
+ "교육" : "Education" ,
220
+ "데이터 과학" : "Data Science" ,
221
+ "라이브러리 / 코어" : "Library / Core" ,
222
+ "보안" : "Security" ,
223
+ "블록체인" : "Blockchain" ,
224
+ "실무" : "Work" ,
225
+ "오픈소스 / 커뮤니티" : "Open Source / Community" ,
226
+ "웹 서비스" : "Web Service" ,
227
+ "인공지능" : "Artificial Intelligence" ,
228
+ "일상 / 사회" : "Daily life / Society" ,
229
+ "자동화" : "Automation" ,
230
+ "컴퓨터 비전" : "Computer Vision" ,
219
231
}
220
232
221
233
export default EnglishTranslation
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ const SessionDetail: React.FC<{ session: APIPretalxSessions[0] }> = ({ session }
56
56
< p >
57
57
< TagContainer >
58
58
< div style = { { margin : 0 } } > { t ( '태그' ) } :</ div >
59
- { session . tags . map ( tag => < Tag key = { tag } > { tag } </ Tag > ) }
59
+ { session . tags . map ( tag => < Tag key = { tag } > { t ( tag ) } </ Tag > ) }
60
60
{ session . do_not_record && < Tag > { t ( '녹화 불가' ) } </ Tag > }
61
61
</ TagContainer >
62
62
</ p >
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const SessionItem: React.FC<{ session: APIPretalxSessions[0] }> = ({ session })
29
29
< p > { session . abstract } </ p >
30
30
< SessionSpeakerContainer > by { session . speakers . map ( ( speaker ) => < kbd key = { speaker . code } > { speaker . name } </ kbd > ) } </ SessionSpeakerContainer >
31
31
< TagContainer >
32
- { session . tags . map ( tag => < Tag key = { tag } > { tag } </ Tag > ) }
32
+ { session . tags . map ( tag => < Tag key = { tag } > { t ( tag ) } </ Tag > ) }
33
33
{ session . do_not_record && < Tag > { t ( '녹화 불가' ) } </ Tag > }
34
34
</ TagContainer >
35
35
</ SessionItemInfoContainer >
@@ -58,7 +58,7 @@ export const SessionListPage = () => {
58
58
< TagFilterBtnContainer >
59
59
< div >
60
60
{ tags . map ( ( tag ) => < TagFilterBtn key = { tag } onClick = { ( ) => setOrUnsetTag ( tag ) } className = { tag === currentTag ? 'selected' : '' } >
61
- { tag }
61
+ { t ( tag ) }
62
62
</ TagFilterBtn > ) }
63
63
</ div >
64
64
</ TagFilterBtnContainer >
You can’t perform that action at this time.
0 commit comments