As a Japanese speaker, I'd like to request that the following special page aliases be added:
/** Japanese (日本語) */ $specialPageAliases['ja'] = [ 'GlobalContributions' => [ 'グローバル投稿記録' ], 'IPContributions' => [ 'IP投稿記録' ], ];
BTW, Investigate and InvestigateBlock are a bit complicated. These would be translated as 調査 and 調査ブロック respectively, because the Japanese word for "investigation" is "調査 (chōsa)", which is already used in the aliases for CheckUser and CheckUserLog:
/** Japanese (日本語) */ $specialPageAliases['ja'] = [ 'CheckUser' => [ 'チェックユーザー', 'チェックユーザ', '利用者調査' ], 'CheckUserLog' => [ 'チェックユーザー記録', '利用者調査記録' ], ];
Does anyone know of any previous cases where existing alaises were removed in some way? 利用者調査, which is an alias for CheckUser literally meaning "user investigation", was good before the introduction of Special:Investigate, but now we’re facing a naming conflict.