459c086857bcaa39df6507386c7f301d4fe78988
Fenris Wolf advanced

Fenris Wolf authored 7 years ago

source/structure/phonology_and_orthography.html.php  1) <?php
fenris advanced

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  2) 	global $configuration;
source/structure/phonology_and_orthography.html.php  3) 	include_once("source/logic/server/data.php");
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  4) 	include_once("source/logic/server/table.php");
source/structure/phonology_and_orthography.html.php  5) 	include_once("source/logic/server/misc.php");
Fenris Wolf advanced

Fenris Wolf authored 7 years ago

source/structure/phonology_and_orthography.html.php  6)  ?>
bfadmin-master advanced

bfadmin-master authored 7 years ago

source/structure/phonology_and_orthography.html.php  7) <section class="section" id="phonology_and_orthography">
Fenris Wolf advanced

Fenris Wolf authored 7 years ago

source/structure/phonology_and_orthography.html.php  8) 	<header>Phonology and Orthography</header>
source/structure/phonology_and_orthography.html.php  9) 	<!--
source/structure/phonology_and_orthography.html.php 10) 	<p>Folksprak uses the following characters as letters:</pa>
source/structure/phonology_and_orthography.html.php 11) 	  -->
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 12) 	<!--
source/structure/phonology_and_orthography.html.php 13) 	<div class="note_information">It was not easy to find a phonology system for Folksprak.</div>
source/structure/phonology_and_orthography.html.php 14) 	  -->
Fenris Wolf advanced

Fenris Wolf authored 7 years ago

source/structure/phonology_and_orthography.html.php 15) <?php
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 16) 	$table = new class_table
source/structure/phonology_and_orthography.html.php 17) 	(
source/structure/phonology_and_orthography.html.php 18) 		[
source/structure/phonology_and_orthography.html.php 19) 			new class_column
source/structure/phonology_and_orthography.html.php 20) 			(
source/structure/phonology_and_orthography.html.php 21) 				"IPA-sound",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   22) 				"ipa",
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 23) 				function ($value)
source/structure/phonology_and_orthography.html.php 24) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   25) 					return format($value);
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 26) 				}
source/structure/phonology_and_orthography.html.php 27) 			),
source/structure/phonology_and_orthography.html.php 28) 			/*
source/structure/phonology_and_orthography.html.php 29) 			new class_column
source/structure/phonology_and_orthography.html.php 30) 			(
source/structure/phonology_and_orthography.html.php 31) 				"Type",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   32) 				"type"];
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 33) 				}
source/structure/phonology_and_orthography.html.php 34) 			),
source/structure/phonology_and_orthography.html.php 35) 			 */
source/structure/phonology_and_orthography.html.php 36) 			new class_column
source/structure/phonology_and_orthography.html.php 37) 			(
source/structure/phonology_and_orthography.html.php 38) 				"Latin letter Representation",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   39) 				"latin",
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 40) 				function ($value)
source/structure/phonology_and_orthography.html.php 41) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   42) 					return format($value, ["letter", "lang_fs"]);
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 43) 				}
source/structure/phonology_and_orthography.html.php 44) 			),
source/structure/phonology_and_orthography.html.php 45) 			new class_column
source/structure/phonology_and_orthography.html.php 46) 			(
source/structure/phonology_and_orthography.html.php 47) 				"Runic Representation",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   48) 				"runic",
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 49) 				function ($value)
source/structure/phonology_and_orthography.html.php 50) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   51) 					return format($value, ["letter", "lang_fs", "runic"]);
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 52) 				}
source/structure/phonology_and_orthography.html.php 53) 			),
source/structure/phonology_and_orthography.html.php 54) 			new class_column
source/structure/phonology_and_orthography.html.php 55) 			(
source/structure/phonology_and_orthography.html.php 56) 				$configuration["languagemap"]["fs"] . " Example",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   57) 				"examples",
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 58) 				function ($value)
source/structure/phonology_and_orthography.html.php 59) 				{
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   60) 					return format($value["fs"], ["word", "lang_fs"]);
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 61) 				}
source/structure/phonology_and_orthography.html.php 62) 			),
source/structure/phonology_and_orthography.html.php 63) 			new class_column
source/structure/phonology_and_orthography.html.php 64) 			(
source/structure/phonology_and_orthography.html.php 65) 				$configuration["languagemap"][$configuration["target"]] . " Example",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   66) 				"examples",
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 67) 				function ($value) use (&$configuration)
source/structure/phonology_and_orthography.html.php 68) 				{
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   69) 					return format($value[$configuration["target"]], ["word", "lang_" . $configuration["target"]]);
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 70) 				}
source/structure/phonology_and_orthography.html.php 71) 			),
bfadmin-master advanced

bfadmin-master authored 7 years ago

source/structure/phonology_and_orthography.html.php 72) 			/*
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 73) 			new class_column
source/structure/phonology_and_orthography.html.php 74) 			(
source/structure/phonology_and_orthography.html.php 75) 				"Remark",
Christian Fraß repaired tables in content

Christian Fraß authored 7 years ago

source/content/phonology_and_orthography.html.php   76) 				"remark",
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 77) 				function ($value)
source/structure/phonology_and_orthography.html.php 78) 				{
source/structure/phonology_and_orthography.html.php 79) 					return format($value);
source/structure/phonology_and_orthography.html.php 80) 				}
source/structure/phonology_and_orthography.html.php 81) 			),
bfadmin-master advanced

bfadmin-master authored 7 years ago

source/structure/phonology_and_orthography.html.php 82) 			 */
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 83) 		],
source/structure/phonology_and_orthography.html.php 84) 		read_json("source/data/phonology_and_orthography.json")
source/structure/phonology_and_orthography.html.php 85) 	);
source/structure/phonology_and_orthography.html.php 86) 	$table->generate();
Fenris Wolf advanced

Fenris Wolf authored 7 years ago

source/structure/phonology_and_orthography.html.php 87)  ?>
Raymund Zacharias minor linguistic adjustment...

Raymund Zacharias authored 7 years ago

source/structure/phonology_and_orthography.html.php 88)  	<div class="note_information">It is permitted to pronounce the sounds a little differently, for example <span class="letter lang_fs">v</span> as <span class="ipa">ʋ</span> or <span class="letter lang_fs">s</span> as <span class="ipa">z</span>, whilst the sounds from the table above are the default.</div>
fenris foo

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 89) 	<div class="note_warning">The runic writing is not meant to be used in regular texts. Use it only for purposes like art, etc.!</div>