feat(i18n): 온보딩 시작하기 문구를 I18n 키로 통일한다

This commit is contained in:
Yu Sung
2026-04-01 17:53:03 +09:00
parent 1ec56a1f15
commit 43c86a627b
3 changed files with 54 additions and 14 deletions

View File

@@ -3906,6 +3906,12 @@ If you block this user, the following features will be restricted.
}
}
enum Onboarding {
static var startAction: String {
pick(ko: "시작하기", en: "Get started", ja: "始める")
}
}
enum MyPage {
enum Common {
static var totalPrefix: String {

View File

@@ -47,7 +47,7 @@ struct OnboardingView: View {
UIPageControl.appearance().currentPageIndicatorTintColor = UIColor(hex: "1313BC")
}
Text("시작하기")
Text(I18n.Onboarding.startAction)
.appFont(size: 18.3, weight: .bold)
.foregroundColor(.white)
.frame(width: screenSize().width, height: 60)