16 lines
606 B
PHP
16 lines
606 B
PHP
<?php
|
|
require_once("language.php");
|
|
|
|
class English extends Language {
|
|
public function __construct() {
|
|
parent::__construct("en");
|
|
$this->keys = array(
|
|
"SHORT_DESCRIPTION_HEAD" => "TechInc is a hackerspace in Amsterdam.",
|
|
"SHORT_DESCRIPTION_BODY" => 'TechInc is a <a href="https://en.wikipedia.org/wiki/Hackerspace">hackerspace</a> in Amsterdam.',
|
|
"LOGO_ALT_TEXT" => "Stylized boat's wheel. The handles and spokes have different colors, as if it is decorated with RGB LEDs. At the axle of the wheel is an abstract electronic circuit board."
|
|
);
|
|
}
|
|
}
|
|
|
|
return new English();
|
|
?>
|