Administration: Fix typo in fatal error email notification.
Props kraftbj. Fixes #46722. git-svn-id: https://develop.svn.wordpress.org/trunk@45077 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
123b973889
commit
0fc5c3adaf
@ -235,13 +235,13 @@ This link expires in ###EXPIRES###.
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* translators: %s: plugin name */
|
/* translators: %s: plugin name */
|
||||||
$cause = sprintf( __( 'This was be caused by the %s plugin.' ), $name );
|
$cause = sprintf( __( 'This was caused by the %s plugin.' ), $name );
|
||||||
} else {
|
} else {
|
||||||
$theme = wp_get_theme( $extension['slug'] );
|
$theme = wp_get_theme( $extension['slug'] );
|
||||||
$name = $theme->exists() ? $theme->display( 'Name' ) : $extension['slug'];
|
$name = $theme->exists() ? $theme->display( 'Name' ) : $extension['slug'];
|
||||||
|
|
||||||
/* translators: %s: theme name */
|
/* translators: %s: theme name */
|
||||||
$cause = sprintf( __( 'This was be caused by the %s theme.' ), $name );
|
$cause = sprintf( __( 'This was caused by the %s theme.' ), $name );
|
||||||
}
|
}
|
||||||
|
|
||||||
return $cause;
|
return $cause;
|
||||||
|
Loading…
Reference in New Issue
Block a user