Index: trunk/extensions/Translate/ffs/WikiExtension.php |
— | — | @@ -123,15 +123,17 @@ |
124 | 124 | } |
125 | 125 | |
126 | 126 | protected function doExport( $handle, $languages ) { |
| 127 | + global $wgTranslateDocumentationLanguageCode; |
| 128 | + |
127 | 129 | $this->_load(); |
128 | 130 | $this->_makeHeader( $handle ); |
129 | 131 | |
130 | 132 | $this->exportSection( $handle, 'en', $languages ); |
131 | | - $this->exportSection( $handle, 'qqq', $languages ); |
| 133 | + $this->exportSection( $handle, $wgTranslateDocumentationLanguageCode, $languages ); |
132 | 134 | |
133 | 135 | $__languages = Language::getLanguageNames( false ); |
134 | 136 | foreach ( array_keys( $__languages ) as $code ) { |
135 | | - if ( $code === 'en' || $code === 'qqq' ) { |
| 137 | + if ( $code === 'en' || $code === $wgTranslateDocumentationLanguageCode ) { |
136 | 138 | continue; |
137 | 139 | } |
138 | 140 | |