Changeset 48111 for trunk/src/wp-admin/plugin-editor.php
- Timestamp:
- 06/20/2020 01:16:45 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugin-editor.php
r47894 r48111 198 198 if ( is_writeable( $real_file ) ) { 199 199 /* translators: %s: Plugin file name. */ 200 echo sprintf( __( 'Editing %s (active)' ), '<strong>' . esc_html( $file ) . '</strong>' );200 printf( __( 'Editing %s (active)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 201 201 } else { 202 202 /* translators: %s: Plugin file name. */ 203 echo sprintf( __( 'Browsing %s (active)' ), '<strong>' . esc_html( $file ) . '</strong>' );203 printf( __( 'Browsing %s (active)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 204 204 } 205 205 } else { 206 206 if ( is_writeable( $real_file ) ) { 207 207 /* translators: %s: Plugin file name. */ 208 echo sprintf( __( 'Editing %s (inactive)' ), '<strong>' . esc_html( $file ) . '</strong>' );208 printf( __( 'Editing %s (inactive)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 209 209 } else { 210 210 /* translators: %s: Plugin file name. */ 211 echo sprintf( __( 'Browsing %s (inactive)' ), '<strong>' . esc_html( $file ) . '</strong>' );211 printf( __( 'Browsing %s (inactive)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 212 212 } 213 213 }
Note: See TracChangeset
for help on using the changeset viewer.