Ticket #32929: 32929.7.diff
File 32929.7.diff, 2.1 KB (added by , 9 years ago) |
---|
-
src/wp-admin/about.php
77 77 ), 78 78 array( 79 79 'heading' => 'Template Hierarchy', 80 81 80 /* Translators: 1: singular.php; 2: single.php; 3:page.php */ 82 81 'description' => sprintf( 'Added %1$s as a fallback for %2$s and %3$s', '<code>singular.php</code>', '<code>single.php</code>', '<code>page.php</code>.' ), 83 82 ), 84 83 array( 85 'heading' => ' List table',84 'heading' => '<code>WP_List_Table</code>', 86 85 'description' => 'List tables now can (and often should) have a primary column defined.', 87 86 ), 88 87 ); -
src/wp-admin/credits.php
80 80 81 81 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 82 82 83 <div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you communicate and share, globally.' ), $display_version ); ?></div>83 <div class="about-text"><?php printf( 'Thank you for updating! WordPress %s: faster workflow, easier customization, strong by default.', $display_version ); ?></div> 84 84 85 85 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> 86 86 -
src/wp-admin/freedoms.php
19 19 20 20 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 21 21 22 <div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you communicate and share, globally.' ), $display_version ); ?></div>22 <div class="about-text"><?php printf( 'Thank you for updating! WordPress %s: faster workflow, easier customization, strong by default.', $display_version ); ?></div> 23 23 24 24 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> 25 25