Jump to content

Manual:$wgLogNames/ko

From mediawiki.org
This page is a translated version of the page Manual:$wgLogNames and the translation is 20% complete.
Logging: $wgLogNames
Lists the message key string for each log type.
이 변수가 소개된 버전:1.7.0 (r14373)
이 변수가 사라진 버전:계속해서 쓰이고 있음
허용값:(array of strings)
기본값:see below

상세

Lists the message key string for each log type. The localized messages will be listed in the user interface, as header of the log page for that log type and in the Special:Log dropdown. Extensions with custom log types may add to this array. If you follow the naming convention log-name-TYPE, where TYPE is your log type, you don't need to use this setting.

기본값

미디어위키 버전:
1.13
$wgLogNames = [
	'' => 'all-logs-page',
	'block' => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights' => 'rightslog',
	'delete' => 'dellogpage',
	'upload' => 'uploadlogpage',
	'move' => 'movelogpage',
	'import' => 'importlogpage',
	'patrol' => 'patrol-log-page',
	'merge' => 'mergelog',
	'suppress' => 'suppressionlog',
];
미디어위키 버전:
1.12
$wgLogNames = array(
	''        => 'all-logs-page',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage',
	'patrol'  => 'patrol-log-page',
	'merge'   => 'mergelog',
);
미디어위키 버전:
1.11
$wgLogNames = array(
	''        => 'all-logs-page',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage',
	'patrol'  => 'patrol-log-page',
);
미디어위키 버전:
1.10
$wgLogNames = array(
	''        => 'log',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage',
	'patrol'  => 'patrol-log-page',
);
미디어위키 버전:
1.7 – 1.9
$wgLogNames = array(
	''        => 'log',
	'block'   => 'blocklogpage',
	'protect' => 'protectlogpage',
	'rights'  => 'rightslog',
	'delete'  => 'dellogpage',
	'upload'  => 'uploadlogpage',
	'move'    => 'movelogpage',
	'import'  => 'importlogpage'
);