@@ -31,7 +31,7 @@ const getNoIndexOptions = ( editorContext ) => {
31
31
return [
32
32
{
33
33
name : sprintf (
34
- /* translators: %s translates to "yes" or "no", %s translates to the Post Label in plural form */
34
+ /* translators: the first %s translates to "yes" or "no", the second %s translates to the content type label in plural form */
35
35
__ ( "%s (current default for %s)" , "wordpress-seo" ) ,
36
36
noIndex ,
37
37
editorContext . postTypeNamePlural
@@ -45,7 +45,7 @@ const getNoIndexOptions = ( editorContext ) => {
45
45
return [
46
46
{
47
47
name : sprintf (
48
- /* translators: %s translates to the "yes" or "no" , %s translates to the Post Label in plural form */
48
+ /* translators: the first %s translates to "yes" or "no", the second %s translates to the content type label in plural form */
49
49
__ ( "%s (current default for %s)" , "wordpress-seo" ) ,
50
50
noIndex ,
51
51
editorContext . postTypeNamePlural
@@ -83,7 +83,7 @@ const MetaRobotsNoIndex = ( { noIndex, onNoIndexChange, editorContext, isPrivate
83
83
< Select
84
84
label = {
85
85
sprintf (
86
- /* translators: %s translates to the Post Label in singular form */
86
+ /* translators: %s translates "content" to content type label in singular form (e.g. post) */
87
87
__ ( "Allow search engines to show this content in search results?" , "wordpress-seo" ) ,
88
88
editorContext . postTypeNameSingular
89
89
) }
@@ -125,7 +125,7 @@ const MetaRobotsNoFollow = ( { noFollow, onNoFollowChange, postTypeName } ) => {
125
125
id = { id }
126
126
options = { [ { value : "0" , label : "Yes" } , { value : "1" , label : "No" } ] }
127
127
label = { sprintf (
128
- /* translators: %s translates to the Post Label in singular form */
128
+ /* translators: %s translates "content" to content type label in singular form (e.g. post) */
129
129
__ ( "Should search engines follow links on this content" , "wordpress-seo" ) ,
130
130
postTypeName
131
131
) }
0 commit comments