diff -r 7b1b88e27a20 -r 48c4eec2b7e6 wp/wp-admin/import.php --- a/wp/wp-admin/import.php Thu Sep 29 08:06:27 2022 +0200 +++ b/wp/wp-admin/import.php Fri Sep 05 18:40:08 2025 +0200 @@ -29,8 +29,8 @@ get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . - '

' . __( 'Documentation on Import' ) . '

' . - '

' . __( 'Support' ) . '

' + '

' . __( 'Documentation on Import' ) . '

' . + '

' . __( 'Support' ) . '

' ); if ( current_user_can( 'install_plugins' ) ) { @@ -60,16 +60,21 @@

- -
-

- ' . esc_html( $_GET['invalid'] ) . '' ); - ?> -

-
- +' . __( 'Error:' ) . ' ' . sprintf( + /* translators: %s: Importer slug. */ + __( 'The %s importer is invalid or is not installed.' ), + '' . esc_html( $_GET['invalid'] ) . '' + ); + wp_admin_notice( + $importer_not_installed, + array( + 'additional_classes' => array( 'error' ), + ) + ); +endif; +?>