Index: trunk/extensions/SemanticWatchlist/specials/jquery.watchlistcondition.js |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | 'value': group.name, |
35 | 35 | 'size': 30 |
36 | 36 | } ); |
37 | | - var nameTd = $( '<td />' ).html( $( '<p />' ).text( mediaWiki.msg( 'swl-group-name' ) ).append( nameInput ) ); |
| 37 | + var nameTd = $( '<td />' ).html( $( '<p />' ).text( mediaWiki.msg( 'swl-group-name' ) + ' ' ).append( nameInput ) ); |
38 | 38 | table.append( $( '<tr />' ).html( nameTd ) ); |
39 | 39 | |
40 | 40 | var conditionNameInput = $( '<input />' ).attr( { |
— | — | @@ -41,7 +41,7 @@ |
42 | 42 | 'value': group.name, |
43 | 43 | 'size': 30 |
44 | 44 | } ); |
45 | | - var conditionTd = $( '<td />' ).html( $( '<p />' ).text( mediaWiki.msg( 'swl-group-page-selection' ) ).append( conditionNameInput ) ); |
| 45 | + var conditionTd = $( '<td />' ).html( $( '<p />' ).text( mediaWiki.msg( 'swl-group-page-selection' ) + ' ' ).append( conditionNameInput ) ); |
46 | 46 | table.append( $( '<tr />' ).html( conditionTd ) ); |
47 | 47 | |
48 | 48 | this.append( table ); |
Index: trunk/extensions/SemanticWatchlist/SemanticWatchlist.i18n.php |
— | — | @@ -27,10 +27,10 @@ |
28 | 28 | 'special-watchlistconditions' => 'Semantic watchlist conditions', |
29 | 29 | |
30 | 30 | // Special:WatchlistConditions |
31 | | - 'swl-group-name' => 'Group name: ', |
| 31 | + 'swl-group-name' => 'Group name:', |
32 | 32 | 'swl-group-properties' => 'Properties covered by this group:', |
33 | 33 | 'swl-group-remove-property' => 'Remove property', |
34 | | - 'swl-group-page-selection' => 'Pages in ', |
| 34 | + 'swl-group-page-selection' => 'Pages in', |
35 | 35 | |
36 | 36 | // Special:SemanticWatchlist |
37 | 37 | 'swl-watchlist-position' => "Showing '''$1''' of the last changes starting with '''#$2'''.", |