duplicatetrans.php

来自「php 开发的内容管理系统」· PHP 代码 · 共 30 行

PHP
30
字号
<?php/** * Prints out messages that are the same as the message with the corrisponding * key in the Language.php file * * @package MediaWiki * @subpackage Maintenance */require_once('commandLine.inc');if ( 'en' == $wgLanguageCode ) {	print "Current selected language is English. Cannot check translations.\n";	exit();}$count = $total = 0;$msgarray = 'wgAllMessages' . ucfirst( $wgLanguageCode );foreach ( $$msgarray as $code => $msg ) {	++$total;	if ( @$wgAllMessagesEn[$code] == $msg ) {		echo "* $code\n";		++$count;	}}echo "{$count} messages of {$total} are duplicates\n";?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?