Ticket #25769: 25769.diff
File 25769.diff, 1.1 KB (added by , 7 years ago) |
---|
-
wp-admin/import.php
57 57 <?php if ( ! empty( $_GET['invalid'] ) ) : ?> 58 58 <div class="error"><p><strong><?php _e('ERROR:')?></strong> <?php printf( __('The <strong>%s</strong> importer is invalid or is not installed.'), esc_html( $_GET['invalid'] ) ); ?></p></div> 59 59 <?php endif; ?> 60 <p><?php _e('If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:'); ?></p>61 60 62 61 <?php 63 62 … … 75 74 if ( empty( $importers ) ) { 76 75 echo '<p>' . __('No importers are available.') . '</p>'; // TODO: make more helpful 77 76 } else { 77 echo '<p>' . __('If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:') . '</p>'; 78 78 uasort($importers, create_function('$a, $b', 'return strnatcasecmp($a[0], $b[0]);')); 79 79 ?> 80 80 <table class="widefat importers" cellspacing="0">