diff options
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/check_integrity.tpl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/admin/template/goto/check_integrity.tpl b/admin/template/goto/check_integrity.tpl index 26b4a3b25..7cf566123 100644 --- a/admin/template/goto/check_integrity.tpl +++ b/admin/template/goto/check_integrity.tpl @@ -1,5 +1,5 @@ <dl> - <dt>{'c13y_title'|@translate}</dt> + <dt>{'Check integrity'|@translate}</dt> <dd> <ul> <form method="post" name="c13y" id="c13y" action=""> @@ -7,8 +7,8 @@ <table class="table2"> <tr class="throw"> <th></th> - <th>{'c13y_Anomaly'|@translate}</th> - <th>{'c13y_Correction'|@translate}</th> + <th>{'Anomaly'|@translate}</th> + <th>{'Correction'|@translate}</th> </tr> {if isset($c13y_list)} {foreach from=$c13y_list item=c13y name=c13y_loop} @@ -22,21 +22,21 @@ <td> <label for="c13y_selection-{$c13y.id}"> {if $c13y.show_ignore_msg} - {'c13y_ignore_msg1'|@translate} + {'The anomaly will be ignored until next application version'|@translate} <br> - {'c13y_ignore_msg2'|@translate} + {'Correction the anomaly will cancel the fact that it\'s ignored'|@translate} {/if} {if $c13y.show_correction_fct} - {'c13y_Automatic_correction'|@translate} + {'Automatic correction'|@translate} {/if} {if $c13y.show_correction_bad_fct} - {'c13y_Impossible_automatic_correction'|@translate} + {'Impossible automatic correction'|@translate} {/if} {if $c13y.show_correction_success_fct} - {'c13y_Correction_applied_success'|@translate} + {'Correction applied with success'|@translate} {/if} {if !empty($c13y.correction_error_fct)} - {'c13y_Correction_applied_error'|@translate} + {'Correction applied with error'|@translate} <br> {$c13y.c13y.correction_error_fct} {/if} @@ -63,18 +63,18 @@ {foreach from=$c13y_do_check item=ID} document.getElementById('c13y_selection-{$ID}').checked = true; {/foreach} - return false;">{'c13y_check_auto'|@translate}</a> + return false;">{'Check automatic corrections'|@translate}</a> {/if} </p> <p> {if $c13y_show_submit_automatic_correction} - <input class="submit" type="submit" value="{'c13y_submit_correction'|@translate}" name="c13y_submit_correction" {$TAG_INPUT_ENABLED}> + <input class="submit" type="submit" value="{'Apply selected corrections'|@translate}" name="Apply selected corrections" {$TAG_INPUT_ENABLED}> {/if} {if $c13y_show_submit_ignore} - <input class="submit" type="submit" value="{'c13y_submit_ignore'|@translate}" name="c13y_submit_ignore" {$TAG_INPUT_ENABLED}> + <input class="submit" type="submit" value="{'Ignore selected anomalies'|@translate}" name="Ignore selected anomalies" {$TAG_INPUT_ENABLED}> {/if} - <input class="submit" type="submit" value="{'c13y_submit_refresh'|@translate}" name="c13y_submit_refresh"> + <input class="submit" type="submit" value="{'Refresh'|@translate}" name="Refresh"> </p> </fieldset> |