66 Hooks::run(
'LocalisationIgnoredOptionalMessages',
67 [ &$this->mIgnoredMessages, &$this->mOptionalMessages ] );
69 $this->mLanguages = array_keys( Language::fetchLanguageNames(
null,
'mwfile' ) );
70 sort( $this->mLanguages );
106 if ( isset( $this->mRawMessages[
$code] ) &&
107 isset( $this->mFallback[
$code] ) &&
108 isset( $this->mNamespaceNames[
$code] ) &&
109 isset( $this->mNamespaceAliases[
$code] ) &&
110 isset( $this->mMagicWords[
$code] ) &&
111 isset( $this->mSpecialPageAliases[
$code] )
115 $this->mRawMessages[
$code] = [];
116 $this->mFallback[
$code] =
'';
117 $this->mNamespaceNames[
$code] = [];
118 $this->mNamespaceAliases[
$code] = [];
119 $this->mMagicWords[
$code] = [];
120 $this->mSpecialPageAliases[
$code] = [];
122 $jsonfilename = Language::getJsonMessagesFileName(
$code );
123 if ( file_exists( $jsonfilename ) ) {
124 $json = Language::getLocalisationCache()->readJSONFile( $jsonfilename );
125 $this->mRawMessages[
$code] = $json[
'messages'];
128 $filename = Language::getMessagesFileName(
$code );
129 if ( file_exists( $filename ) ) {
164 if ( isset( $this->mMessages[
$code] ) ) {
169 $this->mMessages[
$code][
'all'] = $this->mRawMessages[
$code];
170 $this->mMessages[
$code][
'required'] = [];
171 $this->mMessages[
$code][
'optional'] = [];
172 $this->mMessages[
$code][
'obsolete'] = [];
173 $this->mMessages[
$code][
'translated'] = [];
174 foreach ( $this->mMessages[
$code][
'all'] as $key =>
$value ) {
175 if ( isset( $this->mGeneralMessages[
'required'][$key] ) ) {
176 $this->mMessages[
$code][
'required'][$key] =
$value;
177 $this->mMessages[
$code][
'translated'][$key] =
$value;
178 } elseif ( isset( $this->mGeneralMessages[
'optional'][$key] ) ) {
179 $this->mMessages[
$code][
'optional'][$key] =
$value;
180 $this->mMessages[
$code][
'translated'][$key] =
$value;
182 $this->mMessages[
$code][
'obsolete'][$key] =
$value;
199 if ( isset( $this->mGeneralMessages ) ) {
203 $this->mGeneralMessages[
'all'] = $this->mRawMessages[
'en'];
204 $this->mGeneralMessages[
'required'] = [];
205 $this->mGeneralMessages[
'optional'] = [];
206 $this->mGeneralMessages[
'ignored'] = [];
207 $this->mGeneralMessages[
'translatable'] = [];
208 foreach ( $this->mGeneralMessages[
'all'] as $key =>
$value ) {
209 if ( in_array( $key, $this->mIgnoredMessages ) ) {
210 $this->mGeneralMessages[
'ignored'][$key] =
$value;
211 } elseif ( in_array( $key, $this->mOptionalMessages ) ) {
212 $this->mGeneralMessages[
'optional'][$key] =
$value;
213 $this->mGeneralMessages[
'translatable'][$key] =
$value;
215 $this->mGeneralMessages[
'required'][$key] =
$value;
216 $this->mGeneralMessages[
'translatable'][$key] =
$value;
240 return $this->mMessages[
$code];
272 return $this->mFallback[
$code];
285 return $this->mNamespaceNames[
$code];
298 return $this->mNamespaceAliases[
$code];
311 return $this->mMagicWords[
$code];
324 return $this->mSpecialPageAliases[
$code];
338 return array_diff_key( $this->mGeneralMessages[
'required'], $this->mMessages[
$code][
'required'] );
351 $duplicateMessages = [];
352 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
353 if ( $this->mGeneralMessages[
'translatable'][$key] ==
$value ) {
354 $duplicateMessages[$key] =
$value;
358 return $duplicateMessages;
372 return $this->mMessages[
$code][
'obsolete'];
385 $variables = [
'\$1',
'\$2',
'\$3',
'\$4',
'\$5',
'\$6',
'\$7',
'\$8',
'\$9' ];
386 $mismatchMessages = [];
387 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
389 foreach ( $variables as $var ) {
390 if ( preg_match(
"/$var/sU", $this->mGeneralMessages[
'translatable'][$key] ) &&
391 !preg_match(
"/$var/sU",
$value )
395 if ( !preg_match(
"/$var/sU", $this->mGeneralMessages[
'translatable'][$key] ) &&
396 preg_match(
"/$var/sU",
$value )
402 $mismatchMessages[$key] =
$value;
406 return $mismatchMessages;
419 $messagesWithoutPlural = [];
420 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
421 if ( stripos( $this->mGeneralMessages[
'translatable'][$key],
'{{plural:' ) !==
false &&
422 stripos(
$value,
'{{plural:' ) ===
false
424 $messagesWithoutPlural[$key] =
$value;
428 return $messagesWithoutPlural;
442 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
444 $emptyMessages[$key] =
$value;
448 return $emptyMessages;
461 $messagesWithWhitespace = [];
462 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
463 if ( $this->mGeneralMessages[
'translatable'][$key] !==
'' &&
$value !== rtrim(
$value ) ) {
464 $messagesWithWhitespace[$key] =
$value;
468 return $messagesWithWhitespace;
489 $wrongPhrases =
'~(' . implode(
'|', $wrongPhrases ) .
')~sDu';
490 $nonXHTMLMessages = [];
491 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
492 if ( preg_match( $wrongPhrases,
$value ) ) {
493 $nonXHTMLMessages[$key] =
$value;
497 return $nonXHTMLMessages;
511 '[LRM]' =>
"\xE2\x80\x8E",
512 '[RLM]' =>
"\xE2\x80\x8F",
513 '[LRE]' =>
"\xE2\x80\xAA",
514 '[RLE]' =>
"\xE2\x80\xAB",
515 '[POP]' =>
"\xE2\x80\xAC",
516 '[LRO]' =>
"\xE2\x80\xAD",
517 '[RLO]' =>
"\xE2\x80\xAB",
518 '[ZWSP]' =>
"\xE2\x80\x8B",
519 '[NBSP]' =>
"\xC2\xA0",
520 '[WJ]' =>
"\xE2\x81\xA0",
521 '[BOM]' =>
"\xEF\xBB\xBF",
522 '[FFFD]' =>
"\xEF\xBF\xBD",
524 $wrongRegExp =
'/(' . implode(
'|', array_values( $wrongChars ) ) .
')/sDu';
525 $wrongCharsMessages = [];
526 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
527 if ( preg_match( $wrongRegExp,
$value ) ) {
528 foreach ( $wrongChars as $viewableChar => $hiddenChar ) {
529 $value = str_replace( $hiddenChar, $viewableChar,
$value );
531 $wrongCharsMessages[$key] =
$value;
535 return $wrongCharsMessages;
548 $tc = Title::legalChars() .
'#%{}';
550 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
552 preg_match_all(
"/\[\[([{$tc}]+)(?:\\|(.+?))?]]/sDu",
$value,
$matches );
554 for ( $i = 0; $i < $numMatches; $i++ ) {
555 if ( preg_match(
"/.*project.*/isDu",
$matches[1][$i] ) ) {
579 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
580 $a = $b = $c = $d = 0;
581 foreach ( preg_split(
'//',
$value ) as $char ) {
598 if ( $a !== $b || $c !== $d ) {
616 $namespacesDiff = array_diff_key( $this->mNamespaceNames[
'en'], $this->mNamespaceNames[
$code] );
617 if ( isset( $namespacesDiff[
NS_MAIN] ) ) {
618 unset( $namespacesDiff[
NS_MAIN] );
621 return $namespacesDiff;
635 # Check default namespace name
638 if ( strpos( $default,
'$1' ) ===
false ) {
643 # Check namespace aliases
644 foreach ( $this->mNamespaceAliases[
$code] as $key =>
$value ) {
664 foreach ( $this->mMagicWords[
'en'] as $key =>
$value ) {
665 if ( !isset( $this->mMagicWords[
$code][$key] ) ) {
684 foreach ( $this->mMagicWords[
$code] as $key =>
$value ) {
685 if ( !isset( $this->mMagicWords[
'en'][$key] ) ) {
704 foreach ( $this->mMagicWords[
$code] as $key => $local ) {
705 if ( !isset( $this->mMagicWords[
'en'][$key] ) ) {
706 # Unrecognized magic word
709 $en = $this->mMagicWords[
'en'][$key];
710 array_shift( $local );
712 foreach ( $en as $word ) {
713 if ( !in_array( $word, $local ) ) {
734 foreach ( $this->mMagicWords[
$code] as $key => $local ) {
735 if ( !isset( $this->mMagicWords[
'en'][$key] ) ) {
736 # Unrecognized magic word
739 if ( $local[0] != $this->mMagicWords[
'en'][$key][0] ) {
758 foreach ( $this->mSpecialPageAliases[
'en'] as $key =>
$value ) {
759 if ( !isset( $this->mSpecialPageAliases[
$code][$key] ) ) {
778 foreach ( $this->mSpecialPageAliases[
$code] as $key =>
$value ) {
779 if ( !isset( $this->mSpecialPageAliases[
'en'][$key] ) ) {
799 $this->mMessageGroup = $group;
801 $this->mIgnoredMessages = $this->mMessageGroup->getIgnored();
802 $this->mOptionalMessages = $this->mMessageGroup->getOptional();
811 return $this->mMessageGroup->getLabel();
820 if ( !isset( $this->mRawMessages[
$code] ) ) {
821 $this->mRawMessages[
$code] = $this->mMessageGroup->load(
$code );
822 if ( empty( $this->mRawMessages[
$code] ) ) {
823 $this->mRawMessages[
$code] = [];
__construct(MessageGroup $group)
Load the messages group.
loadFile( $code)
Load the language file.
name()
Get the extension name.
MessageGroup $mMessageGroup
array $mRawMessages
Raw list of the messages in each language.
getMagicWords( $code)
Get magic words for a specific language.
loadMessages( $code)
Load the messages for a specific language (which is not English) and divide them to groups: all - all...
getUntranslatedMagicWords( $code)
Get the untranslated magic words.
getUntranslatedMessages( $code)
Get the untranslated messages for a specific language.
array $mIgnoredMessages
All the messages which should be exist only in the English file.
getUntranslatedNamespaces( $code)
Get the untranslated namespace names.
getNamespaceAliases( $code)
Get namespace aliases for a specific language.
array $mSpecialPageAliases
Special page aliases.
getMessagesWithUnbalanced( $code)
Get the messages which include unbalanced brackets.
getDuplicateMessages( $code)
Get the duplicate messages for a specific language.
loadGeneralMessages()
Load the messages for English and divide them to groups: all - all the messages.
getFallback( $code)
Get fallback language code for a specific language.
getOptionalMessages()
Get the optional messages list.
array $mMagicWords
Magic words.
getUntraslatedSpecialPages( $code)
Get the untranslated special page names.
array $mOptionalMessages
All the messages which may be translated or not, depending on the language.
array $mLanguages
List of languages.
array $mGeneralMessages
General messages in English, divided to groups.
getOverridingMagicWords( $code)
Get the magic words that override the original English magic word.
getMessagesWithDubiousLinks( $code)
Get the messages which include dubious links.
getProblematicProjectTalks( $code)
Get the project talk namespace names with no $1.
getMessagesWithWrongChars( $code)
Get the messages which include wrong characters.
getCaseMismatchMagicWords( $code)
Get the magic words which do not match the case-sensitivity of the original words.
getObsoleteMagicWords( $code)
Get the obsolete magic words.
getNamespaceNames( $code)
Get namespace names for a specific language.
getMessagesWithWhitespace( $code)
Get the messages with trailing whitespace.
__construct()
Load the list of languages: all the Messages*.php files in the languages directory.
array $mMessages
Messages in each language (except for English), divided to groups.
getIgnoredMessages()
Get the ignored messages list.
getLanguages()
Get the language list.
array $mNamespaceNames
Namespace names.
getMessagesWithMismatchVariables( $code)
Get the messages whose variables do not match the original ones.
getGeneralMessages()
Get all the general English messages, divided to groups: all - all the messages.
getEmptyMessages( $code)
Get the empty messages.
getSpecialPageAliases( $code)
Get special page aliases for a specific language.
getObsoleteMessages( $code)
Get the obsolete messages for a specific language.
getMessages( $code)
Get all the messages for a specific language (not English), without the fallback language messages,...
loadFile( $code)
Load the language file.
array $mNamespaceAliases
Namespace aliases.
getMessagesWithoutPlural( $code)
Get the messages which do not use plural.
getNonXHTMLMessages( $code)
Get the non-XHTML messages.
getObsoleteSpecialPages( $code)
Get the obsolete special page names.
array $mFallback
Fallback language in each language.
namespace and then decline to actually register it & $namespaces
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
magicword txt Magic Words are some phrases used in the wikitext They are used for two that looks like templates but that don t accept any parameter *Parser functions(like {{fullurl:...}}, {{#special:...}}) $magicWords['en']