Skip to content

Commit

Permalink
Merge pull request #11042 from wordpress-mobile/release/11.8
Browse files Browse the repository at this point in the history
Merge Release/11.8 into develop
  • Loading branch information
loremattei authored Feb 14, 2019
2 parents 88784d1 + 31be56c commit a3101ce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ extension SiteSegmentsCell: Accessible {
}

private func prepareIconForVoiceOver() {
icon.accessibilityLabel = NSLocalizedString("Icon representing ", comment: "Accessibility description for Site Segment icon. Will be followed by the kind of site") + (model?.title ?? NSLocalizedString("Kind of site", comment: "Default accessibilty label for an unknown kind of site "))
let format = NSLocalizedString("Icon representing %@", comment: "Accessibility description for Site Segment icon. The %@ is a placeholder for the name of the kind of site. If the kind of site is unknown the phrase 'kind of site' is used.")
let site = model?.title ?? NSLocalizedString("Kind of site", comment: "Default accessibilty label for an unknown kind of site.")
icon.accessibilityLabel = String(format: format, site )
icon.accessibilityTraits = .image
}
}
14 changes: 5 additions & 9 deletions WordPress/Resources/AppStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,12 @@ msgctxt "app_store_keywords"
msgid "social,network,notes,jetpack,photos,writing,geotagging,media,blog,wordpress,website,blogging,design\n"
msgstr ""

msgctxt "v11.7-whats-new"
msgctxt "v11.8-whats-new"
msgid ""
"For this release, we’ve smoothed out the experience in a few more areas:\n"
"\n"
"- Added support for password autofill when entering a username during login.\n"
"- Added clarification text about empty messages when sharing posts to social media. If you don’t provide a message, we’ll use the post title by default.\n"
"- We now automatically save your draft before showing you a preview.\n"
"- Fixed an issue causing big spaces on top of (or below) some images in Reader.\n"
"- Fixed an indentation bug in the Pages list for private pages.\n"
"- Fixed a visual bug affecting the Posts list at large text sizes.\n"
"- You can now share a site via Reader.\n"
"- Fixed a bug in which editing a local copy of a draft post, then discarding changes, would result in deleting the post.\n"
"- Fixed a bug in Reader that caused the app to crash when showing a post with a video.\n"
"- Fixed some UI layout errors where elements overlapped or had wrong sizes.\n"
msgstr ""

#. translators: This is a standard chunk of text used to tell a user what's new with a release when nothing major has changed.
Expand Down
10 changes: 4 additions & 6 deletions WordPress/Resources/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
* Fix a bug where sometimes editing a local copy of a draft post, then discarding changes, would delete the whole post instead. #10248
* Fixed an issue where some cells in Activity Log would lay out incorrectly
* Improved styling of Headers in the post editor
* Adds support for sharing a blog via Reader.
* Fixed a crash in reader caused by a video with a fallback image.
* Fixed some over lapping buttons and cropped text when viewing the reader with the Larger Text accessibility setting enabled.
- You can now share a site via Reader.
- Fixed a bug in which editing a local copy of a draft post, then discarding changes, would result in deleting the post.
- Fixed a bug in Reader that caused the app to crash when showing a post with a video.
- Fixed some UI layout errors where elements overlapped or had wrong sizes.

0 comments on commit a3101ce

Please sign in to comment.