Ticket #44130: privacy.diff
File privacy.diff, 4.7 KB (added by , 7 years ago) |
---|
-
src/wp-admin/privacy.php
27 27 'page_for_privacy_policy', 28 28 sprintf( 29 29 /* translators: %s: URL to Customizer -> Menus */ 30 __( 'Privacy policy page updated successfully. Remember to <a href="%s">update your menus</a>!' ),30 __( 'Privacy Policy Page updated successfully. Remember to <a href="%s">update your menus</a>!' ), 31 31 'customize.php?autofocus[panel]=nav_menus' 32 32 ), 33 33 'updated' … … 53 53 add_settings_error( 54 54 'page_for_privacy_policy', 55 55 'page_for_privacy_policy', 56 __( 'Unable to create privacy policy page.' ),56 __( 'Unable to create Privacy Policy Page.' ), 57 57 'error' 58 58 ); 59 59 } else { … … 87 87 'page_for_privacy_policy', 88 88 sprintf( 89 89 /* translators: URL to Pages Trash */ 90 __( 'The currently selected privacy policy page is in the trash. Please create or select new privacy policy page or <a href="%s">restore the current page</a>.' ),90 __( 'The currently selected Privacy Policy Page is in the trash. Please create or select new privacy policy page or <a href="%s">restore the current page</a>.' ), 91 91 'edit.php?post_status=trash&post_type=page' 92 92 ), 93 93 'error' … … 106 106 ?> 107 107 <div class="wrap"> 108 108 <h1><?php echo $title; ?></h1> 109 <h2><?php _e( 'Privacy Policy page' ); ?></h2>109 <h2><?php _e( 'Privacy Policy Page' ); ?></h2> 110 110 <p> 111 <?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.' ); ?>112 <?php _e( 'If you already have a privacy policy page, please select it below. If not, please create one.' ); ?>111 <?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.' ); ?> 112 <?php _e( 'If you already have a Privacy Policy Page, please select it below. If not, please create one.' ); ?> 113 113 </p> 114 114 <p> 115 <?php _e( 'The new page will include help and suggestions for your privacy policy.' ); ?>116 <?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.' ); ?>115 <?php _e( 'The new page will include help and suggestions for your Privacy Policy.' ); ?> 116 <?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.' ); ?> 117 117 </p> 118 118 <p> 119 <?php _e( 'After your privacy policy page is set, we suggest that you edit it.' ); ?>120 <?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.' ); ?>119 <?php _e( 'After your Privacy Policy Page is set, we suggest that you edit it.' ); ?> 120 <?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.' ); ?> 121 121 </p> 122 122 <?php 123 123 … … 137 137 <?php 138 138 139 139 /* translators: 1: URL to edit page, 2: URL to view page */ 140 printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ), $edit_href, $view_href );140 printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your Privacy Policy Page content.' ), $edit_href, $view_href ); 141 141 142 142 ?> 143 143 </strong></p> … … 146 146 147 147 /* translators: 1: Privacy Policy guide URL, 2: additional link attributes, 3: accessibility text */ 148 148 printf( 149 __( 'Need help putting together your new Privacy Policy page? <a href="%1$s" %2$s>Check out our guide%3$s</a> for recommendations on what content to include, along with policies suggested by your plugins and theme.' ),149 __( 'Need help putting together your new Privacy Policy Page? <a href="%1$s" %2$s>Check out our guide%3$s</a> for recommendations on what content to include, along with policies suggested by your plugins and theme.' ), 150 150 admin_url( 'tools.php?wp-privacy-policy-guide' ), 151 151 '', 152 152 '' … … 163 163 <th scope="row"> 164 164 <?php 165 165 if ( $privacy_policy_page_exists ) { 166 _e( 'Change your Privacy Policy page' );166 _e( 'Change your Privacy Policy Page' ); 167 167 } else { 168 _e( 'Select a Privacy Policy page' );168 _e( 'Select a Privacy Policy Page' ); 169 169 } 170 170 ?> 171 171 </th>