Skip to content

Commit 540bef8

Browse files
committed
Update copy
1 parent 3a207f7 commit 540bef8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

WordPress/Classes/ViewRelated/Me/App Settings/ExperimentalFeaturesDataProvider.swift

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ExperimentalFeaturesDataProvider: ExperimentalFeaturesViewModel.DataProvid
6161

6262
if feature.key == FeatureFlag.pulse.key && newValue {
6363
let alert = UIAlertController(title: Strings.pulseAlertTitle, message: Strings.pulseAlertMessage, preferredStyle: .alert)
64-
alert.addAction(UIAlertAction(title: Strings.pulseAlertCancel, style: .cancel, handler: { _ in
64+
alert.addAction(UIAlertAction(title: SharedStrings.Button.cancel, style: .cancel, handler: { _ in
6565
self.flagStore.override(self.flag(for: feature), withValue: false)
6666
}))
6767
alert.addAction(UIAlertAction(title: Strings.pulseAlertConfirm, style: .default, handler: { _ in
@@ -97,9 +97,8 @@ class ExperimentalFeaturesDataProvider: ExperimentalFeaturesViewModel.DataProvid
9797
static let editorFeedbackAccept = NSLocalizedString("experimentalFeatures.editorFeedbackAccept", value: "Send feedback", comment: "Accept button title for the alert asking for feedback")
9898
static let editorNote = NSLocalizedString("experimentalFeatures.editorNote", value: "Experimental Block Editor will become the default in a future release and the ability to disable it will be removed.", comment: "Communicates the future removal of the option to disable the experimental editor, displayed beneath the experimental features list")
9999

100-
static let pulseAlertTitle = NSLocalizedString("experimentalFeatures.pulse.alert.title", value: "Enable Pulse Logging?", comment: "Alert title when enabling Pulse logging feature")
101-
static let pulseAlertMessage = NSLocalizedString("experimentalFeatures.pulse.alert.message", value: "This will enable extensive local logging for debugging purposes and add a new Logger row in App Settings. This is not recommended unless you know what you're doing. The app will restart to apply changes.", comment: "Alert message explaining Pulse logging feature and warning users")
102-
static let pulseAlertConfirm = NSLocalizedString("experimentalFeatures.pulse.alert.confirm", value: "Apply & Restart", comment: "Button to confirm enabling Pulse logging and restart the app")
103-
static let pulseAlertCancel = NSLocalizedString("experimentalFeatures.pulse.alert.cancel", value: "Cancel", comment: "Button to cancel enabling Pulse logging")
100+
static let pulseAlertTitle = NSLocalizedString("experimentalFeatures.extensiveLogging.alert.title", value: "Enable Extensive Logging?", comment: "Alert title when enabling Pulse logging feature")
101+
static let pulseAlertMessage = NSLocalizedString("experimentalFeatures.extensiveLogging.alert.message", value: "This will enable extensive local logging for debugging purposes and add a new Logger row in App Settings. This is not recommended unless you know what you're doing. The app will restart to apply changes.", comment: "Alert message explaining Pulse logging feature and warning users")
102+
static let pulseAlertConfirm = NSLocalizedString("experimentalFeatures.extensiveLogging.alert.confirm", value: "Apply & Restart", comment: "Button to confirm enabling Pulse logging and restart the app")
104103
}
105104
}

0 commit comments

Comments
 (0)