Index: trunk/extensions/Translate/specials/SpecialTranslate.php |
— | — | @@ -151,9 +151,9 @@ |
152 | 152 | if ( $priorityForce === 'on' ) { |
153 | 153 | // Hide table |
154 | 154 | $this->paging['count'] = 0; |
155 | | - $description .= wfMessage( 'tpt-discouraged-language-force', $priorityReason )->parseAsBlock(); |
| 155 | + $description .= Html::RawElement( 'div', array( 'class' => 'error' ), wfMessage( 'tpt-discouraged-language-force', $priorityReason )->parseAsBlock() ); |
156 | 156 | } else { |
157 | | - $description .= wfMessage( 'tpt-discouraged-language', $priorityReason )->parseAsBlock(); |
| 157 | + $description .= Html::RawElement( 'div', array( 'class' => 'warning' ), wfMessage( 'tpt-discouraged-language', $priorityReason )->parseAsBlock() ); |
158 | 158 | } |
159 | 159 | } |
160 | 160 | if ( $description ) { |