Make WordPress Core

Changeset 13477


Ignore:
Timestamp:
02/28/2010 01:31:54 AM (15 years ago)
Author:
nacin
Message:

Clean up repetitive string. fixes #11850, props scribu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/plugins.php

    r13470 r13477  
    233233                            }
    234234                        } else {
    235                             //Locate all the files in that folder:
     235                            // Locate all the files in that folder
    236236                            $files = list_files( WP_PLUGIN_DIR . '/' . dirname($plugin) );
    237237                            if ( $files ) {
    238238                                $files_to_delete = array_merge($files_to_delete, $files);
    239239                            }
    240                             //Get plugins list from that folder
     240                            // Get plugins list from that folder
    241241                            if ( $folder_plugins = get_plugins( '/' . dirname($plugin)) ) {
    242242                                foreach( $folder_plugins as $plugin_file => $data ) {
     
    251251                    echo '<h2>' . _n( 'Delete Plugin', 'Delete Plugins', $plugins_to_delete ) . '</h2>';
    252252                ?>
    253                 <p><?php echo _n( 'Deleting the selected plugin will remove the following plugin and its files:', 'Deleting the selected plugins will remove the following plugins and their files:', $plugins_to_delete ); ?></p>
     253                <p><?php echo _n( 'You are about to remove the following plugin:', 'You are about to remove the following plugins:', $plugins_to_delete ); ?></p>
    254254                    <ul class="ul-disc">
    255255                        <?php
Note: See TracChangeset for help on using the changeset viewer.