25 lines
858 B
PHP
25 lines
858 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.",
|
|
"OPEN_SINCE" => "Open since",
|
|
"AGO" => "ago",
|
|
"SECOND" => "second",
|
|
"SECONDS" => "seconds",
|
|
"MINUTE" => "minute",
|
|
"MINUTES" => "minutes",
|
|
"HOUR" => "hour",
|
|
"HOURS" => "hours",
|
|
"CLOSED" => "Closed"
|
|
);
|
|
}
|
|
}
|
|
|
|
return new English();
|
|
?>
|