Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit 7b0763c

Browse files
committed
Lectoring
1 parent 42cafb9 commit 7b0763c

File tree

9 files changed

+75
-75
lines changed

9 files changed

+75
-75
lines changed

MicroEngineerProject/MicroEngineer/Entries/BodyEntries.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class ReferenceBodyConstants_Radius : BodyEntry
2828
{
2929
public ReferenceBodyConstants_Radius()
3030
{
31-
Name = "Body Radius";
31+
Name = "Body radius";
3232
Description = "Body's radius.";
3333
Category = MicroEntryCategory.Body;
3434
IsDefault = false;
@@ -53,7 +53,7 @@ public class ReferenceBodyConstants_StandardGravitationParameter : BodyEntry
5353
{
5454
public ReferenceBodyConstants_StandardGravitationParameter()
5555
{
56-
Name = "Std. Grav. Param.";
56+
Name = "Std. grav. param.";
5757
Description = "Product of the gravitational constant G and the mass M of the body.";
5858
Category = MicroEntryCategory.Body;
5959
IsDefault = false;

MicroEngineerProject/MicroEngineer/Entries/FlightEntries.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class MachNumber : FlightEntry
3333
{
3434
public MachNumber()
3535
{
36-
Name = "Mach Number";
36+
Name = "Mach number";
3737
Description = "Shows the ratio of vessel's speed and local speed of sound.";
3838
Category = MicroEntryCategory.Flight;
3939
IsDefault = true;
@@ -222,7 +222,7 @@ public class TotalLift : FlightEntry
222222
{
223223
public TotalLift()
224224
{
225-
Name = "Total Lift";
225+
Name = "Total lift";
226226
Description = "Shows the total lift force produced by the vessel.";
227227
Category = MicroEntryCategory.Flight;
228228
IsDefault = true;
@@ -257,7 +257,7 @@ public class TotalDrag : FlightEntry
257257
{
258258
public TotalDrag()
259259
{
260-
Name = "Total Drag";
260+
Name = "Total drag";
261261
Description = "Shows the total drag force exerted on the vessel.";
262262
Category = MicroEntryCategory.Flight;
263263
IsDefault = true;
@@ -323,7 +323,7 @@ public class DragCoefficient : FlightEntry
323323
{
324324
public DragCoefficient()
325325
{
326-
Name = "Drag Coefficient";
326+
Name = "Drag coefficient";
327327
Description = "Dimensionless quantity that is used to quantify the drag or resistance of an object in a fluid environment, such as air or water.";
328328
Category = MicroEntryCategory.Flight;
329329
IsDefault = false;
@@ -344,7 +344,7 @@ public class ExposedArea : FlightEntry
344344
{
345345
public ExposedArea()
346346
{
347-
Name = "Exposed Area";
347+
Name = "Exposed area";
348348
Description = "The surface area that interacts with the working fluid or gas.";
349349
Category = MicroEntryCategory.Flight;
350350
IsDefault = false;
@@ -365,7 +365,7 @@ public class AtmosphericDensity : FlightEntry
365365
{
366366
public AtmosphericDensity()
367367
{
368-
Name = "Atm. Density";
368+
Name = "Atm. density";
369369
Description = "Shows the atmospheric density.";
370370
Category = MicroEntryCategory.Flight;
371371
IsDefault = true;

MicroEngineerProject/MicroEngineer/Entries/ManeuverEntries.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class ManeuverPrograde : ManeuverEntry
4343
{
4444
public ManeuverPrograde()
4545
{
46-
Name = "∆v Prograde";
46+
Name = "∆v prograde";
4747
Description = "Prograde/Retrograde component of the total change in velocity.";
4848
Category = MicroEntryCategory.Maneuver;
4949
IsDefault = false;
@@ -69,7 +69,7 @@ public class ManeuverNormal : ManeuverEntry
6969
{
7070
public ManeuverNormal()
7171
{
72-
Name = "∆v Normal";
72+
Name = "∆v normal";
7373
Description = "Normal component of the total change in velocity.";
7474
Category = MicroEntryCategory.Maneuver;
7575
IsDefault = false;
@@ -95,7 +95,7 @@ public class ManeuverRadial : ManeuverEntry
9595
{
9696
public ManeuverRadial()
9797
{
98-
Name = "∆v Radial";
98+
Name = "∆v radial";
9999
Description = "Radial component of the total change in velocity.";
100100
Category = MicroEntryCategory.Maneuver;
101101
IsDefault = false;
@@ -121,7 +121,7 @@ public class TimeToNode : ManeuverEntry
121121
{
122122
public TimeToNode()
123123
{
124-
Name = "Time to Node";
124+
Name = "Time to node";
125125
Description = "Time until vessel reaches the maneuver node.";
126126
Category = MicroEntryCategory.Maneuver;
127127
IsDefault = true;
@@ -151,7 +151,7 @@ public class BurnTime : ManeuverEntry
151151
{
152152
public BurnTime()
153153
{
154-
Name = "Burn Time";
154+
Name = "Burn time";
155155
Description = "Length of time needed to complete the maneuver node.";
156156
Category = MicroEntryCategory.Maneuver;
157157
IsDefault = true;
@@ -381,7 +381,7 @@ public class Maneuver_TrueAnomaly : ManeuverEntry
381381
{
382382
public Maneuver_TrueAnomaly()
383383
{
384-
Name = "True Anomaly";
384+
Name = "True anomaly";
385385
Description = "True Anomaly vessel will have after completing the maneuver.";
386386
Category = MicroEntryCategory.Maneuver;
387387
IsDefault = false;
@@ -414,7 +414,7 @@ public class Maneuver_MeanAnomaly : ManeuverEntry
414414
{
415415
public Maneuver_MeanAnomaly()
416416
{
417-
Name = "Mean Anomaly";
417+
Name = "Mean anomaly";
418418
Description = "Mean Anomaly vessel will have after completing the maneuver.";
419419
Category = MicroEntryCategory.Maneuver;
420420
IsDefault = false;
@@ -447,7 +447,7 @@ public class Maneuver_EccentricAnomaly : ManeuverEntry
447447
{
448448
public Maneuver_EccentricAnomaly()
449449
{
450-
Name = "Eccentric Anomaly";
450+
Name = "Eccentric anomaly";
451451
Description = "Eccentric Anomaly vessel will have after completing the maneuver.";
452452
Category = MicroEntryCategory.Maneuver;
453453
IsDefault = false;
@@ -528,7 +528,7 @@ public class Maneuver_SemiLatusRectum : ManeuverEntry
528528
{
529529
public Maneuver_SemiLatusRectum()
530530
{
531-
Name = "Semi Latus Rectum";
531+
Name = "Semi latus rect";
532532
Description = "Semi Latus Rectum vessel will have after completing the maneuver.";
533533
Category = MicroEntryCategory.Maneuver;
534534
IsDefault = false;
@@ -556,7 +556,7 @@ public class Maneuver_SemiMajorAxis : ManeuverEntry
556556
{
557557
public Maneuver_SemiMajorAxis()
558558
{
559-
Name = "Semi Major Axis";
559+
Name = "Semi major axis";
560560
Description = "Semi Major Axis vessel will have after completing the maneuver.";
561561
Category = MicroEntryCategory.Maneuver;
562562
IsDefault = false;
@@ -584,7 +584,7 @@ public class Maneuver_SemiMinorAxis : ManeuverEntry
584584
{
585585
public Maneuver_SemiMinorAxis()
586586
{
587-
Name = "Semi Minor Axis";
587+
Name = "Semi minor axis";
588588
Description = "Semi Minor Axis vessel will have after completing the maneuver.";
589589
Category = MicroEntryCategory.Maneuver;
590590
IsDefault = false;
@@ -612,7 +612,7 @@ public class Maneuver_OrbitalEnergy : ManeuverEntry
612612
{
613613
public Maneuver_OrbitalEnergy()
614614
{
615-
Name = "Orbital Energy";
615+
Name = "Orbital energy";
616616
Description = "Orbital Energy vessel will have after completing the maneuver.";
617617
Category = MicroEntryCategory.Maneuver;
618618
IsDefault = false;
@@ -640,7 +640,7 @@ public class Maneuver_ObT : ManeuverEntry
640640
{
641641
public Maneuver_ObT()
642642
{
643-
Name = "Orbit Time";
643+
Name = "Orbit time";
644644
Description = "Shows orbit time in seconds from the Periapsis when vessel reaches the maneuver node.";
645645
Category = MicroEntryCategory.Maneuver;
646646
IsDefault = false;
@@ -730,7 +730,7 @@ public class Maneuver_UniversalTimeAtClosestApproach : ManeuverEntry
730730
{
731731
public Maneuver_UniversalTimeAtClosestApproach()
732732
{
733-
Name = "UT Close.App.";
733+
Name = "UT close.app.";
734734
Description = "Universal Time at the point of closest approach.";
735735
Category = MicroEntryCategory.Maneuver;
736736
IsDefault = false;
@@ -762,7 +762,7 @@ public class Maneuver_UniversalTimeAtSoiEncounter : ManeuverEntry
762762
{
763763
public Maneuver_UniversalTimeAtSoiEncounter()
764764
{
765-
Name = "UT SOI Enc.";
765+
Name = "UT SOI enc.";
766766
Description = "Universal Time at the point of transition to another Sphere Of Influence.";
767767
Category = MicroEntryCategory.Maneuver;
768768
IsDefault = false;

MicroEngineerProject/MicroEngineer/Entries/MiscEntries.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class GravityForPos : MiscEntry
2323
{
2424
public GravityForPos()
2525
{
26-
Name = "Local Gravity";
26+
Name = "Local gravity";
2727
Description = "Local gravity vessel is experiencing.";
2828
Category = MicroEntryCategory.Misc;
2929
IsDefault = false;
@@ -104,7 +104,7 @@ public class LaunchTime : MiscEntry
104104
{
105105
public LaunchTime()
106106
{
107-
Name = "Launch Time";
107+
Name = "Launch time";
108108
Description = "Universal Time when vessel was launched.";
109109
Category = MicroEntryCategory.Misc;
110110
IsDefault = false;
@@ -184,7 +184,7 @@ public class AutopilotStatus_Mode : MiscEntry
184184
{
185185
public AutopilotStatus_Mode()
186186
{
187-
Name = "Autopilot Mode";
187+
Name = "Autopilot mode";
188188
Description = "Mode vessel's autopilot is using: stability assist, prograde, retrograde, normal, etc.";
189189
Category = MicroEntryCategory.Misc;
190190
IsDefault = false;
@@ -204,7 +204,7 @@ public class AltimeterMode : MiscEntry
204204
{
205205
public AltimeterMode()
206206
{
207-
Name = "Altimeter Mode";
207+
Name = "Altimeter mode";
208208
Description = "Mode vessel's altimeter is using: Sea Level or Ground Level.";
209209
Category = MicroEntryCategory.Misc;
210210
IsDefault = false;
@@ -224,7 +224,7 @@ public class SpeedMode : MiscEntry
224224
{
225225
public SpeedMode()
226226
{
227-
Name = "Speed Mode";
227+
Name = "Speed mode";
228228
Description = "Mode vessel's velocity meter is using: Orbit, Surface or Target.";
229229
Category = MicroEntryCategory.Misc;
230230
IsDefault = false;
@@ -244,7 +244,7 @@ public class UniversalTimeAtClosestApproach : MiscEntry
244244
{
245245
public UniversalTimeAtClosestApproach()
246246
{
247-
Name = "UT Close.App.";
247+
Name = "UT close.app.";
248248
Description = "Universal Time at closest approach.";
249249
Category = MicroEntryCategory.Misc;
250250
IsDefault = false;
@@ -274,7 +274,7 @@ public class UniversalTimeAtSoiEncounter : MiscEntry
274274
{
275275
public UniversalTimeAtSoiEncounter()
276276
{
277-
Name = "UT SOI Enc.";
277+
Name = "UT SOI enc.";
278278
Description = "Universal Time at the point of transfer to another sphere of influence.";
279279
Category = MicroEntryCategory.Misc;
280280
IsDefault = false;

MicroEngineerProject/MicroEngineer/Entries/OabStageInfoEntries.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class TotalBurnTime_OAB : OabStageInfoEntry
1414

1515
public TotalBurnTime_OAB()
1616
{
17-
Name = "Total Burn Time (OAB)";
17+
Name = "Total burn time (OAB)";
1818
Description = "Shows the total length of burn the vessel can mantain.";
1919
Category = MicroEntryCategory.OAB;
2020
IsDefault = true;
@@ -72,7 +72,7 @@ public class TotalDeltaVActual_OAB : OabStageInfoEntry
7272
{
7373
public TotalDeltaVActual_OAB()
7474
{
75-
Name = "Total ∆v Actual (OAB)";
75+
Name = "Total ∆v actual (OAB)";
7676
Description = "Shows the vessel's actual total delta velocity (not used in OAB).";
7777
Category = MicroEntryCategory.OAB;
7878
IsDefault = true;

MicroEngineerProject/MicroEngineer/Entries/OrbitalEntries.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public class OrbitalSpeed : OrbitalEntry
189189
{
190190
public OrbitalSpeed()
191191
{
192-
Name = "Orbital Speed";
192+
Name = "Orbital speed";
193193
Description = "Shows the vessel's orbital speed";
194194
Category = MicroEntryCategory.Orbital;
195195
IsDefault = true;
@@ -214,7 +214,7 @@ public class TrueAnomaly : OrbitalEntry
214214
{
215215
public TrueAnomaly()
216216
{
217-
Name = "True Anomaly";
217+
Name = "True anomaly";
218218
Description = "Angle between the direction of periapsis and the current position of the object, as seen from the main focus of the ellipse.";
219219
Category = MicroEntryCategory.Orbital;
220220
IsDefault = false;
@@ -244,7 +244,7 @@ public class MeanAnomaly : OrbitalEntry
244244
{
245245
public MeanAnomaly()
246246
{
247-
Name = "Mean Anomaly";
247+
Name = "Mean anomaly";
248248
Description = "Parameter used to describe the position of an object in its orbit around the celestial body.";
249249
Category = MicroEntryCategory.Orbital;
250250
IsDefault = false;
@@ -274,7 +274,7 @@ public class EccentricAnomaly : OrbitalEntry
274274
{
275275
public EccentricAnomaly()
276276
{
277-
Name = "Eccentric Anomaly";
277+
Name = "Eccentric anomaly";
278278
Description = "Angle at the center of the orbital ellipse from the semi major axis to the line that passes through the center of the ellipse and the point on the auxiliary circle that is the intersection of the line perpendicular to the semi major axis and passes through the point in the orbit where the vessel is.";
279279
Category = MicroEntryCategory.Orbital;
280280
IsDefault = false;
@@ -346,7 +346,7 @@ public class SemiLatusRectum : OrbitalEntry
346346
{
347347
public SemiLatusRectum()
348348
{
349-
Name = "Semi Latus Rect";
349+
Name = "Semi latus rect";
350350
Description = "Half the length of the chord through one focus, perpendicular to the major axis.";
351351
Category = MicroEntryCategory.Orbital;
352352
IsDefault = false;
@@ -371,7 +371,7 @@ public class SemiMajorAxis : OrbitalEntry
371371
{
372372
public SemiMajorAxis()
373373
{
374-
Name = "Semi Major Axis";
374+
Name = "Semi major axis";
375375
Description = "Shows the distance from the center of an orbit to the farthest edge.";
376376
Category = MicroEntryCategory.Orbital;
377377
IsDefault = false;
@@ -396,7 +396,7 @@ public class SemiMinorAxis : OrbitalEntry
396396
{
397397
public SemiMinorAxis()
398398
{
399-
Name = "Semi Minor Axis";
399+
Name = "Semi minor axis";
400400
Description = "Shows the distance from the center of an orbit to the nearest edge.";
401401
Category = MicroEntryCategory.Orbital;
402402
IsDefault = false;
@@ -421,7 +421,7 @@ public class OrbitalEnergy : OrbitalEntry
421421
{
422422
public OrbitalEnergy()
423423
{
424-
Name = "Orbital Energy";
424+
Name = "Orbital energy";
425425
Description = "Constant sum of two orbiting bodies' mutual potential energy and their total kinetic energy divided by the reduced mass.";
426426
Category = MicroEntryCategory.Orbital;
427427
IsDefault = false;
@@ -446,7 +446,7 @@ public class ObT : OrbitalEntry
446446
{
447447
public ObT()
448448
{
449-
Name = "Orbit Time";
449+
Name = "Orbit time";
450450
Description = "Shows orbit time in seconds from the Periapsis.";
451451
Category = MicroEntryCategory.Orbital;
452452
IsDefault = false;
@@ -476,7 +476,7 @@ public class OrbitPercent : OrbitalEntry
476476
{
477477
public OrbitPercent()
478478
{
479-
Name = "Orbit Percent";
479+
Name = "Orbit percent";
480480
Description = "Percent of the orbit completed.";
481481
Category = MicroEntryCategory.Orbital;
482482
IsDefault = false;
@@ -497,7 +497,7 @@ public class OrbitRadius : OrbitalEntry
497497
{
498498
public OrbitRadius()
499499
{
500-
Name = "Orbit Radius";
500+
Name = "Orbit radius";
501501
Description = "Length from the center of the ellipse to the object.";
502502
Category = MicroEntryCategory.Orbital;
503503
IsDefault = false;
@@ -522,7 +522,7 @@ public class SoiTransition : OrbitalEntry
522522
{
523523
public SoiTransition()
524524
{
525-
Name = "SOI Trans.";
525+
Name = "SOI trans.";
526526
Description = "Shows the amount of time it will take to transition to another Sphere Of Influence.";
527527
Category = MicroEntryCategory.Orbital;
528528
IsDefault = false;

0 commit comments

Comments
 (0)