Index: trunk/extensions/CodeReview/modules/ext.codereview.tooltips.js |
— | — | @@ -46,9 +46,9 @@ |
47 | 47 | var tip = '<div class="mw-codereview-status-' + status + '" style="padding:5px 8px 4px; margin:-5px -8px -4px;">'; |
48 | 48 | |
49 | 49 | if ( rev['*'] ) { |
50 | | - tip += mw.msg( 'code-tooltip-withsummary', matches[2], mw.msg( 'codereview-status-' + status ), author, text ); |
| 50 | + tip += mw.msg( 'code-tooltip-withsummary', matches[2], mw.msg( 'code-status-' + status ), author, text ); |
51 | 51 | } else { |
52 | | - tip += mw.msg( 'code-tooltip-withoutsummary', matches[2], mw.msg( 'codereview-status-' + status ), author ); |
| 52 | + tip += mw.msg( 'code-tooltip-withoutsummary', matches[2], mw.msg( 'code-status-' + status ), author ); |
53 | 53 | } |
54 | 54 | tip += '</div>'; |
55 | 55 | $el.attr( 'title', tip ); |