[Bug 27387] Gender specific display text for tabs

2011-04-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Niklas Laxström niklas.laxst...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||niklas.laxst...@gmail.com
 Resolution||FIXED

--- Comment #5 from Niklas Laxström niklas.laxst...@gmail.com 2011-04-02 
19:48:11 UTC ---
Added message documentation in twn. That should be enough.

-- 
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 watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27387] Gender specific display text for tabs

2011-03-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Mark A. Hershberger m...@everybody.org changed:

   What|Removed |Added

 CC||m...@everybody.org
 Blocks||28052

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27387] Gender specific display text for tabs

2011-03-06 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Platonides platoni...@gmail.com changed:

   What|Removed |Added

 CC||platoni...@gmail.com

--- Comment #4 from Platonides platoni...@gmail.com 2011-03-06 21:55:17 UTC 
---
  Maybe better idea is to create [[MediaWiki:Nstab-user-male]] and
  [[MediaWiki:Nstab-user-female]] and use these messages when
  $namespaceGenderAliases is enabled.
 
 This particular idea is not a good suggestion, because it assumes that
 male/female will be the only two forms GENDER will (ever) use. 

There's nothing fixed in that naming.

$gender = $user-getGender();
if ($gender === '') {
  $msg = 'nstab-user';
} else {
  $msg = 'nstab-user-' . $gender;

  if $msg doesn't exists, fall back to 'nstab-user'
}

print wfMsg($msg) in the tab

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27387] Gender specific display text for tabs

2011-03-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Siebrand s.mazel...@xs4all.nl changed:

   What|Removed |Added

 CC||s.mazel...@xs4all.nl

--- Comment #1 from Siebrand s.mazel...@xs4all.nl 2011-03-03 00:12:16 UTC ---
(In reply to comment #0)
 Maybe better idea is to create [[MediaWiki:Nstab-user-male]] and
 [[MediaWiki:Nstab-user-female]] and use these messages when
 $namespaceGenderAliases is enabled.

This particular idea is not a good suggestion, because it assumes that
male/female will be the only two forms GENDER will (ever) use. However, there
has been speculation that formal/informal could also be introduced using this
magic word, and there is an open issue requesting a transgender form. Limiting
options isn't a good idea. Using GENDER, and adding support for it where
needed, is what needs to be done, regardless of how many GENDERs we will have
defined now or in the future.

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27387] Gender specific display text for tabs

2011-03-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Leinad danny.lei...@gmail.com changed:

   What|Removed |Added

 CC||danny.lei...@gmail.com

--- Comment #2 from Leinad danny.lei...@gmail.com 2011-03-03 00:29:24 UTC ---
(In reply to comment #1)
 This particular idea is not a good suggestion, because it assumes that

Hmmm, maybe you are right, but are you sure this is good solution for servers?
- in similar situation Domas reverted changes
(http://en.wikipedia.org/w/index.php?title=MediaWiki:Nstab-maindiff=217955007oldid=215091279)
:-) and last time there was created dedicated message (Bug14267).

PS. If {{GENDER:{{BASEPAGENAME}}|male form|female form}} is the best solution,
could you add variable $1 for [[MediaWiki:Nstab-user-male]] as in standard
message with GENDER support: {{GENDER:$1|male form|female form}}.

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27387] Gender specific display text for tabs

2011-03-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Chad H. innocentkil...@gmail.com changed:

   What|Removed |Added

 CC||innocentkil...@gmail.com

--- Comment #3 from Chad H. innocentkil...@gmail.com 2011-03-03 01:08:12 UTC 
---
(In reply to comment #2)
 Hmmm, maybe you are right, but are you sure this is good solution for servers?
 - in similar situation Domas reverted changes
 (http://en.wikipedia.org/w/index.php?title=MediaWiki:Nstab-maindiff=217955007oldid=215091279)
 :-) and last time there was created dedicated message (Bug14267).
 

The major difference between that and this is the number of readers in NS_MAIN
vs NS_USER.

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27387] Gender specific display text for tabs

2011-03-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Leinad danny.lei...@gmail.com changed:

   What|Removed |Added

 Depends on||27691

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27387] Gender specific display text for tabs

2011-03-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27387

Leinad danny.lei...@gmail.com changed:

   What|Removed |Added

 Blocks||27691
 Depends on|27691   |

-- 
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
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l