diff options
-rw-r--r-- | public/css/luoparsetrainer.css | 5 | ||||
-rw-r--r-- | public/js/luoparsetrainer.js | 4 | ||||
-rw-r--r-- | resources/views/layouts/master.blade.php | 4 | ||||
-rw-r--r-- | resources/views/trainer.blade.php | 8 |
4 files changed, 9 insertions, 12 deletions
diff --git a/public/css/luoparsetrainer.css b/public/css/luoparsetrainer.css index e3af912..d9fddaa 100644 --- a/public/css/luoparsetrainer.css +++ b/public/css/luoparsetrainer.css @@ -21,6 +21,7 @@ } body { + font-family: 'SBL Greek', 'Palatino Linotype'; padding-top: 20px; } @@ -68,10 +69,6 @@ body { display: none; } -.greek { - font-family: 'SBL Greek', 'Palatino Linotype'; -} - .greek-large { font-size: 40px; } diff --git a/public/js/luoparsetrainer.js b/public/js/luoparsetrainer.js index 3d709ac..5c04ae6 100644 --- a/public/js/luoparsetrainer.js +++ b/public/js/luoparsetrainer.js @@ -77,8 +77,8 @@ $(document).ready(function(){ 'F dat ev': 'F dat ev', 'N dat ev': 'N dat ev', 'M acc ev': 'M acc ev', - 'N acc ev': 'N acc ev', 'F acc ev': 'F acc ev', + 'N acc ev': 'N acc ev', 'M nom mv': 'M nom mv', 'F nom mv': 'F nom mv', 'N nom mv': 'N nom mv', @@ -432,7 +432,7 @@ $(document).ready(function(){ $('#show-hide-help').click(function(){ help_shown = !help_shown; $('#trainer-input-help').slideToggle(); - $(this).text((help_shown ? 'Hide' : 'Show') + ' help'); + $(this).text(help_shown ? 'Verberg' : 'Meer informatie'); $('#trainer-input-'+input_count).focus(); }); diff --git a/resources/views/layouts/master.blade.php b/resources/views/layouts/master.blade.php index faf8aa2..98871e1 100644 --- a/resources/views/layouts/master.blade.php +++ b/resources/views/layouts/master.blade.php @@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. <meta charset="utf-8"/> <meta name="csrf-token" content="{{ csrf_token() }}"/> - <title>ParseTrainer</title> + <title>λύω-trainer</title> <link rel="stylesheet" href="{{ asset('vendor/twbs/bootstrap/dist/css/bootstrap.min.css') }}"/> <link rel="stylesheet" href="{{ asset('public/css/luoparsetrainer.css') }}"/> @@ -34,7 +34,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. <body role="application"> <div class="container" role="main"> <div class="header clearfix"> - <h2 class="text-muted"><a href="{{ url('/') }}">ParseTrainer</a></h2> + <h2 class="text-muted"><a href="{{ url('/') }}">λύω-trainer</a></h2> </div> @yield('master-content') diff --git a/resources/views/trainer.blade.php b/resources/views/trainer.blade.php index 0dad78c..ef1e43a 100644 --- a/resources/views/trainer.blade.php +++ b/resources/views/trainer.blade.php @@ -29,7 +29,7 @@ use HebrewParseTrainer\Tense; </div> <div class="form-group"> - <h3>Settings</h3> + <h3>Instellingen</h3> <div class="checkbox"> <label><input type="checkbox" id="settings-audio" checked="checked"/> Audio</label> </div> @@ -47,7 +47,7 @@ use HebrewParseTrainer\Tense; <div class="text-muted"> <div id="trainer-input-help"> <p> - Parseer de werkwoordsvorm en vul het antwoord in, gevolgd door <code>Enter</code>. + Determineer de werkwoordsvorm en vul het antwoord in, gevolgd door <code>Enter</code>. Als het antwoord correct is en er meerdere mogelijke antwoorden zijn, verschijnt er een extra invoerveld. Na het eerste incorrecte antwoord, of als alle mogelijkheden zijn gegeven, kun je door naar de volgende vorm met <code>Enter</code>. </p> @@ -56,12 +56,12 @@ use HebrewParseTrainer\Tense; <strong>Modi</strong> (wijzen): ind(icativus), conj(unctivus), opt(ativus), imp!(erativus), p(ar)t(i)c(ipium), inf(initivus).<br/> <strong>Genera</strong>: Act(ivum), Med(ium), Pass(ivum), Med(io)-Pass(ivum) (als Medium en Passivum samenvallen).<br/> <strong>Persoon</strong> (indien van toepassing): 1, 2 of 3.<br/> - <strong>Geslacht</strong> (indien van toepassing): M(asculinum), F(eminimum), N(eutrum).<br/> + <strong>Geslacht</strong> (indien van toepassing): M(asculinum), F(emininum), N(eutrum).<br/> <strong>Naamval</strong> (indien van toepassing): nom(inativus), gen(itivus), dat(ivus), acc(usativus).<br/> <strong>Getal</strong> (indien van toepassing): e(nkel)v(oud) of m(eer)v(oud). </p> <p><strong>Voorbeelden</strong>: <code>pr ind A 1 ev</code>, <code>fut inf M</code>, <code>pqpf ptc P M nom ev</code>.</p> - <p>Je kunt ook de knoppen gebruiken om een vorm te parseren.</p> + <p>Je kunt ook de knoppen gebruiken om een vorm te determineren.</p> <p>© 2015–{!! date('y') !!} <a href="https://camilstaps.nl">Camil Staps</a>. Gelicenseerd onder <a href="http://www.gnu.org/licenses/gpl-3.0.en.html">GPL 3.0</a>. De broncode staat op <a href="https://git.camilstaps.nl/luo-parsetrainer.git">git.camilstaps.nl/luo-parsetrainer.git</a>.</p> </div> <button type="button" class="btn btn-default btn-xs" id="show-hide-help">Meer informatie</button> |