Make the string `WordPress` translatable.

Props mnelson4.
See #43620.

git-svn-id: https://develop.svn.wordpress.org/trunk@42999 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2018-04-24 21:22:52 +00:00
parent f3150c77c5
commit 84251cc161
1 changed files with 1 additions and 1 deletions

View File

@ -1653,6 +1653,6 @@ final class WP_Privacy_Policy_Content {
*/
public static function add_suggested_content() {
$content = self::get_default_content();
wp_add_privacy_policy_content( 'WordPress', $content );
wp_add_privacy_policy_content( __( 'WordPress' ), $content );
}
}