1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-27 10:14:47 +02:00

[ticket/10780] Replace colon usage in adm template output with {L_COLON}

Same as 46a7940a97, but for ACP templates

PHPBB3-10780
This commit is contained in:
Nathan Guse
2012-08-03 11:50:59 -05:00
committed by Andreas Fischer
parent 6e7e70a18a
commit d124cd2d59
52 changed files with 368 additions and 368 deletions

View File

@@ -36,7 +36,7 @@
<input type="hidden" name="id" value="{STYLE_ID}" />
<fieldset>
<dl>
<dt><label for="name">{L_STYLE_NAME}:</label></dt>
<dt><label for="name">{L_STYLE_NAME}{L_COLON}</label></dt>
<dd><input type="text" id="name" name="style_name" value="{STYLE_NAME}" /></dd>
</dl>
<dl>
@@ -44,11 +44,11 @@
<dd><strong>{STYLE_PATH}</strong></dd>
</dl>
<dl>
<dt><label for="name">{L_COPYRIGHT}:</label></dt>
<dt><label for="name">{L_COPYRIGHT}{L_COLON}</label></dt>
<dd><strong>{STYLE_COPYRIGHT}</strong></dd>
</dl>
<dl>
<dt><label for="style_parent">{L_INHERITING_FROM}:</label></dt>
<dt><label for="style_parent">{L_INHERITING_FROM}{L_COLON}</label></dt>
<dd><select id="style_parent" name="style_parent">
<option value=""<!-- IF STYLE_PARENT == 0 --> selected="selected"<!-- ENDIF -->> - </option>
<!-- BEGIN parent_styles -->
@@ -57,13 +57,13 @@
</select></dd>
</dl>
<dl>
<dt><label for="style_active">{L_STYLE_ACTIVE}:</label></dt>
<dt><label for="style_active">{L_STYLE_ACTIVE}{L_COLON}</label></dt>
<dd><label><input type="radio" class="radio" name="style_active" value="1"<!-- IF S_STYLE_ACTIVE --> id="style_active" checked="checked"<!-- ENDIF --> /> {L_YES}</label>
<label><input type="radio" class="radio" name="style_active" value="0"<!-- IF not S_STYLE_ACTIVE --> id="style_active" checked="checked"<!-- ENDIF --> /> {L_NO}</label></dd>
</dl>
<!-- IF not S_STYLE_DEFAULT -->
<dl>
<dt><label for="style_default">{L_STYLE_DEFAULT}:</label></dt>
<dt><label for="style_default">{L_STYLE_DEFAULT}{L_COLON}</label></dt>
<dd><label><input type="radio" class="radio" name="style_default" value="1" /> {L_YES}</label>
<label><input type="radio" class="radio" id="style_default" name="style_default" value="0" checked="checked" /> {L_NO}</label></dd>
</dl>