인 앱 결제 라벨을 다국어 문자열로 교체

This commit is contained in:
Yu Sung
2025-12-20 00:02:29 +09:00
parent dd51a3fc2e
commit 6a7497af7d
2 changed files with 7 additions and 1 deletions

View File

@@ -300,6 +300,12 @@ enum I18n {
} }
} }
enum Charge {
static var inAppPurchase: String {
pick(ko: "인 앱 결제", en: "In-app purchase", ja: "アプリ内決済")
}
}
// / // /
enum CanCoupon { enum CanCoupon {
// //

View File

@@ -163,7 +163,7 @@ struct CanChargeTabView: View {
) )
CanChargeTab( CanChargeTab(
title: "인 앱 결제", title: I18n.Charge.inAppPurchase,
action: { action: {
if currentTab != .iap { if currentTab != .iap {
currentTab = .iap currentTab = .iap