mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Extract translation string
This commit is contained in:
parent
bd506820b7
commit
b5b8777c94
|
@ -151,4 +151,10 @@ return [
|
||||||
|
|
||||||
'attributes' => [],
|
'attributes' => [],
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Generic Validation Messages
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
'invalid_value_in_field' => 'Invalid value included in this field',
|
||||||
];
|
];
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
@if ($errors->has('pwd_secure_complexity.*'))
|
@if ($errors->has('pwd_secure_complexity.*'))
|
||||||
<span class="alert-msg">Invalid value included in this field</span>
|
<span class="alert-msg">{{ trans('validation.invalid_value_in_field') }}</span>
|
||||||
@endif
|
@endif
|
||||||
<p class="help-block">
|
<p class="help-block">
|
||||||
{{ trans('admin/settings/general.pwd_secure_complexity_help') }}
|
{{ trans('admin/settings/general.pwd_secure_complexity_help') }}
|
||||||
|
|
Loading…
Reference in a new issue