2016-12-02 15:55:13 +00:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$specialPageAliases = [];
|
|
|
|
|
|
|
|
|
|
/** English (English) */
|
|
|
|
|
$specialPageAliases['en'] = [
|
|
|
|
|
'LintErrors' => [ 'LintErrors' ],
|
|
|
|
|
];
|
2017-03-16 16:37:59 +00:00
|
|
|
|
|
2019-04-03 16:27:00 +00:00
|
|
|
|
/* Čeština (Czech) */
|
|
|
|
|
$specialPageAliases['cs'] = [
|
|
|
|
|
'LintErrors' => [ 'Chyby_nalezené_lintem' ],
|
|
|
|
|
];
|
|
|
|
|
|
2017-03-16 16:37:59 +00:00
|
|
|
|
/** Español (Spanish) */
|
|
|
|
|
$specialPageAliases['es'] = [
|
|
|
|
|
'LintErrors' => [ 'Errores_de_sintaxis' ],
|
2017-06-17 22:03:14 +00:00
|
|
|
|
];
|
2017-10-15 16:36:22 +00:00
|
|
|
|
|
2018-03-30 22:39:36 +00:00
|
|
|
|
/** עברית (Hebrew) */
|
|
|
|
|
$specialPageAliases['he'] = [
|
|
|
|
|
'LintErrors' => [ 'שגיאות_ניקיון' ],
|
|
|
|
|
];
|
|
|
|
|
|
2017-12-05 07:05:43 +00:00
|
|
|
|
/** 한국어 (Korean) */
|
|
|
|
|
$specialPageAliases['ko'] = [
|
|
|
|
|
'LintErrors' => [ '린트오류' ],
|
|
|
|
|
];
|
|
|
|
|
|
2021-03-16 08:52:32 +00:00
|
|
|
|
/** Norwegian Bokmål (norsk bokmål) */
|
|
|
|
|
$specialPageAliases['nb'] = [
|
|
|
|
|
'LintErrors' => [ 'Lint-feil' ],
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/** Norwegian Nynorsk (norsk nynorsk) */
|
|
|
|
|
$specialPageAliases['nn'] = [
|
|
|
|
|
'LintErrors' => [ 'Lint-feil' ],
|
|
|
|
|
];
|
|
|
|
|
|
2018-08-15 19:55:34 +00:00
|
|
|
|
/** Serbian (Cyrillic script) (српски (ћирилица)) */
|
|
|
|
|
$specialPageAliases['sr-ec'] = [
|
|
|
|
|
'LintErrors' => [ 'Пречишћивање_грешака' ],
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/** Serbian (Latin script) (srpski (latinica)) */
|
|
|
|
|
$specialPageAliases['sr-el'] = [
|
|
|
|
|
'LintErrors' => [ 'Prečišćavanje_grešaka' ],
|
|
|
|
|
];
|
|
|
|
|
|
2017-10-15 16:36:22 +00:00
|
|
|
|
/** Urdu (اردو) */
|
|
|
|
|
$specialPageAliases['ur'] = [
|
|
|
|
|
'LintErrors' => [ 'نحوی_نقائص' ],
|
|
|
|
|
];
|