시리즈 상세 화면 현지화 문자열 제공

시리즈 상세 화면의 탭과 섹션 제목을 다국어로 제공한다.
가격 표시와 요일 표기를 로케일에 맞게 보여준다.
This commit is contained in:
Yu Sung
2025-12-19 18:30:52 +09:00
parent e035e57fc2
commit 27b024f187
4 changed files with 165 additions and 108 deletions

View File

@@ -174,7 +174,7 @@ struct SeriesDetailView: View {
HStack(spacing: 0) {
SeriesDetailTabView(
title: "",
title: I18n.SeriesDetail.home,
width: screenSize().width / 2,
isSelected: viewModel.currentTab == .home
) {
@@ -182,9 +182,9 @@ struct SeriesDetailView: View {
viewModel.currentTab = .home
}
}
SeriesDetailTabView(
title: "작품소개",
title: I18n.SeriesDetail.introduction,
width: screenSize().width / 2,
isSelected: viewModel.currentTab == .introduction
) {