Changeset 45932 for trunk/src/wp-admin/options-privacy.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-privacy.php
r45818 r45932 39 39 ) { 40 40 $privacy_page_updated_message = sprintf( 41 /* translators: %s: URL to Customizer -> Menus */41 /* translators: %s: URL to Customizer -> Menus. */ 42 42 __( 'Privacy Policy page setting updated successfully. Remember to <a href="%s">update your menus</a>!' ), 43 43 esc_url( add_query_arg( 'autofocus[panel]', 'nav_menus', admin_url( 'customize.php' ) ) ) … … 101 101 'page_for_privacy_policy', 102 102 sprintf( 103 /* translators: URL to Pages Trash */103 /* translators: URL to Pages Trash. */ 104 104 __( 'The currently selected Privacy Policy page is in the trash. Please create or select a new Privacy Policy page or <a href="%s">restore the current page</a>.' ), 105 105 'edit.php?post_status=trash&post_type=page' … … 151 151 if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) { 152 152 printf( 153 /* translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy Policy page */153 /* translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy Policy page. */ 154 154 __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your Privacy Policy page content.' ), 155 155 esc_url( $edit_href ), … … 158 158 } else { 159 159 printf( 160 /* translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy Policy page */160 /* translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy Policy page. */ 161 161 __( '<a href="%1$s">Edit</a> or <a href="%2$s">preview</a> your Privacy Policy page content.' ), 162 162 esc_url( $edit_href ), … … 172 172 <?php 173 173 printf( 174 /* translators: 1: Privacy Policy guide URL, 2: additional link attributes, 3: accessibility text*/174 /* translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: Accessibility text. */ 175 175 __( '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.' ), 176 176 esc_url( admin_url( 'privacy-policy-guide.php' ) ),
Note: See TracChangeset
for help on using the changeset viewer.