Skip to content

Commit e2e9786

Browse files
authored
Add editorialized release notes for 21.2 + a strings fix (#19605)
2 parents 009f4ed + ed3a360 commit e2e9786

File tree

6 files changed

+20
-22
lines changed

6 files changed

+20
-22
lines changed

WordPress/Jetpack/Classes/ViewRelated/WordPress-to-Jetpack Migration/Common/Views/Configuration/MigrationHeaderConfiguration.swift

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,14 +100,18 @@ private extension MigrationHeaderConfiguration {
100100
comment: "Secondary description in the migration notifications screen")
101101

102102
static func welcomeSecondaryDescription(plural: Bool) -> String {
103-
let siteWord = plural ? "sites" : "site"
104-
let value = "We found your \(siteWord). Continue to transfer all your data and sign in to Jetpack automatically."
105103
if plural {
106-
let comment = "The plural form of the secondary description in the migration welcome screen"
107-
return NSLocalizedString("migration.welcome.secondaryDescription.plural", value: value, comment: comment)
104+
return NSLocalizedString(
105+
"migration.welcome.secondaryDescription.plural",
106+
value: "We found your sites. Continue to transfer all your data and sign in to Jetpack automatically.",
107+
comment: "The plural form of the secondary description in the migration welcome screen"
108+
)
108109
} else {
109-
let comment = "The singular form of the secondary description in the migration welcome screen"
110-
return NSLocalizedString("migration.welcome.secondaryDescription.singular", value: value, comment: comment)
110+
return NSLocalizedString(
111+
"migration.welcome.secondaryDescription.singular",
112+
value: "We found your site. Continue to transfer all your data and sign in to Jetpack automatically.",
113+
comment: "The singular form of the secondary description in the migration welcome screen"
114+
)
111115
}
112116
}
113117
}

WordPress/Jetpack/Resources/AppStoreStrings.po

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,9 @@ msgctxt "app_store_keywords"
8181
msgid "social,notes,jetpack,writing,geotagging,media,blog,website,blogging,journal"
8282
msgstr ""
8383

84-
msgctxt "v21.1-whats-new"
84+
msgctxt "v21.2-whats-new"
8585
msgid ""
86-
"Dynamic widgets are now on Jetpack. Get daily, weekly, and all-time stats on your device’s home screen. You’ll also notice a shiny new landing screen in the app that responds to your device’s motion.\n"
87-
"\n"
88-
"Voice Control is now easier to use in the block editor—when you’re working with Image blocks, use the Voice Control cursor to select the caption for text entry.\n"
86+
"We fixed the positioning of the “No media matching your search” message in the Media Library. It’s now visible when there are no search results. Keep calm and search on.\n"
8987
msgstr ""
9088

9189
#. translators: This is a promo message that will be attached on top of the first screenshot in the App Store.
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
* [*] [internal] Refactored fetching posts in the Reader tab. [#19539]
2-
* [*] Fixed an issue where the message "No media matching your search" for the media picker is not visible [#19555]
3-
1+
We fixed the positioning of the “No media matching your search” message in the Media Library. It’s now visible when there are no search results. Keep calm and search on.

WordPress/Resources/AppStoreStrings.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ msgctxt "app_store_keywords"
4545
msgid "blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs"
4646
msgstr ""
4747

48-
msgctxt "v21.1-whats-new"
48+
msgctxt "v21.2-whats-new"
4949
msgid ""
50-
"Voice Control is now easier to use in the block editor—when you’re working with Image blocks, use the Voice Control cursor to select the caption for text entry.\n"
50+
"We fixed the positioning of the “No media matching your search” message in the Media Library. It’s now visible when there are no search results. Keep calm and search on.\n"
5151
msgstr ""
5252

5353
#. translators: This is a standard chunk of text used to tell a user what's new with a release when nothing major has changed.

WordPress/Resources/en.lproj/Localizable.strings

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4818,11 +4818,11 @@
48184818
/* The primary description in the migration welcome screen */
48194819
"migration.welcome.primaryDescription" = "It looks like you’re switching from the WordPress app.";
48204820

4821-
/* No comment provided by engineer. */
4822-
"migration.welcome.secondaryDescription.plural" = "migration.welcome.secondaryDescription.plural";
4821+
/* The plural form of the secondary description in the migration welcome screen */
4822+
"migration.welcome.secondaryDescription.plural" = "We found your sites. Continue to transfer all your data and sign in to Jetpack automatically.";
48234823

4824-
/* No comment provided by engineer. */
4825-
"migration.welcome.secondaryDescription.singular" = "migration.welcome.secondaryDescription.singular";
4824+
/* The singular form of the secondary description in the migration welcome screen */
4825+
"migration.welcome.secondaryDescription.singular" = "We found your site. Continue to transfer all your data and sign in to Jetpack automatically.";
48264826

48274827
/* The title in the migration welcome screen */
48284828
"migration.welcome.title" = "Welcome to Jetpack!";
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
* [*] [internal] Refactored fetching posts in the Reader tab. [#19539]
2-
* [*] Fixed an issue where the message "No media matching your search" for the media picker is not visible [#19555]
3-
1+
We fixed the positioning of the “No media matching your search” message in the Media Library. It’s now visible when there are no search results. Keep calm and search on.

0 commit comments

Comments
 (0)