“Hello everyone, I’m taking the ‘Certified Full Stack Developer Curriculum,’ and during the HTML > Basic > ‘Build a Travel Agency Page’ step, I encountered an error that might be related to translation for some languages. I’m not very comfortable communicating in English yet, so I switched the language to Portuguese. However, in Portuguese and some other languages, this lesson always fails even though the code is correct. I only succeed in the lesson when I switch back to English.”
“The lesson in question is this: https://www.freecodecamp.org/portuguese/learn/full-stack-developer/lab-recipe-page/build-a-recipe-page”
this is my funcional code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="description">
<title> Free Code Camp travel agency</title>
</head>
<body>
<h1>Travel destinations
</h1>
<p>Travel oportunities </p>
<h2>Packages</h2>
<p>Various Packages</p>
<ul>unordered list
<li><a href="https://www.freecodecamp.org/learn" target="_blank">Group Travels</a></li>
<li><a href="https://www.freecodecamp.org/learn" target="_blank"> Private Tours</a></li>
</ul>
<h2> Top Itineraries</h2>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/colosseo.jpg" alt="colosseo"></a>
<figcaption>caption image 1
</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/alps.jpg" alt="alps"></a>
<figcaption>caption image 2</figcaption>
</figure>
<figure>
<a href="https://www.freecodecamp.org/learn" target="_blank">
<img src="https://cdn.freecodecamp.org/curriculum/labs/sea.jpg" alt="sea"></a>
<figcaption> caption image 3</figcaption>
</figure>
</body>
</html>
If I run the lesson in English, I pass, but if I switch to Portuguese, most steps give errors.
`