mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 22:37:28 -08:00
translations on the User Creation page
This commit is contained in:
parent
0ffd40a217
commit
69c38bf686
|
@ -41,4 +41,9 @@ return [
|
||||||
'remote' => 'Remote',
|
'remote' => 'Remote',
|
||||||
'remote_help' => 'This can be useful if you need to filter by remote users who never or rarely come into your physical locations.',
|
'remote_help' => 'This can be useful if you need to filter by remote users who never or rarely come into your physical locations.',
|
||||||
'not_remote_label' => 'This is not a remote user',
|
'not_remote_label' => 'This is not a remote user',
|
||||||
|
'create_user' => 'Create a user',
|
||||||
|
'create_user_page_explaination' => 'This is the account information you will use to access the site for the first time.',
|
||||||
|
'email_credentials' => 'Email credentials',
|
||||||
|
'email_credentials_text' => 'Email my credentials to the email address above',
|
||||||
|
'next_save_user' => 'Next: Save User',
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
@extends('layouts/setup')
|
@extends('layouts/setup')
|
||||||
{{-- TODO: Translate --}}
|
{{ trans('admin/user/table.createuser') }}
|
||||||
{{-- Page title --}}
|
|
||||||
@section('title')
|
@section('title')
|
||||||
Create a User ::
|
{{ trans('admin/user/general.create_user') }} ::
|
||||||
@parent
|
@parent
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
{{-- Page content --}}
|
{{-- Page content --}}
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
<p> This is the account information you'll use to access the site for the first time. </p>
|
<p>{{ trans('admin/user/general.create_user_page_explaination') }}</p>
|
||||||
|
|
||||||
<form action="{{ route('setup.user.save') }}" method="POST">
|
<form action="{{ route('setup.user.save') }}" method="POST">
|
||||||
{{ csrf_field() }}
|
{{ csrf_field() }}
|
||||||
|
@ -157,10 +156,10 @@ Create a User ::
|
||||||
|
|
||||||
<!-- Email credentials -->
|
<!-- Email credentials -->
|
||||||
<div class="form-group col-lg-12">
|
<div class="form-group col-lg-12">
|
||||||
<label>Email credentials</label>
|
<label>{{ trans('admin/user/general.email_credentials') }}</label>
|
||||||
<div class="checkbox">
|
<div class="checkbox">
|
||||||
<label>
|
<label>
|
||||||
<input type="checkbox" value="1" name="email_creds">Email my credentials to the email address above
|
<input type="checkbox" value="1" name="email_creds">{{ trans('admin/user/general.email_credentials_text') }}
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -168,7 +167,7 @@ Create a User ::
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
@section('button')
|
@section('button')
|
||||||
<button class="btn btn-primary">Next: Save User</button>
|
<button class="btn btn-primary">{{ trans('admin/user/general.next_save_user') }}</button>
|
||||||
</form>
|
</form>
|
||||||
@parent
|
@parent
|
||||||
@stop
|
@stop
|
||||||
|
|
Loading…
Reference in a new issue