Changeset 46616 for trunk/src/wp-admin/privacy.php
- Timestamp:
- 10/29/2019 08:08:32 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/privacy.php
r46572 r46616 16 16 include( ABSPATH . 'wp-admin/admin-header.php' ); 17 17 ?> 18 <div class="wrap about -wrap full-width-layout">18 <div class="wrap about__container"> 19 19 20 20 <div class="about__header"> … … 26 26 </div> 27 27 28 <div class="about__header-badge wp-badge"> 29 <?php 30 printf( 31 /* translators: %s: The current WordPress version number. */ 32 __( 'Version %s' ), 33 $display_version 34 ); 35 ?> 28 <div class="about__header-badge"> 29 <img src="https://wordpress.org/images/core/5.4/code-is-poetry-rc.svg" alt="<?php _e( 'Code is Poetry' ); ?>" /> 36 30 </div> 37 31 … … 56 50 </div> 57 51 58 <div class="about-wrap-content"> 59 <p class="about-description"><?php _e( 'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p> 52 <div class="about__section"> 53 <div class="column"> 54 <h2><?php _e( 'Privacy' ); ?></h2> 60 55 61 <p> 62 <?php 63 printf( 64 /* translators: %s: https://wordpress.org/about/stats/ */ 65 __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ), 66 __( 'https://wordpress.org/about/stats/' ) 67 ); 68 ?> 69 </p> 56 <p><?php _e( 'From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version of WordPress you are using, and a list of installed plugins and themes.' ); ?></p> 70 57 71 <p> 72 <?php 73 printf( 74 /* translators: %s: https://wordpress.org/about/privacy/ */ 75 __( 'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit <a href="%s">WordPress.org/about/privacy</a>.' ), 76 __( 'https://wordpress.org/about/privacy/' ) 77 ); 78 ?> 79 </p> 58 <p> 59 <?php 60 printf( 61 /* translators: %s: https://wordpress.org/about/stats/ */ 62 __( 'This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the <a href="%s">WordPress.org stats page</a>.' ), 63 __( 'https://wordpress.org/about/stats/' ) 64 ); 65 ?> 66 </p> 67 68 <p> 69 <?php 70 printf( 71 /* translators: %s: https://wordpress.org/about/privacy/ */ 72 __( 'We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit <a href="%s">WordPress.org/about/privacy</a>.' ), 73 __( 'https://wordpress.org/about/privacy/' ) 74 ); 75 ?> 76 </p> 77 </div> 80 78 </div> 81 79
Note: See TracChangeset
for help on using the changeset viewer.