@extends('layouts.app') @section('title') {{trans('title.translation_manager')}} @stop @section('plugin-styles') @stop @section('content')

{!! trans('title.translations_visible_text')!!}

@if(Session::has('successPublish'))
{{Session::get('successPublish')}}
@endif

@if(!isset($group))

@endif @if(isset($group))
{{trans('title.back')}}
@endif


{{trans('title.choose_group_translations_text')}}

@if($group) @if($group != "all")
@endif

{{trans('forms.lbl_total')}}: {{$numTranslations}}, {{trans('title.lbl_changed')}}: {{$numChanged}}

@foreach ($locales as $locale) @endforeach @if ($deleteEnabled) @endif @foreach ($translations as $key => $translation) @php $temp_group = null; @endphp @foreach ($locales as $locale) @php $t = isset($translation[$locale]) ? $translation[$locale] : null @endphp @php $temp_group = isset($translation[$locale]) ? $translation[$locale]->group : (isset($temp_group) ? $temp_group : null) @endphp @endforeach @if ($deleteEnabled) @endif @endforeach
{{trans('title.lbl_key')}}{{$locale}} 
{{htmlentities($key, ENT_QUOTES, 'UTF-8', false)}} {{$t ? htmlentities($t->value, ENT_QUOTES, 'UTF-8', false) : ''}} @if(isset($key) && isset($temp_group)) @endif
@else
{{trans('title.supported_locales')}}

{{trans('title.current_supported_locales')}}:

    @foreach($locales as $locale)
  • {{$locale}}
  • @endforeach

{{trans('title.Enter_new_locale_key')}}:

{{trans('title.export_all_translations')}}
@endif
@stop @section('footer-script') @stop