270847a5a6badc57411c713b4d8646dc4d18a577
bfadmin-master advanced

bfadmin-master authored 7 years ago

source/structure/tempora_and_modi.html.php  1) <section class="subsection" id="tempora_and_modi">
source/structure/tempora_and_modi.html.php  2) 	<header>Tempora and Modi</header>
Christian Fraß personal pronouns and infin...

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php    3) 	<?php proposal(); ?>
bfadmin-master advanced

bfadmin-master authored 7 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
Christian Fraß added some drafts and an ex...

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php    6) (new class_table
bfadmin-master advanced

bfadmin-master authored 7 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",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   12) 			"name_",
bfadmin-master advanced

bfadmin-master authored 7 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",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   26) 			"description"
bfadmin-master advanced

bfadmin-master authored 7 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",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   31) 			"scheme",
bfadmin-master advanced

bfadmin-master authored 7 years ago

source/structure/tempora_and_modi.html.php 32) 			function ($value)
source/structure/tempora_and_modi.html.php 33) 			{
Christian Fraß added transition-data and t...

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   34) 				return format($value, ["type_word", "lang_fs"]);
bfadmin-master advanced

bfadmin-master authored 7 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",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   40) 			"example_",
Christian Fraß added transition-data and t...

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   41) 			_bar("type_sentence")
bfadmin-master advanced

bfadmin-master authored 7 years ago

source/structure/tempora_and_modi.html.php 42) 		),
source/structure/tempora_and_modi.html.php 43) 	],
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   44) 	sql_condense
source/content/tempora_and_modi.html.php   45) 	(
source/content/tempora_and_modi.html.php   46) 		array_slice(read_json("source/data/timeforms.json"), 0, 3),
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) 	)
Christian Fraß added some drafts and an ex...

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   54) ))->generate();
bfadmin-master advanced

bfadmin-master authored 7 years ago

source/structure/tempora_and_modi.html.php 55) ?>
Christian Fraß update

Christian Fraß authored 6 years ago

source/content/tempora_and_modi.html.php   56) 	<p>Since these forms are built with auxiliary verbs, they can be combined straightforward to form complex expressions, e.g. <?php echo(format_correlation("type_sentence")(["flk" => ["Ek skal have skrivt."], "eng" => ["I will have written."]])); ?><!-- or <?php echo(format_correlation("type_sentence")(["flk" => ["Ek hav skalt skrive."], "eng" => ["I was going to write."]])); ?> -->.</p>
Christian Fraß added transition-data and t...

Christian Fraß authored 7 years ago

source/content/tempora_and_modi.html.php   57) 	<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_fs"])); ?> or <?php echo(mark("je", ["type_word", "lang_fs"])); ?>) in order to specify or emphasize the numerus. Examples: <?php echo(mark("skriv!", ["type_sentence", "lang_fs"])); ?>, <?php echo(mark("skriv, je!", ["type_sentence", "lang_fs"])); ?>.</p>