Ticket #47708: 47708.8.diff
File 47708.8.diff, 24.2 KB (added by , 5 years ago) |
---|
-
src/wp-admin/about.php
14 14 15 15 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 16 16 17 $version_label = sprintf(18 /* translators: The current WordPress version number */19 __( 'WordPress %s' ),20 $display_version21 );22 23 17 include( ABSPATH . 'wp-admin/admin-header.php' ); 24 18 ?> 25 19 <div class="wrap about-wrap full-width-layout"> 20 26 21 <div class="about__header"> 27 22 <div class="about__header-title"> 28 <h1 aria-label="<?php echo esc_attr( $version_label ); ?>">23 <h1> 29 24 <span><?php echo $display_version; ?></span> 30 WordPress <?php /* @todo Does this need translation? */?>25 <?php _e( 'WordPress' ); ?> 31 26 </h1> 32 27 </div> 33 28 … … 46 41 <?php 47 42 printf( 48 43 /* translators: %s: The current WordPress version number. */ 49 __( 'Introducing our most refined user experience with the improved Block Editor in WordPress %s “Name”!' ),44 __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ), 50 45 $display_version 51 46 ); 52 47 ?> … … 63 58 64 59 <div class="about__section is-feature"> 65 60 <p> 66 <?php _e( '5.3 expands and refines the block editor introduced in WordPress 5.0 with new blocks, more intuitive interactions, and improved accessibility. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site. This release also introduces the Twenty Twenty theme giving the user more design flexibility and integration with the Block Editor. Creating beautiful web pages and advanced layouts has never been easier.' ); ?>61 <?php _e( '5.3 expands and refines the block editor introduced in WordPress 5.0 with new blocks, more intuitive interactions, and improved accessibility. New features in the editor increase design freedoms, provide additional layout options and style variations to allow designers complete control over the look of a site. This release also introduces the Twenty Twenty theme giving the user more design flexibility and integration with the block editor. Creating beautiful web pages and advanced layouts has never been easier.' ); ?> 67 62 </p> 68 63 </div> 69 64 … … 82 77 </p> 83 78 84 79 <p> 85 <?php _e( 'Accessibility improvements include the integration of block editor styles in the admin interface. These improved styles fix many accessibility issues: color contrast on form fields and buttons, consistency between editor and admin interfaces, new snackbar notices, standardizing to the default WordPress color scheme, and the introduction of Motion to make interacting with your blocks feel swift and natural. For people who use a keyboard to navigate the dashboard, the Block Editor now has a Navigation mode. This lets you jump from block to block without tabbing through every part of the block controls.' ); ?>80 <?php _e( 'Accessibility improvements include the integration of block editor styles in the admin interface. These improved styles fix many accessibility issues: color contrast on form fields and buttons, consistency between editor and admin interfaces, new snackbar notices, standardizing to the default WordPress color scheme, and the introduction of Motion to make interacting with your blocks feel swift and natural. For people who use a keyboard to navigate the dashboard, the block editor now has a Navigation mode. This lets you jump from block to block without tabbing through every part of the block controls.' ); ?> 86 81 </p> 87 82 </div> 88 83 </div> … … 90 85 <div class="about__section has-2-columns"> 91 86 <div class="column is-vertically-aligned-center"> 92 87 <h3><?php _e( 'Expanded Design Flexibility' ); ?></h3> 93 <p><?php _e( '“Name” adds even more robust tools for creating amazing designs.' ); ?></p> 88 <p> 89 <?php 90 printf( 91 /* translators: %s: The current WordPress version number. */ 92 __( 'WordPress %s adds even more robust tools for creating amazing designs.' ), 93 $display_version 94 ); 95 ?> 96 </p> 94 97 <ul> 95 98 <li><?php _e( 'The new Group block lets you easily divide your page into colorful sections' ); ?></li> 96 99 <li><?php _e( 'The Columns block now supports fixed column widths' ); ?></li> … … 109 112 <div class="about__section has-2-columns has-subtle-background-color"> 110 113 <div class="column is-vertically-aligned-center"> 111 114 <h3><?php _e( 'Introducing Twenty Twenty' ); ?></h3> 112 <p><?php _e( 'As the Block Editor celebrates its first birthday, we are proud that Twenty Twenty is designed with flexibility at its core. Show off your services or products with a combination of columns, groups, and media blocks. Set your content to wide or full alignment for dynamic and engaging layouts. Or let your thoughts be the star with a centered content column!' ); ?></p>115 <p><?php _e( 'As the block editor celebrates its first birthday, we are proud that Twenty Twenty is designed with flexibility at its core. Show off your services or products with a combination of columns, groups, and media blocks. Set your content to wide or full alignment for dynamic and engaging layouts. Or let your thoughts be the star with a centered content column!' ); ?></p> 113 116 114 117 <p> 115 <?php118 <?php 116 119 printf( 117 /* translators: 1: Link to the Inter font website. */118 __( 'As befits a theme called Twenty Twenty, clarity and readability is also a big focus. The theme includes the typeface <a href="% 1$s">Inter</a>, designed by Rasmus Andersson. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.' ),120 /* translators: %s: Link to the Inter font website. */ 121 __( 'As befits a theme called Twenty Twenty, clarity and readability is also a big focus. The theme includes the typeface <a href="%s">Inter</a>, designed by Rasmus Andersson. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.' ), 119 122 'https://rsms.me/inter/' 120 123 ); 121 124 ?> … … 169 172 <h3 class="is-section-header"><?php _e( 'For Developers' ); ?></h3> 170 173 171 174 <div class="column"> 172 <h4><?php _e( ' Time/Date Component Fixes' ); ?></h4>175 <h4><?php _e( 'Date/Time Component Fixes' ); ?></h4> 173 176 <p> 174 <?php177 <?php 175 178 printf( 176 /* translators: 1: Link to the date/time developer notes. */177 __( 'Developers can now work with <a href="% 1$s">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.' ),179 /* translators: %s: Link to the date/time developer notes. */ 180 __( 'Developers can now work with <a href="%s">dates and timezones</a> in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.' ), 178 181 'https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/' 179 182 ); 180 183 ?> … … 183 186 <div class="column"> 184 187 <h4><?php _e( 'PHP 7.4 Compatibility' ); ?></h4> 185 188 <p> 186 <?php189 <?php 187 190 printf( 188 /* translators: 1: Link to the PHP 7 developer notes. */189 __( ' The WordPress core team is actively preparing to support PHP 7.4 when it is released later this year. WordPress 5.3 contains <a href="%1$s">multiple changes</a> to remove deprecated functionality and ensure compatibility. Please test 5.3 with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings.' ),191 /* translators: %s: Link to the PHP 7 developer notes. */ 192 __( 'WordPress 5.3 aims to fully support PHP 7.4. This release contains <a href="%s">multiple changes</a> to remove deprecated functionality and ensure compatibility. WordPress continues to encourage all users to run the latest and greatest versions of PHP.' ), 190 193 'https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/' 191 194 ); 192 195 ?> -
src/wp-admin/credits.php
18 18 ?> 19 19 <div class="wrap about-wrap full-width-layout"> 20 20 21 <h1> 22 <?php 23 printf( 24 /* translators: %s: The current WordPress version number. */ 25 __( 'Welcome to WordPress %s' ), 26 $display_version 27 ); 28 ?> 29 </h1> 21 <div class="about__header"> 22 <div class="about__header-title"> 23 <h1> 24 <span><?php echo $display_version; ?></span> 25 <?php _e( 'WordPress' ); ?> 26 </h1> 27 </div> 30 28 31 <p class="about-text">32 <?php33 printf(34 /* translators: %s: The current WordPress version number. */35 __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),36 $display_version37 );38 ?>39 </p>29 <div class="about__header-badge wp-badge"> 30 <?php 31 printf( 32 /* translators: %s: The current WordPress version number. */ 33 __( 'Version %s' ), 34 $display_version 35 ); 36 ?> 37 </div> 40 38 41 <div class="wp-badge"> 42 <?php 43 printf( 44 /* translators: %s: The current WordPress version number. */ 45 __( 'Version %s' ), 46 $display_version 47 ); 48 ?> 49 </div> 39 <div class="about__header-text"> 40 <p> 41 <?php 42 printf( 43 /* translators: %s: The current WordPress version number. */ 44 __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ), 45 $display_version 46 ); 47 ?> 48 </p> 49 </div> 50 50 51 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 52 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 53 <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> 54 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 55 <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> 56 </nav> 51 <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 52 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 53 <a href="credits.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Credits' ); ?></a> 54 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 55 <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> 56 </nav> 57 </div> 57 58 58 <div class="about-wrap-content">59 <div class="about-wrap-content"> 59 60 <?php 60 61 61 62 $credits = wp_credits(); … … 137 138 } 138 139 139 140 ?> 141 </div> 140 142 </div> 141 </div>142 143 <?php 143 144 144 145 include( ABSPATH . 'wp-admin/admin-footer.php' ); -
src/wp-admin/freedoms.php
20 20 list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); 21 21 22 22 include( ABSPATH . 'wp-admin/admin-header.php' ); 23 24 23 ?> 25 24 <div class="wrap about-wrap full-width-layout"> 26 25 27 <h1> 28 <?php 29 printf( 30 /* translators: %s: The current WordPress version number. */ 31 __( 'Welcome to WordPress %s' ), 32 $display_version 33 ); 34 ?> 35 </h1> 26 <div class="about__header"> 27 <div class="about__header-title"> 28 <h1> 29 <span><?php echo $display_version; ?></span> 30 <?php _e( 'WordPress' ); ?> 31 </h1> 32 </div> 36 33 37 <p class="about-text">38 <?php39 printf(40 /* translators: %s: The current WordPress version number. */41 __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),42 $display_version43 );44 ?>45 </p>34 <div class="about__header-badge wp-badge"> 35 <?php 36 printf( 37 /* translators: %s: The current WordPress version number. */ 38 __( 'Version %s' ), 39 $display_version 40 ); 41 ?> 42 </div> 46 43 47 <div class="wp-badge"> 48 <?php 49 printf( 50 /* translators: %s: The current WordPress version number. */ 51 __( 'Version %s' ), 52 $display_version 53 ); 54 ?> 55 </div> 44 <div class="about__header-text"> 45 <p> 46 <?php 47 printf( 48 /* translators: %s: The current WordPress version number. */ 49 __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ), 50 $display_version 51 ); 52 ?> 53 </p> 54 </div> 56 55 57 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 58 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 59 <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> 60 <a href="freedoms.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Freedoms' ); ?></a> 61 <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> 62 </nav> 63 64 <div class="about-wrap-content"> 65 <div class="feature-section has-1-columns"> 66 <h2><?php _e( 'Freedoms' ); ?></h2> 67 <p class="about-description"> 68 <?php 69 printf( 70 /* translators: %s: https://wordpress.org/about/license/ */ 71 __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 72 __( 'https://wordpress.org/about/license/' ) 73 ); 74 ?> 75 </p> 56 <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 57 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 58 <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> 59 <a href="freedoms.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Freedoms' ); ?></a> 60 <a href="privacy.php" class="nav-tab"><?php _e( 'Privacy' ); ?></a> 61 </nav> 76 62 </div> 77 63 78 <div class="feature-section has-4-columns is-fullwidth"> 79 <div class="column"> 80 <div class="freedoms-image"></div> 81 <h3><?php _e( 'The 1st Freedom' ); ?></h3> 82 <p><?php _e( 'To run the program for any purpose.' ); ?></p> 64 <div class="about-wrap-content"> 65 <div class="feature-section has-1-columns"> 66 <h2><?php _e( 'Freedoms' ); ?></h2> 67 <p class="about-description"> 68 <?php 69 printf( 70 /* translators: %s: https://wordpress.org/about/license/ */ 71 __( 'WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its <a href="%s">license</a>, the GPL.' ), 72 __( 'https://wordpress.org/about/license/' ) 73 ); 74 ?> 75 </p> 83 76 </div> 84 <div class="column"> 85 <div class="freedoms-image"></div> 86 <h3><?php _e( 'The 2nd Freedom' ); ?></h3> 87 <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p> 77 78 <div class="feature-section has-4-columns is-fullwidth"> 79 <div class="column"> 80 <div class="freedoms-image"></div> 81 <h3><?php _e( 'The 1st Freedom' ); ?></h3> 82 <p><?php _e( 'To run the program for any purpose.' ); ?></p> 83 </div> 84 <div class="column"> 85 <div class="freedoms-image"></div> 86 <h3><?php _e( 'The 2nd Freedom' ); ?></h3> 87 <p><?php _e( 'To study how the program works and change it to make it do what you wish.' ); ?></p> 88 </div> 89 <div class="column"> 90 <div class="freedoms-image"></div> 91 <h3><?php _e( 'The 3rd Freedom' ); ?></h3> 92 <p><?php _e( 'To redistribute.' ); ?></p> 93 </div> 94 <div class="column"> 95 <div class="freedoms-image"></div> 96 <h3><?php _e( 'The 4th Freedom' ); ?></h3> 97 <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p> 98 </div> 88 99 </div> 89 <div class="column">90 <div class="freedoms-image"></div>91 <h3><?php _e( 'The 3rd Freedom' ); ?></h3>92 <p><?php _e( 'To redistribute.' ); ?></p>93 </div>94 <div class="column">95 <div class="freedoms-image"></div>96 <h3><?php _e( 'The 4th Freedom' ); ?></h3>97 <p><?php _e( 'To distribute copies of your modified versions to others.' ); ?></p>98 </div>99 </div>100 100 101 <div class="feature-section has-1-columns">102 <p>103 <?php104 printf(105 /* translators: %s: https://wordpressfoundation.org/trademark-policy/ */106 __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ),107 'https://wordpressfoundation.org/trademark-policy/'108 );109 ?>110 </p>101 <div class="feature-section has-1-columns"> 102 <p> 103 <?php 104 printf( 105 /* translators: %s: https://wordpressfoundation.org/trademark-policy/ */ 106 __( 'WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to <a href="%s">check out our trademark guidelines</a> first.' ), 107 'https://wordpressfoundation.org/trademark-policy/' 108 ); 109 ?> 110 </p> 111 111 112 <p>113 <?php114 $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' );115 $themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' );116 printf(117 /* translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: https://wordpress.org/about/license/ */118 __( 'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it’s GPL</a> first. If they don’t respect the WordPress license, we don’t recommend them.' ),119 $plugins_url,120 $themes_url,121 __( 'https://wordpress.org/about/license/' )122 );123 ?>124 </p>112 <p> 113 <?php 114 $plugins_url = current_user_can( 'activate_plugins' ) ? admin_url( 'plugins.php' ) : __( 'https://wordpress.org/plugins/' ); 115 $themes_url = current_user_can( 'switch_themes' ) ? admin_url( 'themes.php' ) : __( 'https://wordpress.org/themes/' ); 116 printf( 117 /* translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: https://wordpress.org/about/license/ */ 118 __( 'Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding <a href="%1$s">plugins</a> and <a href="%2$s">themes</a> there. If you get a plugin or theme from another source, make sure to <a href="%3$s">ask them if it’s GPL</a> first. If they don’t respect the WordPress license, we don’t recommend them.' ), 119 $plugins_url, 120 $themes_url, 121 __( 'https://wordpress.org/about/license/' ) 122 ); 123 ?> 124 </p> 125 125 126 <p><?php _e( 'Don’t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p> 126 <p><?php _e( 'Don’t you wish all software came with these freedoms? So do we! For more information, check out the <a href="https://www.fsf.org/">Free Software Foundation</a>.' ); ?></p> 127 </div> 127 128 </div> 128 </div>129 129 130 130 </div> 131 131 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?> -
src/wp-admin/privacy.php
17 17 ?> 18 18 <div class="wrap about-wrap full-width-layout"> 19 19 20 <h1> 21 <?php 22 printf( 23 /* translators: %s: The current WordPress version number. */ 24 __( 'Welcome to WordPress %s' ), 25 $display_version 26 ); 27 ?> 28 </h1> 20 <div class="about__header"> 21 <div class="about__header-title"> 22 <h1> 23 <span><?php echo $display_version; ?></span> 24 <?php _e( 'WordPress' ); ?> 25 </h1> 26 </div> 29 27 30 <p class="about-text">31 <?php32 printf(33 /* translators: %s: The current WordPress version number. */34 __( 'Congratulations on updating to WordPress %s! This update makes it easier than ever to fix your site if something goes wrong.' ),35 $display_version36 );37 ?>38 </p>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 ?> 36 </div> 39 37 40 <div class="wp-badge"> 41 <?php 42 printf( 43 /* translators: %s: The current WordPress version number. */ 44 __( 'Version %s' ), 45 $display_version 46 ); 47 ?> 48 </div> 38 <div class="about__header-text"> 39 <p> 40 <?php 41 printf( 42 /* translators: %s: The current WordPress version number. */ 43 __( 'Introducing our most refined user experience with the improved block editor in WordPress %s!' ), 44 $display_version 45 ); 46 ?> 47 </p> 48 </div> 49 49 50 <nav class="nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 51 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 52 <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> 53 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 54 <a href="privacy.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Privacy' ); ?></a> 55 </nav> 50 <nav class="about__header-navigation nav-tab-wrapper wp-clearfix" aria-label="<?php esc_attr_e( 'Secondary menu' ); ?>"> 51 <a href="about.php" class="nav-tab"><?php _e( 'What’s New' ); ?></a> 52 <a href="credits.php" class="nav-tab"><?php _e( 'Credits' ); ?></a> 53 <a href="freedoms.php" class="nav-tab"><?php _e( 'Freedoms' ); ?></a> 54 <a href="privacy.php" class="nav-tab nav-tab-active" aria-current="page"><?php _e( 'Privacy' ); ?></a> 55 </nav> 56 </div> 56 57 57 <div class="about-wrap-content">58 <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>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> 59 60 60 <p>61 <?php62 printf(63 /* translators: %s: https://wordpress.org/about/stats/ */64 __( '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>.' ),65 __( 'https://wordpress.org/about/stats/' )66 );67 ?>68 </p>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> 69 70 70 <p>71 <?php72 printf(73 /* translators: %s: https://wordpress.org/about/privacy/ */74 __( '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>.' ),75 __( 'https://wordpress.org/about/privacy/' )76 );77 ?>78 </p>79 </div>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> 80 </div> 80 81 81 82 </div> 82 83 <?php include( ABSPATH . 'wp-admin/admin-footer.php' ); ?>