Changeset 45932 for trunk/src/wp-admin/network/sites.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/network/sites.php
r45926 r45932 62 62 // A list of valid actions and their associated messaging for confirmation output. 63 63 $manage_actions = array( 64 /* translators: %s: Site URL */64 /* translators: %s: Site URL. */ 65 65 'activateblog' => __( 'You are about to activate the site %s.' ), 66 /* translators: %s: Site URL */66 /* translators: %s: Site URL. */ 67 67 'deactivateblog' => __( 'You are about to deactivate the site %s.' ), 68 /* translators: %s: Site URL */68 /* translators: %s: Site URL. */ 69 69 'unarchiveblog' => __( 'You are about to unarchive the site %s.' ), 70 /* translators: %s: Site URL */70 /* translators: %s: Site URL. */ 71 71 'archiveblog' => __( 'You are about to archive the site %s.' ), 72 /* translators: %s: Site URL */72 /* translators: %s: Site URL. */ 73 73 'unspamblog' => __( 'You are about to unspam the site %s.' ), 74 /* translators: %s: Site URL */74 /* translators: %s: Site URL. */ 75 75 'spamblog' => __( 'You are about to mark the site %s as spam.' ), 76 /* translators: %s: Site URL */76 /* translators: %s: Site URL. */ 77 77 'deleteblog' => __( 'You are about to delete the site %s.' ), 78 /* translators: %s: Site URL */78 /* translators: %s: Site URL. */ 79 79 'unmatureblog' => __( 'You are about to mark the site %s as mature.' ), 80 /* translators: %s: Site URL */80 /* translators: %s: Site URL. */ 81 81 'matureblog' => __( 'You are about to mark the site %s as not mature.' ), 82 82 ); … … 164 164 wp_die( 165 165 sprintf( 166 /* translators: %s: Site URL */166 /* translators: %s: Site URL. */ 167 167 __( 'Sorry, you are not allowed to delete the site %s.' ), 168 168 $site_address … … 365 365 <?php 366 366 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { 367 /* translators: %s: search keywords*/367 /* translators: %s: Search query. */ 368 368 printf( '<span class="subtitle">' . __( 'Search results for “%s”' ) . '</span>', esc_html( $s ) ); 369 369 }
Note: See TracChangeset
for help on using the changeset viewer.