wiki.techinc.nl/languages/classes/LanguageQqx.php
Sam Reed 1c6f95fec3 Documentation
Explicit member variable definitions

Simplify some code
2011-10-18 17:27:52 +00:00

19 lines
452 B
PHP

<?php
/**
* For all translated messages, this returns the name of the message bracketed.
* This does not affect untranslated messages.
*
* NOTE: It returns a valid title, because there are some poorly written
* extentions that assume the contents of some messages are valid.
*
* @ingroup Language
*/
class LanguageQqx extends Language {
/**
* @param $key string
* @return string
*/
function getMessage( $key ) {
return "($key)";
}
}