@@ -, +, @@ given --- misc/translator/translate | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/misc/translator/translate +++ a/misc/translator/translate @@ -76,8 +76,10 @@ if ( $cmd =~ /^(install|compress|uncompress)$/ ) { $command .= " --silent" if (!$verbose); $command .= " --lang $lang" if ($lang); - print STDERR "Deprecation notice: PO creation and update are now gulp tasks. See docs/development/internationalization.md\n"; - print STDERR "Running `$command`\n"; + if ($verbose) { + print STDERR "Deprecation notice: PO creation and update are now gulp tasks. See docs/development/internationalization.md\n"; + print STDERR "Running `$command`\n"; + } system($command); } else { --