mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 09:41:49 +08:00
6d5582e4ac
- Extracts translations from `reset.blade.php`. - Adjusts namespacing of translations in other files. - Fixes one direct reference to a `core.ref` key.
18 lines
453 B
PHP
18 lines
453 B
PHP
<div id="flarum-loading" style="display: none">
|
|
{{ $translator->trans('core.views.content.loading_text') }}
|
|
</div>
|
|
|
|
@if (! $noJs) <noscript> @endif
|
|
<div class="Alert">
|
|
<div class="container">
|
|
@if ($noJs)
|
|
{{ $translator->trans('core.views.content.load_error_message') }}
|
|
@else
|
|
{{ $translator->trans('core.views.content.javascript_disabled_message') }}
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
{!! $content !!}
|
|
@if (! $noJs) </noscript> @endif
|