mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-23 19:02:10 +00:00
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:
committed by
GitHub
parent
255d7153f4
commit
4cab501f14
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user