From e0387b6b46f29eaa33e176be54a46bedf9cc316d Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Thu, 31 Oct 2024 12:53:33 +0100 Subject: [PATCH] fix: remove untranslated text --- cydiapomonella/templates/cydiapomonella/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cydiapomonella/templates/cydiapomonella/index.html b/cydiapomonella/templates/cydiapomonella/index.html index 8f513a24..bb0f25f1 100644 --- a/cydiapomonella/templates/cydiapomonella/index.html +++ b/cydiapomonella/templates/cydiapomonella/index.html @@ -83,9 +83,9 @@ Created: 2024-10-28 getLocationInformation(latitude, longitude).then(locationInfo => { document.getElementById("timezone").value = locationInfo.timezone; document.getElementById("gridPointInfo").innerHTML = `<b>{% trans "Location name" %}</b> ${locationInfo.location}<br> - <b>{% trans "Latitude" %}Breddegrad</b> ${locationInfo.latitude}<br> - <b>{% trans "Longitude" %}Lengdegrad</b> ${locationInfo.longitude}<br> - <b>{% trans "Timezone" %}Tidssone</b> ${locationInfo.timezone}` + <b>{% trans "Latitude" %}</b> ${locationInfo.latitude}<br> + <b>{% trans "Longitude" %}</b> ${locationInfo.longitude}<br> + <b>{% trans "Timezone" %}</b> ${locationInfo.timezone}` }); } -- GitLab