applied new style of Yii::t params to all occurences

This commit is contained in:
Carsten Brandt
2013-10-16 22:03:26 +02:00
parent 5d6bad5faa
commit 6507e2e316
4 changed files with 7 additions and 6 deletions

View File

@@ -9,6 +9,7 @@
namespace yii\console;
use Yii;
use yii\base\InvalidRouteException;
/**
@@ -129,7 +130,7 @@ class Application extends \yii\base\Application
try {
return parent::runAction($route, $params);
} catch (InvalidRouteException $e) {
throw new Exception(\Yii::t('yii', 'Unknown command "{command}".', array('{command}' => $route)), 0, $e);
throw new Exception(Yii::t('yii', 'Unknown command "{command}".', array('command' => $route)), 0, $e);
}
}

View File

@@ -99,7 +99,7 @@ class Controller extends \yii\base\Controller
$args[] = $value;
} else {
throw new Exception(Yii::t('yii', 'Unknown option: --{name}', array(
'{name}' => $name,
'name' => $name,
)));
}
}
@@ -125,7 +125,7 @@ class Controller extends \yii\base\Controller
if (!empty($missing)) {
throw new Exception(Yii::t('yii', 'Missing required arguments: {params}', array(
'{params}' => implode(', ', $missing),
'params' => implode(', ', $missing),
)));
}

View File

@@ -58,7 +58,7 @@ class HelpController extends Controller
$result = Yii::$app->createController($command);
if ($result === false) {
throw new Exception(Yii::t('yii', 'No help for unknown command "{command}".', array(
'{command}' => $this->ansiFormat($command, Console::FG_YELLOW),
'command' => $this->ansiFormat($command, Console::FG_YELLOW),
)));
}
@@ -243,7 +243,7 @@ class HelpController extends Controller
$action = $controller->createAction($actionID);
if ($action === null) {
throw new Exception(Yii::t('yii', 'No help for unknown sub-command "{command}".', array(
'{command}' => rtrim($controller->getUniqueId() . '/' . $actionID, '/'),
'command' => rtrim($controller->getUniqueId() . '/' . $actionID, '/'),
)));
}
if ($action instanceof InlineAction) {

View File

@@ -60,7 +60,7 @@ class Controller extends \yii\base\Controller
if (!empty($missing)) {
throw new HttpException(400, Yii::t('yii', 'Missing required parameters: {params}', array(
'{params}' => implode(', ', $missing),
'params' => implode(', ', $missing),
)));
}