git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
b3c1b9b
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
content
modal_verbs.html.php
added some drafts and an example text
Christian Fraß
commited
b3c1b9b
at 2016-06-05 19:05:53
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" => ["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 kan finde vater har."], "translated" => ["We can find water here."]])); ?></p> </section>