mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/15289] Use lang function in template
PHPBB3-15289
This commit is contained in:
parent
d5438dd3f2
commit
ebfb71604d
1 changed files with 5 additions and 5 deletions
|
@ -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>
|
||||||
|
|
Loading…
Add table
Reference in a new issue