Crowdin: fix case for 'partdesign'

ref: https://crowdin.com/translate/freecad/564/en-fr#6500374
also through in a random typo fix
This commit is contained in:
luz.paz
2018-02-06 17:50:04 -05:00
committed by wmayer
parent 55a2a7ab55
commit f3098d5acb
2 changed files with 2 additions and 2 deletions

View File

@@ -146,7 +146,7 @@ void ViewProviderDatumCoordinateSystem::updateData(const App::Property* prop)
}
void ViewProviderDatumCoordinateSystem::setExtents (Base::BoundBox3d bbox) {
// Axis lingth of the CS is 1/3 of maximum bbox dimension, any smarter sizing will make it only worser
// Axis length of the CS is 1/3 of maximum bbox dimension, any smarter sizing will make it only worse
double axisLength = std::max ( { bbox.LengthX (), bbox.LengthY(), bbox.LengthZ() } );
axisLength *= (1 + marginFactor ()) / 3;