<section class="subsection" id="modal_verbs"> <header>Modal verbs</header> <?php proposal(); ?> <p>The following verbs are modal verbs in Folksprak:</p> <ul> <?php $entries = [ ["original" => ["mute"], "translated" => ["to must"]], ["original" => ["köne"], "translated" => ["to can"]], ["original" => ["vile"], "translated" => ["to will"]], ["original" => ["skale"], "translated" => ["to shall"]], ["original" => ["darfe"], "translated" => ["to be allowed to"]], ]; foreach ($entries as $entry) { ?> <li><?php echo(call_user_func(_bar("word"), $entry)); ?></li> <?php } ?> </ul> <p>Modal verbs in contrast to normal verbs never take an extended infinitive as object, e.g. <?php echo(call_user_func(_bar("sentence"), ["original" => ["Vi hop tu finde vater har."], "translated" => ["We hope to find water here."]])); ?>, but <?php echo(call_user_func(_bar("sentence"), ["original" => ["Vi kön finde vater har."], "translated" => ["We can find water here."]])); ?></p> </section>