Skip to content

Commit 69d514c

Browse files
Merge pull request #18587 from wordpress-mobile/task/18586-qs-jetpack-tour-title
Change: rename quick start tour title on Jetpack
2 parents 87753a2 + e6486ce commit 69d514c

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

WordPress/Classes/Utility/App Configuration/AppConstants.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,9 @@ extension AppConstants {
5959
struct Zendesk {
6060
static let ticketSubject = NSLocalizedString("WordPress for iOS Support", comment: "Subject of new Zendesk ticket.")
6161
}
62+
63+
struct QuickStart {
64+
static let getToKnowTheAppTourTitle = NSLocalizedString("Get to know the WordPress app",
65+
comment: "Name of the Quick Start list that guides users through a few tasks to explore the WordPress app.")
66+
}
6267
}

WordPress/Classes/ViewRelated/Blog/QuickStartToursCollection.swift

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,9 @@ struct QuickStartGetToKnowAppCollection: QuickStartToursCollection {
6767
let tours: [QuickStartTour]
6868

6969
init(blog: Blog) {
70-
self.title = NSLocalizedString("Get to know the WordPress app",
71-
comment: "Name of the Quick Start list that guides users through a few tasks to explore the WordPress app.")
70+
self.title = AppConstants.QuickStart.getToKnowTheAppTourTitle
7271
self.hint = NSLocalizedString("A series of steps helping you to explore the app.",
73-
comment: "A VoiceOver hint to explain what the user gets when they select the 'Get to know the WordPress app' button.")
72+
comment: "A VoiceOver hint to explain what the user gets when they select the 'Get to know the WordPress/Jetpack app' button.")
7473
self.completedImageName = "wp-illustration-tasks-complete-site"
7574
self.analyticsKey = "get-to-know"
7675
self.tours = [

WordPress/Jetpack/AppConstants.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,9 @@ extension AppConstants {
5656
struct Zendesk {
5757
static let ticketSubject = NSLocalizedString("Jetpack for iOS Support", comment: "Subject of new Zendesk ticket.")
5858
}
59+
60+
struct QuickStart {
61+
static let getToKnowTheAppTourTitle = NSLocalizedString("Get to know the Jetpack app",
62+
comment: "Name of the Quick Start list that guides users through a few tasks to explore the Jetpack app.")
63+
}
5964
}

0 commit comments

Comments
 (0)