Fix inconsistencies on new translated strings (#10310)

* Unmark string that don't need to be translated

* Spellcheck

* Fix calibration strings consistency
This commit is contained in:
Alexandre Folle de Menezes
2025-08-09 12:52:48 -03:00
committed by GitHub
parent 255d7153f4
commit 4cab501f14
29 changed files with 397 additions and 655 deletions

View File

@@ -206,12 +206,12 @@ void uiAmsPercentHumidityDryPopup::DrawGridArea(wxDC &dc, wxPoint start_p)
}
else if (header == _L("Temperature"))
{
const wxString &temp_str = wxString::Format(_L("%.1f \u2103"), m_current_temperature);
const wxString &temp_str = wxString::Format(u8"%.1f \u2103", m_current_temperature);
dc.DrawText(temp_str, left, start_p.y + row_height);
}
else if (header == _L("Left Time"))
{
const wxString &time_str = wxString::Format(_L("%d : %d"), m_left_dry_time / 60, m_left_dry_time % 60);
const wxString &time_str = wxString::Format("%d : %d", m_left_dry_time / 60, m_left_dry_time % 60);
dc.DrawText(time_str, left, start_p.y + row_height);
}