Writerside change lang=en-EN to lang=cs-CZ

Answered

How can I please set the generated content in the html header to lang=cs-CZ instead of the default value en. Thank you

0
2 comments

Hi Lukas,

Unfortunately, there is currently no way to localize the application’s content. 

However, we do have a request for this feature: 

Feel free to upvote it!

0

You can set the generated content's language to Czech (Czech Republic) by changing the value of the lang attribute within the tag of your HTML document.

Setting the Language
To set the language to Czech (Czech Republic), you need to modify the opening <html> tag as follows:

<!DOCTYPE html>
<html lang="cs-CZ">
<head>
   <meta charset="UTF-8">
   <title>Vaše stránka</title>
</head>
<body>
   </body>
</html>

lang="cs-CZ":

cs is the language code for Czech.

CZ is the region code for the Czech Republic.

This combination tells browsers and search engines that the primary language of the document is Czech as used in the Czech Republic.

0

Please sign in to leave a comment.