diff options
author | Jan C. Borchardt <925062+jancborchardt@users.noreply.github.com> | 2024-12-23 15:38:28 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-01-07 09:48:18 +0000 |
commit | 9b7b15532ba2a6f71d9661ecf68391c4ff20d36a (patch) | |
tree | 959ad64925423926a84de070bafeee0f48d56379 | |
parent | 32c726171ac3661b14e19c57ffd0b430822ecde5 (diff) | |
download | nextcloud-server-9b7b15532ba2a6f71d9661ecf68391c4ff20d36a.tar.gz nextcloud-server-9b7b15532ba2a6f71d9661ecf68391c4ff20d36a.zip |
fix(setup): clarify installation wording to be clear that it is about account creationbackport/49962/stable30
Signed-off-by: Jan C. Borchardt <925062+jancborchardt@users.noreply.github.com>
-rw-r--r-- | core/templates/installation.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 5343464edbc..c6dcf421787 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -38,15 +38,15 @@ script('core', 'install'); </fieldset> <?php endif; ?> <fieldset id="adminaccount"> - <legend><?php print_unescaped($l->t('Create an <strong>admin account</strong>')); ?></legend> + <legend><?php print_unescaped($l->t('<strong>Create an admin account</strong>')); ?></legend> <p> - <label for="adminlogin"><?php p($l->t('Login')); ?></label> + <label for="adminlogin"><?php p($l->t('New admin account name')); ?></label> <input type="text" name="adminlogin" id="adminlogin" value="<?php p($_['adminlogin']); ?>" autocomplete="off" autocapitalize="none" spellcheck="false" autofocus required> </p> <p class="groupbottom"> - <label for="adminpass"><?php p($l->t('Password')); ?></label> + <label for="adminpass"><?php p($l->t('New admin password')); ?></label> <input type="password" name="adminpass" data-typetoggle="#show" id="adminpass" value="<?php p($_['adminpass']); ?>" autocomplete="off" autocapitalize="none" spellcheck="false" required> |