Skip to content

Commit 8b61323

Browse files
authored
Merge 19.1 notes VoiceOver and Dynamic Type capitalization fix (#17837)
2 parents 1efd4e4 + a65ad7f commit 8b61323

5 files changed

Lines changed: 16 additions & 9 deletions

File tree

WordPress/Jetpack/Resources/AppStoreStrings.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ msgstr ""
4040

4141
msgctxt "v19.1-whats-new"
4242
msgid ""
43-
"Only gave the app limited access to your media library? No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in dynamic type for easy reading.\n"
43+
"Only gave the app limited access to your media library? No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in Dynamic Type for easy reading.\n"
4444
"\n"
45-
"We also made voiceover and dynamic type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.\n"
45+
"We also made VoiceOver and Dynamic Type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.\n"
4646
"\n"
4747
"Speaking of better user experience, you can now moderate individual comments on a post through a drop-down menu.\n"
4848
"\n"

WordPress/Jetpack/Resources/release_notes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Only gave the app limited access to your media library? No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in dynamic type for easy reading.
1+
Only gave the app limited access to your media library? No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in Dynamic Type for easy reading.
22

3-
We also made voiceover and dynamic type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.
3+
We also made VoiceOver and Dynamic Type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.
44

55
Speaking of better user experience, you can now moderate individual comments on a post through a drop-down menu.
66

WordPress/Resources/AppStoreStrings.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ msgctxt "v19.1-whats-new"
3838
msgid ""
3939
"We solved a problem where self-hosted sites would crash while trying to upload media without an Internet connection. Big yikes, but big fix.\n"
4040
"\n"
41-
"Speaking of media, we know you might have given the app limited access to your media library. No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in dynamic type for easy reading.\n"
41+
"Speaking of media, we know you might have given the app limited access to your media library. No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in Dynamic Type for easy reading.\n"
4242
"\n"
43-
"We also made voiceover and dynamic type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.\n"
43+
"We also made VoiceOver and Dynamic Type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.\n"
4444
"\n"
4545
"Big news for Comments: you can now follow a conversation using a button in the Comments header and moderate individual comments through a drop-down menu.\n"
4646
"\n"

WordPress/Resources/release_notes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
We solved a problem where self-hosted sites would crash while trying to upload media without an Internet connection. Big yikes, but big fix.
22

3-
Speaking of media, we know you might have given the app limited access to your media library. No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in dynamic type for easy reading.
3+
Speaking of media, we know you might have given the app limited access to your media library. No big deal, but we added a prompt to the media picker in case you want to change your settings and allow more access. The prompt even comes in Dynamic Type for easy reading.
44

5-
We also made voiceover and dynamic type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.
5+
We also made VoiceOver and Dynamic Type more accurate on Activity Log and Schedule Post calendars. We’re happy to report that this improves the user experience for folks who need better visual accessibility.
66

77
Big news for Comments: you can now follow a conversation using a button in the Comments header and moderate individual comments through a drop-down menu.
88

fastlane/Jetpack-Fastfile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,14 @@ lane :download_jetpack_localized_app_store_metadata do
169169
# internally.
170170
sh './download_metadata.swift jetpack'
171171

172-
jetpack_metadata_glob = File.join(PROJECT_ROOT_FOLDER, 'fastlane', 'jetpack_metadata/**/*.txt')
172+
# GlotPress doesn't have the English notes because, being already in English,
173+
# they do not require a translation. As such, we simply copy the source of
174+
# truth file into the Fastlane metadata folder.
175+
metadata_directory = File.join(PROJECT_ROOT_FOLDER, 'fastlane', 'jetpack_metadata')
176+
release_notes_source = File.join(PROJECT_ROOT_FOLDER, 'WordPress', 'Jetpack', 'Resources', 'release_notes.txt')
177+
FileUtils.cp(release_notes_source, File.join(metadata_directory, 'en-US', 'release_notes.txt'))
178+
179+
jetpack_metadata_glob = File.join(metadata_directory, '**/*.txt')
173180

174181
no_files_changed = sh "git status #{jetpack_metadata_glob}" do |_, output, _|
175182
output.include? 'nothing to commit'

0 commit comments

Comments
 (0)