From 7e44ece9b0ebc3eeb093caada31d60eef2d22be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Ka=CC=88gy?= Date: Sat, 18 May 2024 10:00:20 +0200 Subject: [PATCH 1/3] fix make dimensions.aspectRatios key of theme.json files translatable --- lib/theme-i18n.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/theme-i18n.json b/lib/theme-i18n.json index ea6bf7fe6727e..f0569bd9301c1 100644 --- a/lib/theme-i18n.json +++ b/lib/theme-i18n.json @@ -38,6 +38,13 @@ } ] }, + "dimensions": { + "aspectRatios": [ + { + "Name": "Aspect ratio name" + } + ] + }, "blocks": { "*": { "typography": { From d6023fd45e68ff382fe60dfd7f0af4d7e8a74b3e Mon Sep 17 00:00:00 2001 From: Alex Lende Date: Wed, 22 May 2024 16:27:29 -0500 Subject: [PATCH 2/3] Fix name key capitalization --- lib/theme-i18n.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/theme-i18n.json b/lib/theme-i18n.json index f0569bd9301c1..e4d14502132cb 100644 --- a/lib/theme-i18n.json +++ b/lib/theme-i18n.json @@ -41,7 +41,7 @@ "dimensions": { "aspectRatios": [ { - "Name": "Aspect ratio name" + "name": "Aspect ratio name" } ] }, From 6d89977e06320fe67fba146a45df8a6540b99eb0 Mon Sep 17 00:00:00 2001 From: Alex Lende Date: Wed, 22 May 2024 16:37:14 -0500 Subject: [PATCH 3/3] Add backport changelog --- backport-changelog/6.6/6567.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 backport-changelog/6.6/6567.md diff --git a/backport-changelog/6.6/6567.md b/backport-changelog/6.6/6567.md new file mode 100644 index 0000000000000..8f200bed3b5c0 --- /dev/null +++ b/backport-changelog/6.6/6567.md @@ -0,0 +1,4 @@ +https://github.com/WordPress/wordpress-develop/pull/6567 + +* https://github.com/WordPress/gutenberg/pull/47271 +* https://github.com/WordPress/gutenberg/pull/61774