{{ __('Admin') }} {{ __('Languages') }}
{{ __('Admin · System · Languages') }}

{{ __('Platform') }} {{ __('languages') }}

{{ __('Manage which languages new users and workspaces can pick. The "default" language is the fallback for every newly created account.') }}

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{ __('Total') }}
{{ $stats['total'] }}
{{ __('configured') }}
{{ __('Active') }}
{{ $stats['active'] }}
{{ __('visible to users') }}
{{ __('Default') }}
{{ $stats['default'] }}
{{ __('fallback for new accounts') }}
{{ __('Catalog') }}

{{ __('All languages') }}

@forelse ($languages as $l) @empty @endforelse
# {{ __('Name') }} {{ __('Code') }} {{ __('Dir') }} {{ __('Active') }} {{ __('Default') }}
{{ $l->sort_order }}
{{ $l->name }}
@if ($l->native_name)
{{ $l->native_name }}
@endif
{{ $l->code }} {{ $l->direction }}
@csrf
@if ($l->code === $defaultCode) {{ __('Default') }} @else
@csrf
@endif
@if ($l->code !== $defaultCode)
@csrf @method('DELETE')
@endif
{{ __('No languages yet. Add one on the right.') }}