git.schokokeks.org
Repositories
Help
Report an Issue
fs-draft.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
d42abfa
Branches
Tags
master
midgard
vorlage
fs-draft.git
source
structure
phonology_and_orthography.html.php
advanced
fenris
commited
d42abfa
at 2016-04-23 01:33:44
phonology_and_orthography.html.php
Blame
History
Raw
<?php global $configuration; include_once("source/logic/server/data.php"); function format($string) { return (($string == NULL) ? "--" : preg_replace("/_([^_]*)_/", "<u>$1</u>", $string)); } ?> <section class="section" id="grammar/phonology_and_orthography"> <header>Phonology and Orthography</header> <!-- <p>Folksprak uses the following characters as letters:</pa> --> <table> <thead> <tr> <th>IPA-sound</th> <th>Type</th> <th>Latin letter Representation</th> <th>Runic Representation</th> <th><?php echo($configuration["languagemap"]["fs"]); ?> Example</th> <th><?php echo($configuration["languagemap"][$configuration["target"]]); ?> Example</th> </tr> </thead> <tbody> <?php $data_phonology_and_orthography = read_json("source/data/phonology_and_orthography.json"); foreach ($data_phonology_and_orthography as $entry) { ?> <tr> <td><span class="ipa"><?php echo($entry["ipa"]); ?></span></td> <td><?php echo($entry["type"]); ?></td> <td><span class="word_fs"><?php echo($entry["latin"]); ?></span></td> <td><span class="word_fs runic"><?php echo($entry["runic"]); ?></span></td> <td><span class="word_fs"><?php echo(format($entry["examples"]["fs"])); ?></span></td> <td><span class="word_otherlanguage"><?php echo(format($entry["examples"][$configuration["target"]])); ?></span></td> </tr> <?php } ?> </tbody> </table> <span class="note_warning">The runic writing is not meant to be used in regular texts. Use it only for purposes like art, etc.!</span> </section>