Changeset 45932 for trunk/src/wp-admin/import.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/import.php
r45926 r45932 63 63 <div class="error"> 64 64 <p><strong><?php _e( 'ERROR:' ); ?></strong> 65 66 /* translators: %s: importer slug*/67 68 65 <?php 66 /* translators: %s: Importer slug. */ 67 printf( __( 'The %s importer is invalid or is not installed.' ), '<strong>' . esc_html( $_GET['invalid'] ) . '</strong>' ); 68 ?> 69 69 </p> 70 70 </div> … … 129 129 '<a href="%s" aria-label="%s">%s</a>', 130 130 esc_url( $url ), 131 /* translators: %s: Importer name */131 /* translators: %s: Importer name. */ 132 132 esc_attr( sprintf( __( 'Run %s' ), $data[0] ) ), 133 133 __( 'Run Importer' ) … … 156 156 esc_attr( $plugin_slug ), 157 157 esc_attr( $data[0] ), 158 /* translators: %s: Importer name */158 /* translators: %s: Importer name. */ 159 159 esc_attr( sprintf( __( 'Install %s now' ), $data[0] ) ), 160 160 __( 'Install Now' ) … … 162 162 } else { 163 163 $action = sprintf( 164 /* translators: URL to wp-admin/import.php*/164 /* translators: URL to Import screen on the main site. */ 165 165 __( 'This importer is not installed. Please install importers from <a href="%s">the main site</a>.' ), 166 166 get_admin_url( get_current_network_id(), 'import.php' ) … … 178 178 '<a href="%1$s" aria-label="%2$s">%3$s</a>', 179 179 esc_url( $url ), 180 /* translators: %s: Importer name */180 /* translators: %s: Importer name. */ 181 181 esc_attr( sprintf( __( 'Run %s' ), $data[0] ) ), 182 182 __( 'Run Importer' ) … … 201 201 ' | <a href="%1$s" class="thickbox open-plugin-details-modal" aria-label="%2$s">%3$s</a>', 202 202 esc_url( $url ), 203 /* translators: %s: Importer name */203 /* translators: %s: Importer name. */ 204 204 esc_attr( sprintf( __( 'More information about %s' ), $data[0] ) ), 205 205 __( 'Details' ) … … 225 225 if ( current_user_can( 'install_plugins' ) ) { 226 226 echo '<p>' . sprintf( 227 /* translators: %s: URL to Add Plugins screen */227 /* translators: %s: URL to Add Plugins screen. */ 228 228 __( 'If the importer you need is not listed, <a href="%s">search the plugin directory</a> to see if an importer is available.' ), 229 229 esc_url( network_admin_url( 'plugin-install.php?tab=search&type=tag&s=importer' ) )
Note: See TracChangeset
for help on using the changeset viewer.