summaryrefslogtreecommitdiff
path: root/languages/classes/LanguageQqx.php
blob: 6798b24c3a9924dd8f7f49a1c914759fb9151813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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)";
	}
}