{{ __('Languages') }}
{{ __('Manage application localization at your ease.') }}
@if (filled($langs))
@foreach ($langs as $lang)
@endforeach
@if (filled($langs) && $langs->hasPages())
@else
@endif
{{ __('Name') }}
{{ __('Label / Short') }}
{{ __('Status') }}
{{ __('Relevent File') }}
{{ $lang->name }} [{{ strtoupper($lang->code) }}]
{{ $lang->label }} / {{ ($lang->short) ? ucfirst($lang->short) : ucfirst($lang->code) }}
{{ ($lang->status) ? __('Active') : __('Inactive') }}
@if(!file_exists(resource_path('/lang/'.$lang->code.'.json')))
@else
@endif
{{ 'resources/lang/'.data_get($lang, 'file', $lang->code.'.json') }}
{{ $langs->appends(request()->all())->links('misc.pagination') }}
@endif
{{ __('No language found in application.') }}
-
{{ __("After add any language into application, please duplicate the base translation (en.json) file to new name and start translation on language.") }}
-
{{ __("If you change the json file, please sync the language files and add into database, so you can regenerate the file any time or while updated the application.") }}