Changeset 42343 for trunk/src/wp-admin/about.php
- Timestamp:
- 11/30/2017 11:09:33 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/about.php
r42228 r42343 78 78 </div> 79 79 <h3><?php _e( 'Design Locking To Guard Your Changes' ); ?></h3> 80 <p><?php _e( 'Ever encounter a scenario where two designers walk into a project and designer A overrides designer B’s beautiful changes? WordPress 4.9’s design lock feature (similar to post locking) secures your draft design so that no one can make changes to it or erase all your hard work.' ); ?></p>80 <p><?php _e( 'Ever encounter a scenario where two designers walk into a project and designer A overrides designer B’s beautiful changes? WordPress 4.9’s design lock feature (similar to post locking) secures your draft design so that no one can make changes to it or erase all your hard work.' ); ?></p> 81 81 </div> 82 82 <div class="section-item"> … … 115 115 </div> 116 116 <h3><?php _e( 'Warning: Potential Danger Ahead!' ); ?></h3> 117 <p><?php _e( 'When you edit themes and plugins directly, WordPress 4.9 will politely warn you that this is a dangerous practice. It will recommend that you backup your files before saving, so they don’t get overwritten by the next update. Take the safe route: your future self will thank you. Your team and customers will thank you.' ); ?></p>117 <p><?php _e( 'When you edit themes and plugins directly, WordPress 4.9 will politely warn you that this is a dangerous practice. It will recommend that you backup your files before saving, so they don’t get overwritten by the next update. Take the safe route: your future self will thank you. Your team and customers will thank you.' ); ?></p> 118 118 </div> 119 119 </div> … … 183 183 ?> 184 184 </h2> 185 <p><?php printf( 186 __( '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="%s">early tester</a> or getting involved with the Gutenberg project? <a href="%s">Contribute on GitHub</a>.' ), 185 <p> 186 <?php 187 printf( 188 __( '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>.' ), 187 189 __( 'https://wordpress.org/plugins/gutenberg/' ), 188 'https://github.com/WordPress/gutenberg' ); ?></p> 190 'https://github.com/WordPress/gutenberg' 191 ); 192 ?> 193 </p> 189 194 </div> 190 195 … … 192 197 193 198 <div class="changelog"> 194 <h2><?php 199 <h2> 200 <?php 195 201 printf( 196 202 /* translators: %s: smiling face with smiling eyes emoji */ … … 198 204 '😊' 199 205 ); 200 ?></h2> 206 ?> 207 </h2> 201 208 202 209 <div class="under-the-hood two-col"> 203 210 <div class="col"> 204 211 <h3><a href="https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/"><?php _e( 'Customizer JS API Improvements' ); ?></a></h3> 205 <p><?php 212 <p> 213 <?php 206 214 printf( 207 215 /* translators: %s: https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/ */ … … 209 217 'https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/' 210 218 ); 211 ?></p> 219 ?> 220 </p> 212 221 </div> 213 222 <div class="col"> … … 353 362 354 363 /* translators: 1: WordPress version number, 2: plural number of bugs. */ 355 _n_noop( '<strong>Version %1$s</strong> addressed %2$s bug.', 356 '<strong>Version %1$s</strong> addressed %2$s bugs.' ); 364 _n_noop( 365 '<strong>Version %1$s</strong> addressed %2$s bug.', 366 '<strong>Version %1$s</strong> addressed %2$s bugs.' 367 ); 357 368 358 369 /* translators: 1: WordPress version number, 2: plural number of bugs. Singular security issue. */ 359 _n_noop( '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', 360 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' ); 370 _n_noop( 371 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bug.', 372 '<strong>Version %1$s</strong> addressed a security issue and fixed %2$s bugs.' 373 ); 361 374 362 375 /* translators: 1: WordPress version number, 2: plural number of bugs. More than one security issue. */ 363 _n_noop( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 364 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' ); 376 _n_noop( 377 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.', 378 '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.' 379 ); 365 380 366 381 /* translators: %s: Codex URL */
Note: See TracChangeset
for help on using the changeset viewer.