@@ -80,7 +80,7 @@ protected function configure()
80
80
$ this
81
81
->setDefinition (array (
82
82
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 ' ),
84
84
new InputOption ('prefix ' , null , InputOption::VALUE_OPTIONAL , 'Override the default prefix ' , '__ ' ),
85
85
new InputOption ('no-prefix ' , null , InputOption::VALUE_NONE , '[DEPRECATED] If set, no prefix is added to the translations ' ),
86
86
new InputOption ('output-format ' , null , InputOption::VALUE_OPTIONAL , 'Override the default output format ' , 'yml ' ),
@@ -93,7 +93,7 @@ protected function configure()
93
93
->setDescription ('Updates the translation file ' )
94
94
->setHelp (<<<'EOF'
95
95
The <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.
97
97
98
98
When new translation strings are found it can automatically add a prefix to the translation
99
99
message.
@@ -102,7 +102,7 @@ protected function configure()
102
102
<info>php %command.full_name% --dump-messages en AcmeBundle</info>
103
103
<info>php %command.full_name% --force --prefix="new_" fr AcmeBundle</info>
104
104
105
- Example running against app messages (app/Resources folder)
105
+ Example running against default messages directory
106
106
<info>php %command.full_name% --dump-messages en</info>
107
107
<info>php %command.full_name% --force --prefix="new_" fr</info>
108
108
EOF
@@ -169,7 +169,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
169
169
if ($ this ->defaultViewsPath ) {
170
170
$ viewsPaths [] = $ this ->defaultViewsPath ;
171
171
}
172
- $ currentName = 'app folder ' ;
172
+ $ currentName = 'default directory ' ;
173
173
174
174
// Override with provided Bundle info
175
175
if (null !== $ input ->getArgument ('bundle ' )) {
0 commit comments