diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index dad0e0fcb5..941cfa12c0 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,5 +1,8 @@
Unreleased
---
+
+1.110.0
+---
* [**] Fix crash when sharing unsupported media types on Android [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6444]
* [**] Fixes a crash when blockType wrapperProps are not defined [https://github.com/WordPress/gutenberg/pull/56846]
* [**] Fix regressions with wrapper props and font size customization [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6459]
diff --git a/bundle/android/strings.xml b/bundle/android/strings.xml
index d3a8a40e25..c807fff576 100644
--- a/bundle/android/strings.xml
+++ b/bundle/android/strings.xml
@@ -181,7 +181,10 @@
Featured
File block settings
File name
+ File type not supported as a media file.
Font Size
+
+ Font Size, %1$s
For this reason, we recommend editing the block using the web editor.
@@ -194,7 +197,6 @@
Get support
GIF
Give it a try by adding a few blocks to your post or page!
- Go back
Gradient Type
Help button
Help icon
@@ -256,6 +258,8 @@
translators: %s: Select control button label e.g. "Button width" -->
Navigates to select %s
Navigates to the previous content sheet
+ Network connection lost, working offline
+ Network connection re-established
NEW
No application can handle this request.
No application can handle this request. Please install a Web browser.
@@ -309,9 +313,6 @@ translators: %s: Select control button label e.g. "Button width" -->
Replace video
Retry
Rich text editing
-
- %s block
\'%s\' block converted to blocks
@@ -404,6 +405,7 @@ translators: %s: Select control option value e.g: "Auto, 25%". -->
What is alt text?
Width Settings
WordPress Media Library
+ Working Offline
X-Axis Position
Y-Axis Position
You can also rearrange blocks by tapping a block and then tapping the up and down arrows that appear on the bottom left side of the block to move it up or down.
diff --git a/bundle/ios/GutenbergNativeTranslations.swift b/bundle/ios/GutenbergNativeTranslations.swift
index 52eb6fda4f..1d6ed98ccb 100644
--- a/bundle/ios/GutenbergNativeTranslations.swift
+++ b/bundle/ios/GutenbergNativeTranslations.swift
@@ -6,7 +6,6 @@ private func dummy() {
_ = NSLocalizedString("%1$s transformed to %2$s", comment: "translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header.")
_ = NSLocalizedString("%1$s. %2$s is %3$s %4$s.", comment: "translators: accessibility text. Inform about current value. %1$s: Control label %2$s: setting label (example: width), %3$s: Current value. %4$s: value measurement unit (example: pixels)")
_ = NSLocalizedString("%1$s. Currently selected: %2$s", comment: "translators: %1$s: Select control button label e.g. \"Button width\". %2$s: Select control option value e.g: \"Auto, 25%\".")
- _ = NSLocalizedString("%s block", comment: "translators: %s: Block name e.g. \"Image block\"\ntranslators: Block name. %s: The localized block name")
_ = NSLocalizedString("%s block options", comment: "translators: %s: block title e.g: \"Paragraph\".")
_ = NSLocalizedString("%s block, newly available", comment: "translators: Newly available block name. %s: The localized block name")
_ = NSLocalizedString("%s block. Empty", comment: "translators: accessibility text for the media block empty state. %s: media type")
@@ -168,7 +167,9 @@ private func dummy() {
_ = NSLocalizedString("Featured", comment: "")
_ = NSLocalizedString("File block settings", comment: "")
_ = NSLocalizedString("File name", comment: "")
+ _ = NSLocalizedString("File type not supported as a media file.", comment: "")
_ = NSLocalizedString("Font Size", comment: "")
+ _ = NSLocalizedString("Font Size, %1$s", comment: "translators: %1$s: Font size name e.g. Small")
_ = NSLocalizedString("For this reason, we recommend editing the block using the web editor.", comment: "translators: Recommendation included in a warning related to having blocks deeply nested.")
_ = NSLocalizedString("For this reason, we recommend editing the block using your web browser.", comment: "translators: Recommendation included in a warning related to having blocks deeply nested.")
_ = NSLocalizedString("Four", comment: "")
@@ -178,7 +179,6 @@ private func dummy() {
_ = NSLocalizedString("Get support", comment: "")
_ = NSLocalizedString("GIF", comment: "")
_ = NSLocalizedString("Give it a try by adding a few blocks to your post or page!", comment: "")
- _ = NSLocalizedString("Go back", comment: "")
_ = NSLocalizedString("Gradient Type", comment: "")
_ = NSLocalizedString("Help button", comment: "")
_ = NSLocalizedString("Help icon", comment: "")
@@ -232,6 +232,8 @@ private func dummy() {
_ = NSLocalizedString("Navigates to layout selection screen", comment: "")
_ = NSLocalizedString("Navigates to select %s", comment: "translators: %s: Select control button label e.g. Small\ntranslators: %s: Select control button label e.g. \"Button width\"")
_ = NSLocalizedString("Navigates to the previous content sheet", comment: "")
+ _ = NSLocalizedString("Network connection lost, working offline", comment: "")
+ _ = NSLocalizedString("Network connection re-established", comment: "")
_ = NSLocalizedString("NEW", comment: "")
_ = NSLocalizedString("No application can handle this request.", comment: "")
_ = NSLocalizedString("No application can handle this request. Please install a Web browser.", comment: "")
@@ -337,6 +339,7 @@ private func dummy() {
_ = NSLocalizedString("What is alt text?", comment: "")
_ = NSLocalizedString("Width Settings", comment: "")
_ = NSLocalizedString("WordPress Media Library", comment: "")
+ _ = NSLocalizedString("Working Offline", comment: "")
_ = NSLocalizedString("X-Axis Position", comment: "")
_ = NSLocalizedString("Y-Axis Position", comment: "")
_ = NSLocalizedString("You can also rearrange blocks by tapping a block and then tapping the up and down arrows that appear on the bottom left side of the block to move it up or down.", comment: "")
diff --git a/gutenberg b/gutenberg
index e98d1fec2a..5f8f12f0a3 160000
--- a/gutenberg
+++ b/gutenberg
@@ -1 +1 @@
-Subproject commit e98d1fec2a401b04840a3df26e97e7d26982d768
+Subproject commit 5f8f12f0a3a275d53d5bb91c892a628d6fa00451
diff --git a/package-lock.json b/package-lock.json
index 2b87f7b1dd..3259c01d5c 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "gutenberg-mobile",
- "version": "1.109.3",
+ "version": "1.110.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "gutenberg-mobile",
- "version": "1.109.3",
+ "version": "1.110.0",
"hasInstallScript": true,
"devDependencies": {
"@babel/core": "^7.20.0",
diff --git a/package.json b/package.json
index e131bcac3a..767f9b084a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "gutenberg-mobile",
- "version": "1.109.3",
+ "version": "1.110.0",
"private": true,
"config": {
"jsfiles": "./*.js src/*.js src/**/*.js src/**/**/*.js",