Changeset 34341
- Timestamp:
- 09/20/2015 02:41:43 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/plugin-editor.php
r34067 r34341 182 182 if ( is_plugin_active($plugin) ) { 183 183 if ( is_writeable($real_file) ) 184 echo sprintf( __('Editing <strong>%s</strong> (active)'), $file);184 echo sprintf( _x( 'Editing %s', 'plugin' ), '<strong>' . $file . '</strong>' ) . ' ' . _x( '(active)', 'plugin' ); 185 185 else 186 echo sprintf( __('Browsing <strong>%s</strong> (active)'), $file);186 echo sprintf( _x( 'Browsing %s', 'plugin' ), '<strong>' . $file . '</strong>' ) . ' ' . _x( '(active)', 'plugin' ); 187 187 } else { 188 188 if ( is_writeable($real_file) ) 189 echo sprintf( __('Editing <strong>%s</strong> (inactive)'), $file);189 echo sprintf( _x( 'Editing %s', 'plugin' ), '<strong>' . $file . '</strong>' ) . ' ' . _x( '(inactive)', 'plugin' ); 190 190 else 191 echo sprintf( __('Browsing <strong>%s</strong> (inactive)'), $file);191 echo sprintf( _x( 'Browsing %s', 'plugin' ), '<strong>' . $file . '</strong>' ) . ' ' . _x( '(inactive)', 'plugin' ); 192 192 } 193 193 ?></big>
Note: See TracChangeset
for help on using the changeset viewer.