1 | Index: wp-admin/about.php |
---|
2 | =================================================================== |
---|
3 | --- wp-admin/about.php (revision 43342) |
---|
4 | +++ wp-admin/about.php (working copy) |
---|
5 | @@ -18,11 +18,21 @@ |
---|
6 | include( ABSPATH . 'wp-admin/admin-header.php' ); |
---|
7 | ?> |
---|
8 | <div class="wrap about-wrap full-width-layout"> |
---|
9 | - <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> |
---|
10 | - |
---|
11 | - <p class="about-text"><?php printf( __( 'Thank you for updating to the latest version! WordPress %s will smooth your design workflow and keep you safe from coding errors.' ), $display_version ); ?></p> |
---|
12 | - <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> |
---|
13 | - |
---|
14 | + <h1> |
---|
15 | + <?php |
---|
16 | + /* translators: %s: WordPress Version */ |
---|
17 | + printf( __( 'Welcome to WordPress %s' ), $display_version ); ?> |
---|
18 | + </h1> |
---|
19 | + <p class="about-text"> |
---|
20 | + <?php |
---|
21 | + /* translators: %s: WordPress Version */ |
---|
22 | + printf( __( 'Thank you for updating to the latest version! WordPress %s will smooth your design workflow and keep you safe from coding errors.' ), $display_version ); ?> |
---|
23 | + </p> |
---|
24 | + <div class="wp-badge"> |
---|
25 | + <?php |
---|
26 | + /* translators: %s: WordPress Version */ |
---|
27 | + printf( __( 'Version %s' ), $display_version ); ?> |
---|
28 | + </div> |
---|
29 | <h2 class="nav-tab-wrapper wp-clearfix"> |
---|
30 | <a href="about.php" class="nav-tab nav-tab-active"><?php _e( 'What’s New' ); ?></a> |
---|
31 | <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> |
---|
32 | @@ -184,6 +194,7 @@ |
---|
33 | </h2> |
---|
34 | <p> |
---|
35 | <?php |
---|
36 | + /* translators: 1: Gutenberg Plugin URL, 2: Gutenberg Github URL */ |
---|
37 | printf( |
---|
38 | __( 'WordPress is working on a new way to create and control your content and we’d love to have your help. Interested in being an <a href="%1$s">early tester</a> or getting involved with the Gutenberg project? <a href="%2$s">Contribute on GitHub</a>.' ), |
---|
39 | __( 'https://wordpress.org/plugins/gutenberg/' ), |
---|