-
Notifications
You must be signed in to change notification settings - Fork 0
/
multilang-example.html
72 lines (65 loc) · 2.09 KB
/
multilang-example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Meu Blog</title>
<style>
/* Estilos CSS */
.language-selector {
margin-bottom: 10px;
}
.post-content {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="language-selector">
<select id="language-select">
<option value="en">English</option>
<option value="es">Español</option>
<option value="pt">Português</option>
</select>
</div>
<div class="post-content" id="post-content">
<!-- Conteúdo será preenchido dinamicamente -->
</div>
<script>
// Traduções em diferentes idiomas
var translations = {
en: {
title: "Welcome to My Blog",
content: "This is a sample blog post in English.",
},
es: {
title: "Bienvenido a Mi Blog",
content: "Este es un ejemplo de publicación de blog en español.",
},
pt: {
title: "Bem-vindo ao Meu Blog",
content: "Este é um exemplo de postagem de blog em português.",
},
};
// Função para atualizar o conteúdo com base no idioma selecionado
function updateContent(language) {
var contentElement = document.getElementById("post-content");
contentElement.innerHTML = `
<h1>${translations[language].title}</h1>
<p>${translations[language].content}</p>
`;
}
// Evento para detectar mudança no seletor de idioma
var languageSelect = document.getElementById("language-select");
languageSelect.addEventListener("change", function () {
var selectedLanguage = languageSelect.value;
updateContent(selectedLanguage);
});
// Atualizar o conteúdo inicialmente com base no idioma padrão
var defaultLanguage = languageSelect.value;
updateContent(defaultLanguage);
</script>
</body>
</html>