Skip to content

Commit

Permalink
Merge branch 'wordpress-mobile:trunk' into Migrate-`CollapseFullScree…
Browse files Browse the repository at this point in the history
…nDialogFragment`-to-ViewBinding
  • Loading branch information
neeldoshii authored Jun 13, 2024
2 parents 20d74b8 + 6b164bb commit 480ec92
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 20 deletions.
20 changes: 11 additions & 9 deletions WordPress/jetpack_metadata/PlayStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ msgstr ""
"X-Generator: VsCode\n"
"Project-Id-Version: Jetpack - Apps - Android - Release Notes\n"

msgctxt "release_note_251"
msgid ""
"25.1:\n"
"We have no updates in a house.\n"
"We have no updates with a mouse.\n"
"We have no updates here or there.\n"
"We have no updates anywhere.\n"
"We have no updates to report.\n"
"If you need help, ask tech support.\n"
msgstr ""

msgctxt "release_note_250"
msgid ""
"25.0:\n"
Expand All @@ -18,15 +29,6 @@ msgid ""
"We fixed assorted crashes on the login and Posts List screens, as well as actions associated with blogging reminders, feature images, and user removal. Less crashing? How smashing.\n"
msgstr ""

msgctxt "release_note_249"
msgid ""
"24.9:\n"
"- We reorganized the Stats screen to show data about traffic and insights.\n"
"- We added a Subscribers tab to show data about site subscribers.\n"
"- We removed social subscribers from the Total Followers card.\n"
"- Site names and URLs are properly positioned for right-to-left language users.\n"
msgstr ""

#. translators: Release notes for this version to be displayed in the Play Store. Limit to 500 characters including spaces and commas!
#. translators: Title to be displayed in the Play Store. Limit to 30 characters including spaces and commas!
msgctxt "play_store_app_title"
Expand Down
8 changes: 6 additions & 2 deletions WordPress/jetpack_metadata/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
* [*] [internal] Block editor: Add onContentUpdate bridge functionality [https://github.com/wordpress-mobile/gutenberg-mobile/pull/20852]

We have no updates in a house.
We have no updates with a mouse.
We have no updates here or there.
We have no updates anywhere.
We have no updates to report.
If you need help, ask tech support.
17 changes: 11 additions & 6 deletions WordPress/metadata/PlayStoreStrings.po
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,21 @@ msgstr ""
"X-Generator: VsCode\n"
"Project-Id-Version: Release Notes & Play Store Descriptions\n"

msgctxt "release_note_250"
msgctxt "release_note_251"
msgid ""
"25.0:\n"
"We fixed assorted crashes on the login and Posts List screens, as well as actions associated with blogging reminders, feature images, and user removal. Less crashing? How smashing.\n"
"25.1:\n"
"We have no updates in a house.\n"
"We have no updates with a mouse.\n"
"We have no updates here or there.\n"
"We have no updates anywhere.\n"
"We have no updates to report.\n"
"If you need help, ask tech support.\n"
msgstr ""

msgctxt "release_note_249"
msgctxt "release_note_250"
msgid ""
"24.9:\n"
"Site names and URLs are now properly positioned for right-to-left language users. Right on.\n"
"25.0:\n"
"We fixed assorted crashes on the login and Posts List screens, as well as actions associated with blogging reminders, feature images, and user removal. Less crashing? How smashing.\n"
msgstr ""

#. translators: Release notes for this version to be displayed in the Play Store. Limit to 500 characters including spaces and commas!
Expand Down
8 changes: 6 additions & 2 deletions WordPress/metadata/release_notes.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
* [*] [internal] Block editor: Add onContentUpdate bridge functionality [https://github.com/wordpress-mobile/gutenberg-mobile/pull/20852]

We have no updates in a house.
We have no updates with a mouse.
We have no updates here or there.
We have no updates anywhere.
We have no updates to report.
If you need help, ask tech support.
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ class EditPostActivity : LocaleAwareActivity(), EditorFragmentActivity, EditorIm
val hasQuickPressBlogId = extras.containsKey(EditPostActivityConstants.EXTRA_QUICKPRESS_BLOG_ID)

// QuickPress might want to use a different blog than the current blog
return if (!isActionSendOrNewMedia && !hasQuickPressFlag && hasQuickPressBlogId) {
return if ((isActionSendOrNewMedia || hasQuickPressFlag) && hasQuickPressBlogId) {
val localSiteId = intent.getIntExtra(EditPostActivityConstants.EXTRA_QUICKPRESS_BLOG_ID, -1)
siteStore.getSiteByLocalId(localSiteId)
} else {
Expand Down

0 comments on commit 480ec92

Please sign in to comment.