https://bugzilla.wikimedia.org/show_bug.cgi?id=37483

--- Comment #6 from Tpt <[email protected]> ---
If the namespaces related to numbers sets in $wgProofreadPageNamespaceIds don't
exist, the Proofread Page extension create these namespaces with the numbers
set in $wgProofreadPageNamespaceIds with labels stored in i18n of the
extension.

So, Proofead Page can create namespaces with not standard numbers if
$wgProofreadPageNamespaceIds is correctly setup.

So, 
$wgLanguageCode = 'fr';
$wgProofreadPageNamespaceIds = array(
    'page' => 102,
    'index' => 104
);
will setup the same namspaces with the same ids as
$wgLanguageCode = 'fr';
$wgProofreadPageNamespaceIds = array(
    'page' => 102,
    'index' => 104
);
$wgExtraNamespaces[102] = 'Page';
$wgExtraNamespaces[104] = 'Livre';
$wgNamespaceAliases[102] = 'Page';
$wgNamespaceAliases[104] = 'Index';

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to