Using Schema.org, I can set the name for my website so it’s visible in Google Search: https://developers.google.com/structured-data/site-name
Example:
<script type="application/ld+json">
{ "@context" : "http://schema.org",
"@type" : "WebSite",
"name" : "Your WebSite Name",
"alternateName" : "An alternative name for your WebSite",
"url" : "http://www.your-site.com"
}
</script>
What if I have multi-language website? 5 languages → 5 index pages, e.g.: http://www.example.com/en/
Is it right to set different URLs for each language with different website names? I cannot find any documentation about that.