From: Siebrand Mazeland Date: Thu, 17 Mar 2011 09:05:34 +0000 (+0000) Subject: Update output language. X-Git-Tag: 1.31.0-rc.0~31367 X-Git-Url: http://git.cyclocoop.org/%7B%7B%20url_for%28%27admin_vote_add%27%29%20%7D%7D?a=commitdiff_plain;h=5e3b7c090841db424518a18b4100ddca23be65e3;p=lhc%2Fweb%2Fwiklou.git Update output language. --- diff --git a/maintenance/checkBadRedirects.php b/maintenance/checkBadRedirects.php index 52bfa65acc..bac2ff69a0 100644 --- a/maintenance/checkBadRedirects.php +++ b/maintenance/checkBadRedirects.php @@ -27,7 +27,7 @@ require_once( dirname( __FILE__ ) . '/Maintenance.php' ); class CheckBadRedirects extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Look for bad redirects"; + $this->mDescription = "Check for bad redirects"; } public function execute() { @@ -39,8 +39,8 @@ class CheckBadRedirects extends Maintenance { array( 'page_is_redirect' => 1 ) ); $count = $result->numRows(); - $this->output( "Found $count total redirects.\n" . - "Looking for bad redirects:\n\n" ); + $this->output( "Found $count redirects.\n" . + "Checking for bad redirects:\n\n" ); foreach ( $result as $row ) { $title = Title::makeTitle( $row->page_namespace, $row->page_title ); @@ -52,7 +52,7 @@ class CheckBadRedirects extends Maintenance { } } } - $this->output( "\ndone.\n" ); + $this->output( "\nDone.\n" ); } }