We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://core.trac.wordpress.org/ticket/54444
Incorrect textdomain was introduced in WordPress Core. Should be fixed upstream.
See src/wp-includes/blocks/calendar.php, on line 22
src/wp-includes/blocks/calendar.php
Is: return '<div>' . __( 'The calendar block is hidden because there are no published posts.', 'gutenberg' ) . '</div>';
return '<div>' . __( 'The calendar block is hidden because there are no published posts.', 'gutenberg' ) . '</div>';
Should be: return '<div>' . __( 'The calendar block is hidden because there are no published posts.' ) . '</div>';
return '<div>' . __( 'The calendar block is hidden because there are no published posts.' ) . '</div>';
No response
Yes
The text was updated successfully, but these errors were encountered:
kebbet
Successfully merging a pull request may close this issue.
Description
https://core.trac.wordpress.org/ticket/54444
Incorrect textdomain was introduced in WordPress Core. Should be fixed upstream.
Step-by-step reproduction instructions
See
src/wp-includes/blocks/calendar.php
, on line 22Is:
return '<div>' . __( 'The calendar block is hidden because there are no published posts.', 'gutenberg' ) . '</div>';
Should be:
return '<div>' . __( 'The calendar block is hidden because there are no published posts.' ) . '</div>';
Screenshots, screen recording, code snippet
No response
Environment info
No response
Please confirm that you have searched existing issues in the repo.
Yes
Please confirm that you have tested with all plugins deactivated except Gutenberg.
Yes
The text was updated successfully, but these errors were encountered: