Merge pull request #12747 from svpernova09/preflight-strings

Pre-Flight String fixes for step 2
This commit is contained in:
snipe 2023-03-28 08:37:43 -07:00 committed by GitHub
commit e03a961bcc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -433,4 +433,7 @@ return [
'errors_importing' => 'Some Errors occurred while importing: ',
'warning' => 'WARNING: :warning',
'success_redirecting' => '"Success... Redirecting.',
];
'setup_successful_migrations' => 'Your database tables have been created',
'setup_migration_output' => 'Migration output:',
'setup_migration_create_user' => 'Next: Create User',
];

View file

@ -32,7 +32,7 @@
@section('button')
<form action="{{ route('setup.user') }}" method="GET">
<button class="btn btn-primary">{{ trans('general.setup_migrations_create_user') }}</button>
<button class="btn btn-primary">{{ trans('general.setup_migration_create_user') }}</button>
</form>
@parent
@stop