diff --git a/src/wp-admin/network/themes.php b/src/wp-admin/network/themes.php
index 9466c41017..fbc2aa033c 100644
--- a/src/wp-admin/network/themes.php
+++ b/src/wp-admin/network/themes.php
@@ -143,8 +143,12 @@ if ( $action ) {
', sprintf( __('%1$s by %2$s' ), $theme->display('Name'), $theme->display('Author') ), '';
+ echo '- ' . sprintf(
+ /* translators: 1: theme name, 2: theme author */
+ _x( '%1$s by %2$s', 'theme' ),
+ '' . $theme->display( 'Name' ) . '',
+ '' . $theme->display( 'Author' ) . ''
+ ) . '
';
}
?>