77d8eec65a6d272eeee78097bf5a526d3a45059d
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",
source/structure/phonology_and_orthography.html.php  22) 				function ($row)
source/structure/phonology_and_orthography.html.php  23) 				{
source/structure/phonology_and_orthography.html.php  24) 					return $row["ipa"];
source/structure/phonology_and_orthography.html.php  25) 				},
source/structure/phonology_and_orthography.html.php  26) 				function ($value)
source/structure/phonology_and_orthography.html.php  27) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

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

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  29) 				}
source/structure/phonology_and_orthography.html.php  30) 			),
source/structure/phonology_and_orthography.html.php  31) 			/*
source/structure/phonology_and_orthography.html.php  32) 			new class_column
source/structure/phonology_and_orthography.html.php  33) 			(
source/structure/phonology_and_orthography.html.php  34) 				"Type",
source/structure/phonology_and_orthography.html.php  35) 				function ($row)
source/structure/phonology_and_orthography.html.php  36) 				{
source/structure/phonology_and_orthography.html.php  37) 					return $row["type"];
source/structure/phonology_and_orthography.html.php  38) 				}
source/structure/phonology_and_orthography.html.php  39) 			),
source/structure/phonology_and_orthography.html.php  40) 			 */
source/structure/phonology_and_orthography.html.php  41) 			new class_column
source/structure/phonology_and_orthography.html.php  42) 			(
source/structure/phonology_and_orthography.html.php  43) 				"Latin letter Representation",
source/structure/phonology_and_orthography.html.php  44) 				function ($row)
source/structure/phonology_and_orthography.html.php  45) 				{
source/structure/phonology_and_orthography.html.php  46) 					return $row["latin"];
source/structure/phonology_and_orthography.html.php  47) 				},
source/structure/phonology_and_orthography.html.php  48) 				function ($value)
source/structure/phonology_and_orthography.html.php  49) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

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

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  51) 				}
source/structure/phonology_and_orthography.html.php  52) 			),
source/structure/phonology_and_orthography.html.php  53) 			new class_column
source/structure/phonology_and_orthography.html.php  54) 			(
source/structure/phonology_and_orthography.html.php  55) 				"Runic Representation",
source/structure/phonology_and_orthography.html.php  56) 				function ($row)
source/structure/phonology_and_orthography.html.php  57) 				{
source/structure/phonology_and_orthography.html.php  58) 					return $row["runic"];
source/structure/phonology_and_orthography.html.php  59) 				},
source/structure/phonology_and_orthography.html.php  60) 				function ($value)
source/structure/phonology_and_orthography.html.php  61) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

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

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  63) 				}
source/structure/phonology_and_orthography.html.php  64) 			),
source/structure/phonology_and_orthography.html.php  65) 			new class_column
source/structure/phonology_and_orthography.html.php  66) 			(
source/structure/phonology_and_orthography.html.php  67) 				$configuration["languagemap"]["fs"] . " Example",
source/structure/phonology_and_orthography.html.php  68) 				function ($row)
source/structure/phonology_and_orthography.html.php  69) 				{
source/structure/phonology_and_orthography.html.php  70) 					return $row["examples"]["fs"];
source/structure/phonology_and_orthography.html.php  71) 				},
source/structure/phonology_and_orthography.html.php  72) 				function ($value)
source/structure/phonology_and_orthography.html.php  73) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

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

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  75) 				}
source/structure/phonology_and_orthography.html.php  76) 			),
source/structure/phonology_and_orthography.html.php  77) 			new class_column
source/structure/phonology_and_orthography.html.php  78) 			(
source/structure/phonology_and_orthography.html.php  79) 				$configuration["languagemap"][$configuration["target"]] . " Example",
source/structure/phonology_and_orthography.html.php  80) 				function ($row) use (&$configuration)
source/structure/phonology_and_orthography.html.php  81) 				{
source/structure/phonology_and_orthography.html.php  82) 					return $row["examples"][$configuration["target"]];
source/structure/phonology_and_orthography.html.php  83) 				},
source/structure/phonology_and_orthography.html.php  84) 				function ($value) use (&$configuration)
source/structure/phonology_and_orthography.html.php  85) 				{
Christian Fraß renamed structure to content

Christian Fraß authored 7 years ago

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

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  87) 				}
source/structure/phonology_and_orthography.html.php  88) 			),
bfadmin-master advanced

bfadmin-master authored 7 years ago

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

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php  90) 			new class_column
source/structure/phonology_and_orthography.html.php  91) 			(
source/structure/phonology_and_orthography.html.php  92) 				"Remark",
source/structure/phonology_and_orthography.html.php  93) 				function ($row)
source/structure/phonology_and_orthography.html.php  94) 				{
source/structure/phonology_and_orthography.html.php  95) 					return $row["remark"];
source/structure/phonology_and_orthography.html.php  96) 				},
source/structure/phonology_and_orthography.html.php  97) 				function ($value)
source/structure/phonology_and_orthography.html.php  98) 				{
source/structure/phonology_and_orthography.html.php  99) 					return format($value);
source/structure/phonology_and_orthography.html.php 100) 				}
source/structure/phonology_and_orthography.html.php 101) 			),
bfadmin-master advanced

bfadmin-master authored 7 years ago

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

fenris authored 7 years ago

source/structure/phonology_and_orthography.html.php 103) 		],
source/structure/phonology_and_orthography.html.php 104) 		read_json("source/data/phonology_and_orthography.json")
source/structure/phonology_and_orthography.html.php 105) 	);
source/structure/phonology_and_orthography.html.php 106) 	$table->generate();
Fenris Wolf advanced

Fenris Wolf authored 7 years ago

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

Raymund Zacharias authored 7 years ago

source/structure/phonology_and_orthography.html.php 108)  	<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 109) 	<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>