1
0
mirror of https://github.com/flarum/core.git synced 2025-08-26 09:34:59 +02:00

Extract translations from core blade files.

- Extracts translations from `reset.blade.php`.
- Adjusts namespacing of translations in other files.
- Fixes one direct reference to a `core.ref` key.
This commit is contained in:
dcsjapan
2016-04-07 17:45:58 +09:00
parent e30f8f261b
commit 6d5582e4ac
4 changed files with 11 additions and 11 deletions

View File

@@ -1,14 +1,14 @@
<div id="flarum-loading" style="display: none">
{{ $translator->trans('core.basic.loading_text') }}
{{ $translator->trans('core.views.content.loading_text') }}
</div>
@if (! $noJs) <noscript> @endif
<div class="Alert">
<div class="container">
@if ($noJs)
{{ $translator->trans('core.basic.load_error_message') }}
{{ $translator->trans('core.views.content.load_error_message') }}
@else
{{ $translator->trans('core.basic.javascript_disabled_message') }}
{{ $translator->trans('core.views.content.javascript_disabled_message') }}
@endif
</div>
</div>