1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-05 00:13:29 +02:00

[ticket/15289] Use lang function in template

PHPBB3-15289
This commit is contained in:
Rubén Calvo 2017-08-02 15:45:08 +02:00
parent d5438dd3f2
commit ebfb71604d

View File

@ -2,9 +2,9 @@
<a id="maincontent"></a>
<h1>{L_STORAGE_TITLE}</h1>
<h1>{{ lang('STORAGE_TITLE') }}</h1>
<p>{L_STORAGE_TITLE_EXPLAIN}</p>
<p>{{ lang('STORAGE_TITLE_EXPLAIN') }}</p>
<form id="acp_storage" method="post" action="{U_ACTION}">
@ -39,9 +39,9 @@
{% endfor %}
<fieldset class="submit-buttons">
<legend>{L_SUBMIT}</legend>
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
<legend>{{ lang('SUBMIT') }}</legend>
<input class="button1" type="submit" id="submit" name="submit" value="{{ lang('SUBMIT') }}" />&nbsp;
<input class="button2" type="reset" id="reset" name="reset" value="{{ lang('RESET') }}" />
{S_FORM_TOKEN}
</fieldset>
</form>