Ticket #43933: 43933.patch
File 43933.patch, 2.3 KB (added by , 7 years ago) |
---|
-
src/wp-admin/privacy.php
128 128 <h2><?php _e( 'Privacy Policy page' ); ?></h2> 129 129 <p> 130 130 <?php _e( 'As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a privacy policy.' ); ?> 131 <?php _e( 'If you already have a privacy policy page, please select it below. If not, create one.' ); ?>131 <?php _e( 'If you already have a privacy policy page, please select it below. If not, please create one.' ); ?> 132 132 </p> 133 133 <p> 134 134 <?php _e( 'The new page will include help and suggestions for your privacy policy.' ); ?> … … 135 135 <?php _e( 'However, it is your responsibility to use those resources correctly, to provide the information that your privacy policy requires, and to keep that information current and accurate.' ); ?> 136 136 </p> 137 137 <p> 138 <?php _e( 'After your privacy policy page is set, we suggest that you edit it. On the edit page screen you will find additional privacy information added by your themes and plugins.' ); ?>139 <?php _e( 'We would also suggest reviewing your privacy policy from time to time, especially after an update. There may be changes or new suggested information for you to consider adding to your policy.' ); ?>138 <?php _e( 'After your privacy policy page is set, we suggest that you edit it. On the edit page screen, you will find additional privacy information added by your themes and plugins.' ); ?> 139 <?php _e( 'We would also suggest reviewing your privacy policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy.' ); ?> 140 140 </p> 141 141 <?php 142 142 if ( $privacy_policy_page_exists ) { … … 201 201 <form method="post" action=""> 202 202 <input type="hidden" name="action" value="create-privacy-page" /> 203 203 <span> 204 <?php _e( 'Or create a new page:' ); ?> 204 <?php _e( 'Or create a new page:' ); ?> 205 205 </span> 206 206 <?php 207 207 wp_nonce_field( 'create-privacy-page' ); 208 208 209 209 submit_button( __( 'Create New Page' ), 'primary', 'submit', false, array( 'id' => 'create-page' ) ); 210 210 ?> 211 211 </form>