-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
69 lines (51 loc) · 2.86 KB
/
about.php
File metadata and controls
69 lines (51 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/*
This file is part of verb-o-matic. Copyright 2008 Luzius Thöny.
verb-o-matic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
verb-o-matic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with verb-o-matic. If not, see <http://www.gnu.org/licenses/>.
*/
header('Content-Type: text/html; charset=utf-8');
include 'header.php';
?>
<div class="mono">
<h2>About verb-o-matic</h2>
<p>
Verb-o-matic is an open source web application designed to assist people who want to learn foreign or ancient languages or IPA symbols online. It currently features three kinds of exercises: 1) a vocabulary training exercise, 2) a verb form identification exercise, 3) an IPA symbols exercise.
</p>
<h2>System requirements</h2>
<p>You need an up-to-date browser to use verb-o-matic properly. I recommend to use a recent version of Firefox. You need to have Javascript enabled, but you don't need cookies. There are some known issues with older browser.
</p>
<h2>WARNING</h2>
<p>Please note that there may still be issues with verb-o-matic, in both the code and the content. Please report any issues you find to the <a href="https://github.com/lvcivs/verb-o-matic/issues">bugtracker</a>.</p>
<h2>Contribute</h2>
<p>You are more than welcome to contribute to verb-o-matic! Please check out the source code and data on <a href="https://github.com/lvcivs/verb-o-matic">Github</a>. All content of the exercises are in plain UTF-8 encoded text files, which should make it hopefully easy for you to design your own exercises, if you wish to do so.</p>
<p>(Earlier, it used to be hosted on <a href="https://code.google.com/archive/p/verb-o-matic">Google Code</a>.)</p>
<h2>Credits</h2>
<p>Concept, design & code: Luzius Thöny (lucius dot antonius at gmail dot com)
<br>
Icons: courtesy of the <a href="http://tango.freedesktop.org/Tango_Icon_Gallery">Tango Icon Gallery</a>.
Sound recordings: from Wikipedia. Thanks to the following recorders:
<ul>
<li>Peter Isotalo</li>
<li>Denelson83</li>
<li>TheMexican</li>
</ul>
The sound files are licensed under the <i>GNU Free Documentation License</i> / <i>Creative Commons Attribution ShareAlike 3.0 License</i>.
<br>
</p>
<h2>Code license</h2>
<p>The code is licensed under the GPL3. </p>
<h2>Content license</h2>
<p>All content created by me is licensed under the <i>Creative Commons Attribution ShareAlike 3.0 License</i>.
</p>
<a href="index.php">Back to the index</a>
</div>
<?php include 'footer.php';?>