Changeset 45102
- Timestamp:
- 04/02/2019 10:17:18 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r45079 r45102 305 305 'label' => __( 'Communication with WordPress.org' ), 306 306 'value' => sprintf( 307 // translators: %1$s: The IP address WordPress.org resolves to. %2$s: The error returned by the lookup.307 // translators: 1: The IP address WordPress.org resolves to. 2: The error returned by the lookup. 308 308 __( 'Unable to reach WordPress.org at %1$s: %2$s' ), 309 309 gethostbyname( 'wordpress.org' ), … … 678 678 679 679 if ( ! empty( $plugin_version ) && ! empty( $plugin_author ) ) { 680 // translators: %1$s: Plugin version number. %2$s: Plugin author name.680 // translators: 1: Plugin version number. 2: Plugin author name. 681 681 $plugin_version_string = sprintf( __( 'Version %1$s by %2$s' ), $plugin_version, $plugin_author ); 682 682 } … … 709 709 710 710 if ( ! empty( $plugin_version ) && ! empty( $plugin_author ) ) { 711 // translators: %1$s: Plugin version number. %2$s: Plugin author name.711 // translators: 1: Plugin version number. 2: Plugin author name. 712 712 $plugin_version_string = sprintf( __( 'Version %1$s by %2$s' ), $plugin_version, $plugin_author ); 713 713 } … … 799 799 800 800 if ( ! empty( $theme_version ) && ! empty( $theme_author ) ) { 801 // translators: %1$s: Theme version number. %2$s: Theme author name.801 // translators: 1: Theme version number. 2: Theme author name. 802 802 $theme_version_string = sprintf( __( 'Version %1$s by %2$s' ), $theme_version, wp_kses( $theme_author, array() ) ); 803 803 } … … 820 820 $info['wp-themes']['fields'][ sanitize_key( $theme->Name ) ] = array( 821 821 'label' => sprintf( 822 // translators: %1$s: Theme name. %2$s: Theme slug.822 // translators: 1: Theme name. 2: Theme slug. 823 823 __( '%1$s (%2$s)' ), 824 824 // phpcs:ignore WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase
Note: See TracChangeset
for help on using the changeset viewer.