aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/report_body.html
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-08-03 11:43:23 -0500
committerAndreas Fischer <bantu@phpbb.com>2012-11-10 00:23:03 +0100
commit6e7e70a18abc4368bc0728db420d1f7f61ad8686 (patch)
tree0744070e54d714e36cfd2df8e65ccbdbe9673312 /phpBB/styles/prosilver/template/report_body.html
parentb81a9a7fcba4c08804a2759ff8fadca24ada72b2 (diff)
downloadforums-6e7e70a18abc4368bc0728db420d1f7f61ad8686.tar
forums-6e7e70a18abc4368bc0728db420d1f7f61ad8686.tar.gz
forums-6e7e70a18abc4368bc0728db420d1f7f61ad8686.tar.bz2
forums-6e7e70a18abc4368bc0728db420d1f7f61ad8686.tar.xz
forums-6e7e70a18abc4368bc0728db420d1f7f61ad8686.zip
[ticket/10780] Replace colon usage in template output with {L_COLON}
Replace all the instances (I could find) where the colon is displayed to the user with {L_COLON} so it can be localised. PHPBB3-10780
Diffstat (limited to 'phpBB/styles/prosilver/template/report_body.html')
-rw-r--r--phpBB/styles/prosilver/template/report_body.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/report_body.html b/phpBB/styles/prosilver/template/report_body.html
index 3e876afe85..4cb03dc51c 100644
--- a/phpBB/styles/prosilver/template/report_body.html
+++ b/phpBB/styles/prosilver/template/report_body.html
@@ -11,12 +11,12 @@
<fieldset>
<dl class="fields2">
- <dt><label for="reason_id">{L_REASON}:</label></dt>
+ <dt><label for="reason_id">{L_REASON}{L_COLON}</label></dt>
<dd><select name="reason_id" id="reason_id" class="full"><!-- BEGIN reason --><option value="{reason.ID}"<!-- IF reason.S_SELECTED --> selected="selected"<!-- ENDIF -->>{reason.DESCRIPTION}</option><!-- END reason --></select></dd>
</dl>
<!-- IF S_CAN_NOTIFY -->
<dl class="fields2">
- <dt><label for="notify1">{L_REPORT_NOTIFY}:</label><br /><span>{L_REPORT_NOTIFY_EXPLAIN}</span></dt>
+ <dt><label for="notify1">{L_REPORT_NOTIFY}{L_COLON}</label><br /><span>{L_REPORT_NOTIFY_EXPLAIN}</span></dt>
<dd>
<label for="notify1"><input type="radio" name="notify" id="notify1" value="1" <!-- IF not S_NOTIFY -->checked="checked"<!-- ENDIF --> /> {L_YES}</label>
<label for="notify0"><input type="radio" name="notify" id="notify0" value="0" <!-- IF S_NOTIFY -->checked="checked"<!-- ENDIF --> /> {L_NO}</label>
@@ -24,7 +24,7 @@
</dl>
<!-- ENDIF -->
<dl class="fields2">
- <dt><label for="report_text">{L_MORE_INFO}:</label><br /><span>{L_CAN_LEAVE_BLANK}</span></dt>
+ <dt><label for="report_text">{L_MORE_INFO}{L_COLON}</label><br /><span>{L_CAN_LEAVE_BLANK}</span></dt>
<dd><textarea name="report_text" id="report_text" rows="10" cols="76" class="inputbox">{REPORT_TEXT}</textarea></dd>
</dl>
</fieldset>