Multisite: Show always domain and path when deleting a site.
Add a missing translators comment. Props ian.edington. Fixes #37309. git-svn-id: https://develop.svn.wordpress.org/trunk@38633 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
576a4cba5e
commit
debaea8a7c
@ -85,7 +85,13 @@ Webmaster
|
||||
<form method="post" name="deletedirect">
|
||||
<?php wp_nonce_field( 'delete-blog' ) ?>
|
||||
<input type="hidden" name="action" value="deleteblog" />
|
||||
<p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php printf( __( "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again." ), is_subdomain_install() ? $blog->domain : $blog->domain . $blog->path ); ?></strong></label></p>
|
||||
<p><input id="confirmdelete" type="checkbox" name="confirmdelete" value="1" /> <label for="confirmdelete"><strong><?php
|
||||
printf(
|
||||
/* translators: %s: site address */
|
||||
__( "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again." ),
|
||||
$blog->domain . $blog->path
|
||||
);
|
||||
?></strong></label></p>
|
||||
<?php submit_button( __( 'Delete My Site Permanently' ) ); ?>
|
||||
</form>
|
||||
<?php
|
||||
|
Loading…
Reference in New Issue
Block a user