- Timestamp:
- 09/01/2019 05:12:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r45634 r45926 301 301 switch ( $type ) { 302 302 case 'all': 303 $text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'themes' ); 303 /* translators: %s: number of themes */ 304 $text = _nx( 305 'All <span class="count">(%s)</span>', 306 'All <span class="count">(%s)</span>', 307 $count, 308 'themes' 309 ); 304 310 break; 305 311 case 'enabled': 306 $text = _nx( 'Enabled <span class="count">(%s)</span>', 'Enabled <span class="count">(%s)</span>', $count, 'themes' ); 312 /* translators: %s: number of themes */ 313 $text = _nx( 314 'Enabled <span class="count">(%s)</span>', 315 'Enabled <span class="count">(%s)</span>', 316 $count, 317 'themes' 318 ); 307 319 break; 308 320 case 'disabled': 309 $text = _nx( 'Disabled <span class="count">(%s)</span>', 'Disabled <span class="count">(%s)</span>', $count, 'themes' ); 321 /* translators: %s: number of themes */ 322 $text = _nx( 323 'Disabled <span class="count">(%s)</span>', 324 'Disabled <span class="count">(%s)</span>', 325 $count, 326 'themes' 327 ); 310 328 break; 311 329 case 'upgrade': 312 $text = _nx( 'Update Available <span class="count">(%s)</span>', 'Update Available <span class="count">(%s)</span>', $count, 'themes' ); 330 /* translators: %s: number of themes */ 331 $text = _nx( 332 'Update Available <span class="count">(%s)</span>', 333 'Update Available <span class="count">(%s)</span>', 334 $count, 335 'themes' 336 ); 313 337 break; 314 338 case 'broken': 315 $text = _nx( 'Broken <span class="count">(%s)</span>', 'Broken <span class="count">(%s)</span>', $count, 'themes' ); 339 /* translators: %s: number of themes */ 340 $text = _nx( 341 'Broken <span class="count">(%s)</span>', 342 'Broken <span class="count">(%s)</span>', 343 $count, 344 'themes' 345 ); 316 346 break; 317 347 } … … 573 603 574 604 if ( $theme->get( 'Version' ) ) { 605 /* translators: %s: theme version */ 575 606 $theme_meta[] = sprintf( __( 'Version %s' ), $theme->display( 'Version' ) ); 576 607 } 608 609 /* translators: %s: theme author */ 577 610 $theme_meta[] = sprintf( __( 'By %s' ), $theme->display( 'Author' ) ); 578 611
Note: See TracChangeset
for help on using the changeset viewer.