Index: trunk/extensions/SemanticResultFormats/TagCloud/SRF_TagCloud.php |
— | — | @@ -298,33 +298,33 @@ |
299 | 299 | |
300 | 300 | if ( defined( 'SMW_SUPPORTS_VALIDATOR' ) ) { |
301 | 301 | $params['includesubject'] = new Parameter( 'includesubject', Parameter::TYPE_BOOLEAN ); |
302 | | - $params['includesubject']->setDescription( wfMsg( 'srf_paramdesc_includesubject' ) ); |
| 302 | + $params['includesubject']->setMessage( 'srf_paramdesc_includesubject' ); |
303 | 303 | $params['includesubject']->setDefault( false ); |
304 | 304 | |
305 | 305 | $params['increase'] = new Parameter( 'increase' ); |
306 | | - $params['increase']->setDescription( wfMsg( 'srf_paramdesc_increase' ) ); |
| 306 | + $params['increase']->setMessage( 'srf_paramdesc_increase' ); |
307 | 307 | $params['increase']->addCriteria( new CriterionInArray( 'linear', 'log' ) ); |
308 | 308 | $params['increase']->setDefault( 'log' ); |
309 | 309 | |
310 | 310 | $params['tagorder'] = new Parameter( 'tagorder' ); |
311 | | - $params['tagorder']->setDescription( wfMsg( 'srf_paramdesc_tagorder' ) ); |
| 311 | + $params['tagorder']->setMessage( 'srf_paramdesc_tagorder' ); |
312 | 312 | $params['tagorder']->addCriteria( new CriterionInArray( 'alphabetical', 'asc', 'desc', 'random', 'unchanged' ) ); |
313 | 313 | $params['tagorder']->setDefault( 'alphabetical' ); |
314 | 314 | |
315 | 315 | $params['mincount'] = new Parameter( 'mincount', Parameter::TYPE_INTEGER ); |
316 | | - $params['mincount']->setDescription( wfMsg( 'srf_paramdesc_mincount' ) ); |
| 316 | + $params['mincount']->setMessage( 'srf_paramdesc_mincount' ); |
317 | 317 | $params['mincount']->setDefault( 1 ); |
318 | 318 | |
319 | 319 | $params['maxtags'] = new Parameter( 'maxtags', Parameter::TYPE_INTEGER ); |
320 | | - $params['maxtags']->setDescription( wfMsg( 'srf_paramdesc_maxtags' ) ); |
| 320 | + $params['maxtags']->setMessage( 'srf_paramdesc_maxtags' ); |
321 | 321 | $params['maxtags']->setDefault( 1000 ); |
322 | 322 | |
323 | 323 | $params['minsize'] = new Parameter( 'minsize', Parameter::TYPE_INTEGER ); |
324 | | - $params['minsize']->setDescription( wfMsg( 'srf_paramdesc_minsize' ) ); |
| 324 | + $params['minsize']->setMessage( 'srf_paramdesc_minsize' ); |
325 | 325 | $params['minsize']->setDefault( 77 ); |
326 | 326 | |
327 | 327 | $params['maxsize'] = new Parameter( 'maxsize', Parameter::TYPE_INTEGER ); |
328 | | - $params['maxsize']->setDescription( wfMsg( 'srf_paramdesc_maxsize' ) ); |
| 328 | + $params['maxsize']->setMessage( 'srf_paramdesc_maxsize' ); |
329 | 329 | $params['maxsize']->setDefault( 242 ); |
330 | 330 | } |
331 | 331 | else { |