Changeset 45932 for trunk/src/wp-admin/theme-editor.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/theme-editor.php
r45926 r45932 39 39 '<p>' . __( '<strong>Advice:</strong> Think very carefully about your site crashing if you are live-editing the theme currently in use.' ) . '</p>' . 40 40 '<p>' . sprintf( 41 /* translators: %s: link to documentation on child themes*/41 /* translators: %s: Link to documentation on child themes. */ 42 42 __( 'Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a <a href="%s">child theme</a> instead.' ), 43 43 __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ) … … 202 202 <?php 203 203 echo sprintf( 204 /* translators: %s: link to Custom CSS section in the Customizer*/204 /* translators: %s: Link to Custom CSS section in the Customizer. */ 205 205 __( 'There’s no need to change your CSS here — you can edit and live preview CSS changes in the <a href="%s">built-in CSS editor</a>.' ), 206 206 esc_url( add_query_arg( 'autofocus[section]', 'custom_css', admin_url( 'customize.php' ) ) ) … … 253 253 <?php 254 254 printf( 255 /* translators: %s: link to edit parent theme*/255 /* translators: %s: Link to edit parent theme. */ 256 256 __( 'This child theme inherits templates from a parent theme, %s.' ), 257 257 sprintf( … … 317 317 <?php 318 318 printf( 319 /* translators: %s: Documentation URL */319 /* translators: %s: Documentation URL. */ 320 320 __( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ), 321 321 __( 'https://wordpress.org/support/article/changing-file-permissions/' ) … … 360 360 echo '<p>'; 361 361 echo sprintf( 362 /* translators: %s: link to documentation on child themes*/362 /* translators: %s: Link to documentation on child themes. */ 363 363 __( 'If you need to tweak more than your theme’s CSS, you might want to try <a href="%s">making a child theme</a>.' ), 364 364 esc_url( __( 'https://developer.wordpress.org/themes/advanced-topics/child-themes/' ) )
Note: See TracChangeset
for help on using the changeset viewer.