We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62bef7d + 97c1fff commit ebd8cd3Copy full SHA for ebd8cd3
.github/workflows/release.yml
@@ -68,7 +68,7 @@ jobs:
68
git config --local user.name "$(git log --format='%an' HEAD^!)"
69
70
echo "Creating branch"
71
- git checkout -b release/{$VERSION}
+ git checkout -b release/${VERSION}
72
73
echo "Creating tag ${VERSION}"
74
git add .
includes/Gutenberg/SharedBlocksAttributes.php
@@ -99,6 +99,9 @@ public function register_editor_assets(): void {
99
true
100
);
101
102
+ // Load translations.
103
+ wp_set_script_translations( self::SHARED_BLOCK_SCRIPT_HANDLE, 'multisite-shared-blocks' );
104
+
105
// Register additional configuration data for the script to be print before the script tag.
106
wp_add_inline_script(
107
self::SHARED_BLOCK_SCRIPT_HANDLE,
0 commit comments