diff options
author | Joas Schilling <coding@schilljs.com> | 2018-06-22 11:08:26 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-06-22 11:08:26 +0200 |
commit | 6eb265389744753cb6d76fc355c176f068fc748e (patch) | |
tree | 5fafb18db47aaa05ee9d4aeb96a9becc3239daa9 /core/ajax | |
parent | 8ebc3d90a0876d243c889108f3a95219c0863458 (diff) | |
download | nextcloud-server-6eb265389744753cb6d76fc355c176f068fc748e.tar.gz nextcloud-server-6eb265389744753cb6d76fc355c176f068fc748e.zip |
Use ellipsis instead of triple dot
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/ajax')
-rw-r--r-- | core/ajax/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
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')); |