X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=languages%2FLanguageConverter.php;h=361a9a785d58453f85d6810bf9c8d6a8ffafba27;hb=d4a1177aa66759a5cf05887830435bb9e50f7780;hp=2183c965d3a88392f22efa2df8b0f279510ff1d2;hpb=ee553f8e32a8f1bd8c0232dbbf1127e3592d29b2;p=lhc%2Fweb%2Fwiklou.git diff --git a/languages/LanguageConverter.php b/languages/LanguageConverter.php index 2183c965d3..361a9a785d 100644 --- a/languages/LanguageConverter.php +++ b/languages/LanguageConverter.php @@ -99,13 +99,13 @@ class LanguageConverter { // '+' add rules for alltext // 'E' the gave flags is error // these flags above are reserved for program - 'A' => 'A', // add rule for convert code (all text convert) - 'T' => 'T', // title convert - 'R' => 'R', // raw content - 'D' => 'D', // convert description (subclass implement) - '-' => '-', // remove convert (not implement) - 'H' => 'H', // add rule for convert code (but no display in placed code) - 'N' => 'N' // current variant name + 'A' => 'A', // add rule for convert code (all text convert) + 'T' => 'T', // title convert + 'R' => 'R', // raw content + 'D' => 'D', // convert description (subclass implement) + '-' => '-', // remove convert (not implement) + 'H' => 'H', // add rule for convert code (but no display in placed code) + 'N' => 'N', // current variant name ]; $this->mFlags = array_merge( $defaultflags, $flags ); foreach ( $this->mVariants as $v ) { @@ -357,10 +357,10 @@ class LanguageConverter { } /* we convert everything except: - 1. HTML markups (anything between < and >) - 2. HTML entities - 3. placeholders created by the parser - */ + * 1. HTML markups (anything between < and >) + * 2. HTML entities + * 3. placeholders created by the parser + */ $marker = '|' . Parser::MARKER_PREFIX . '[\-a-zA-Z0-9]+'; // this one is needed when the text is inside an HTML markup @@ -1085,12 +1085,12 @@ class LanguageConverter { // text should be splited by ";" only if a valid variant // name exist after the markup, for example: // -{zh-hans:xxx;zh-hant:\ - // yyy;}- + // yyy;}- // we should split it as: // [ - // [0] => 'zh-hans:xxx' - // [1] => 'zh-hant:yyy' - // [2] => '' + // [0] => 'zh-hans:xxx' + // [1] => 'zh-hant:yyy' + // [2] => '' // ] $pat = '/;\s*(?='; foreach ( $this->mVariants as $variant ) {