Changeset 44360 for trunk/src/wp-admin/index.php
- Timestamp:
- 12/24/2018 01:44:05 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/index.php
r44359 r44360 37 37 ) . '</p>'; 38 38 39 $die .= '<p>' . __( 'Before running any grunt tasks you need to make sure the dependencies are installed. You can install these by running ' );39 $die .= '<p>' . __( 'Before running any grunt tasks you need to make sure the dependencies are installed. You can install these by running ' ); 40 40 $die .= '<code style="color: green;">npm install</code>.</p>'; 41 41 … … 44 44 /* translators: %s: WordPress */ 45 45 __( 'To build %s while developing run:' ), 46 47 46 'WordPress' 47 ) . '<br /><br />'; 48 48 $die .= '<code style="color: green;">grunt build --dev</code></li>'; 49 49 $die .= '<li>' . sprintf( 50 51 52 50 __( 'To build files automatically when changing the source files run:' ), 51 'WordPress' 52 ) . '<br /><br />'; 53 53 $die .= '<code style="color: green;">grunt watch</code></li>'; 54 54 $die .= '<li>' . sprintf( 55 56 57 55 __( 'To create a production build of %s run:' ), 56 'WordPress' 57 ) . '<br /><br />'; 58 58 $die .= '<code style="color: green;">grunt build</code></li>'; 59 59 $die .= '</ul>'; … … 63 63 /* translators: %1$s: NPM URL, %2$s: Grunt URL */ 64 64 __( 'This requires <a href="%1$s">NPM</a> and <a href="%2$s">Grunt</a>. <a href="%3$s">Read more about setting up your local development environment</a>.' ), 65 66 67 68 65 'https://www.npmjs.com/', 66 'https://gruntjs.com/', 67 __( 'https://make.wordpress.org/core/handbook/tutorials/installing-wordpress-locally/' ) 68 ) . '</p>'; 69 69 70 70 wp_die( $die, __( 'WordPress › Error' ) );
Note: See TracChangeset
for help on using the changeset viewer.