From: Arne Heizmann Date: Wed, 11 Aug 2004 18:03:43 +0000 (+0000) Subject: As suggested by xmlizer on wikitech-l X-Git-Tag: 1.5.0alpha1~2412 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=f90faac1b093d9b124301bc6ee1a6a94a9d07fa9;p=lhc%2Fweb%2Fwiklou.git As suggested by xmlizer on wikitech-l http://mail.wikipedia.org/pipermail/wikitech-l/2004-August/012061.html have the 'm' for "minor" and the 'N' for "new page" be surrounded by and respectively, and no . --- diff --git a/includes/Skin.php b/includes/Skin.php index 8e087ceb92..12aec53acb 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -2301,10 +2301,8 @@ class Skin { $s .= ') . . '; # M and N (minor and new) - $M = wfMsg( 'minoreditletter' ); - $N = wfMsg( 'newpageletter' ); - if ( $rc_minor ) { $s .= ' '.$M.''; } - if ( $rc_type == RC_NEW ) { $s .= ''.$N.''; } + if ( $rc_minor ) { $s .= ' '.wfMsg( "minoreditletter" ).''; } + if ( $rc_type == RC_NEW ) { $s .= ''.wfMsg( "newpageletter" ).''; } # Article link # If it's a new article, there is no diff link, but if it hasn't been diff --git a/includes/SpecialContributions.php b/includes/SpecialContributions.php index 19a527a503..278d7f4838 100644 --- a/includes/SpecialContributions.php +++ b/includes/SpecialContributions.php @@ -205,7 +205,7 @@ function ucListEdit( $sk, $ns, $t, $ts, $topmark, $comment, $isminor, $isnew, $t $d = $wgLang->timeanddate( $ts, true ); if ($isminor) { - $mflag = "" . wfMsg( "minoreditletter" ) . " "; + $mflag = ''.wfMsg( "minoreditletter" ).' '; } else { $mflag = ""; } diff --git a/stylesheets/monobook/main.css b/stylesheets/monobook/main.css index 603d2b67bf..bab6218bfa 100644 --- a/stylesheets/monobook/main.css +++ b/stylesheets/monobook/main.css @@ -914,3 +914,6 @@ div.patrollink { font-size: 75%; text-align: right; } +span.newpage, span.minor { + font-weight: bold; +}