Follow-up r92068: svn:eol-style:native, and use round bracket

This commit is contained in:
Robin Pepermans 2011-07-13 17:58:27 +00:00
parent 41f41d2ab6
commit 2deecd2f96

View file

@ -1,15 +1,15 @@
<?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 {
function getMessage( $key ) {
return "[$key]";
}
}
<?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 {
function getMessage( $key ) {
return "($key)";
}
}