Merge pull request #9964 from nextcloud/bugfix/noid/typo-tripl-dot-instead-of-ellipsis

Use ellipsis instead of triple dot
This commit is contained in:
Morris Jobke 2018-06-22 14:02:17 +02:00 committed by GitHub
commit ebea6d37c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -193,7 +193,7 @@ class Upgrade extends Command {
$output->writeln('<info>Maintenance mode is kept active</info>');
});
$updater->listen('\OC\Updater', 'waitForCronToFinish', function () use($output) {
$output->writeln('<info>Waiting for cron to finish (checks again in 5 seconds)...</info>');
$output->writeln('<info>Waiting for cron to finish (checks again in 5 seconds)</info>');
});
$updater->listen('\OC\Updater', 'updateEnd',
function ($success) use($output, $self) {

View File

@ -154,7 +154,7 @@ if (\OCP\Util::needUpgrade()) {
$eventSource->send('success', (string)$l->t('Maintenance mode is kept active'));
});
$updater->listen('\OC\Updater', 'waitForCronToFinish', function () use ($eventSource, $l) {
$eventSource->send('success', (string)$l->t('Waiting for cron to finish (checks again in 5 seconds)...'));
$eventSource->send('success', (string)$l->t('Waiting for cron to finish (checks again in 5 seconds)'));
});
$updater->listen('\OC\Updater', 'dbUpgradeBefore', function () use($eventSource, $l) {
$eventSource->send('success', (string)$l->t('Updating database schema'));