aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/cli.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-07-22 16:24:40 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-07-09 09:21:51 +0200
commit487fea8cfffe872e888ebcc3e1f5538b72bcaec1 (patch)
tree844be698767bbc2ad4aedc8beb3295658b61af55 /phpBB/language/en/cli.php
parent54be6b1f622cf394f3cb2c7eb5f2c27072018baa (diff)
downloadforums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar
forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar.gz
forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar.bz2
forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.tar.xz
forums-487fea8cfffe872e888ebcc3e1f5538b72bcaec1.zip
[ticket/12692] Move the language strings to cli.php
PHPBB3-12692
Diffstat (limited to 'phpBB/language/en/cli.php')
-rw-r--r--phpBB/language/en/cli.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php
index d45c52ac5d..f0e5dd6120 100644
--- a/phpBB/language/en/cli.php
+++ b/phpBB/language/en/cli.php
@@ -72,6 +72,10 @@ $lang = array_merge($lang, array(
'CLI_DESCRIPTION_SET_ATOMIC_CONFIG' => 'Sets a configuration option’s value only if the old matches the current value',
'CLI_DESCRIPTION_SET_CONFIG' => 'Sets a configuration option’s value',
+ 'CLI_DESCRIPTION_THUMBNAIL_DELETE' => 'Delete all existing thumbnails.',
+ 'CLI_DESCRIPTION_THUMBNAIL_GENERATE' => 'Generate all missing thumbnails.',
+ 'CLI_DESCRIPTION_THUMBNAIL_RECREATE' => 'Recreate all thumbnails.',
+
'CLI_EXTENSION_DISABLE_FAILURE' => 'Could not disable extension %s',
'CLI_EXTENSION_DISABLE_SUCCESS' => 'Successfully disabled extension %s',
'CLI_EXTENSION_ENABLE_FAILURE' => 'Could not enable extension %s',
@@ -80,13 +84,16 @@ $lang = array_merge($lang, array(
'CLI_EXTENSION_PURGE_FAILURE' => 'Could not purge extension %s',
'CLI_EXTENSION_PURGE_SUCCESS' => 'Successfully purged extension %s',
'CLI_EXTENSION_NOT_FOUND' => 'No extensions were found.',
- 'CLI_EXTENSIONS_AVAILABLE' => 'Available',
- 'CLI_EXTENSIONS_DISABLED' => 'Disabled',
- 'CLI_EXTENSIONS_ENABLED' => 'Enabled',
'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS' => 'Successfully recalculated all email hashes.',
'CLI_REPARSER_REPARSE_REPARSING' => 'Reparsing %1$s (range %2$d..%3$d)',
'CLI_REPARSER_REPARSE_REPARSING_START' => 'Reparsing %s...',
'CLI_REPARSER_REPARSE_SUCCESS' => 'Reparsing ended with success',
+
+ // In all the case %1$s is the logical name of the file and %2$s the real name on the filesystem
+ // eg: big_image.png (2_a51529ae7932008cf8454a95af84cacd) generated.
+ 'THUMBNAIL_DELETED' => '%1$s (%2$s) deleted.',
+ 'THUMBNAIL_SKIPPED' => '%1$s (%2$s) skipped.',
+ 'THUMBNAIL_GENERATED' => '%1$s (%2$s) generated.',
));