11 lines
189 B
PHP
11 lines
189 B
PHP
<?php
|
|
require_once("language.php");
|
|
|
|
class Dutch extends Language {
|
|
public function __construct() {
|
|
parent::__construct("nl");
|
|
$this->keys = array("Test" => "Test NL");
|
|
}
|
|
}
|
|
|
|
?>
|