Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://develop.svn.wordpress.org/trunk"
},
"gutenberg": {
"sha": "e2970ba736edb99e08fb369d4fb0c378189468ee",
"sha": "c15cef1d6b07f666df28dac0383bafb0edfe0914",
"ghcrRepo": "WordPress/gutenberg/gutenberg-wp-develop-build"
},
"engines": {
Expand Down
28 changes: 10 additions & 18 deletions src/wp-includes/assets/script-loader-packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
'wp-url',
'wp-warning'
),
'version' => '2300d40abe29e438beda'
'version' => '7e969d1c58fd6b032753'
),
'block-library.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -142,7 +142,7 @@
'import' => 'dynamic'
)
),
'version' => '67d1a681ec0100a25d78'
'version' => 'bbcc73335599ce2b8d51'
),
'block-serialization-default-parser.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -214,7 +214,7 @@
'wp-rich-text',
'wp-warning'
),
'version' => '2cbe9a66c53c614d7d6f'
'version' => '5dedfe13f08880193a28'
),
'compose.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -257,16 +257,16 @@
'wp-data',
'wp-deprecated',
'wp-element',
'wp-hooks',
'wp-html-entities',
'wp-i18n',
'wp-private-apis',
'wp-rich-text',
'wp-sync',
'wp-undo-manager',
'wp-url',
'wp-warning'
),
'version' => '4d15c0f82a9fb01a04ed'
'version' => '515bcc5a2962232ccea7'
),
'customize-widgets.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -381,7 +381,7 @@
'import' => 'static'
)
),
'version' => 'f84d20a8526b3463e9ff'
'version' => '69ec189de328df478ab5'
),
'edit-site.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -428,7 +428,7 @@
'import' => 'static'
)
),
'version' => 'd36eb0c37b644e4cd4c8'
'version' => '34fbf7f8c7d55055d9cd'
),
'edit-widgets.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -519,7 +519,7 @@
'import' => 'static'
)
),
'version' => '63782008412a6163c9f0'
'version' => 'f8cdc22abc621b3f9409'
),
'element.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -675,7 +675,7 @@
'wp-private-apis',
'wp-url'
),
'version' => '4b640c092eb654d2bd78'
'version' => '714c49ed2942c98d088f'
),
'plugins.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -758,7 +758,7 @@
'wp-primitives',
'wp-url'
),
'version' => 'c72d27a8ac4e33cb74d6'
'version' => '21d86e46535b79d9afda'
),
'rich-text.js' => array(
'dependencies' => array(
Expand Down Expand Up @@ -811,14 +811,6 @@
),
'version' => 'faa37ce61b7ec8394b2a'
),
'sync.js' => array(
'dependencies' => array(
'wp-api-fetch',
'wp-hooks',
'wp-private-apis'
),
'version' => '8186bfbc15b827d261f5'
),
'theme.js' => array(
'dependencies' => array(
'react-jsx-runtime',
Expand Down
2 changes: 1 addition & 1 deletion src/wp-includes/assets/script-modules-packages.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
'import' => 'static'
)
),
'version' => '7cd8fe3a80dded97579b'
'version' => '012760fd849397dd0031'
),
'edit-site-init/index.js' => array(
'dependencies' => array(
Expand Down
8 changes: 4 additions & 4 deletions src/wp-includes/blocks/image.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ function block_core_image_render_lightbox( $block_content, $block, $block_instan
array(
'defaultAriaLabel' => __( 'Enlarged image' ),
'closeButtonText' => esc_html__( 'Close' ),
'prevButtonText' => esc_html__( 'Previous' ),
'nextButtonText' => esc_html__( 'Next' ),
'prevButtonText' => esc_html_x( 'Previous', 'previous image in lightbox' ),
'nextButtonText' => esc_html_x( 'Next', 'next image in lightbox' ),
)
);

Expand Down Expand Up @@ -323,8 +323,8 @@ class="lightbox-trigger"
function block_core_image_print_lightbox_overlay() {
$dialog_label = esc_attr__( 'Enlarged images' );
$close_button_text = esc_attr__( 'Close' );
$prev_button_text = esc_attr__( 'Previous' );
$next_button_text = esc_attr__( 'Next' );
$prev_button_text = esc_attr_x( 'Previous', 'previous image in lightbox' );
$next_button_text = esc_attr_x( 'Next', 'next image in lightbox' );
$close_button_icon = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" aria-hidden="true" focusable="false"><path d="m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z"></path></svg>';
$prev_button_icon = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="28" height="28" aria-hidden="true" focusable="false"><path d="M14.6 7l-1.2-1L8 12l5.4 6 1.2-1-4.6-5z"></path></svg>';
$next_button_icon = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="28" height="28" aria-hidden="true" focusable="false"><path d="M10.6 6L9.4 7l4.6 5-4.6 5 1.2 1 5.4-6z"></path></svg>';
Expand Down
Loading
Loading