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' ],
|
2020-09-21 21:32:12 +00:00
|
|
|
|
'DiscussionToolsDebug' => [ 'DiscussionToolsDebug' ],
|
2021-03-05 20:43:49 +00:00
|
|
|
|
];
|
2021-11-22 15:23:41 +00:00
|
|
|
|
|
2022-08-18 06:32:28 +00:00
|
|
|
|
/** Czech (čeština) */
|
2021-11-22 15:23:41 +00:00
|
|
|
|
$specialPageAliases['cs'] = [
|
|
|
|
|
'TopicSubscriptions' => [ 'Odebíraná_témata' ],
|
2022-08-15 08:23:52 +00:00
|
|
|
|
'FindComment' => [ 'Najít_komentář' ],
|
|
|
|
|
'GoToComment' => [ 'Přejít_na_komentář' ],
|
2021-11-22 15:23:41 +00:00
|
|
|
|
];
|
2022-06-16 10:03:12 +00:00
|
|
|
|
|
2023-02-24 20:07:40 +00:00
|
|
|
|
/** German (Deutsch) */
|
|
|
|
|
$specialPageAliases['de'] = [
|
|
|
|
|
'TopicSubscriptions' => [ 'Themenbezogene_Abonnements' ],
|
|
|
|
|
'FindComment' => [ 'Kommentar_finden' ],
|
|
|
|
|
'GoToComment' => [ 'Gehe_zu_Kommentar' ],
|
|
|
|
|
];
|
|
|
|
|
|
2023-02-15 18:33:51 +00:00
|
|
|
|
/** Spanish (español) */
|
|
|
|
|
$specialPageAliases['es'] = [
|
|
|
|
|
'TopicSubscriptions' => [ 'Suscripciones_a_temas' ],
|
|
|
|
|
'FindComment' => [ 'Encontrar_comentario' ],
|
|
|
|
|
'GoToComment' => [ 'Ir_a_comentario' ],
|
|
|
|
|
];
|
|
|
|
|
|
2022-08-18 06:32:28 +00:00
|
|
|
|
/** Hebrew (עברית) */
|
|
|
|
|
$specialPageAliases['he'] = [
|
|
|
|
|
'TopicSubscriptions' => [ 'מינויים_לנושאים' ],
|
|
|
|
|
'FindComment' => [ 'מציאת_תגובה' ],
|
|
|
|
|
'GoToComment' => [ 'מעבר_לתגובה' ],
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/** Korean (한국어) */
|
2022-06-30 01:46:57 +00:00
|
|
|
|
$specialPageAliases['ko'] = [
|
|
|
|
|
'TopicSubscriptions' => [ '구독하는주제' ],
|
2022-09-20 08:01:54 +00:00
|
|
|
|
'FindComment' => [ '댓글찾기' ],
|
|
|
|
|
'GoToComment' => [ '댓글로가기' ],
|
2022-06-30 01:46:57 +00:00
|
|
|
|
];
|
|
|
|
|
|
2022-08-18 06:32:28 +00:00
|
|
|
|
/** Polish (polski) */
|
2022-06-16 10:03:12 +00:00
|
|
|
|
$specialPageAliases['pl'] = [
|
|
|
|
|
'TopicSubscriptions' => [ 'Subskrypcje_wątków', 'Subskrybowane_wątki' ],
|
2022-10-13 12:12:16 +00:00
|
|
|
|
'FindComment' => [ 'Znajdź_komentarz' ],
|
|
|
|
|
'GoToComment' => [ 'Przejdź_do_komentarza' ],
|
2022-06-16 10:03:12 +00:00
|
|
|
|
];
|
2023-05-02 10:00:48 +00:00
|
|
|
|
|
|
|
|
|
/** Urdu (اردو) */
|
|
|
|
|
$specialPageAliases['ur'] = [
|
|
|
|
|
'TopicSubscriptions' => [ 'گفتگو_میں_شرکت' ],
|
|
|
|
|
'FindComment' => [ 'تلاش_تبصرہ' ],
|
|
|
|
|
'GoToComment' => [ 'تبصرہ_پر_جائیں' ],
|
|
|
|
|
'DiscussionToolsDebug' => [ 'آلات_گفتگو_کی_خرابی_کا_ازالہ' ],
|
|
|
|
|
];
|