Extend and Update localizations (#12610)

This commit is contained in:
Ian Bassi
2026-03-05 11:33:07 -03:00
committed by GitHub
parent 84d5ad60c9
commit 31f0fbbb39
29 changed files with 5506 additions and 1660 deletions

View File

@@ -222,7 +222,7 @@ void Bed_2D::repaint(const std::vector<Vec2d>& shape)
dc.DrawText(origin_label, origin_label_x, origin_label_y);
// ORCA add grid size value as information for large scale beds
auto grid_label = wxString("1x1 Grid: " + std::to_string(step) + " mm");
auto grid_label = wxString::Format(_L("1x1 Grid: %d mm"), step);
Point draw_bb = to_pixels(Vec2d(
std::min(m_pos(0),bb.min(0)),
std::min(m_pos(1),bb.min(1))