mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 03:22:37 +02:00
[ticket/15289] Use lang function in template
PHPBB3-15289
This commit is contained in:
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
<a id="maincontent"></a>
|
<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}">
|
<form id="acp_storage" method="post" action="{U_ACTION}">
|
||||||
|
|
||||||
@@ -39,9 +39,9 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<fieldset class="submit-buttons">
|
<fieldset class="submit-buttons">
|
||||||
<legend>{L_SUBMIT}</legend>
|
<legend>{{ lang('SUBMIT') }}</legend>
|
||||||
<input class="button1" type="submit" id="submit" name="submit" value="{L_SUBMIT}" />
|
<input class="button1" type="submit" id="submit" name="submit" value="{{ lang('SUBMIT') }}" />
|
||||||
<input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
|
<input class="button2" type="reset" id="reset" name="reset" value="{{ lang('RESET') }}" />
|
||||||
{S_FORM_TOKEN}
|
{S_FORM_TOKEN}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
Reference in New Issue
Block a user