diff --git a/phpBB/config/default/container/services_console.yml b/phpBB/config/default/container/services_console.yml index 010bde025d..0e6a1b7706 100644 --- a/phpBB/config/default/container/services_console.yml +++ b/phpBB/config/default/container/services_console.yml @@ -157,6 +157,15 @@ services: tags: - { name: console.command } + console.command.thumbnail.delete: + class: phpbb\console\command\thumbnail\delete + arguments: + - @user + - @dbal.conn + - %core.root_path% + tags: + - { name: console.command } + console.command.thumbnail.generate: class: phpbb\console\command\thumbnail\generate arguments: @@ -174,12 +183,3 @@ services: - @user tags: - { name: console.command } - - console.command.thumbnail.delete: - class: phpbb\console\command\thumbnail\delete - arguments: - - @user - - @dbal.conn - - %core.root_path% - tags: - - { name: console.command } diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php index 7dd8403ed4..28fae83d5f 100644 --- a/phpBB/language/en/cli.php +++ b/phpBB/language/en/cli.php @@ -97,9 +97,9 @@ $lang = array_merge($lang, array( 'THUMBNAIL_SKIPPED' => '%1$s (%2$s) skipped.', 'THUMBNAIL_GENERATED' => '%1$s (%2$s) generated.', - 'THUMBNAIL_DELETING' => 'Deleting the thumbnails...', - 'THUMBNAIL_GENERATING' => 'Generating the thumbnails...', + 'THUMBNAIL_DELETING' => 'Deleting thumbnails…', + 'THUMBNAIL_GENERATING' => 'Generating thumbnails…', - 'NO_THUMBNAIL_TO_GENERATE' => 'No thumbnail to generate.', - 'NO_THUMBNAIL_TO_DELETE' => 'No thumbnail to delete.', + 'NO_THUMBNAIL_TO_GENERATE' => 'No thumbnails to generate.', + 'NO_THUMBNAIL_TO_DELETE' => 'No thumbnails to delete.', ));