aboutsummaryrefslogtreecommitdiff
path: root/app/install.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-01-28 15:33:17 +0100
committerGravatar GitHub <noreply@github.com> 2025-01-28 15:33:17 +0100
commitbb7236e26362fe6297cc76f81ae7f75caeb0b232 (patch)
treede85f3d44e6c1293735ed0c6452152d2a2941e46 /app/install.php
parentd7ca2f8768fed347f6132a4cb98bd54c4d7163bb (diff)
Better authorization label for OIDC (#7264)
* Better authorization label for OIDC Reword description of HTTP login method to include OIDC fix https://github.com/FreshRSS/FreshRSS/issues/7254#issuecomment-2615838151 And remove several duplicated i18n entries. And add to documentation https://www.authelia.com/integration/openid-connect/freshrss/ * Update app/i18n/it/admin.php Co-authored-by: UserRoot-Luca <55756898+UserRoot-Luca@users.noreply.github.com> * Update app/i18n/nl/admin.php Co-authored-by: Frans de Jonge <fransdejonge@gmail.com> --------- Co-authored-by: UserRoot-Luca <55756898+UserRoot-Luca@users.noreply.github.com> Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
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>