mediawiki-extensions-Discus.../DiscussionTools.alias.php
Amir E. Aharoni e6decef514 Add Hebrew special pages aliases
Also change the order of language names. The usual
practice is to put the English name first. Among other
things, it helps plain text editors ensure that the line
will behave correctly with RTL language names.

Change-Id: I6b3566bb25354bfdc7cd718b110d98f077e13e31
2022-08-18 09:32:28 +03:00

39 lines
862 B
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' ],
];
/** Hebrew (עברית) */
$specialPageAliases['he'] = [
'TopicSubscriptions' => [ ינויים_לנושאים' ],
'FindComment' => [ 'מציאת_תגובה' ],
'GoToComment' => [ 'מעבר_לתגובה' ],
];
/** Korean (한국어) */
$specialPageAliases['ko'] = [
'TopicSubscriptions' => [ '구독하는주제' ],
];
/** Polish (polski) */
$specialPageAliases['pl'] = [
'TopicSubscriptions' => [ 'Subskrypcje_wątków', 'Subskrybowane_wątki' ],
];