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

Leinad <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Leinad <[email protected]> 2011-10-07 19:19:50 UTC ---
Ptwiki don't use default MediaWiki user namespace, because you set
$wgExtraNamespaces, so no changes with genderized user namespace happen after
deployment 1.18. You have to set $wgExtraGenderNamespaces.

If I didn't make a mistake, you should request to set:

$wgExtraGenderNamespaces = array(
        NS_USER => array( 'male' => 'Usuário', 'female' => 'Usuária' ),
        NS_USER_TALK => array( 'male' => 'Usuário_Discussão', 'female' =>
'Usuária_Discussão' ),
);

and to set neutral form (imho you have to provide community consensus) you have
to change configuration of $wgExtraNamespaces: 

'wgExtraNamespaces' => array(
        NS_USER => 'Usuário(a)',
        NS_USER_TALK => 'Usuário(a) Discussão',
),

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to