Merge "Drop zh-tw message "saveprefs""
[lhc/web/wiklou.git] / languages / FakeConverter.php
1 <?php
2 /**
3 * Internationalisation code.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Language
22 */
23
24 /**
25 * A fake language converter
26 *
27 * @ingroup Language
28 */
29 class FakeConverter {
30 /**
31 * @var Language
32 */
33 public $mLang;
34
35 function __construct( $langobj ) {
36 $this->mLang = $langobj;
37 }
38
39 function autoConvert( $text, $variant = false ) {
40 return $text;
41 }
42
43 function autoConvertToAllVariants( $text ) {
44 return array( $this->mLang->getCode() => $text );
45 }
46
47 function convert( $t ) {
48 return $t;
49 }
50
51 function convertTo( $text, $variant ) {
52 return $text;
53 }
54
55 /**
56 * @param Title $t
57 * @return mixed
58 */
59 function convertTitle( $t ) {
60 return $t->getPrefixedText();
61 }
62
63 function convertNamespace( $ns ) {
64 return $this->mLang->getFormattedNsText( $ns );
65 }
66
67 function getVariants() {
68 return array( $this->mLang->getCode() );
69 }
70
71 function getVariantFallbacks( $variant ) {
72 return $this->mLang->getCode();
73 }
74
75 function getPreferredVariant() {
76 return $this->mLang->getCode();
77 }
78
79 function getDefaultVariant() {
80 return $this->mLang->getCode();
81 }
82
83 function getURLVariant() {
84 return '';
85 }
86
87 function getConvRuleTitle() {
88 return false;
89 }
90
91 function findVariantLink( &$l, &$n, $ignoreOtherCond = false ) {
92 }
93
94 function getExtraHashOptions() {
95 return '';
96 }
97
98 function getParsedTitle() {
99 return '';
100 }
101
102 function markNoConversion( $text, $noParse = false ) {
103 return $text;
104 }
105
106 function convertCategoryKey( $key ) {
107 return $key;
108 }
109
110 /** @deprecated since 1.22 is no longer used */
111 function armourMath( $text ) {
112 return $text;
113 }
114
115 function validateVariant( $variant = null ) {
116 return $variant === $this->mLang->getCode() ? $variant : null;
117 }
118
119 function translate( $text, $variant ) {
120 return $text;
121 }
122 }