feat(i18n): 탐색 프로필 하드코딩 문구를 I18n 키로 통일한다
This commit is contained in:
@@ -83,7 +83,7 @@ struct UserProfileLiveView: View {
|
||||
.clipShape(Circle())
|
||||
} else {
|
||||
VStack(spacing: 0) {
|
||||
Text("\(dateDic["month"] ?? "")월")
|
||||
Text(I18n.Explorer.month(dateDic["month"] ?? ""))
|
||||
.appFont(size: 14, weight: .bold)
|
||||
.foregroundColor(.white)
|
||||
.padding(.vertical, 6)
|
||||
@@ -102,7 +102,7 @@ struct UserProfileLiveView: View {
|
||||
}
|
||||
|
||||
if item.isReservation {
|
||||
Text("예약완료")
|
||||
Text(I18n.Explorer.reservationDone)
|
||||
.appFont(size: 12, weight: .bold)
|
||||
.foregroundColor(Color.white)
|
||||
.padding(4)
|
||||
@@ -125,7 +125,7 @@ struct UserProfileLiveView: View {
|
||||
.background(Color(hex: "3b5ff1"))
|
||||
.cornerRadius(4)
|
||||
} else {
|
||||
Text("무료")
|
||||
Text(I18n.CreateContent.free)
|
||||
.appFont(size: 14, weight: .regular)
|
||||
.foregroundColor(Color(hex: "#263238"))
|
||||
.padding(4)
|
||||
|
||||
Reference in New Issue
Block a user