Ticket #31929: 31929.3.patch
File 31929.3.patch, 2.8 KB (added by , 10 years ago) |
---|
-
src/wp-admin/about.php
63 63 <h3><?php echo ( 'Extended Character Support' ); ?></h3> 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 %5$s.', '💙', '🐈', '🐒', '🍦', '<a href="https://codex.wordpress.org/Emoji">emojis</a>' ); 68 68 ?></p> 69 69 </div> 70 70 <div class="col"> -
src/wp-admin/credits.php
82 82 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> 88 88 -
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 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> 25 25