mediawiki-extensions-Discus.../DiscussionTools.alias.php
na1307 1c1d7b3c5d
Add Korean special page aliases
Change-Id: I87c827d6f113b7d8d46eb60a6cd65ad6c679587c
2022-09-20 17:01:54 +09:00

43 lines
1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Aliases for special pages
*
* @file
* @ingroup Extensions
*/
$specialPageAliases = [];
/** English (English) */
$specialPageAliases['en'] = [
'TopicSubscriptions' => [ 'TopicSubscriptions' ],
'FindComment' => [ 'FindComment' ],
'GoToComment' => [ 'GoToComment' ],
];
/** Czech (čeština) */
$specialPageAliases['cs'] = [
'TopicSubscriptions' => [ 'Odebíraná_témata' ],
'FindComment' => [ 'Najít_komentář' ],
'GoToComment' => [ 'Přejít_na_komentář' ],
];
/** Hebrew (עברית) */
$specialPageAliases['he'] = [
'TopicSubscriptions' => [ ינויים_לנושאים' ],
'FindComment' => [ 'מציאת_תגובה' ],
'GoToComment' => [ 'מעבר_לתגובה' ],
];
/** Korean (한국어) */
$specialPageAliases['ko'] = [
'TopicSubscriptions' => [ '구독하는주제' ],
'FindComment' => [ '댓글찾기' ],
'GoToComment' => [ '댓글로가기' ],
];
/** Polish (polski) */
$specialPageAliases['pl'] = [
'TopicSubscriptions' => [ 'Subskrypcje_wątków', 'Subskrybowane_wątki' ],
];