Changeset 32131
- Timestamp:
- 04/15/2015 12:38:00 AM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r32130 r32131 64 64 <p><?php echo ( 'Writing in WordPress, whatever your language, just got better. WordPress 4.2 supports a host of new characters out-of-the-box, including native Chinese, Japanese, and Korean characters, musical and mathematical symbols, and hieroglyphs.' ); ?></p> 65 65 <p><?php 66 /* translators: 1: heart emoji, 2: kitten emoji, 3, monkey emoji, 4: ice-cream emoji */67 printf( 'Don’t use special characters? You can still have fun — emoji are now available in WordPress! Get creative and decorate your content with %1$s, %2$s, %3$s, %4$s, and all the many other emojis.', '💙', '🐈', '🐒', '🍦');66 /* translators: 1: heart emoji, 2: kitten emoji, 3, monkey emoji, 4: ice-cream emoji, 5: Emoji Codex link */ 67 printf( 'Don’t use special characters? You can still have fun — emoji are now available in WordPress! Get creative and decorate your content with %1$s, %2$s, %3$s, %4$s, and all the many other <a href="%5$s">emojis</a>.', '💙', '🐈', '🐒', '🍦', __( 'https://codex.wordpress.org/Emoji' ) ); 68 68 ?></p> 69 69 </div> … … 135 135 <p><?php echo ( 'Database character encoding has changed from utf8 to utf8mb4, which adds support for a whole range of new 4-byte characters.' ); ?></p> 136 136 137 <h4><?php echo ( ' Complex Query Ordering' ); ?></h4>138 <p><?php echo ( ' <code>WP_Query</code>, <code>WP_Comment_Query</code>, and <code>WP_User_Query</code> now support complex ordering with named meta query clauses.' ); ?></p>137 <h4><?php echo ( 'JavaScript Accessibility' ); ?></h4> 138 <p><?php echo ( 'Your JavaScript can now talk to screen readers with <code>wp.a11y.speak()</code>. Simply pass what you want to say, and a polite update will be sent to the ARIA live notifications area.' ); ?></p> 139 139 </div> 140 140 <div class="last-feature"> … … 142 142 <p><?php echo ( 'Terms previously shared across multiple taxonomies will be split when one of them is updated. A new row is created in the database for each.' ); ?></p> 143 143 144 <h4><?php echo ( ' JavaScript Accessibility' ); ?></h4>145 <p><?php echo ( ' Your JavaScript can now talk to screen readers with <code>wp.a11y.speak()</code>.' ); ?></p>144 <h4><?php echo ( 'Complex Query Ordering' ); ?></h4> 145 <p><?php echo ( '<code>WP_Query</code>, <code>WP_Comment_Query</code>, and <code>WP_User_Query</code> now support complex ordering with named meta query clauses.' ); ?></p> 146 146 </div> 147 147 -
trunk/src/wp-admin/credits.php
r32116 r32131 83 83 <h1><?php printf( __( 'Welcome to WordPress %s' ), $display_version ); ?></h1> 84 84 85 <div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you focus on your writing, and the new default theme lets you show it off in style.' ), $display_version ); ?></div>85 <div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you communicate and share, globally.' ), $display_version ); ?></div> 86 86 87 87 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> -
trunk/src/wp-admin/freedoms.php
r30821 r32131 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 focus on your writing, and the new default theme lets you show it off in style.' ), $display_version ); ?></div>22 <div class="about-text"><?php printf( __( 'Thank you for updating! WordPress %s helps you communicate and share, globally.' ), $display_version ); ?></div> 23 23 24 24 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
Note: See TracChangeset
for help on using the changeset viewer.