mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-13 18:37:07 +00:00
cf58427165
Change-Id: I5c50ad6f611e013c0a9f5a0f4531a6065a5f12b6
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?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' ],
|
||
'FindComment' => [ 'Znajdź_komentarz' ],
|
||
'GoToComment' => [ 'Przejdź_do_komentarza' ],
|
||
];
|