improve english on few messages (thx)

0.9.0-post-fixes
UbitUmarov 2017-06-12 13:34:39 +01:00
parent 70be8ba6de
commit f62400c4ca
2 changed files with 3 additions and 3 deletions

View File

@ -2865,7 +2865,7 @@ namespace OpenSim.Region.Framework.Scenes
root.SendPropertiesToClient(sp.ControllingClient); root.SendPropertiesToClient(sp.ControllingClient);
if (oldUsePhysics && (root.Flags & PrimFlags.Physics) == 0) if (oldUsePhysics && (root.Flags & PrimFlags.Physics) == 0)
{ {
sp.ControllingClient.SendAlertMessage("Object physics canceled"); sp.ControllingClient.SendAlertMessage("Object physics cancelled");
} }
} }
} }

View File

@ -1662,9 +1662,9 @@ namespace OpenSim.Region.Framework.Scenes
if (wantedPhys != group.UsesPhysics && remoteClient != null) if (wantedPhys != group.UsesPhysics && remoteClient != null)
{ {
if(m_parentScene.m_linksetPhysCapacity != 0) if(m_parentScene.m_linksetPhysCapacity != 0)
remoteClient.SendAlertMessage("Object physics canceled because exceeds limits for physical prims, either size or number of primswith shape type not set to None"); remoteClient.SendAlertMessage("Object physics cancelled because it exceeds limits for physical prims, either size or number of primswith shape type not set to None");
else else
remoteClient.SendAlertMessage("Object physics canceled because exceeds size limits for physical prims"); remoteClient.SendAlertMessage("Object physics cancelled because it exceeds size limits for physical prims");
group.RootPart.ScheduleFullUpdate(); group.RootPart.ScheduleFullUpdate();
} }