fix: add remaining missing strings
This commit is contained in:
@@ -9,13 +9,13 @@
|
||||
@if (session()->has('error'))
|
||||
|
||||
<script>
|
||||
toastr.error('{{session()->get('error')}}', '{{__('messages.global_error')}}')
|
||||
toastr.error('{{session()->get('error')}}', '{{__('Error')}}')
|
||||
</script>
|
||||
|
||||
@elseif (session()->has('success'))
|
||||
|
||||
<script>
|
||||
toastr.success('{{session()->get('success')}}', '{{__('messages.global_success')}}')
|
||||
toastr.success('{{session()->get('success')}}', '{{__('Success')}}')
|
||||
</script>
|
||||
|
||||
@endif
|
||||
|
@@ -47,7 +47,7 @@
|
||||
|
||||
<div class="card-header">
|
||||
|
||||
<h4>{{__('messages.edt_action')}} {{ $title }}...</h4>
|
||||
<h4>{{__('Editing :formTitle...', ['formTitle' => $title])}}</h4>
|
||||
|
||||
</div>
|
||||
|
||||
|
@@ -3,7 +3,7 @@
|
||||
@section('title', config('app.name'))
|
||||
|
||||
@section('content_header')
|
||||
<h1>{{config('app.name')}} / {{__('messages.dashboard')}}</h1>
|
||||
<h1>{{config('app.name')}} / {{__('Dashboard')}}</h1>
|
||||
@stop
|
||||
|
||||
@section('js')
|
||||
@@ -113,7 +113,7 @@
|
||||
<div class="icon">
|
||||
<i class="fas fa-sync"></i>
|
||||
</div>
|
||||
<a href="{{ route('showUserApps') }}" class="small-box-footer">{{__('messages.open')}} <i class="fas fa-arrow-circle-right"></i></a>
|
||||
<a href="{{ route('showUserApps') }}" class="small-box-footer">{{__('Open')}} <i class="fas fa-arrow-circle-right"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<!-- ./col -->
|
||||
|
@@ -24,7 +24,7 @@
|
||||
|
||||
<span><i class="fa fa-ban"></i> <b>{{__('This account has been suspended :suspensionTypeValue', ['suspensionTypeValue' => ($suspensionInfo['isPermanent']) ? __('permanently.') : __('until :date.', ['date' => $suspensionInfo['bannedUntil']])]) }}</b></span>
|
||||
|
||||
<p>{{__('This user has been suspended by the admins. Admins suspend accounts for a variety of reasons, including spam.')}}</p>
|
||||
<p>{{__('This user has been suspended.')}}</p>
|
||||
|
||||
<p>
|
||||
<i class="fas fa-chevron-right"></i> <b>{{$suspensionInfo['reason']}}</b>
|
||||
@@ -112,7 +112,7 @@
|
||||
</x-modal>
|
||||
@endif
|
||||
|
||||
<x-modal id="deleteAccount" modal-label="deleteAccount" modal-title="{{__('messages.reusable.confirm')}}" include-close-button="true">
|
||||
<x-modal id="deleteAccount" modal-label="deleteAccount" modal-title="{{__('Confirm')}}" include-close-button="true">
|
||||
|
||||
@if($demoActive)
|
||||
<div class="alert alert-danger">
|
||||
@@ -225,7 +225,7 @@
|
||||
<x-slot name="modalFooter"></x-slot>
|
||||
</x-modal>
|
||||
|
||||
<x-modal id="editUser" modal-label="editUser" modal-title="{{__('messages.profile.edituser')}}" include-close-button="true">
|
||||
<x-modal id="editUser" modal-label="editUser" modal-title="{{__('Edit account')}}" include-close-button="true">
|
||||
|
||||
@if($demoActive)
|
||||
<div class="alert alert-danger">
|
||||
@@ -246,7 +246,7 @@
|
||||
<label for="uuid">{{ __('Mojang UUID (deprecated)') }}</label>
|
||||
<input {{ ($demoActive) ? 'disabled' : '' }} id="uuid" type="text" name="uuid" class="form-control" required value="{{ $profile->user->uuid ?? "disabled" }}" />
|
||||
<p class="text-muted text-sm">
|
||||
<i class="fas fa-exclamation-triangle"></i> {{__('messages.profile.edituser_consequence')}}
|
||||
<i class="fas fa-exclamation-triangle"></i> {{__('If the setting "Require Valid Game License" is activated, editing this field may have unintended consequences. Proceed with caution.')}}
|
||||
</p>
|
||||
|
||||
<div class="form-group mt-3">
|
||||
|
@@ -67,7 +67,7 @@
|
||||
<div class="card-footer text-center">
|
||||
|
||||
<a href="https://github.com/{{$github}}" class="pr-2 pl-2"><i class="fab fa-github fa-2x"></i></a>
|
||||
<a href="#" onclick="toastr.info('{{__('messages.profile.discord_tag', ['discordTag' => $discord])}}')" class="pr-2 pl-2"><i class="fab fa-discord fa-2x"></i></a>
|
||||
<a href="#" onclick="toastr.info('{{__('Discord tag: :discordTag', ['discordTag' => $discord])}}')" class="pr-2 pl-2"><i class="fab fa-discord fa-2x"></i></a>
|
||||
<a href="https://twitter.com/{{$twitter}}" class="pr-2 pl-2"><i class="fab fa-twitter fa-2x"></i></a>
|
||||
<a href="https://instagram.com/{{$insta}}" class="pr-2 pl-2"><i class="fab fa-instagram fa-2x"></i></a>
|
||||
|
||||
|
@@ -65,7 +65,7 @@
|
||||
<form id="updateApplication" action="{{route('updateApplicationStatus', ['application' => $application->id, 'newStatus' => 'deny'])}}" method="POST">
|
||||
@csrf
|
||||
@method('PATCH')
|
||||
<button type="submit" class="btn btn-danger">{{__('Confirm: Deny Applicant')}}</button>
|
||||
<button type="submit" class="btn btn-danger"><i class="fas fa-ban"></i> {{__('Confirm')}}</button>
|
||||
</form>
|
||||
</x-slot>
|
||||
|
||||
@@ -222,7 +222,7 @@
|
||||
|
||||
|
||||
<div class="col mr-5">
|
||||
<button type="button" class="btn btn-danger" onclick="$('#denyApplication').modal('show')" {{($application->applicationStatus == 'DENIED') ? 'disabled' : ''}}><i class="fas fa-arrow-left"></i> {{__('messages.view_app.denyapp')}}</button>
|
||||
<button type="button" class="btn btn-danger" onclick="$('#denyApplication').modal('show')" {{($application->applicationStatus == 'DENIED') ? 'disabled' : ''}}><i class="fas fa-arrow-left"></i> {{__('Decline application')}}</button>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
|
@@ -9,7 +9,7 @@
|
||||
<!-- todo: details component -->
|
||||
|
||||
@foreach($positions as $position)
|
||||
<x-modal id="{{ $position->vacancySlug . '-details' }}" modal-label="{{ $position->vacancySlug . '-details-label' }}" modal-title="{{__('messages.details_m_title')}}" include-close-button="true">
|
||||
<x-modal id="{{ $position->vacancySlug . '-details' }}" modal-label="{{ $position->vacancySlug . '-details-label' }}" modal-title="{{__('Vacancy details')}}" include-close-button="true">
|
||||
|
||||
@if (is_null($position->vacancyFullDescription))
|
||||
|
||||
|
Reference in New Issue
Block a user