phpmyadmin/resources/templates/setup/error.twig
Maurício Meneghini Fauth b1cb1c8129
Replace trans tag with the t function in templates
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-04-25 14:17:52 -03:00

20 lines
504 B
Twig

<div class="error">
<h4>{{ t('Warning') }}</h4>
<p>{{ t('Submitted form contains errors') }}</p>
<p>
<a href="../setup/{{ url('/setup', url_params|merge({'mode': 'revert'})) }}">
{{ t('Try to revert erroneous fields to their default values') }}
</a>
</p>
</div>
{{ errors|raw }}
<a class="btn" href="../setup/{{ url('/setup') }}">
{{ t('Ignore errors') }}
</a>
<a class="btn" href="../setup/{{ url('/setup', url_params|merge({'mode': 'edit'})) }}">
{{ t('Show form') }}
</a>