Skip to content

Commit

Permalink
Merge pull request #88 from prem12321kumar/patch-2
Browse files Browse the repository at this point in the history
Fix translation of 'Seems', 'Earth', 'Humidity' when in idle
  • Loading branch information
XengShi authored Oct 22, 2024
2 parents 71de98d + febd1ae commit 856c17a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions languages.js
Original file line number Diff line number Diff line change
Expand Up @@ -680,9 +680,9 @@ function applyLanguage(lang) {
document.getElementById('userText').innerText = translations[lang].userText;

// Weather
// document.getElementById("humidityText").innerText = translations[lang].humidityText;
document.getElementById("feelsLike").innerText = translations[lang].feelsLike;
document.getElementById("location").innerText = translations[lang].location;
document.getElementById("humidityLevel").textContent = translations[lang].humidityText;
document.getElementById("feelsLike").textContent = translations[lang].feelsLikeText;
document.getElementById("location").innerText = translations[lang].locationText;

// End of Body Items

Expand Down

0 comments on commit 856c17a

Please sign in to comment.