diff options
Diffstat (limited to 'core/templates/update.use-cli.php')
-rw-r--r-- | core/templates/update.use-cli.php | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/core/templates/update.use-cli.php b/core/templates/update.use-cli.php index ae82436d2f1..a13dd2f51f1 100644 --- a/core/templates/update.use-cli.php +++ b/core/templates/update.use-cli.php @@ -1,9 +1,16 @@ +<?php +/** + * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-FileCopyrightText: 2016 ownCloud, Inc. + * SPDX-License-Identifier: AGPL-3.0-only + */ +?> <div class="guest-box update" data-productname="<?php p($_['productName']) ?>" data-version="<?php p($_['version']) ?>"> <div class="updateOverview"> <h2 class="title"><?php p($l->t('Update needed')) ?></h2> <div class="text-left"> <?php if ($_['tooBig']) { - p($l->t('Please use the command line updater because you have a big instance with more than 50 users.')); + p($l->t('Please use the command line updater because you have a big instance with more than 50 accounts.')); } else { p($l->t('Please use the command line updater because updating via browser is disabled in your config.php.')); } ?><br><br> @@ -12,7 +19,7 @@ } else { $cliUpgradeLink = link_to_docs('admin-cli-upgrade'); } - print_unescaped($l->t('For help, see the <a target="_blank" rel="noreferrer noopener" href="%s">documentation</a>.', [$cliUpgradeLink])); ?> +print_unescaped($l->t('For help, see the <a target="_blank" rel="noreferrer noopener" href="%s">documentation</a>.', [$cliUpgradeLink])); ?> </div> </div> |