aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_styles.html
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-08-03 11:50:59 -0500
committerAndreas Fischer <bantu@phpbb.com>2012-11-10 00:23:03 +0100
commitd124cd2d593bf66abf173e1c5b97c7f371a09dc4 (patch)
tree981af20c62ee34b0af80b1453f5036e2c5b21c7a /phpBB/adm/style/acp_styles.html
parent6e7e70a18abc4368bc0728db420d1f7f61ad8686 (diff)
downloadforums-d124cd2d593bf66abf173e1c5b97c7f371a09dc4.tar
forums-d124cd2d593bf66abf173e1c5b97c7f371a09dc4.tar.gz
forums-d124cd2d593bf66abf173e1c5b97c7f371a09dc4.tar.bz2
forums-d124cd2d593bf66abf173e1c5b97c7f371a09dc4.tar.xz
forums-d124cd2d593bf66abf173e1c5b97c7f371a09dc4.zip
[ticket/10780] Replace colon usage in adm template output with {L_COLON}
Same as 46a7940a976ec1f54078f803ec949aa2bfbf6316, but for ACP templates PHPBB3-10780
Diffstat (limited to 'phpBB/adm/style/acp_styles.html')
-rw-r--r--phpBB/adm/style/acp_styles.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/adm/style/acp_styles.html b/phpBB/adm/style/acp_styles.html
index b09cbafc95..3dc4c2d616 100644
--- a/phpBB/adm/style/acp_styles.html
+++ b/phpBB/adm/style/acp_styles.html
@@ -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>