Changeset 45932 for trunk/src/wp-admin/plugin-editor.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugin-editor.php
r45674 r45932 196 196 if ( is_plugin_active( $plugin ) ) { 197 197 if ( is_writeable( $real_file ) ) { 198 /* translators: %s: plugin file name*/198 /* translators: %s: Plugin file name. */ 199 199 echo sprintf( __( 'Editing %s (active)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 200 200 } else { 201 /* translators: %s: plugin file name*/201 /* translators: %s: Plugin file name. */ 202 202 echo sprintf( __( 'Browsing %s (active)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 203 203 } 204 204 } else { 205 205 if ( is_writeable( $real_file ) ) { 206 /* translators: %s: plugin file name*/206 /* translators: %s: Plugin file name. */ 207 207 echo sprintf( __( 'Editing %s (inactive)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 208 208 } else { 209 /* translators: %s: plugin file name*/209 /* translators: %s: Plugin file name. */ 210 210 echo sprintf( __( 'Browsing %s (inactive)' ), '<strong>' . esc_html( $file ) . '</strong>' ); 211 211 } … … 284 284 <?php 285 285 printf( 286 /* translators: %s: Documentation URL */286 /* translators: %s: Documentation URL. */ 287 287 __( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ), 288 288 __( 'https://wordpress.org/support/article/changing-file-permissions/' )
Note: See TracChangeset
for help on using the changeset viewer.