Skip to content

Commit

Permalink
Calendar: Remove 'gutenberg' text-domain (#36500)
Browse files Browse the repository at this point in the history
  • Loading branch information
kebbet authored and noisysocks committed Nov 22, 2021
1 parent 54018e4 commit 8cb6739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/block-library/src/calendar/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function render_block_core_calendar( $attributes ) {
// when there are no published posts on the site.
if ( ! block_core_calendar_has_published_posts() ) {
if ( is_user_logged_in() ) {
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.' ) . '</div>';
}
return '';
}
Expand Down

0 comments on commit 8cb6739

Please sign in to comment.