diff options
Diffstat (limited to 'phpBB/phpbb/console/command/extension/show.php')
| -rw-r--r-- | phpBB/phpbb/console/command/extension/show.php | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/console/command/extension/show.php b/phpBB/phpbb/console/command/extension/show.php index 2db1c59e24..6ce9607098 100644 --- a/phpBB/phpbb/console/command/extension/show.php +++ b/phpBB/phpbb/console/command/extension/show.php @@ -21,7 +21,7 @@ class show extends command  	{  		$this  			->setName('extension:show') -			->setDescription('Lists all extensions in the database and on the filesystem.') +			->setDescription($this->user->lang('CLI_DESCRIPTION_LIST_EXTENSIONS'))  		;  	} @@ -32,7 +32,7 @@ class show extends command  		if (empty($all))  		{ -			$output->writeln('<comment>No extensions were found.</comment>'); +			$output->writeln('<comment>' . $this->user->lang('CLI_EXTENSION_NOT_FOUND') . '</comment>');  			return 3;  		}  | 
