Localizations refactor (#14254)

This commit is contained in:
Ian Bassi
2026-06-18 09:13:51 -03:00
committed by GitHub
parent d7688a27d0
commit 514ab02525
120 changed files with 76499 additions and 183933 deletions

View File

@@ -519,7 +519,7 @@ void Selection::center()
Vec3d distance = Vec3d(tar_pos.x() - src_pos.x(), tar_pos.y() - src_pos.y(), 0);
this->move_to_center(distance);
wxGetApp().plater()->get_view3D_canvas3D()->do_move(L("Move Object"));
wxGetApp().plater()->get_view3D_canvas3D()->do_move(L("Move object"));
return;
}
@@ -529,7 +529,7 @@ void Selection::drop()
return; // shouldnt happen, but better check anyways, already checked in append_menu_item_drop()
}
wxGetApp().plater()->take_snapshot(L("Move Object"));
wxGetApp().plater()->take_snapshot(L("Move object"));
this->move_to_center(Vec3d(0, 0, -this->get_bounding_box().min.z()));
@@ -563,7 +563,7 @@ void Selection::center_plate(const int plate_idx) {
Vec3d distance = Vec3d(tar_pos.x() - src_pos.x(), tar_pos.y() - src_pos.y(), 0);
this->move_to_center(distance);
wxGetApp().plater()->get_view3D_canvas3D()->do_move(L("Move Object"));
wxGetApp().plater()->get_view3D_canvas3D()->do_move(L("Move object"));
return;
}