Changeset 45932 for trunk/src/wp-includes/class-wp-theme.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme.php
r45926 r45932 230 230 'theme_not_found', 231 231 sprintf( 232 /* translators: %s: theme directory name*/232 /* translators: %s: Theme directory name. */ 233 233 __( 'The theme directory "%s" does not exist.' ), 234 234 esc_html( $this->stylesheet ) … … 282 282 'theme_child_invalid', 283 283 sprintf( 284 /* translators: %s: Template */284 /* translators: %s: Template. */ 285 285 __( 'The theme defines itself as its parent theme. Please check the %s header.' ), 286 286 '<code>Template</code>' … … 308 308 if ( ! file_exists( $this->theme_root . '/' . $this->stylesheet . '/index.php' ) ) { 309 309 $error_message = sprintf( 310 /* translators: 1: index.php, 2: link to documentation, 3: style.css */310 /* translators: 1: index.php, 2: Documentation URL, 3: style.css */ 311 311 __( 'Template is missing. Standalone themes need to have a %1$s template file. <a href="%2$s">Child themes</a> need to have a Template header in the %3$s stylesheet.' ), 312 312 '<code>index.php</code>', … … 345 345 'theme_no_parent', 346 346 sprintf( 347 /* translators: %s: theme directory name*/347 /* translators: %s: Theme directory name. */ 348 348 __( 'The parent theme is missing. Please install the "%s" parent theme.' ), 349 349 esc_html( $this->template ) … … 372 372 'theme_parent_invalid', 373 373 sprintf( 374 /* translators: %s: theme directory name*/374 /* translators: %s: Theme directory name. */ 375 375 __( 'The "%s" theme is not a valid parent theme.' ), 376 376 esc_html( $_child->template ) … … 391 391 'theme_parent_invalid', 392 392 sprintf( 393 /* translators: %s: theme directory name*/393 /* translators: %s: Theme directory name. */ 394 394 __( 'The "%s" theme is not a valid parent theme.' ), 395 395 esc_html( $this->template ) … … 889 889 static $comma = null; 890 890 if ( ! isset( $comma ) ) { 891 /* translators: used between list items, there is a space after the comma*/891 /* translators: Used between list items, there is a space after the comma. */ 892 892 $comma = __( ', ' ); 893 893 }
Note: See TracChangeset
for help on using the changeset viewer.