Commit 9246298a32 for wordpress.org

commit 9246298a32590337b18af5a29daa1aa8078e693d
Author: wildworks <wildworks@git.wordpress.org>
Date:   Tue Dec 9 06:34:29 2025 +0000

    I18N: add border.radiusSizes key to theme-i18n.json

    Makes border radius size name property translatable by updating `theme.json` i18n schema.

    Props hbhalodia, mukesh27, swissspidy, twvania, umeshsinghin, wildworks.
    Fixes #64333.
    Built from https://develop.svn.wordpress.org/trunk@61361


    git-svn-id: http://core.svn.wordpress.org/trunk@60673 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-includes/theme-i18n.json b/wp-includes/theme-i18n.json
index 1b7a8d0d31..8ceaee85af 100644
--- a/wp-includes/theme-i18n.json
+++ b/wp-includes/theme-i18n.json
@@ -52,6 +52,13 @@
 				}
 			]
 		},
+		"border": {
+			"radiusSizes": [
+				{
+					"name": "Border radius size name"
+				}
+			]
+		},
 		"blocks": {
 			"*": {
 				"typography": {
@@ -96,6 +103,13 @@
 							"name": "Space size name"
 						}
 					]
+				},
+				"border": {
+					"radiusSizes": [
+						{
+							"name": "Border radius size name"
+						}
+					]
 				}
 			}
 		}
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 8fdd8f4442..1dad9eaa39 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61360';
+$wp_version = '7.0-alpha-61361';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.