advanced
bfadmin-master authored 8 years ago
|
source/structure/tempora_and_modi.html.php 4) <p>The following table lists the timeforms found in Folksprak and how they are built in the <span class="grammarterm">indicative</span> mode.</p>
source/structure/tempora_and_modi.html.php 5) <?php
source/structure/tempora_and_modi.html.php 6) $table = new class_table
source/structure/tempora_and_modi.html.php 7) (
source/structure/tempora_and_modi.html.php 8) [
source/structure/tempora_and_modi.html.php 9) new class_column
source/structure/tempora_and_modi.html.php 10) (
source/structure/tempora_and_modi.html.php 11) "Name",
source/structure/tempora_and_modi.html.php 12) function ($row)
source/structure/tempora_and_modi.html.php 13) {
source/structure/tempora_and_modi.html.php 14) return ["name" => $row["name"], "remark" => $row["remark"]];
source/structure/tempora_and_modi.html.php 15) },
source/structure/tempora_and_modi.html.php 16) function ($value)
source/structure/tempora_and_modi.html.php 17) {
source/structure/tempora_and_modi.html.php 18) $output = $value["name"];
source/structure/tempora_and_modi.html.php 19) if ($value["remark"] != null)
source/structure/tempora_and_modi.html.php 20) {
source/structure/tempora_and_modi.html.php 21) $output .= (" " . "(" . $value["remark"] . ")");
source/structure/tempora_and_modi.html.php 22) }
source/structure/tempora_and_modi.html.php 23) return $output;
source/structure/tempora_and_modi.html.php 24) }
source/structure/tempora_and_modi.html.php 25) ),
source/structure/tempora_and_modi.html.php 26) new class_column
source/structure/tempora_and_modi.html.php 27) (
source/structure/tempora_and_modi.html.php 28) "Description",
source/structure/tempora_and_modi.html.php 29) function ($row)
source/structure/tempora_and_modi.html.php 30) {
source/structure/tempora_and_modi.html.php 31) return $row["description"];
source/structure/tempora_and_modi.html.php 32) }
source/structure/tempora_and_modi.html.php 33) ),
source/structure/tempora_and_modi.html.php 34) new class_column
source/structure/tempora_and_modi.html.php 35) (
source/structure/tempora_and_modi.html.php 36) "Scheme",
source/structure/tempora_and_modi.html.php 37) function ($row)
source/structure/tempora_and_modi.html.php 38) {
source/structure/tempora_and_modi.html.php 39) return $row["scheme"];
source/structure/tempora_and_modi.html.php 40) },
source/structure/tempora_and_modi.html.php 41) function ($value)
source/structure/tempora_and_modi.html.php 42) {
source/structure/tempora_and_modi.html.php 43) return format($value, ["word", "lang_fs"]);
source/structure/tempora_and_modi.html.php 44) }
source/structure/tempora_and_modi.html.php 45) ),
source/structure/tempora_and_modi.html.php 46) new class_column
source/structure/tempora_and_modi.html.php 47) (
source/structure/tempora_and_modi.html.php 48) "Example",
source/structure/tempora_and_modi.html.php 49) function ($row)
source/structure/tempora_and_modi.html.php 50) {
source/structure/tempora_and_modi.html.php 51) global $configuration;
source/structure/tempora_and_modi.html.php 52) return ["original" => [$row["example"]["original"]], "translated" => $row["example"]["translations"][$configuration["target"]]];
source/structure/tempora_and_modi.html.php 53) },
source/structure/tempora_and_modi.html.php 54) _bar("sentence")
source/structure/tempora_and_modi.html.php 55) ),
source/structure/tempora_and_modi.html.php 56) ],
source/structure/tempora_and_modi.html.php 57) array_slice(read_json("source/data/timeforms.json"), 0, 3)
source/structure/tempora_and_modi.html.php 58) );
source/structure/tempora_and_modi.html.php 59) $table->generate();
source/structure/tempora_and_modi.html.php 60) ?>
|
personal pronouns and infin...
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 61) <p>Since these forms are built with auxiliary verbs, they can be combined straightforward to form complex expressions, e.g. <?php echo(call_user_func(_bar("sentence"), ["original" => ["Ek skal have skrivt."], "translated" => ["I will have written."]])); ?><!-- or <?php echo(call_user_func(_bar("sentence"), ["original" => ["Ek hav skalt skrive."], "translated" => ["I was going to write."]])); ?> -->.</p>
source/content/tempora_and_modi.html.php 62) <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">jer</span>) in order to specify or emphasize the numerus. Examples: <span class="sentence lang_fs">skriv!</span>, <span class="sentence lang_fs">skriv, jer!</span>.</p>
|