* Add localization to the air alarms, wire panels, network configurator list menu and loadout window * delete unused * redo gas localization, delete unused * removed the extra key * Moved and renamed air-alarm-ui-thresholds-gas-name * Moved localization to the XAML * Use existing strings for gas names * it just works * Rename _atmosphereSystem in ScrubberControl.xaml.cs _atmosphereSystem -> atmosphereSystem * Rename _atmosphereSystem in SensorInfo.xaml.cs _atmosphereSystem -> atmosphereSystem
19 lines
879 B
XML
19 lines
879 B
XML
<BoxContainer xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Orientation="Vertical" Margin="0 0 0 4">
|
|
<Collapsible>
|
|
<CollapsibleHeading Name="CName" />
|
|
<CollapsibleBody Margin="20 0 0 0">
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Orientation="Horizontal">
|
|
<CheckBox Name="CEnabled" Text="{Loc 'air-alarm-ui-widget-enable'}" />
|
|
</BoxContainer>
|
|
<!-- Upper row: Danger bounds -->
|
|
<BoxContainer Name="CDangerBounds" Orientation="Horizontal" Margin="0 0 0 2"/>
|
|
<!-- Lower row: Warning bounds -->
|
|
<BoxContainer Name="CWarningBounds" Orientation="Horizontal" Margin="0 6 0 2"/>
|
|
</BoxContainer>
|
|
</CollapsibleBody>
|
|
</Collapsible>
|
|
</BoxContainer>
|