Skip to content

Commit eb02a90

Browse files
committed
장소 안내 누락된 라벨 추가
1 parent b9ef4ee commit eb02a90

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

frontend/locales/en/label.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,7 @@ export default {
5858
floorInfo: 'Floor Information',
5959
youtubeStreaming:
6060
'PyCon Korea 2022 will be held both online and offline. The talks will be streamed on the PyCon Korea YouTube(https://www.youtube.com/c/PyConKRtube).',
61-
pyConKrYoutube: 'PyCon Korea YouTube'
61+
pyConKrYoutube: 'PyCon Korea YouTube',
62+
firstFloor: 'First Floor',
63+
secondFloor: 'Second Floor'
6264
}

frontend/locales/ko/label.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,7 @@ export default {
6363
floorInfo: '층별 안내',
6464
youtubeStreaming:
6565
'파이콘 한국 2022는 파이콘 한국 유튜브 채널(https://www.youtube.com/c/PyConKRtube)에서 시청 가능합니다. 세션은 온라인과 오프라인 동시에 진행됩니다.',
66-
pyConKrYoutube: '파이콘 한국 유튜브'
66+
pyConKrYoutube: '파이콘 한국 유튜브',
67+
firstFloor: '1층',
68+
secondFloor: '2층'
6769
}

frontend/pages/about/venue.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ const TalkSchedule: NextPage = (props: PageProps) => {
5757
</ul>
5858
</Description>
5959
<Heading3 useGradient={true}>{t('label:floorInfo')}</Heading3>
60-
<FloorTitle>1층</FloorTitle>
60+
<FloorTitle>{t('label:firstFloor')}</FloorTitle>
6161
<ImageBlock src={FirstFloorMap} alt={'First Floor Image'} />
62-
<FloorTitle>2층</FloorTitle>
62+
<FloorTitle>{t('label:secondFloor')}</FloorTitle>
6363
<ImageBlock src={SecondFloorMap} alt={'Second Floor Image'} />
6464
</VenueInfo>
6565
</>

0 commit comments

Comments
 (0)