git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
459c086
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
content
phonology_and_orthography.html.php
repaired tables in content
Christian Fraß
commited
459c086
at 2016-08-08 21:50:25
phonology_and_orthography.html.php
Blame
History
Raw
<?php global $configuration; include_once("source/logic/server/data.php"); include_once("source/logic/server/table.php"); include_once("source/logic/server/misc.php"); ?> <section class="section" id="phonology_and_orthography"> <header>Phonology and Orthography</header> <!-- <p>Folksprak uses the following characters as letters:</pa> --> <!-- <div class="note_information">It was not easy to find a phonology system for Folksprak.</div> --> <?php $table = new class_table ( [ new class_column ( "IPA-sound", "ipa", function ($value) { return format($value); } ), /* new class_column ( "Type", "type"]; } ), */ new class_column ( "Latin letter Representation", "latin", function ($value) { return format($value, ["letter", "lang_fs"]); } ), new class_column ( "Runic Representation", "runic", function ($value) { return format($value, ["letter", "lang_fs", "runic"]); } ), new class_column ( $configuration["languagemap"]["fs"] . " Example", "examples", function ($value) { return format($value["fs"], ["word", "lang_fs"]); } ), new class_column ( $configuration["languagemap"][$configuration["target"]] . " Example", "examples", function ($value) use (&$configuration) { return format($value[$configuration["target"]], ["word", "lang_" . $configuration["target"]]); } ), /* new class_column ( "Remark", "remark", function ($value) { return format($value); } ), */ ], read_json("source/data/phonology_and_orthography.json") ); $table->generate(); ?> <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> <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> </section>