Remove markers from strings that don't need translation (#11234)

* Remove markers from strings that don't need translation
This commit is contained in:
Alexandre Folle de Menezes
2025-11-08 00:53:56 +08:00
committed by GitHub
parent 210bc47173
commit c3e03a0955
26 changed files with 7 additions and 402 deletions
@@ -147,7 +147,7 @@ void uiAmsPercentHumidityDryPopup::UpdateContents()
// table grid
const wxString& humidity_str = wxString::Format("%d%%", m_humidity_percent);
m_humidity_label->SetLabel(humidity_str);
const wxString& temp_str = wxString::Format(_L("%d \u2103"), (int)std::round(m_current_temperature));
const wxString& temp_str = wxString::Format(u8"%d\u2103" /* °C */, (int)std::round(m_current_temperature));
m_temperature_label->SetLabel(temp_str);
if (m_left_dry_time > 0)