11 lines
236 B
PHP
11 lines
236 B
PHP
<?php
|
|
/**
|
|
* This class represents all the messages to translate to set a new
|
|
* language for the website.
|
|
*
|
|
* @author Thomas Schwery <thomas.schwery@epfl.ch>
|
|
*/
|
|
abstract class LocalizationBase {
|
|
//TODO: See what is needed.
|
|
}
|
|
?>
|