Changeset 55942
- Timestamp:
- 06/19/2023 06:26:01 PM (19 months ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-comments.php
r55630 r55942 217 217 'content' => 218 218 '<p>' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '</p>' . 219 '<p>' . __( 'In the <strong>Author</strong> column, in addition to the author’s name, email address, and blogURL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' .219 '<p>' . __( 'In the <strong>Author</strong> column, in addition to the author’s name, email address, and site URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' . 220 220 '<p>' . __( 'In the <strong>Comment</strong> column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' . 221 221 '<p>' . __( 'In the <strong>In response to</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' . -
trunk/src/wp-admin/includes/export.php
r54953 r55942 219 219 return network_home_url(); 220 220 } else { 221 // WordPress (single site): the blogURL.221 // WordPress (single site): the site URL. 222 222 return get_bloginfo_rss( 'url' ); 223 223 } -
trunk/src/wp-content/themes/twentyeleven/header.php
r55476 r55942 32 32 wp_title( '|', true, 'right' ); 33 33 34 // Add the blogname.34 // Add the site name. 35 35 bloginfo( 'name' ); 36 36 37 // Add the blogdescription for the home/front page.37 // Add the site description for the home/front page. 38 38 $site_description = get_bloginfo( 'description', 'display' ); 39 39 if ( $site_description && ( is_home() || is_front_page() ) ) { -
trunk/src/wp-content/themes/twentyten/header.php
r55476 r55942 22 22 wp_title( '|', true, 'right' ); 23 23 24 // Add the blogname.24 // Add the site name. 25 25 bloginfo( 'name' ); 26 26 27 // Add the blogdescription for the home/front page.27 // Add the site description for the home/front page. 28 28 $site_description = get_bloginfo( 'description', 'display' ); 29 29 if ( $site_description && ( is_home() || is_front_page() ) ) { -
trunk/src/wp-includes/general-template.php
r55870 r55942 3097 3097 3098 3098 $defaults = array( 3099 /* translators: Separator between blogname and feed type in feed links. */3099 /* translators: Separator between site name and feed type in feed links. */ 3100 3100 'separator' => _x( '»', 'feed link' ), 3101 /* translators: 1: Blogtitle, 2: Separator (raquo). */3101 /* translators: 1: Site title, 2: Separator (raquo). */ 3102 3102 'feedtitle' => __( '%1$s %2$s Feed' ), 3103 /* translators: 1: Blogtitle, 2: Separator (raquo). */3103 /* translators: 1: Site title, 2: Separator (raquo). */ 3104 3104 'comstitle' => __( '%1$s %2$s Comments Feed' ), 3105 3105 ); … … 3149 3149 function feed_links_extra( $args = array() ) { 3150 3150 $defaults = array( 3151 /* translators: Separator between blogname and feed type in feed links. */3151 /* translators: Separator between site name and feed type in feed links. */ 3152 3152 'separator' => _x( '»', 'feed link' ), 3153 /* translators: 1: Blogname, 2: Separator (raquo), 3: Post title. */3153 /* translators: 1: Site name, 2: Separator (raquo), 3: Post title. */ 3154 3154 'singletitle' => __( '%1$s %2$s %3$s Comments Feed' ), 3155 /* translators: 1: Blogname, 2: Separator (raquo), 3: Category name. */3155 /* translators: 1: Site name, 2: Separator (raquo), 3: Category name. */ 3156 3156 'cattitle' => __( '%1$s %2$s %3$s Category Feed' ), 3157 /* translators: 1: Blogname, 2: Separator (raquo), 3: Tag name. */3157 /* translators: 1: Site name, 2: Separator (raquo), 3: Tag name. */ 3158 3158 'tagtitle' => __( '%1$s %2$s %3$s Tag Feed' ), 3159 /* translators: 1: Blogname, 2: Separator (raquo), 3: Term name, 4: Taxonomy singular name. */3159 /* translators: 1: Site name, 2: Separator (raquo), 3: Term name, 4: Taxonomy singular name. */ 3160 3160 'taxtitle' => __( '%1$s %2$s %3$s %4$s Feed' ), 3161 /* translators: 1: Blogname, 2: Separator (raquo), 3: Author name. */3161 /* translators: 1: Site name, 2: Separator (raquo), 3: Author name. */ 3162 3162 'authortitle' => __( '%1$s %2$s Posts by %3$s Feed' ), 3163 /* translators: 1: Blogname, 2: Separator (raquo), 3: Search query. */3163 /* translators: 1: Site name, 2: Separator (raquo), 3: Search query. */ 3164 3164 'searchtitle' => __( '%1$s %2$s Search Results for “%3$s” Feed' ), 3165 /* translators: 1: Blogname, 2: Separator (raquo), 3: Post type name. */3165 /* translators: 1: Site name, 2: Separator (raquo), 3: Post type name. */ 3166 3166 'posttypetitle' => __( '%1$s %2$s %3$s Feed' ), 3167 3167 ); -
trunk/src/wp-includes/ms-blogs.php
r55940 r55942 32 32 33 33 /** 34 * Gets a full blog URL, given a blogID.35 * 36 * @since MU (3.0.0) 37 * 38 * @param int $blog_id BlogID.39 * @return string Full URL of the blogif found. Empty string if not.34 * Gets a full site URL, given a site ID. 35 * 36 * @since MU (3.0.0) 37 * 38 * @param int $blog_id Site ID. 39 * @return string Full site URL if found. Empty string if not. 40 40 */ 41 41 function get_blogaddress_by_id( $blog_id ) { … … 53 53 54 54 /** 55 * Gets a full blog URL, given a blogname.55 * Gets a full site URL, given a site name. 56 56 * 57 57 * @since MU (3.0.0) -
trunk/src/wp-includes/ms-deprecated.php
r54953 r55942 356 356 357 357 /** 358 * Get a full blogURL, given a domain and a path.358 * Get a full site URL, given a domain and a path. 359 359 * 360 360 * @since MU (3.0.0) -
trunk/src/wp-includes/ms-functions.php
r55657 r55942 605 605 * @global string $domain 606 606 * 607 * @param string $blogname The blogname provided by the user. Must be unique.608 * @param string $blog_title The blogtitle provided by the user.607 * @param string $blogname The site name provided by the user. Must be unique. 608 * @param string $blog_title The site title provided by the user. 609 609 * @param WP_User|string $user Optional. The user object to check against the new site name. 610 610 * Default empty string. 611 611 * @return array { 612 * Array of domain, path, blog name, blogtitle, user and error messages.612 * Array of domain, path, site name, site title, user and error messages. 613 613 * 614 614 * @type string $domain Domain for the site. … … 753 753 * 754 754 * @param array $result { 755 * Array of domain, path, blog name, blogtitle, user and error messages.755 * Array of domain, path, site name, site title, user and error messages. 756 756 * 757 757 * @type string $domain Domain for the site. 758 758 * @type string $path Path for the site. Used in subdirectory installations. 759 759 * @type string $blogname The unique site name (slug). 760 * @type string $blog_title Blogtitle.760 * @type string $blog_title Site title. 761 761 * @type string|WP_User $user By default, an empty string. A user object if provided. 762 762 * @type WP_Error $errors WP_Error containing any errors found. … … 2388 2388 function filter_SSL( $url ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 2389 2389 if ( ! is_string( $url ) ) { 2390 return get_bloginfo( 'url' ); // Return home blogURL with proper scheme.2390 return get_bloginfo( 'url' ); // Return home site URL with proper scheme. 2391 2391 } 2392 2392 -
trunk/src/wp-includes/theme-compat/footer.php
r47798 r55942 23 23 <?php 24 24 printf( 25 /* translators: 1: Blogname, 2: WordPress */25 /* translators: 1: Site name, 2: WordPress */ 26 26 __( '%1$s is proudly powered by %2$s' ), 27 27 get_bloginfo( 'name' ), -
trunk/src/wp-signup.php
r55918 r55942 114 114 115 115 $current_network = get_network(); 116 // Blogname.116 // Site name. 117 117 if ( ! is_subdomain_install() ) { 118 118 echo '<label for="blogname">' . __( 'Site Name (subdirectory only):' ) . '</label>'; -
trunk/src/wp-trackback.php
r54866 r55942 107 107 * @param string $title Trackback title. 108 108 * @param string $excerpt Trackback excerpt. 109 * @param string $blog_name Blogname.109 * @param string $blog_name Site name. 110 110 */ 111 111 do_action( 'pre_trackback_post', $post_id, $trackback_url, $charset, $title, $excerpt, $blog_name ); -
trunk/tests/phpunit/tests/customize/manager.php
r55745 r55942 765 765 /* 766 766 * Test that adding blogname starter content is ignored now that it is modified, 767 * but updating a non-modified starter content blogdescription passes.767 * but updating a non-modified starter content site description passes. 768 768 */ 769 769 $previous_blogname = $changeset_data['blogname']['value']; -
trunk/tests/phpunit/tests/general/feedLinksExtra.php
r54161 r55942 173 173 * Optional arguments. Default empty. 174 174 * 175 * @type string $separator The separator between blogname and feed type.175 * @type string $separator The separator between site name and feed type. 176 176 * @type string $singletitle The title of the comments feed. 177 177 * @type string $cattitle The title of the category feed.
Note: See TracChangeset
for help on using the changeset viewer.