From 9b502b84e4b5ac1c894fde4d850a4b1af43703e6 Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 28 May 2007 12:50:56 +0000 Subject: gettext changes by momo360modena, applied patch from #347 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@990 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-content/mu-plugins/delete-blog.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'wp-content') diff --git a/wp-content/mu-plugins/delete-blog.php b/wp-content/mu-plugins/delete-blog.php index e0c775f..c0e1261 100644 --- a/wp-content/mu-plugins/delete-blog.php +++ b/wp-content/mu-plugins/delete-blog.php @@ -23,7 +23,7 @@ class delete_blog { function plugin_content() { global $wpdb, $current_blog, $current_site; $this->delete_blog_hash = get_settings('delete_blog_hash'); - print '

' . __('Delete Blog') . '

'; + echo '

' . __('Delete Blog') . '

'; if( $_POST[ 'action' ] == "deleteblog" && $_POST[ 'confirmdelete' ] == '1' ) { $hash = substr( md5( $_SERVER[ 'REQUEST_URI' ] . time() ), 0, 6 ); update_option( "delete_blog_hash", $hash ); @@ -52,27 +52,27 @@ SITE_NAME } elseif( isset( $_GET[ 'h' ] ) && $_GET[ 'h' ] != '' && get_option('delete_blog_hash') != false ) { if( get_option('delete_blog_hash') == $_GET[ 'h' ] ) { $this->reallydeleteblog = true; - print "

" . __('Thank you for using ' .$current_site->site_name. ', your blog has been deleted. Happy trails to you until we meet again.') . "

"; + echo "

" . sprintf(__('Thank you for using %s, your blog has been deleted. Happy trails to you until we meet again.'), $current_site->site_name) . "

"; } else { $this->reallydeleteblog = false; - print "

" . __("I'm sorry, the link you clicked is stale. Please select another option.") . "

"; + echo "

" . __("I'm sorry, the link you clicked is stale. Please select another option.") . "

"; } } else { ?> -

site_name. ' blog any more, you can delete it using the form below. When you click Delete My Blog you will be sent an email with a link in it. Click on this link to delete your blog.') ?>

-

-
- - -

-

' />

-
+

Delete My Blog you will be sent an email with a link in it. Click on this link to delete your blog.'), $current_site->site_name); ?>

+

+
+ + +

+

' />

+
"; + echo "
"; } } $delete_blog_obj = new delete_blog(); -?> +?> \ No newline at end of file -- cgit