git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
000b5f0
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
content
modal_verbs.html.php
personal pronouns and infinitive
Christian Fraß
commited
000b5f0
at 2016-05-21 18:25:14
modal_verbs.html.php
Blame
History
Raw
<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" => ["kane"], "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 kan finde vater har."], "translated" => ["We can find water here."]])); ?></p> </section>