Changeset 48049
- Timestamp:
- 06/15/2020 07:39:32 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/ms-delete-site.php
r47785 r48049 53 53 $switched_locale = switch_to_locale( get_locale() ); 54 54 55 /* translators: Do not translate USERNAME, URL_DELETE, SITE _NAME: those are placeholders. */55 /* translators: Do not translate USERNAME, URL_DELETE, SITENAME, SITEURL: those are placeholders. */ 56 56 $content = __( 57 57 "Howdy ###USERNAME###, … … 69 69 70 70 Thanks for using the site, 71 Webmaster 72 ###SITE _NAME###"71 All at ###SITENAME### 72 ###SITEURL###" 73 73 ); 74 74 /** … … 83 83 $content = str_replace( '###USERNAME###', $user->user_login, $content ); 84 84 $content = str_replace( '###URL_DELETE###', $url_delete, $content ); 85 $content = str_replace( '###SITE_NAME###', get_network()->site_name, $content ); 85 $content = str_replace( '###SITENAME###', get_network()->site_name, $content ); 86 $content = str_replace( '###SITEURL###', network_home_url(), $content ); 86 87 87 88 wp_mail( -
trunk/src/wp-includes/user.php
r47808 r48049 2575 2575 sprintf( 2576 2576 /* translators: %s: Admin email address. */ 2577 __( '<strong>Error</strong>: Couldn’t register you… please contact the <a href="mailto:%s"> webmaster</a>!' ),2577 __( '<strong>Error</strong>: Couldn’t register you… please contact the <a href="mailto:%s">site admin</a>!' ), 2578 2578 get_option( 'admin_email' ) 2579 2579 )
Note: See TracChangeset
for help on using the changeset viewer.