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

Use ellipsis instead of triple dot
pull/9635/head
Morris Jobke 7 years ago committed by GitHub
commit ebea6d37c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      core/Command/Upgrade.php
  2. 2
      core/ajax/update.php

@ -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) {

@ -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'));

Loading…
Cancel
Save