';
_e( 'Your homepage can be indexed by search engines.', 'wordpress-seo' );
break;
case WPSEO_OnPage_Option::IS_NOT_INDEXABLE :
echo '
';
printf(
/* translators: 1: opens a link to a related knowledge base article. 2: closes the link */
__( '%1$sYour homepage cannot be indexed by search engines%2$s. This is very bad for SEO and should be fixed.', 'wordpress-seo' ),
'
',
''
);
break;
case WPSEO_OnPage_Option::CANNOT_FETCH :
echo '
';
printf(
/* translators: 1: opens a link to a related knowledge base article. 2: closes the link */
__( 'Yoast SEO has %1$snot been able to fetch your site’s indexability status%2$s from OnPage.org', 'wordpress-seo' ),
'
',
''
);
break;
case WPSEO_OnPage_Option::NOT_FETCHED :
echo '
';
printf(
/* translators: 1: opens a link to a related knowledge base article. 2: closes the link */
__( 'Yoast SEO has %1$snot fetched your site’s indexability status%2$s yet from OnPage.org', 'wordpress-seo' ),
'
',
''
);
break;
endswitch;
echo '
';
if ( $onpage['indexable'] !== WPSEO_OnPage_Option::IS_INDEXABLE && $onpage['can_fetch'] ) :
echo '
' . __( 'Fetch the current status', 'wordpress-seo' ) . ' ';
endif;
echo '
' . __( 'Analyze entire site', 'wordpress-seo' ) . ' ';
?>