2021-03-05 20:43:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Aliases for special pages
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup Extensions
|
|
|
|
*/
|
|
|
|
|
|
|
|
$specialPageAliases = [];
|
|
|
|
|
|
|
|
/** English (English) */
|
|
|
|
$specialPageAliases['en'] = [
|
|
|
|
'TopicSubscriptions' => [ 'TopicSubscriptions' ],
|
2022-02-16 23:29:10 +00:00
|
|
|
'FindComment' => [ 'FindComment' ],
|
|
|
|
'GoToComment' => [ 'GoToComment' ],
|
2021-03-05 20:43:49 +00:00
|
|
|
];
|
2021-11-22 15:23:41 +00:00
|
|
|
|
|
|
|
/** čeština (Czech) */
|
|
|
|
$specialPageAliases['cs'] = [
|
|
|
|
'TopicSubscriptions' => [ 'Odebíraná_témata' ],
|
|
|
|
];
|
2022-06-16 10:03:12 +00:00
|
|
|
|
2022-06-30 01:46:57 +00:00
|
|
|
/** 한국어 (Korean) */
|
|
|
|
$specialPageAliases['ko'] = [
|
|
|
|
'TopicSubscriptions' => [ '구독하는주제' ],
|
|
|
|
];
|
|
|
|
|
2022-06-16 10:03:12 +00:00
|
|
|
/** polski (Polish) */
|
|
|
|
$specialPageAliases['pl'] = [
|
|
|
|
'TopicSubscriptions' => [ 'Subskrypcje_wątków', 'Subskrybowane_wątki' ],
|
|
|
|
];
|