维基百科:用户界面翻译/AntiSpoof.i18n.php

<?php

$wgAntiSpoofMessages['en'] = array(
	'antispoof-name-conflict' => 'The name "$1" is too similar to the existing account "$2". Please choose another name.',
	'antispoof-name-illegal'  => 'The name "$1" is not allowed to prevent confusing or spoofed usernames: $2. Please choose another name.',
);
$wgAntiSpoofMessages['zh-cn'] = array(
	'antispoof-name-conflict' => '用户名"$1"与用户名"$2"过于相近。请使用其他用户名。',
	'antispoof-name-illegal'  => '用户名"$1"易与用户名"$2"混淆,已被禁止使用。请使用其他用户名。',
);
$wgAntiSpoofMessages['zh-tw'] = array(
	'antispoof-name-conflict' => '用戶名"$1"與用戶名"$2"過於相近。請使用其他用戶名。',
	'antispoof-name-illegal'  => '用戶名"$1"易與用戶名"$2"混淆,已被禁止使用。請使用其他用戶名。',
);
$wgAntiSpoofMessages['zh-hk'] = $wgAntiSpoofMessages['zh-tw'];
$wgAntiSpoofMessages['zh-sg'] = $wgAntiSpoofMessages['zh-cn'];

?>