@@ -80,7 +80,7 @@ protected function configure()
8080 $ this
8181 ->setDefinition (array (
8282 new InputArgument ('locale ' , InputArgument::REQUIRED , 'The locale ' ),
83- new InputArgument ('bundle ' , InputArgument::OPTIONAL , 'The bundle name or directory where to load the messages, defaults to app/Resources folder ' ),
83+ new InputArgument ('bundle ' , InputArgument::OPTIONAL , 'The bundle name or directory where to load the messages ' ),
8484 new InputOption ('prefix ' , null , InputOption::VALUE_OPTIONAL , 'Override the default prefix ' , '__ ' ),
8585 new InputOption ('no-prefix ' , null , InputOption::VALUE_NONE , '[DEPRECATED] If set, no prefix is added to the translations ' ),
8686 new InputOption ('output-format ' , null , InputOption::VALUE_OPTIONAL , 'Override the default output format ' , 'yml ' ),
@@ -93,7 +93,7 @@ protected function configure()
9393 ->setDescription ('Updates the translation file ' )
9494 ->setHelp (<<<'EOF'
9595The <info>%command.name%</info> command extracts translation strings from templates
96- of a given bundle or the app folder . It can display them or merge the new ones into the translation files.
96+ of a given bundle or the default translations directory . It can display them or merge the new ones into the translation files.
9797
9898When new translation strings are found it can automatically add a prefix to the translation
9999message.
@@ -102,7 +102,7 @@ protected function configure()
102102 <info>php %command.full_name% --dump-messages en AcmeBundle</info>
103103 <info>php %command.full_name% --force --prefix="new_" fr AcmeBundle</info>
104104
105- Example running against app messages (app/Resources folder)
105+ Example running against default messages directory
106106 <info>php %command.full_name% --dump-messages en</info>
107107 <info>php %command.full_name% --force --prefix="new_" fr</info>
108108EOF
@@ -169,7 +169,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
169169 if ($ this ->defaultViewsPath ) {
170170 $ viewsPaths [] = $ this ->defaultViewsPath ;
171171 }
172- $ currentName = 'app folder ' ;
172+ $ currentName = 'default directory ' ;
173173
174174 // Override with provided Bundle info
175175 if (null !== $ input ->getArgument ('bundle ' )) {
0 commit comments