diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2014-06-06 19:43:09 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-06 19:43:09 +0200 |
| commit | 69e50dffaed944c68bbfa88bf282dc765f580791 (patch) | |
| tree | b84921c73bf8762048bb474d8df91ba37bdd7c2e /phpBB/language/en/acp/common.php | |
| parent | 1f78ab536b280cabb782a0178c6260e3b3db2da3 (diff) | |
| parent | 088ce641be6528bc8705b630569c98a082455aa4 (diff) | |
| download | forums-69e50dffaed944c68bbfa88bf282dc765f580791.tar forums-69e50dffaed944c68bbfa88bf282dc765f580791.tar.gz forums-69e50dffaed944c68bbfa88bf282dc765f580791.tar.bz2 forums-69e50dffaed944c68bbfa88bf282dc765f580791.tar.xz forums-69e50dffaed944c68bbfa88bf282dc765f580791.zip | |
Merge pull request #2509 from Stephannos/ticket/12602
[ticket/12602] Add command to print the cron list
* Stephannos/ticket/12602:
[ticket/12602] Fix language key removal.
[ticket/12602] Rectify language keys.
[ticket/12602] Fix test mistake.
[ticket/12602] Fix language var mistakes.
[ticket/12602] Add types, change description of cron:list.
[ticket/12602] Fix internationalisation of cron_list.php
[ticket/12602] Fix spaces issues.
[ticket/12602] Coding style correction.
[ticket/12602] Fix coding style mistakes.
[ticket/12602] Headers updated.
[ticket/12602] Changes to respect coding style and to factorize code.
[ticket/12602] Cleanup tests
[ticket/12602] Add function get_tasks.
[ticket/12602] Correction of the output message for the cron list
[ticket/12602] Add files to print the cron list and test files.
Diffstat (limited to 'phpBB/language/en/acp/common.php')
| -rw-r--r-- | phpBB/language/en/acp/common.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/common.php b/phpBB/language/en/acp/common.php index 838a73caed..12cdc28aa3 100644 --- a/phpBB/language/en/acp/common.php +++ b/phpBB/language/en/acp/common.php @@ -223,6 +223,7 @@ $lang = array_merge($lang, array( 'BACK' => 'Back', + 'CLI_DESCRIPTION_CRON_LIST' => 'Prints a list of ready and unready cron jobs.', 'CLI_DESCRIPTION_CRON_RUN' => 'Runs all ready cron tasks.', 'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1' => 'Name of the task to be run', @@ -231,6 +232,7 @@ $lang = array_merge($lang, array( 'CRON_LOCK_ERROR' => 'Could not obtain cron lock.', 'CRON_NO_SUCH_TASK' => 'Could not find cron task ā%sā.', 'CRON_NO_TASK' => 'No cron tasks need to be run right now.', + 'CRON_NO_TASKS' => 'No cron tasks could be found.', 'DEACTIVATE' => 'Deactivate', 'DIRECTORY_DOES_NOT_EXIST' => 'The entered path ā%sā does not exist.', @@ -302,6 +304,8 @@ $lang = array_merge($lang, array( 'SHOW_ALL_OPERATIONS' => 'Show all operations', + 'TASKS_NOT_READY' => 'Not ready tasks:', + 'TASKS_READY' => 'Ready tasks:', 'TOTAL_SIZE' => 'Total size', 'UCP' => 'User Control Panel', |
