Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1399,7 +1399,8 @@ |
1400 | 1400 | return ''; |
1401 | 1401 | } else { |
1402 | 1402 | $formatted = self::formatComment( $comment, $title, $local ); |
1403 | | - return " <span class=\"comment\">($formatted)</span>"; |
| 1403 | + $formatted = wfMessage( 'parentheses' )->rawParams( $formatted ); |
| 1404 | + return " <span class=\"comment\">$formatted</span>"; |
1404 | 1405 | } |
1405 | 1406 | } |
1406 | 1407 | |