- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-theme-control.php
r45527 r45932 58 58 */ 59 59 public function content_template() { 60 /* translators: %s: theme name*/60 /* translators: %s: Theme name. */ 61 61 $details_label = sprintf( __( 'Details for theme: %s' ), '{{ data.theme.name }}' ); 62 /* translators: %s: theme name*/62 /* translators: %s: Theme name. */ 63 63 $customize_label = sprintf( __( 'Customize theme: %s' ), '{{ data.theme.name }}' ); 64 /* translators: %s: theme name*/64 /* translators: %s: Theme name. */ 65 65 $preview_label = sprintf( __( 'Live preview theme: %s' ), '{{ data.theme.name }}' ); 66 /* translators: %s: theme name*/66 /* translators: %s: Theme name. */ 67 67 $install_label = sprintf( __( 'Install and preview theme: %s' ), '{{ data.theme.name }}' ); 68 68 ?> … … 85 85 <div class="theme-author"> 86 86 <?php 87 /* translators: Theme author name */87 /* translators: Theme author name. */ 88 88 printf( _x( 'By %s', 'theme author' ), '{{ data.theme.author }}' ); 89 89 ?> … … 98 98 } else { 99 99 printf( 100 /* translators: %s: "Update now" button */100 /* translators: %s: "Update now" button. */ 101 101 __( 'New version available. %s' ), 102 102 '<button class="button-link update-theme" type="button">' . __( 'Update now' ) . '</button>'
Note: See TracChangeset
for help on using the changeset viewer.