From 7cca1e9cad6110e5afdf2ca408e0e4bdbe8f986f Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Thu, 3 May 2018 18:24:55 +0000 Subject: [PATCH] Privacy: use `sprintf()` in translations. Props birgire. See #43473. git-svn-id: https://develop.svn.wordpress.org/trunk@43150 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/misc.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/wp-admin/includes/misc.php b/src/wp-admin/includes/misc.php index bdd1df2867..df307e4e79 100644 --- a/src/wp-admin/includes/misc.php +++ b/src/wp-admin/includes/misc.php @@ -1649,7 +1649,8 @@ final class WP_Privacy_Policy_Content { '

' . __( 'Who we are' ) . '

' . '

' . __( 'In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.' ) . '

' . '

' . __( 'The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.' ) . '

' . - '

' . __( 'Our website address is: $1%s.' ) . '

' . + /* translators: %s Site URL */ + '

' . sprintf( __( 'Our website address is: %s.' ), get_bloginfo( 'url', 'display' ) ) . '

' . '

' . __( 'What personal data we collect and why we collect it' ) . '

' . '

' . __( 'In this section you should note what personal data you collect from users and site visitors. This may include transactional data, such as purchase information; technical data, such as information about cookies; and personal data, such as user account information.' ) . '

' . @@ -1722,14 +1723,12 @@ final class WP_Privacy_Policy_Content { '

' . __( 'If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.' ) . '

'; // End of the suggested policy text. - $content = str_replace( '$1%s', get_bloginfo( 'url', 'display' ), $content ); - /** * Filters the default content suggested for inclusion in a privacy policy. * * @since 4.9.6 * - * @param $content string The defauld policy content. + * @param $content string The default policy content. */ return apply_filters( 'wp_get_default_privacy_policy_content', $content ); }