인 앱 결제 라벨을 다국어 문자열로 교체
This commit is contained in:
@@ -300,6 +300,12 @@ enum I18n {
|
||||
}
|
||||
}
|
||||
|
||||
enum Charge {
|
||||
static var inAppPurchase: String {
|
||||
pick(ko: "인 앱 결제", en: "In-app purchase", ja: "アプリ内決済")
|
||||
}
|
||||
}
|
||||
|
||||
// 쿠폰 등록/사용 화면 관련 텍스트
|
||||
enum CanCoupon {
|
||||
// 화면 타이틀
|
||||
|
||||
@@ -163,7 +163,7 @@ struct CanChargeTabView: View {
|
||||
)
|
||||
|
||||
CanChargeTab(
|
||||
title: "인 앱 결제",
|
||||
title: I18n.Charge.inAppPurchase,
|
||||
action: {
|
||||
if currentTab != .iap {
|
||||
currentTab = .iap
|
||||
|
||||
Reference in New Issue
Block a user