Skip to content

Commit 3fb3819

Browse files
committed
Updated localization
1 parent 4972d63 commit 3fb3819

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

0 Bytes
Binary file not shown.

GameData/KerbalHealth/Localization/en-us.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,20 @@ Localization
3434

3535
//Part Module info
3636
#KH_Module_title = Health Module
37-
#KH_Module_typetitle = Module type: <<1>>
37+
#KH_Module_typetitle = Type: <<1>>
3838

3939
#KH_Module_type1 = R&R
4040
#KH_Module_type2 = Health Poisoning
4141
#KH_Module_type3 = Stress Relief
4242
#KH_Module_type4 = Lounge
4343
#KH_Module_type5 = Meditation
4444
#KH_Module_type6 = Paragravity
45-
#KH_Module_type7 = Exercise Equipment
4645
#KH_Module_type8 = Broadband Internet
4746
#KH_Module_type9 = Sick Bay
4847
#KH_Module_type10 = Living Quarters
4948
#KH_Module_type11 = RadShield
5049
#KH_Module_type12 = Radiation
51-
#KH_Module_Type_Switchable = Living Quarters / Lounge
50+
#KH_Module_Type_Switchable = Configurable
5251
#KH_Module_MagnetosphereShielding = Magnetosphere Shielding
5352

5453
#KH_Module_info1 = \nHealth points: <<1>>/day

ModuleKerbalHealth.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,19 +265,19 @@ public string GetTitle(bool configSelected)
265265
return Localizer.Format("#KH_Module_type3"); //"Stress Relief"
266266
case "confinement":
267267
if (multiplierMode || !IsSwitchable)
268-
return Localizer.Format("#KH_Module_type4");//"Comforts"
268+
return Localizer.Format("#KH_Module_type4");//"Lounge"
269269
break;
270270
case "loneliness":
271271
return Localizer.Format("#KH_Module_type5");//"Meditation"
272272
case "microgravity":
273-
return (multiplier <= 0.25) ? Localizer.Format("#KH_Module_type6") : Localizer.Format("#KH_Module_type7");//"Paragravity""Exercise Equipment"
273+
return Localizer.Format("#KH_Module_type6");//"Paragravity"
274274
case "connected":
275-
return Localizer.Format("#KH_Module_type8");//"TV Set"
275+
return Localizer.Format("#KH_Module_type8");//"Broadband Internet"
276276
case "conditions":
277277
return Localizer.Format("#KH_Module_type9");//"Sick Bay"
278278
}
279279
if (space > 0 && configSelected && !multiplierMode)
280-
return Localizer.Format("#KH_Module_type10");//"Living Space"
280+
return Localizer.Format("#KH_Module_type10");//"Living Quarters"
281281
if (shielding > 0)
282282
return Localizer.Format("#KH_Module_type11");//"RadShield"
283283
if (radioactivity > 0)

0 commit comments

Comments
 (0)