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 = {
216216 "영어" : "English" ,
217217 "한국어" : "Korean" ,
218218 "일본어" : "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" ,
219231}
220232
221233export default EnglishTranslation
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const SessionDetail: React.FC<{ session: APIPretalxSessions[0] }> = ({ session }
5555 < p >
5656 < TagContainer >
5757 < div style = { { margin : 0 } } > { t ( '태그' ) } :</ div >
58- { session . tags . map ( tag => < Tag key = { tag } > { tag } </ Tag > ) }
58+ { session . tags . map ( tag => < Tag key = { tag } > { t ( tag ) } </ Tag > ) }
5959 { session . do_not_record && < Tag > { t ( '녹화 불가' ) } </ Tag > }
6060 </ TagContainer >
6161 </ p >
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const SessionItem: React.FC<{ session: APIPretalxSessions[0] }> = ({ session })
2929 < p > { session . abstract } </ p >
3030 < SessionSpeakerContainer > by { session . speakers . map ( ( speaker ) => < kbd key = { speaker . code } > { speaker . name } </ kbd > ) } </ SessionSpeakerContainer >
3131 < TagContainer >
32- { session . tags . map ( tag => < Tag key = { tag } > { tag } </ Tag > ) }
32+ { session . tags . map ( tag => < Tag key = { tag } > { t ( tag ) } </ Tag > ) }
3333 { session . do_not_record && < Tag > { t ( '녹화 불가' ) } </ Tag > }
3434 </ TagContainer >
3535 </ SessionItemInfoContainer >
@@ -58,7 +58,7 @@ export const SessionListPage = () => {
5858 < TagFilterBtnContainer >
5959 < div >
6060 { tags . map ( ( tag ) => < TagFilterBtn key = { tag } onClick = { ( ) => setOrUnsetTag ( tag ) } className = { tag === currentTag ? 'selected' : '' } >
61- { tag }
61+ { t ( tag ) }
6262 </ TagFilterBtn > ) }
6363 </ div >
6464 </ TagFilterBtnContainer >
You can’t perform that action at this time.
0 commit comments