1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-12 23:44:32 +02:00

[ticket/17552] Remove plural rule structure in extensions.php

PHPBB-17552
This commit is contained in:
Christian Schnegelberger
2025-09-27 09:42:36 +02:00
parent e347fdca8e
commit d5841e41b3
2 changed files with 27 additions and 28 deletions

View File

@@ -99,9 +99,9 @@
<tr>
<td class="row3">
<ol>
{% for step in lang_raw('EXTENSION_INSTALLING_EXPLAIN') %}
<li>{{ step }}</li>
{% endfor %}
<li>{{ EXTENSION_INSTALLING_EXPLAIN_STEP1 }}</li>
<li>{{ EXTENSION_INSTALLING_EXPLAIN_STEP2 }}</li>
<li>{{ EXTENSION_INSTALLING_EXPLAIN_STEP3 }}</li>
</ol>
</td>
</tr>
@@ -111,9 +111,10 @@
<tr>
<td class="row3">
<ol>
{% for step in lang_raw('EXTENSION_UPDATING_EXPLAIN') %}
<li>{{ step }}</li>
{% endfor %}
<li>{{ EXTENSION_UPDATING_EXPLAIN_STEP1 }}</li>
<li>{{ EXTENSION_UPDATING_EXPLAIN_STEP2 }}</li>
<li>{{ EXTENSION_UPDATING_EXPLAIN_STEP3 }}</li>
<li>{{ EXTENSION_UPDATING_EXPLAIN_STEP4 }}</li>
</ol>
</td>
</tr>
@@ -123,9 +124,9 @@
<tr>
<td class="row3">
<ol>
{% for step in lang_raw('EXTENSION_REMOVING_EXPLAIN') %}
<li>{{ step }}</li>
{% endfor %}
<li>{{ EXTENSION_REMOVING_EXPLAIN_STEP1 }}</li>
<li>{{ EXTENSION_REMOVING_EXPLAIN_STEP2 }}</li>
<li>{{ EXTENSION_REMOVING_EXPLAIN_STEP3 }}</li>
</ol>
</td>
</tr>