1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 07:47:34 +02:00

[ticket/17335] Use lang_raw

PHPBB-17335

Signed-off-by: Matt Friedman <maf675@gmail.com>
This commit is contained in:
Matt Friedman
2024-06-14 14:43:40 -07:00
parent 48cc96b489
commit 444137531f
2 changed files with 19 additions and 20 deletions

View File

@@ -106,9 +106,9 @@
<tr>
<td class="row3">
<ol>
<li>{{ lang(['EXTENSION_INSTALLING_EXPLAIN', 'step_1']) }}</li>
<li>{{ lang(['EXTENSION_INSTALLING_EXPLAIN', 'step_2']) }}</li>
<li>{{ lang(['EXTENSION_INSTALLING_EXPLAIN', 'step_3']) }}</li>
{% for step in lang_raw('EXTENSION_INSTALLING_EXPLAIN') %}
<li>{{ step }}</li>
{% endfor %}
</ol>
</td>
</tr>
@@ -118,10 +118,9 @@
<tr>
<td class="row3">
<ol>
<li>{{ lang(['EXTENSION_UPDATING_EXPLAIN', 'step_1']) }}</li>
<li>{{ lang(['EXTENSION_UPDATING_EXPLAIN', 'step_2']) }}</li>
<li>{{ lang(['EXTENSION_UPDATING_EXPLAIN', 'step_3']) }}</li>
<li>{{ lang(['EXTENSION_UPDATING_EXPLAIN', 'step_4']) }}</li>
{% for step in lang_raw('EXTENSION_UPDATING_EXPLAIN') %}
<li>{{ step }}</li>
{% endfor %}
</ol>
</td>
</tr>
@@ -131,9 +130,9 @@
<tr>
<td class="row3">
<ol>
<li>{{ lang(['EXTENSION_REMOVING_EXPLAIN', 'step_1']) }}</li>
<li>{{ lang(['EXTENSION_REMOVING_EXPLAIN', 'step_2']) }}</li>
<li>{{ lang(['EXTENSION_REMOVING_EXPLAIN', 'step_3']) }}</li>
{% for step in lang_raw('EXTENSION_REMOVING_EXPLAIN') %}
<li>{{ step }}</li>
{% endfor %}
</ol>
</td>
</tr>