mirror of
				https://github.com/phpbb/phpbb.git
				synced 2025-10-29 06:26:22 +01:00 
			
		
		
		
	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
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			821 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			821 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!-- IF S_TYPE == 1 -->
 | |
| <div class="panel">
 | |
| 	<div class="inner">
 | |
| 
 | |
| 	<h3>{L_CONFIRMATION}</h3>
 | |
| 	<p>{L_CONFIRM_EXPLAIN}</p>
 | |
| 
 | |
| 	<fieldset class="fields2">
 | |
| <!-- ENDIF -->
 | |
| 
 | |
| 	<dl>
 | |
| 		<dt><label for="confirm_code">{L_CONFIRM_CODE}{L_COLON}</label></dt>
 | |
| 		<dd><img src="{CONFIRM_IMAGE_LINK}" alt="{L_CONFIRM_CODE}" /></dd>
 | |
| 		<dd><input type="text" name="confirm_code" id="confirm_code" size="8" maxlength="8" tabindex="{$CAPTCHA_TAB_INDEX}" class="inputbox narrow" title="{L_CONFIRM_CODE}" />
 | |
| 		<!-- IF S_CONFIRM_REFRESH --><input type="submit" name="refresh_vc" id="refresh_vc" class="button2" value="{L_VC_REFRESH}" /><!-- ENDIF -->
 | |
| 		<input type="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" /></dd>
 | |
| 		<dd>{L_CONFIRM_CODE_EXPLAIN}</dd>
 | |
| 	</dl>
 | |
| 
 | |
| <!-- IF S_TYPE == 1 -->
 | |
| 	</fieldset>
 | |
| 	</div>
 | |
| </div>
 | |
| <!-- ENDIF -->
 |