From 1b86c49013ec204cf980d6cbaa1f0a122a4e7c1e Mon Sep 17 00:00:00 2001 From: Jon Surrell Date: Thu, 12 Sep 2024 12:22:38 +0200 Subject: [PATCH] Add default domain for Core translation --- lib/experimental/script-modules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/experimental/script-modules.php b/lib/experimental/script-modules.php index 1b85e39d07940..a113df02b9d75 100644 --- a/lib/experimental/script-modules.php +++ b/lib/experimental/script-modules.php @@ -221,7 +221,7 @@ function gutenberg_register_script_modules() { add_filter( 'script_module_data_@wordpress/a11y', function ( $data ) { - $data['i18n'] = array( 'Notifications' => __( 'Notifications' ) ); + $data['i18n'] = array( 'Notifications' => __( 'Notifications', 'default' ) ); return $data; } );