Selecting a language

In order to select a language, you simply add the "lang" attribute to the HTML tag. The following examples are from http://demo.readspeaker.com/?p=hl.autolangswitch_exp&l=en-us: Links to an external site. -- see also https://demo.readspeaker.com/?p=wr.autolangswitch_wr Links to an external site.


<p lang="en-UK">This text is in British English.</p>
<p lang="de-DE">Und dieser Text ist auf Deutsch.</p>
<p lang="fr-FR">Et ce texte est en français.</p>
<p lang="es-ES">Y este texto està en español.</p>
<p lang="en-US">And this text is read in American English.</p>
<p lang="nl-NL">En deze tekst is in het Nederlands.</p>
<p lang="sv-SE">Och denna text är på svenska.</p>
<p lang="it-IT">Questo testo è in italiano.</p>
<p lang="en-UK">And now British English again.</p>

Now try them:

This text is in British English.

Und dieser Text ist auf Deutsch.

Et ce texte est en français.

Y este texto està en español.

And this text is read in American English.

En deze tekst is in het Nederlands.

Och denna text är på svenska.

Questo testo è in italiano.

And now British English again.

It is also possible to simply use the two-letter code for the language, as in:


<p lang="sv">Och denna text är på svenska.</p>

Another try:

Och denna text är på svenska.

Now try them again without the "-"country specification:

This text is in English.

Und dieser Text ist auf Deutsch.

Et ce texte est en français.

Y este texto està en español.

And this text is read in American English.

En deze tekst is in het Nederlands.

Och denna text är på svenska.

Questo testo è in italiano.

And now English again.