<?php
if ( ! defined( 'ABSPATH' ) ) exit;
function irp_ui_faq() {
    global $irp;
    $i=1;
    while($irp->Lang->H('Faq.Question'.$i)) {
        $q=$irp->Lang->L('Faq.Question'.$i);
        $r=$irp->Lang->L('Faq.Response'.$i);
        ?>
        <p>
            <b><?php echo esc_html($q)?></b>
            <br/>
            <?php echo esc_html($r)?>
        </p>
        <?php
        ++$i;
    }
}