Changeset 52978 for trunk/src/wp-admin/includes/template.php
- Timestamp:
- 03/22/2022 04:23:32 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/template.php
r52841 r52978 196 196 * If the $echo argument is true then the elements for a list of checkbox 197 197 * `<input>` elements labelled with the names of the selected terms is output. 198 * If the $post_ID global is n't empty then the terms associated with that198 * If the $post_ID global is not empty then the terms associated with that 199 199 * post will be marked as checked. 200 200 * … … 1145 1145 if ( $plugin ) { 1146 1146 /* translators: %s: The name of the plugin that generated this meta box. */ 1147 printf( __( "This meta box, from the %s plugin, isn't compatible with the block editor."), "<strong>{$plugin['Name']}</strong>" );1147 printf( __( 'This meta box, from the %s plugin, is not compatible with the block editor.' ), "<strong>{$plugin['Name']}</strong>" ); 1148 1148 } else { 1149 _e( "This meta box isn't compatible with the block editor.");1149 _e( 'This meta box is not compatible with the block editor.' ); 1150 1150 } 1151 1151 echo '</p>'; … … 1389 1389 <?php 1390 1390 /* translators: %s: The name of the plugin that generated this meta box. */ 1391 printf( __( "This meta box, from the %s plugin, isn't compatible with the block editor."), "<strong>{$plugin['Name']}</strong>" );1391 printf( __( 'This meta box, from the %s plugin, is not compatible with the block editor.' ), "<strong>{$plugin['Name']}</strong>" ); 1392 1392 ?> 1393 1393 </p>
Note: See TracChangeset
for help on using the changeset viewer.