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_database.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_database.html')
-rw-r--r-- | phpBB/adm/style/acp_database.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/adm/style/acp_database.html b/phpBB/adm/style/acp_database.html index 28ac2db1b9..bf0c80bcd9 100644 --- a/phpBB/adm/style/acp_database.html +++ b/phpBB/adm/style/acp_database.html @@ -13,7 +13,7 @@ <fieldset> <legend>{L_RESTORE_OPTIONS}</legend> <dl> - <dt><label for="file">{L_SELECT_FILE}:</label></dt> + <dt><label for="file">{L_SELECT_FILE}{L_COLON}</label></dt> <dd><select id="file" name="file" size="10"><!-- BEGIN files --><option value="{files.FILE}"<!-- IF files.S_LAST_ROW --> selected="selected"<!-- ENDIF -->>{files.NAME}</option><!-- END files --></select></dd> </dl> @@ -57,26 +57,26 @@ <fieldset> <legend>{L_BACKUP_OPTIONS}</legend> <dl> - <dt><label for="type">{L_BACKUP_TYPE}:</label></dt> + <dt><label for="type">{L_BACKUP_TYPE}{L_COLON}</label></dt> <dd><label><input type="radio" class="radio" name="type" value="full" id="type" checked="checked" /> {L_FULL_BACKUP}</label> <label><input type="radio" name="type" class="radio" value="structure" /> {L_STRUCTURE_ONLY}</label> <label><input type="radio" class="radio" name="type" value="data" /> {L_DATA_ONLY}</label></dd> </dl> <dl> - <dt><label for="method">{L_FILE_TYPE}:</label></dt> + <dt><label for="method">{L_FILE_TYPE}{L_COLON}</label></dt> <dd><!-- BEGIN methods --> <label><input name="method"<!-- IF methods.S_FIRST_ROW --> id="method" checked="checked"<!-- ENDIF --> type="radio" class="radio" value="{methods.TYPE}" /> {methods.TYPE}</label> <!-- END methods --></dd> </dl> <dl> - <dt><label for="where">{L_ACTION}:</label></dt> + <dt><label for="where">{L_ACTION}{L_COLON}</label></dt> <dd> <label><input id="where" type="radio" class="radio" name="where" value="store" checked="checked" /> {L_STORE_LOCAL}</label> <label><input type="radio" class="radio" name="where" value="download" /> {L_DOWNLOAD}</label> </dd> </dl> <dl> - <dt><label for="table">{L_TABLE_SELECT}:</label></dt> + <dt><label for="table">{L_TABLE_SELECT}{L_COLON}</label></dt> <dd><select id="table" name="table[]" size="10" multiple="multiple"> <!-- BEGIN tables --> <option value="{tables.TABLE}">{tables.TABLE}</option> |