advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 1) <section class="subsection" id="tempora_and_modi">
|
save
Christian Fraß authored 6 years ago
|
source/content/tempora_and_modi.html.php 2) <header>Timeforms and modes</header>
|
personal pronouns and infin...
Christian Fraß authored 9 years ago
|
source/content/tempora_and_modi.html.php 3) <?php proposal(); ?>
|
save
Christian Fraß authored 6 years ago
|
source/content/tempora_and_modi.html.php 4) <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>
|
advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 5) <?php
|
added some drafts and an ex...
Christian Fraß authored 9 years ago
|
source/content/tempora_and_modi.html.php 6) (new class_table
|
advanced
bfadmin-master authored 9 years ago
|
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",
|
repaired tables in content
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 12) "name_",
|
advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 13) function ($value)
source/structure/tempora_and_modi.html.php 14) {
source/structure/tempora_and_modi.html.php 15) $output = $value["name"];
source/structure/tempora_and_modi.html.php 16) if ($value["remark"] != null)
source/structure/tempora_and_modi.html.php 17) {
source/structure/tempora_and_modi.html.php 18) $output .= (" " . "(" . $value["remark"] . ")");
source/structure/tempora_and_modi.html.php 19) }
source/structure/tempora_and_modi.html.php 20) return $output;
source/structure/tempora_and_modi.html.php 21) }
source/structure/tempora_and_modi.html.php 22) ),
source/structure/tempora_and_modi.html.php 23) new class_column
source/structure/tempora_and_modi.html.php 24) (
source/structure/tempora_and_modi.html.php 25) "Description",
|
repaired tables in content
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 26) "description"
|
advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 27) ),
source/structure/tempora_and_modi.html.php 28) new class_column
source/structure/tempora_and_modi.html.php 29) (
source/structure/tempora_and_modi.html.php 30) "Scheme",
|
repaired tables in content
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 31) "scheme",
|
advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 32) function ($value)
source/structure/tempora_and_modi.html.php 33) {
|
fs -> flk
Christian Fraß authored 7 years ago
|
source/content/tempora_and_modi.html.php 34) return format($value, ["type_word", "lang_flk"]);
|
advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 35) }
source/structure/tempora_and_modi.html.php 36) ),
source/structure/tempora_and_modi.html.php 37) new class_column
source/structure/tempora_and_modi.html.php 38) (
source/structure/tempora_and_modi.html.php 39) "Example",
|
repaired tables in content
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 40) "example_",
|
added transition-data and t...
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 41) _bar("type_sentence")
|
advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 42) ),
source/structure/tempora_and_modi.html.php 43) ],
|
repaired tables in content
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 44) sql_condense
source/content/tempora_and_modi.html.php 45) (
|
save
Christian Fraß authored 6 years ago
|
source/content/tempora_and_modi.html.php 46) array_slice(read_json("source/data/timeforms.json"), 0, 4),
|
repaired tables in content
Christian Fraß authored 8 years ago
|
source/content/tempora_and_modi.html.php 47) ["name","remark","example"],
source/content/tempora_and_modi.html.php 48) ["name_","example_"],
source/content/tempora_and_modi.html.php 49) [
source/content/tempora_and_modi.html.php 50) "name_" => function ($row) {return ["name" => $row["name"], "remark" => $row["remark"]];},
source/content/tempora_and_modi.html.php 51) "example_" => function ($row) {global $configuration; return ["original" => [$row["example"]["original"]], "translated" => $row["example"]["translations"][$configuration["target"]]];},
source/content/tempora_and_modi.html.php 52) ]
source/content/tempora_and_modi.html.php 53) )
|
added some drafts and an ex...
Christian Fraß authored 9 years ago
|
source/content/tempora_and_modi.html.php 54) ))->generate();
|
advanced
bfadmin-master authored 9 years ago
|
source/structure/tempora_and_modi.html.php 55) ?>
|
save
Christian Fraß authored 6 years ago
|
source/content/tempora_and_modi.html.php 56) <p>These forms can be combined straightforward to form complex timeforms:</p>
source/content/tempora_and_modi.html.php 57) <ul>
source/content/tempora_and_modi.html.php 58) <li><?php echo(format_correlation("type_sentence")(["flk" => ["Ek havde skrivt."], "eng" => ["I had written."]])); ?></li>
source/content/tempora_and_modi.html.php 59) <li><?php echo(format_correlation("type_sentence")(["flk" => ["Ek skal have skrivt."], "eng" => ["I will have written."]])); ?></li>
source/content/tempora_and_modi.html.php 60) <!--
source/content/tempora_and_modi.html.php 61) <li><?php echo(format_correlation("type_sentence")(["flk" => ["Ek hav skalt skrive."], "eng" => ["I was going to write."]])); ?></li>
source/content/tempora_and_modi.html.php 62) -->
source/content/tempora_and_modi.html.php 63) </ul>
|
fs -> flk
Christian Fraß authored 7 years ago
|
source/content/tempora_and_modi.html.php 64) <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>
|
save
Christian Fraß authored 6 years ago
|
source/content/tempora_and_modi.html.php 65) <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>
|