From a56a7ce984f3ff6568b488647aaf4308d77e920f Mon Sep 17 00:00:00 2001 From: anterdc99 Date: Mon, 14 Jul 2025 18:07:20 +0800 Subject: [PATCH] ContributionScores: Set Chinese primary special page alias to the English primary Bug: T399285 Change-Id: I0c5a52c3362886791230671a7adca388fbb4368a --- ContributionScores.alias.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ContributionScores.alias.php b/ContributionScores.alias.php index 325967f..0a28177 100644 --- a/ContributionScores.alias.php +++ b/ContributionScores.alias.php @@ -268,12 +268,17 @@ $specialPageAliases['uk'] = [ 'ContributionScores' => [ 'Очки_внеску', 'Очки_вклада' ], ]; -/** Simplified Chinese (中文(简体)‎) */ +/** Chinese (中文) */ +$specialPageAliases['zh'] = [ + 'ContributionScores' => [ 'ContributionScores' ], +]; + +/** Simplified Chinese (中文(简体)) */ $specialPageAliases['zh-hans'] = [ 'ContributionScores' => [ '贡献得分' ], ]; -/** Traditional Chinese (中文(繁體)‎) */ +/** Traditional Chinese (中文(繁體)) */ $specialPageAliases['zh-hant'] = [ 'ContributionScores' => [ '貢獻分數' ], ];