Opened 16 years ago
Closed 16 years ago
#12485 closed defect (bug) (fixed)
Maintenance Message is not flagged for translation
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 3.0 | Priority: | normal |
| Severity: | normal | Version: | 3.0 |
| Component: | I18N | Keywords: | needs-patch |
| Focuses: | Cc: |
Description
Hardcoded message in english text:
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Maintenance</title> </head> <body> <h1>Briefly unavailable for scheduled maintenance. Check back in a minute.</h1> </body>
file: wp-inlcludes/load.php
Change History (7)
#3
@
16 years ago
For reference: /*WP_I18N_MARKER*/ [string] /*/WP_I18N_MARKER*/
for die(); good point, so a casual check could be made for making testable:
if (!function_exists('wp_die')) die(); else wp_die();
And/Or since it is a pluggable, wp_die() could be inited far front and becomming more functional later. Might help in #12444 as well.
Note: See
TracTickets for help on using
tickets.
And does a die(). wp_die() should be prefered to make it testable.