X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=core%2Fsrc%2Fnet%2Fsf%2Fopenrocket%2Fgui%2Fdialogs%2Fmotor%2Fthrustcurve%2FThrustCurveMotorColumns.java;h=7520a01bc1e0ba84277a8215579d06eb6e6c323e;hb=db0f47600db98b2e8083a2523e6443b92bfaf2c9;hp=d4cefca2b51275587b1ad8a9add6220b1648f842;hpb=4d321a87d1528772484d666d86f76ece8f5b8117;p=debian%2Fopenrocket diff --git a/core/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorColumns.java b/core/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorColumns.java index d4cefca2..7520a01b 100644 --- a/core/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorColumns.java +++ b/core/src/net/sf/openrocket/gui/dialogs/motor/thrustcurve/ThrustCurveMotorColumns.java @@ -116,28 +116,28 @@ enum ThrustCurveMotorColumns { tip += "" + desc.replace("\n", "
") + "


"; } - tip += ("Diameter: " + + tip += (trans.get("TCurveMotor.ttip.diameter") + " " + UnitGroup.UNITS_MOTOR_DIMENSIONS.getDefaultUnit().toStringUnit(m.getDiameter()) + "
"); - tip += ("Length: " + + tip += (trans.get("TCurveMotor.ttip.length") + " " + UnitGroup.UNITS_MOTOR_DIMENSIONS.getDefaultUnit().toStringUnit(m.getLength()) + "
"); - tip += ("Maximum thrust: " + + tip += (trans.get("TCurveMotor.ttip.maxThrust") + " " + UnitGroup.UNITS_FORCE.getDefaultUnit().toStringUnit(m.getMaxThrustEstimate()) + "
"); - tip += ("Average thrust: " + + tip += (trans.get("TCurveMotor.ttip.avgThrust") + " " + UnitGroup.UNITS_FORCE.getDefaultUnit().toStringUnit(m.getAverageThrustEstimate()) + "
"); - tip += ("Burn time: " + + tip += (trans.get("TCurveMotor.ttip.burnTime") + " " + UnitGroup.UNITS_SHORT_TIME.getDefaultUnit() .toStringUnit(m.getBurnTimeEstimate()) + "
"); - tip += ("Total impulse: " + + tip += (trans.get("TCurveMotor.ttip.totalImpulse") + " " + UnitGroup.UNITS_IMPULSE.getDefaultUnit() .toStringUnit(m.getTotalImpulseEstimate()) + "
"); - tip += ("Launch mass: " + + tip += (trans.get("TCurveMotor.ttip.launchMass") + " " + UnitGroup.UNITS_MASS.getDefaultUnit().toStringUnit(m.getLaunchCG().weight) + "
"); - tip += ("Empty mass: " + + tip += (trans.get("TCurveMotor.ttip.emptyMass") + " " + UnitGroup.UNITS_MASS.getDefaultUnit() .toStringUnit(m.getEmptyCG().weight)); return tip;