Skip to content

Commit d5da421

Browse files
committed
update and clarify notes for translators
1 parent c432b9c commit d5da421

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/js/src/components/AdvancedSettings.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const getNoIndexOptions = ( editorContext ) => {
3131
return [
3232
{
3333
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 */
3535
__( "%s (current default for %s)", "wordpress-seo" ),
3636
noIndex,
3737
editorContext.postTypeNamePlural
@@ -45,7 +45,7 @@ const getNoIndexOptions = ( editorContext ) => {
4545
return [
4646
{
4747
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 */
4949
__( "%s (current default for %s)", "wordpress-seo" ),
5050
noIndex,
5151
editorContext.postTypeNamePlural
@@ -83,7 +83,7 @@ const MetaRobotsNoIndex = ( { noIndex, onNoIndexChange, editorContext, isPrivate
8383
<Select
8484
label={
8585
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) */
8787
__( "Allow search engines to show this content in search results?", "wordpress-seo" ),
8888
editorContext.postTypeNameSingular
8989
) }
@@ -125,7 +125,7 @@ const MetaRobotsNoFollow = ( { noFollow, onNoFollowChange, postTypeName } ) => {
125125
id={ id }
126126
options={ [ { value: "0", label: "Yes" }, { value: "1", label: "No" } ] }
127127
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) */
129129
__( "Should search engines follow links on this content", "wordpress-seo" ),
130130
postTypeName
131131
) }

0 commit comments

Comments
 (0)