Merge "ChangesList: Use context language for LogPage::getName() message"
[mediawiki.git] / languages / FakeConverter.php
blob78019a78822eab8e4b3c50431cf599fff2cccd19
1 <?php
2 /**
3 * Internationalisation code.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Language
24 /**
25 * A fake language converter
27 * @ingroup Language
29 class FakeConverter {
30 /**
31 * @var Language
33 public $mLang;
35 function __construct( $langobj ) {
36 $this->mLang = $langobj;
39 function autoConvert( $text, $variant = false ) {
40 return $text;
43 function autoConvertToAllVariants( $text ) {
44 return [ $this->mLang->getCode() => $text ];
47 function convert( $t ) {
48 return $t;
51 function convertTo( $text, $variant ) {
52 return $text;
55 /**
56 * @param Title $t
57 * @return mixed
59 function convertTitle( $t ) {
60 return $t->getPrefixedText();
63 function convertNamespace( $ns ) {
64 return $this->mLang->getFormattedNsText( $ns );
67 function getVariants() {
68 return [ $this->mLang->getCode() ];
71 function getVariantFallbacks( $variant ) {
72 return $this->mLang->getCode();
75 function getPreferredVariant() {
76 return $this->mLang->getCode();
79 function getDefaultVariant() {
80 return $this->mLang->getCode();
83 function getURLVariant() {
84 return '';
87 function getConvRuleTitle() {
88 return false;
91 function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) {
94 function getExtraHashOptions() {
95 return '';
98 function getParsedTitle() {
99 return '';
102 function markNoConversion( $text, $noParse = false ) {
103 return $text;
106 function convertCategoryKey( $key ) {
107 return $key;
110 function validateVariant( $variant = null ) {
111 return $variant === $this->mLang->getCode() ? $variant : null;
114 function translate( $text, $variant ) {
115 return $text;
118 public function updateConversionTable( Title $title ) {