git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
dee63d9
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
content
tempora_and_modi.html.php
save
Christian Fraß
commited
dee63d9
at 2018-08-05 20:00:22
tempora_and_modi.html.php
Blame
History
Raw
<section class="subsection" id="tempora_and_modi"> <header>Timeforms and modes</header> <?php proposal(); ?> <p>The following table lists the basic timeforms found in Folksprak and how they are built in the <span class="grammarterm">indicative</span> mode.</p> <?php (new class_table ( [ new class_column ( "Name", "name_", function ($value) { $output = $value["name"]; if ($value["remark"] != null) { $output .= (" " . "(" . $value["remark"] . ")"); } return $output; } ), new class_column ( "Description", "description" ), new class_column ( "Scheme", "scheme", function ($value) { return format($value, ["type_word", "lang_flk"]); } ), new class_column ( "Example", "example_", _bar("type_sentence") ), ], sql_condense ( array_slice(read_json("source/data/timeforms.json"), 0, 4), ["name","remark","example"], ["name_","example_"], [ "name_" => function ($row) {return ["name" => $row["name"], "remark" => $row["remark"]];}, "example_" => function ($row) {global $configuration; return ["original" => [$row["example"]["original"]], "translated" => $row["example"]["translations"][$configuration["target"]]];}, ] ) ))->generate(); ?> <p>These forms can be combined straightforward to form complex timeforms:</p> <ul> <li><?php echo(format_correlation("type_sentence")(["flk" => ["Ek havde skrivt."], "eng" => ["I had written."]])); ?></li> <li><?php echo(format_correlation("type_sentence")(["flk" => ["Ek skal have skrivt."], "eng" => ["I will have written."]])); ?></li> <!-- <li><?php echo(format_correlation("type_sentence")(["flk" => ["Ek hav skalt skrive."], "eng" => ["I was going to write."]])); ?></li> --> </ul> <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 <?php echo(mark("du", ["type_word", "lang_flk"])); ?> or <?php echo(mark("je", ["type_word", "lang_flk"])); ?>) in order to specify or emphasize the numerus. Examples: <?php echo(mark("skriv!", ["type_sentence", "lang_flk"])); ?>, <?php echo(mark("skriv, je!", ["type_sentence", "lang_flk"])); ?>.</p> <p>There are two ways to form the <span class="grammarterm">subjunctive</span>. One is to use the special modal verb <?php echo(mark("vöre", ["type_word", "lang_flk"])); ?> which can be understood as a wrapper for regular verbs. The other possibility is to use the adverbial particle <?php echo(mark("maglik", ["type_word", "lang_flk"])); ?>. Both can be applied to the indicative forms, e.g.: <?php echo(format_correlation("type_sentence")(["flk" => ["Ek vör have skrivt."], "eng" => ["I would have written."]])); ?></p> </section>