From c67b3ee7cb891f867fa622f4b669a58a856ff54e Mon Sep 17 00:00:00 2001 From: Dmitry Khomutov Date: Wed, 28 Dec 2016 21:27:05 +0700 Subject: [PATCH] Fixed 'admin_name' string localization --- src/PHPCensor/Command/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PHPCensor/Command/InstallCommand.php b/src/PHPCensor/Command/InstallCommand.php index e0a27aa2..6a641a6a 100644 --- a/src/PHPCensor/Command/InstallCommand.php +++ b/src/PHPCensor/Command/InstallCommand.php @@ -192,7 +192,7 @@ class InstallCommand extends Command } if (!$adminName = $input->getOption('admin-name')) { - $questionName = new Question(Lang::get('admin-name')); + $questionName = new Question(Lang::get('admin_name')); $adminName = $helper->ask($input, $output, $questionName); }