diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-06-22 14:02:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-22 14:02:17 +0200 |
commit | ebea6d37c3fb43df4adbcb24cbc00ceb3f75a9b4 (patch) | |
tree | 03dc7303b3133d1945525c9675a6cf6e17921a90 /core | |
parent | 11e73b7a4f06ccce754c9d803fe538f19df16f4b (diff) | |
parent | 6eb265389744753cb6d76fc355c176f068fc748e (diff) | |
download | nextcloud-server-ebea6d37c3fb43df4adbcb24cbc00ceb3f75a9b4.tar.gz nextcloud-server-ebea6d37c3fb43df4adbcb24cbc00ceb3f75a9b4.zip |
Merge pull request #9964 from nextcloud/bugfix/noid/typo-tripl-dot-instead-of-ellipsis
Use ellipsis instead of triple dot
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Upgrade.php | 2 | ||||
-rw-r--r-- | core/ajax/update.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index f6f33783684..86f049d9f2a 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.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) { diff --git a/core/ajax/update.php b/core/ajax/update.php index c1210eaa5b7..377da746100 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -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')); |