diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-08-03 11:50:59 -0500 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2012-11-10 00:23:03 +0100 |
commit | d124cd2d593bf66abf173e1c5b97c7f371a09dc4 (patch) | |
tree | 981af20c62ee34b0af80b1453f5036e2c5b21c7a /phpBB/adm/style/acp_bots.html | |
parent | 6e7e70a18abc4368bc0728db420d1f7f61ad8686 (diff) | |
download | forums-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_bots.html')
-rw-r--r-- | phpBB/adm/style/acp_bots.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/adm/style/acp_bots.html b/phpBB/adm/style/acp_bots.html index 87679fc33a..cdd0fd4a93 100644 --- a/phpBB/adm/style/acp_bots.html +++ b/phpBB/adm/style/acp_bots.html @@ -22,27 +22,27 @@ <fieldset> <legend>{L_TITLE}</legend> <dl> - <dt><label for="bot_name">{L_BOT_NAME}:</label><br /><span>{L_BOT_NAME_EXPLAIN}</span></dt> + <dt><label for="bot_name">{L_BOT_NAME}{L_COLON}</label><br /><span>{L_BOT_NAME_EXPLAIN}</span></dt> <dd><input name="bot_name" type="text" id="bot_name" value="{BOT_NAME}" maxlength="255" /></dd> </dl> <dl> - <dt><label for="bot_style">{L_BOT_STYLE}:</label><br /><span>{L_BOT_STYLE_EXPLAIN}</span></dt> + <dt><label for="bot_style">{L_BOT_STYLE}{L_COLON}</label><br /><span>{L_BOT_STYLE_EXPLAIN}</span></dt> <dd><select id="bot_style" name="bot_style">{S_STYLE_OPTIONS}</select></dd> </dl> <dl> - <dt><label for="bot_lang">{L_BOT_LANG}:</label><br /><span>{L_BOT_LANG_EXPLAIN}</span></dt> + <dt><label for="bot_lang">{L_BOT_LANG}{L_COLON}</label><br /><span>{L_BOT_LANG_EXPLAIN}</span></dt> <dd><select id="bot_lang" name="bot_lang">{S_LANG_OPTIONS}</select></dd> </dl> <dl> - <dt><label for="bot_active">{L_BOT_ACTIVE}:</label></dt> + <dt><label for="bot_active">{L_BOT_ACTIVE}{L_COLON}</label></dt> <dd><select id="bot_active" name="bot_active">{S_ACTIVE_OPTIONS}</select></dd> </dl> <dl> - <dt><label for="bot_agent">{L_BOT_AGENT}:</label><br /><span>{L_BOT_AGENT_EXPLAIN}</span></dt> + <dt><label for="bot_agent">{L_BOT_AGENT}{L_COLON}</label><br /><span>{L_BOT_AGENT_EXPLAIN}</span></dt> <dd><input name="bot_agent" type="text" id="bot_agent" value="{BOT_AGENT}" maxlength="255" /></dd> </dl> <dl> - <dt><label for="bot_ip">{L_BOT_IP}:</label><br /><span>{L_BOT_IP_EXPLAIN}</span></dt> + <dt><label for="bot_ip">{L_BOT_IP}{L_COLON}</label><br /><span>{L_BOT_IP_EXPLAIN}</span></dt> <dd><input name="bot_ip" type="text" id="bot_ip" value="{BOT_IP}" maxlength="255" /></dd> </dl> |