mediawiki-extensions-Discus.../DiscussionTools.alias.php
Martin Urbanec 84a7a6540a Add Czech special page aliases
Change-Id: I2780e26ba6fb50003bed3542ca7e31212853456c
2022-08-15 10:23:52 +02:00

34 lines
736 B
PHP

<?php
/**
* Aliases for special pages
*
* @file
* @ingroup Extensions
*/
$specialPageAliases = [];
/** English (English) */
$specialPageAliases['en'] = [
'TopicSubscriptions' => [ 'TopicSubscriptions' ],
'FindComment' => [ 'FindComment' ],
'GoToComment' => [ 'GoToComment' ],
];
/** čeština (Czech) */
$specialPageAliases['cs'] = [
'TopicSubscriptions' => [ 'Odebíraná_témata' ],
'FindComment' => [ 'Najít_komentář' ],
'GoToComment' => [ 'Přejít_na_komentář' ],
];
/** 한국어 (Korean) */
$specialPageAliases['ko'] = [
'TopicSubscriptions' => [ '구독하는주제' ],
];
/** polski (Polish) */
$specialPageAliases['pl'] = [
'TopicSubscriptions' => [ 'Subskrypcje_wątków', 'Subskrybowane_wątki' ],
];