Changeset 32381
- Timestamp:
- 05/06/2015 09:11:18 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r32339 r32381 254 254 update_option( 'adminhash', $new_admin_email ); 255 255 256 /* translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: those are placeholders. */ 256 257 $email_text = __( 'Howdy ###USERNAME###, 257 258 … … 335 336 update_option( $current_user->ID . '_new_email', $new_user_email ); 336 337 338 /* translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: those are placeholders. */ 337 339 $email_text = __( 'Howdy ###USERNAME###, 338 340 -
trunk/src/wp-admin/includes/schema.php
r31403 r32381 918 918 } 919 919 920 /* translators: Do not translate USERNAME, SITE_NAME, BLOG_URL, PASSWORD: those are placeholders. */ 920 921 $welcome_email = __( 'Howdy USERNAME, 921 922 -
trunk/src/wp-admin/ms-delete-site.php
r31673 r32381 43 43 $url_delete = esc_url( admin_url( 'ms-delete-site.php?h=' . $hash ) ); 44 44 45 /* translators: Do not translate USERNAME, URL_DELETE, SITE_NAME: those are placeholders. */ 45 46 $content = __( "Howdy ###USERNAME###, 46 47 -
trunk/src/wp-includes/ms-functions.php
r32064 r32381 1434 1434 1435 1435 $welcome_email = get_site_option( 'welcome_email' ); 1436 if ( $welcome_email == false ) 1436 if ( $welcome_email == false ) { 1437 /* translators: Do not translate USERNAME, SITE_NAME, BLOG_URL, PASSWORD: those are placeholders. */ 1437 1438 $welcome_email = __( 'Howdy USERNAME, 1438 1439 … … 1449 1450 1450 1451 --The Team @ SITE_NAME' ); 1452 } 1451 1453 1452 1454 $url = get_blogaddress_by_id($blog_id); … … 2081 2083 if ( !$text ) { 2082 2084 remove_filter( 'site_option_welcome_user_email', 'welcome_user_msg_filter' ); 2085 2086 /* translators: Do not translate USERNAME, PASSWORD, LOGINLINK, SITE_NAME: those are placeholders. */ 2083 2087 $text = __( 'Howdy USERNAME, 2084 2088
Note: See TracChangeset
for help on using the changeset viewer.