From 488e431aaa1da96ae9b2172942865e891d501469 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 11 Jul 2023 05:53:19 +0000 Subject: [PATCH] I18n: Move translator comments inside `sprintf` for tagline field description. Props costdev. Fixes #57675. git-svn-id: https://develop.svn.wordpress.org/trunk@56203 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/options-general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/options-general.php b/src/wp-admin/options-general.php index 23a776b231..c79851badc 100644 --- a/src/wp-admin/options-general.php +++ b/src/wp-admin/options-general.php @@ -85,8 +85,8 @@ if ( ! is_multisite() ) { /* translators: %s: Network title. */ $sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name ); } -/* translators: %s: Site tagline example. */ $tagline_description = sprintf( + /* translators: %s: Site tagline example. */ __( 'In a few words, explain what this site is about. Example: “%s.”' ), $sample_tagline );