Individualisations

This commit is contained in:
Timon Ostertun
2020-09-21 21:06:16 +02:00
parent 7e8d863e26
commit 62cb4408cf
21 changed files with 1810 additions and 1632 deletions

View File

@@ -19,36 +19,12 @@
define('BOATCLASS', 'pirat');
// BOAT CLASSES
$_CLASSES = array(
'pirat' => [
'name' => [
'de' => 'Pirat',
'en' => 'Pirate'
],
'desc' => [
'de' => 'eine vom DSV geförderte Jugendmeisterschaftsklasse',
'en' => 'a DSV sponsored youth championship class'
],
'special' => [
'de' => 'Jugend',
'en' => 'Youth'
],
'youth-age' => 19,
'youth-german-name' => 'IDJM'
],
'teeny' => [
'name' => [
'de' => 'Teeny',
'en' => 'Teeny'
],
'desc' => [
'de' => 'die offizielle 2-Mann Bootsklasse des DSV für den Jüngstenbereich',
'en' => 'the official 2-man boat class of the DSV for the youngest area'
],
'special' => false,
'youth-age' => 15,
'youth-german-name' => 'IDJüM'
]
$_CLASS = array(
'name' => 'Pirat',
'desc' => 'eine vom DSV geförderte Jugendmeisterschaftsklasse',
'special' => 'Jugend',
'youth-age' => 19,
'youth-german-name' => 'IDJM'
);
?>