66 Hooks::run(
'LocalisationIgnoredOptionalMessages',
67 [ &$this->mIgnoredMessages, &$this->mOptionalMessages ] );
69 $this->mLanguages =
array_keys( Language::fetchLanguageNames(
null,
'mwfile' ) );
70 sort( $this->mLanguages );
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 );
124 $json = Language::getLocalisationCache()->readJSONFile( $jsonfilename );
125 $this->mRawMessages[
$code] = $json[
'messages'];
128 $filename = Language::getMessagesFileName(
$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;
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;
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] ) &&
395 if ( !
preg_match(
"/$var/sU", $this->mGeneralMessages[
'translatable'][$key] ) &&
402 $mismatchMessages[$key] =
$value;
419 $messagesWithoutPlural = [];
420 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
421 if (
stripos( $this->mGeneralMessages[
'translatable'][$key],
'{{plural:' ) !==
false &&
424 $messagesWithoutPlural[$key] =
$value;
442 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
444 $emptyMessages[$key] =
$value;
461 $messagesWithWhitespace = [];
462 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
463 if ( $this->mGeneralMessages[
'translatable'][$key] !==
'' &&
$value !==
rtrim(
$value ) ) {
464 $messagesWithWhitespace[$key] =
$value;
489 $wrongPhrases =
'~(' . implode(
'|', $wrongPhrases ) .
')~sDu';
490 $nonXHTMLMessages = [];
491 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
493 $nonXHTMLMessages[$key] =
$value;
511 '[LRM]' =>
"\u{200E}",
512 '[RLM]' =>
"\u{200F}",
513 '[LRE]' =>
"\u{202A}",
514 '[RLE]' =>
"\u{202B}",
515 '[POP]' =>
"\u{202C}",
516 '[LRO]' =>
"\u{202D}",
517 '[RLO]' =>
"\u{202B}",
518 '[ZWSP]' =>
"\u{200B}",
519 '[NBSP]' =>
"\u{00A0}",
520 '[WJ]' =>
"\u{2060}",
521 '[BOM]' =>
"\u{FEFF}",
522 '[FFFD]' =>
"\u{FFFD}",
524 $wrongRegExp =
'/(' . implode(
'|',
array_values( $wrongChars ) ) .
')/sDu';
525 $wrongCharsMessages = [];
526 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
528 foreach ( $wrongChars as $viewableChar => $hiddenChar ) {
531 $wrongCharsMessages[$key] =
$value;
548 $tc = Title::legalChars() .
'#%{}';
550 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
579 foreach ( $this->mMessages[
$code][
'translated'] as $key =>
$value ) {
580 $a = $b = $c = $d = 0;
598 if ( $a !== $b || $c !== $d ) {
616 $namespacesDiff =
array_diff_key( $this->mNamespaceNames[
'en'], $this->mNamespaceNames[
$code] );
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];
712 foreach ( $en as $word ) {
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();
821 $this->mRawMessages[
$code] = $this->mMessageGroup->load(
$code );
822 if ( empty( $this->mRawMessages[
$code] ) ) {
823 $this->mRawMessages[
$code] = [];
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
__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 When $user is not it can be in the form of< username >< more info > e g for bot passwords intended to be added to log contexts Fields it might only if the login was with a bot password 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']
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))