admin title does not get translated
-
I believe the line in
/wp-admin/admin-header.php
:
$admin_title = get_bloginfo( 'name' );
should be
$admin_title = get_bloginfo( 'name', 'display' );
The default second argument is ‘raw’, but the value retrieved is used to display the title and it does not get translated properly.
This is not very important, but would be nice to get it right?
Thank you.
- The topic ‘admin title does not get translated’ is closed to new replies.