diff --git a/wake.xcodeproj/project.pbxproj b/wake.xcodeproj/project.pbxproj index 81bc9bf..92fbba3 100644 --- a/wake.xcodeproj/project.pbxproj +++ b/wake.xcodeproj/project.pbxproj @@ -343,9 +343,8 @@ GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = wake/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = ""; - INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to take photos"; - INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need access to your photo library to select photos"; - INFOPLIST_KEY_NSUserTrackingUsageDescription = "我们需要访问您的Apple ID信息来为您提供登录服务"; + INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to capture your profile picture"; + INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need to access your photo library to select photos as avatars or blind box inputs"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; @@ -378,9 +377,8 @@ GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = wake/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = ""; - INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to take photos"; - INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need access to your photo library to select photos"; - INFOPLIST_KEY_NSUserTrackingUsageDescription = "我们需要访问您的Apple ID信息来为您提供登录服务"; + INFOPLIST_KEY_NSCameraUsageDescription = "We need access to your camera to capture your profile picture"; + INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "We need to access your photo library to select photos as avatars or blind box inputs"; INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; INFOPLIST_KEY_UILaunchScreen_Generation = YES; diff --git a/wake/View/OnBoarding/UserInfo.swift b/wake/View/OnBoarding/UserInfo.swift index 0971336..a191530 100644 --- a/wake/View/OnBoarding/UserInfo.swift +++ b/wake/View/OnBoarding/UserInfo.swift @@ -120,7 +120,7 @@ struct UserInfo: View { // Content VStack VStack(spacing: 20) { // Title - Text(showUsername ? "What's Your Name?" : "Add Your Avatar") + Text(showUsername ? "Enter your favorite nickname" : "Add Your Avatar") .font(Typography.font(for: .body, family: .quicksandBold)) .frame(maxWidth: .infinity, alignment: .center) diff --git a/wake/View/Subscribe/SubscribeView.swift b/wake/View/Subscribe/SubscribeView.swift index 0342efa..d696c70 100644 --- a/wake/View/Subscribe/SubscribeView.swift +++ b/wake/View/Subscribe/SubscribeView.swift @@ -238,7 +238,7 @@ struct SubscribeView: View { HStack(spacing: 8) { Button(action: { // 打开服务条款 - if let url = URL(string: "https://memorywake.com/privacy-policy") { + if let url = URL(string: "https://letsp.memorywake.com/policy/user-agreement") { UIApplication.shared.open(url) } }) { @@ -251,7 +251,7 @@ struct SubscribeView: View { Button(action: { // 打开隐私政策 - if let url = URL(string: "https://memorywake.com/privacy-policy") { + if let url = URL(string: "https://letsp.memorywake.com/policy/privacy-policy") { UIApplication.shared.open(url) } }) { @@ -270,11 +270,11 @@ struct SubscribeView: View { // } Button(action: { // 打开隐私政策 - if let url = URL(string: "https://memorywake.com/privacy-policy") { + if let url = URL(string: "https://letsp.memorywake.com/policy/membership-agreement") { UIApplication.shared.open(url) } }) { - Text("AI Usage Guidelines") + Text("Membership Agreement") .underline() }