git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
77d8eec
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
content
tempora_and_modi.html.php
renamed structure to content
Christian Fraß
commited
77d8eec
at 2016-05-15 20:38:28
tempora_and_modi.html.php
Blame
History
Raw
<section class="subsection" id="tempora_and_modi"> <header>Tempora and Modi</header> <p>The following table lists the timeforms found in Folksprak and how they are built in the <span class="grammarterm">indicative</span> mode.</p> <?php $table = new class_table ( [ new class_column ( "Name", function ($row) { return ["name" => $row["name"], "remark" => $row["remark"]]; }, function ($value) { $output = $value["name"]; if ($value["remark"] != null) { $output .= (" " . "(" . $value["remark"] . ")"); } return $output; } ), new class_column ( "Description", function ($row) { return $row["description"]; } ), new class_column ( "Scheme", function ($row) { return $row["scheme"]; }, function ($value) { return format($value, ["word", "lang_fs"]); } ), new class_column ( "Example", function ($row) { global $configuration; return ["original" => [$row["example"]["original"]], "translated" => $row["example"]["translations"][$configuration["target"]]]; }, _bar("sentence") ), ], array_slice(read_json("source/data/timeforms.json"), 0, 3) ); $table->generate(); ?> <p>Since these forms are built with auxiliary verbs, they can be combined straightforward to form complex expressions. For example <span class="sentence lang_fs">ek skal hava skrivt.</span> means <span class="sentence lang_en">i will have written.</span> and <span class="sentence lang_fs">ek hav skalt skriva.</span> means sth. like <span class="sentence lang_en">i was going to write.</span>.</p> <p>The <span class="grammarterm">imperative</span> only exists in the present (with future meaning) for the 2nd person singular and plural. It is formed by using the bare stem of the verb, optionally followed by the personal pronoun (i.e. either <span class="word lang_fs">du</span> or <span class="word lang_fs">je</span>) in order to specify or emphasize the numerus. Examples: <span class="sentence lang_fs">skriv!</span>, <span class="sentence lang_fs">skriv, je!</span>.</p> <span class="todo">conjunctive</span> </section>