Changeset 53700
- Timestamp:
- 07/14/2022 02:08:21 PM (2 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/nav-menus.php
r53391 r53700 653 653 else : // Locations tab. 654 654 $locations_overview = '<p>' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '</p>'; 655 $locations_overview .= '<ul><li>' . __( 'To assign menus to one or more theme locations, <strong>select a menu from each location’s dropdown .</strong>When you are finished, <strong>click Save Changes</strong>' ) . '</li>';655 $locations_overview .= '<ul><li>' . __( 'To assign menus to one or more theme locations, <strong>select a menu from each location’s dropdown</strong>. When you are finished, <strong>click Save Changes</strong>' ) . '</li>'; 656 656 $locations_overview .= '<li>' . __( 'To edit a menu currently assigned to a theme location, <strong>click the adjacent ’Edit’ link</strong>' ) . '</li>'; 657 657 $locations_overview .= '<li>' . __( 'To add a new menu instead of assigning an existing one, <strong>click the ’Use new menu’ link</strong>. Your new menu will be automatically assigned to that theme location' ) . '</li></ul>'; -
trunk/src/wp-admin/update-core.php
r53426 r53700 186 186 echo '<p class="hint">' . sprintf( 187 187 /* translators: %s: WordPress version. */ 188 __( 'You are about to install WordPress %s <strong>in English (US) .</strong>There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.' ),188 __( 'You are about to install WordPress %s <strong>in English (US)</strong>. There is a chance this update will break your translation. You may prefer to wait for the localized version to be released.' ), 189 189 'development' !== $update->response ? $update->current : '' 190 190 ) . '</p>'; -
trunk/src/wp-includes/class-wp-theme.php
r53455 r53700 283 283 ); 284 284 if ( ! file_exists( $this->theme_root ) ) { // Don't cache this one. 285 $this->errors->add( 'theme_root_missing', __( '<strong>Error </strong>:The themes directory is either empty or does not exist. Please check your installation.' ) );285 $this->errors->add( 'theme_root_missing', __( '<strong>Error:</strong> The themes directory is either empty or does not exist. Please check your installation.' ) ); 286 286 } 287 287 return; -
trunk/src/wp-includes/functions.php
r53460 r53700 1601 1601 1602 1602 if ( ! has_action( "do_feed_{$feed}" ) ) { 1603 wp_die( __( '<strong>Error </strong>:This is not a valid feed template.' ), '', array( 'response' => 404 ) );1603 wp_die( __( '<strong>Error:</strong> This is not a valid feed template.' ), '', array( 'response' => 404 ) ); 1604 1604 } 1605 1605
Note: See TracChangeset
for help on using the changeset viewer.