@extends('admin.layouts.app') @section('container', 'dashboard-container-xl') @section('section', d_trans('Settings')) @section('title', d_trans('Languages')) @section('header_title', d_trans(':language translates', ['language' => $language->name])) @section('back', route('admin.settings.languages.index')) @section('form', true) @section('content')
{{ d_trans('Important!') }}
  • {!! d_trans( 'There are some words that should not be translated that start with some tags or are inside a tag like :tags etc...', [ 'tags' => ':value, :seconds, :min, ::max, {username}', ], ) !!}
  • {{ d_trans('You must clear the cache after saving the translations.') }}
  • {{ d_trans('Dynamic translates are automatically added and they cannot be deleted.') }}
  • {{ d_trans('Manual translates are are the new content you added and they can be deleted.') }}
  • {{ d_trans('Dynamic Translates') }} {{ d_trans('Manual Translates') }}
    @if ($type == \App\Models\Translate::TYPE_MANUAL) @endif
    @csrf
    @forelse ($translates as $translate)
    @if ($translate->isManual()) @endif
    @empty
    {{ d_trans('No data found') }}
    @endforelse
    {{ $translates->links() }}
    @csrf @method('DELETE')
    @push('scripts_libs') @endpush @push('scripts') @endpush @endsection