Skip to content

Commit

Permalink
パスワードの再設定間隔について、入力欄をわかりやすい文章に調整
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuring committed Jul 15, 2024
1 parent 3c825c5 commit 928ba0c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions plugins/bc-admin-third/templates/Admin/SiteConfigs/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
</tr>
<tr>
<th class="col-head bca-form-table__label">
<?php echo $this->BcAdminForm->label('password_reset_days', __d('baser_core', 'ログインパスワードの再設定日数')) ?>
<?php echo $this->BcAdminForm->label('password_reset_days', __d('baser_core', 'ログインパスワード強制変更<br>までの日数'), ['escape' => false]) ?>
</th>
<td class="col-input bca-form-table__input">

Expand All @@ -222,7 +222,13 @@
'maxlength' => 255
]) ?>
<i class="bca-icon--question-circle bca-help"></i>
<div class="bca-helptext"><?php echo __d('baser_core', 'ユーザーのパスワードが設定した日数以上更新されていない場合に再設定画面を表示します。再設定を行うまで管理画面の利用は不可となります。') ?></div>
<div class="bca-helptext">
<?php echo __d(
'baser_core',
'ユーザーのパスワードが設定した日数以上更新されていない場合に強制的にパスワード再設定画面を表示します。' .
'再設定を行うまで管理画面の利用は不可となります。空欄の場合には強制変更は行われません。'
) ?>
</div>
<?php echo $this->BcAdminForm->error('password_reset_days') ?>
</td>
</tr>
Expand Down

0 comments on commit 928ba0c

Please sign in to comment.