Changeset 45932 for trunk/src/wp-includes/update.php
- Timestamp:
- 09/03/2019 12:39:13 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/update.php
r45734 r45932 156 156 trigger_error( 157 157 sprintf( 158 /* translators: %s: support forums URL*/158 /* translators: %s: Support forums URL. */ 159 159 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 160 160 __( 'https://wordpress.org/support/forums/' ) … … 382 382 trigger_error( 383 383 sprintf( 384 /* translators: %s: support forums URL*/384 /* translators: %s: Support forums URL. */ 385 385 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 386 386 __( 'https://wordpress.org/support/forums/' ) … … 571 571 trigger_error( 572 572 sprintf( 573 /* translators: %s: support forums URL*/573 /* translators: %s: Support forums URL. */ 574 574 __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>.' ), 575 575 __( 'https://wordpress.org/support/forums/' ) … … 684 684 $titles = array(); 685 685 if ( $counts['wordpress'] ) { 686 /* translators: %d: number of updates available to WordPress*/686 /* translators: %d: Number of available WordPress updates. */ 687 687 $titles['wordpress'] = sprintf( __( '%d WordPress Update' ), $counts['wordpress'] ); 688 688 } 689 689 if ( $counts['plugins'] ) { 690 /* translators: %d: number of updates available to plugins*/690 /* translators: %d: Number of available plugin updates. */ 691 691 $titles['plugins'] = sprintf( _n( '%d Plugin Update', '%d Plugin Updates', $counts['plugins'] ), $counts['plugins'] ); 692 692 } 693 693 if ( $counts['themes'] ) { 694 /* translators: %d: number of updates available to themes*/694 /* translators: %d: Number of available theme updates. */ 695 695 $titles['themes'] = sprintf( _n( '%d Theme Update', '%d Theme Updates', $counts['themes'] ), $counts['themes'] ); 696 696 }
Note: See TracChangeset
for help on using the changeset viewer.