aboutsummaryrefslogtreecommitdiff
path: root/app/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/install.php')
-rw-r--r--app/install.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/install.php b/app/install.php
index 232d24c7c..719d1b4d8 100644
--- a/app/install.php
+++ b/app/install.php
@@ -649,29 +649,29 @@ function printStep3(): void {
</div>
<div class="form-group">
- <label class="group-name" for="auth_type"><?= _t('install.auth.type') ?></label>
+ <label class="group-name" for="auth_type"><?= _t('admin.auth.type') ?></label>
<div class="group-controls">
<select id="auth_type" name="auth_type" required="required" tabindex="2">
<option value="form"<?= $auth_type === 'form' || (no_auth($auth_type) && cryptAvailable()) ? ' selected="selected"' : '',
- cryptAvailable() ? '' : ' disabled="disabled"' ?>><?= _t('install.auth.form') ?></option>
+ cryptAvailable() ? '' : ' disabled="disabled"' ?>><?= _t('admin.auth.form') ?></option>
<option value="http_auth"<?= $auth_type === 'http_auth' ? ' selected="selected"' : '',
httpAuthUser(false) == '' ? ' disabled="disabled"' : '' ?>>
- <?= _t('install.auth.http') ?> (REMOTE_USER = '<?= httpAuthUser(false) ?>')</option>
+ <?= _t('admin.auth.http') ?> (REMOTE_USER = '<?= httpAuthUser(false) ?>')</option>
<option value="none"<?= $auth_type === 'none' || (no_auth($auth_type) && !cryptAvailable()) ? ' selected="selected"' : ''
- ?>><?= _t('install.auth.none') ?></option>
+ ?>><?= _t('admin.auth.none') ?></option>
</select>
</div>
</div>
<div class="form-group">
- <label class="group-name" for="passwordPlain"><?= _t('install.auth.password_form') ?></label>
+ <label class="group-name" for="passwordPlain"><?= _t('admin.user.password_form') ?></label>
<div class="group-controls">
<div class="stick">
<input type="password" id="passwordPlain" name="passwordPlain" pattern=".{7,}"
autocomplete="off" <?= $auth_type === 'form' ? ' required="required"' : '' ?> tabindex="3" />
<button type="button" class="btn toggle-password" data-toggle="passwordPlain" tabindex="4"><?= FreshRSS_Themes::icon('key') ?></button>
</div>
- <p class="help"><?= _i('help') ?> <?= _t('install.auth.password_format') ?></p>
+ <p class="help"><?= _i('help') ?> <?= _t('admin.user.password_format') ?></p>
<noscript><b><?= _t('gen.js.should_be_activated') ?></b></noscript>
</div>
</div>